mirror of
https://github.com/gnif/LookingGlass.git
synced 2024-11-10 11:17:54 +00:00
[host] pw: fix build due to frame info structure changes
This commit is contained in:
parent
3d727a2254
commit
81f91caf0e
1 changed files with 10 additions and 8 deletions
|
@ -423,14 +423,16 @@ static CaptureResult pipewire_waitFrame(CaptureFrame * frame,
|
|||
const int bpp = this->format == CAPTURE_FMT_RGBA16F ? 8 : 4;
|
||||
const unsigned int maxHeight = maxFrameSize / (this->width * bpp);
|
||||
|
||||
frame->formatVer = this->formatVer;
|
||||
frame->format = this->format;
|
||||
frame->width = this->width;
|
||||
frame->height = maxHeight > this->height ? this->height : maxHeight;
|
||||
frame->realHeight = this->height;
|
||||
frame->pitch = this->width * bpp;
|
||||
frame->stride = this->width;
|
||||
frame->rotation = CAPTURE_ROT_0;
|
||||
frame->formatVer = this->formatVer;
|
||||
frame->format = this->format;
|
||||
frame->screenWidth = this->width;
|
||||
frame->screenHeight = this->height;
|
||||
frame->frameWidth = this->width;
|
||||
frame->frameHeight = maxHeight > this->height ? this->height : maxHeight;
|
||||
frame->truncated = maxHeight > this->height;
|
||||
frame->pitch = this->width * bpp;
|
||||
frame->stride = this->width;
|
||||
frame->rotation = CAPTURE_ROT_0;
|
||||
|
||||
// TODO: implement damage.
|
||||
frame->damageRectsCount = 0;
|
||||
|
|
Loading…
Reference in a new issue