From abf98c0267bfbf6dd68444e1316c04b62760a145 Mon Sep 17 00:00:00 2001 From: Geoffrey McRae Date: Mon, 24 Aug 2026 12:36:17 +1000 Subject: [PATCH] [host] pipewire: report truncated frames correctly --- host/platform/Linux/capture/pipewire/src/pipewire.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/host/platform/Linux/capture/pipewire/src/pipewire.c b/host/platform/Linux/capture/pipewire/src/pipewire.c index bca94b30..ee87da12 100644 --- a/host/platform/Linux/capture/pipewire/src/pipewire.c +++ b/host/platform/Linux/capture/pipewire/src/pipewire.c @@ -451,7 +451,7 @@ static CaptureResult pipewire_waitFrame( frame->dataHeight = this->dataHeight; frame->frameWidth = this->width; frame->frameHeight = this->height; - frame->truncated = maxHeight < this->dataHeight; + frame->truncated = maxHeight < this->height; frame->pitch = this->pitch; frame->stride = this->width; frame->rotation = CAPTURE_ROT_0;