qcam: format_converter: Support X RGB variants
Support the X variants of the RGB pixel formats along side the equivalent Alpha component based versions. Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Signed-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
This commit is contained in:
@@ -93,6 +93,7 @@ int FormatConverter::configure(const libcamera::PixelFormat &format,
|
|||||||
bpp_ = 3;
|
bpp_ = 3;
|
||||||
break;
|
break;
|
||||||
case libcamera::formats::ARGB8888:
|
case libcamera::formats::ARGB8888:
|
||||||
|
case libcamera::formats::XRGB8888:
|
||||||
formatFamily_ = RGB;
|
formatFamily_ = RGB;
|
||||||
r_pos_ = 2;
|
r_pos_ = 2;
|
||||||
g_pos_ = 1;
|
g_pos_ = 1;
|
||||||
@@ -100,6 +101,7 @@ int FormatConverter::configure(const libcamera::PixelFormat &format,
|
|||||||
bpp_ = 4;
|
bpp_ = 4;
|
||||||
break;
|
break;
|
||||||
case libcamera::formats::RGBA8888:
|
case libcamera::formats::RGBA8888:
|
||||||
|
case libcamera::formats::RGBX8888:
|
||||||
formatFamily_ = RGB;
|
formatFamily_ = RGB;
|
||||||
r_pos_ = 3;
|
r_pos_ = 3;
|
||||||
g_pos_ = 2;
|
g_pos_ = 2;
|
||||||
@@ -107,6 +109,7 @@ int FormatConverter::configure(const libcamera::PixelFormat &format,
|
|||||||
bpp_ = 4;
|
bpp_ = 4;
|
||||||
break;
|
break;
|
||||||
case libcamera::formats::ABGR8888:
|
case libcamera::formats::ABGR8888:
|
||||||
|
case libcamera::formats::XBGR8888:
|
||||||
formatFamily_ = RGB;
|
formatFamily_ = RGB;
|
||||||
r_pos_ = 0;
|
r_pos_ = 0;
|
||||||
g_pos_ = 1;
|
g_pos_ = 1;
|
||||||
@@ -114,6 +117,7 @@ int FormatConverter::configure(const libcamera::PixelFormat &format,
|
|||||||
bpp_ = 4;
|
bpp_ = 4;
|
||||||
break;
|
break;
|
||||||
case libcamera::formats::BGRA8888:
|
case libcamera::formats::BGRA8888:
|
||||||
|
case libcamera::formats::BGRX8888:
|
||||||
formatFamily_ = RGB;
|
formatFamily_ = RGB;
|
||||||
r_pos_ = 1;
|
r_pos_ = 1;
|
||||||
g_pos_ = 2;
|
g_pos_ = 2;
|
||||||
|
|||||||
Reference in New Issue
Block a user