[libcamera-devel] [PATCH] pipeline: rpi: Respect provided stride
David Plowman
david.plowman at raspberrypi.com
Tue Dec 12 10:56:22 CET 2023
Hi William
Thanks for the fix.
On Mon, 11 Dec 2023 at 17:14, William Vinnicombe via libcamera-devel
<libcamera-devel at lists.libcamera.org> wrote:
>
> When converting from StreamConfiguration to V4L2DeviceFormat, the stride
> was being dropped.
I might add a "with the result that users could not request a custom
stride" (a bit like playing consequences!) just for the extra
clarification... but with or without that it looks good to me:
Reviewed-by: David Plowman <david.plowman at raspberrypi.com>
Thanks!
David
>
> Set the stride in the V4L2DeviceFormat to prevent this happening.
>
> Signed-off-by: William Vinnicombe <william.vinnicombe at raspberrypi.com>
> ---
> src/libcamera/pipeline/rpi/common/pipeline_base.cpp | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/src/libcamera/pipeline/rpi/common/pipeline_base.cpp b/src/libcamera/pipeline/rpi/common/pipeline_base.cpp
> index 9f788c9d..5afa8dbb 100644
> --- a/src/libcamera/pipeline/rpi/common/pipeline_base.cpp
> +++ b/src/libcamera/pipeline/rpi/common/pipeline_base.cpp
> @@ -367,6 +367,7 @@ V4L2DeviceFormat PipelineHandlerBase::toV4L2DeviceFormat(const V4L2VideoDevice *
> deviceFormat.planesCount = info.numPlanes();
> deviceFormat.fourcc = dev->toV4L2PixelFormat(stream->pixelFormat);
> deviceFormat.size = stream->size;
> + deviceFormat.planes[0].bpl = stream->stride;
> deviceFormat.colorSpace = stream->colorSpace;
>
> return deviceFormat;
> --
> 2.39.2
>
More information about the libcamera-devel
mailing list