libcamera: formats: Fix typo in YV444 V4L2PixelFormat listing
This format was defined with the V4L2_PIX_FMT_YUV444M fourcc instead of
the correct V4L2_PIX_FMT_YVU444M fourcc.
Fixes: 3b9fe4ae99
("libcamera: formats: Add YUV444 and YVU444 pixel formats")
Signed-off-by: Naushir Patuck <naush@raspberrypi.com>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
Signed-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
This commit is contained in:
parent
1d61614142
commit
870943f80a
1 changed files with 1 additions and 1 deletions
|
@ -123,7 +123,7 @@ const std::map<V4L2PixelFormat, V4L2PixelFormat::Info> vpf2pf{
|
|||
{ formats::YVU422, "Planar YVU 4:2:2 (N-C)" } },
|
||||
{ V4L2PixelFormat(V4L2_PIX_FMT_YUV444M),
|
||||
{ formats::YUV444, "Planar YUV 4:4:4 (N-C)" } },
|
||||
{ V4L2PixelFormat(V4L2_PIX_FMT_YUV444M),
|
||||
{ V4L2PixelFormat(V4L2_PIX_FMT_YVU444M),
|
||||
{ formats::YVU444, "Planar YVU 4:4:4 (N-C)" } },
|
||||
|
||||
/* Greyscale formats. */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue