[host] nvfbc: fix build due to frame info structure changes

This commit is contained in:
Geoffrey McRae 2022-05-04 10:37:52 +10:00
parent 8682ec207e
commit e4a4e2331a

View File

@ -557,9 +557,11 @@ static CaptureResult nvfbc_waitFrame(CaptureFrame * frame,
const unsigned int maxHeight = maxFrameSize / (this->shmStride * 4); const unsigned int maxHeight = maxFrameSize / (this->shmStride * 4);
frame->formatVer = this->formatVer; frame->formatVer = this->formatVer;
frame->width = this->grabWidth; frame->screenWidth = this->grabWidth;
frame->height = maxHeight > this->grabHeight ? this->grabHeight : maxHeight; frame->screenHeight = this->grabHeight;
frame->realHeight = this->grabHeight; frame->frameWidth = this->grabWidth;
frame->truncated = maxHeight > this->grabHeight;
frame->frameHeight = maxHeight > this->grabHeight ? this->grabHeight : maxHeight;
frame->pitch = this->shmStride * 4; frame->pitch = this->shmStride * 4;
frame->stride = this->shmStride; frame->stride = this->shmStride;
frame->rotation = CAPTURE_ROT_0; frame->rotation = CAPTURE_ROT_0;