Hi Tomi, Thank you for the patch. On Fri, Dec 02, 2022 at 03:16:56PM +0200, Tomi Valkeinen wrote: > Add Y210 pixel format. > > Signed-off-by: Tomi Valkeinen <tomi.valkeinen+renesas@xxxxxxxxxxxxxxxx> Reviewed-by: Laurent Pinchart <laurent.pinchart@xxxxxxxxxxxxxxxx> > --- > kms++/inc/kms++/pixelformats.h | 2 ++ > kms++/src/pixelformats.cpp | 6 ++++++ > 2 files changed, 8 insertions(+) > > diff --git a/kms++/inc/kms++/pixelformats.h b/kms++/inc/kms++/pixelformats.h > index 6f2671b..35261a9 100644 > --- a/kms++/inc/kms++/pixelformats.h > +++ b/kms++/inc/kms++/pixelformats.h > @@ -31,6 +31,8 @@ enum class PixelFormat : uint32_t { > YVYU = MakeFourCC("YVYU"), > VYUY = MakeFourCC("VYUY"), > > + Y210 = MakeFourCC("Y210"), > + > XRGB8888 = MakeFourCC("XR24"), > XBGR8888 = MakeFourCC("XB24"), > RGBX8888 = MakeFourCC("RX24"), > diff --git a/kms++/src/pixelformats.cpp b/kms++/src/pixelformats.cpp > index 7afbf09..89eece4 100644 > --- a/kms++/src/pixelformats.cpp > +++ b/kms++/src/pixelformats.cpp > @@ -28,6 +28,12 @@ static const map<PixelFormat, PixelFormatInfo> format_info_array = { > 1, > { { 16, 2, 1 } }, > } }, > + { PixelFormat::Y210, { > + PixelColorType::YUV, > + 1, > + { { 32, 2, 1 } }, > + } }, > + > /* YUV semi-planar */ > { PixelFormat::NV12, { > PixelColorType::YUV, -- Regards, Laurent Pinchart