Re: [PATCH v3 3/4] media: Add NV12_4L4 tiled format
From: Daniel Stone <hidden>
Date: 2021-08-06 13:55:06
From: Daniel Stone <hidden>
Date: 2021-08-06 13:55:06
On Wed, 2021-08-04 at 23:47 -0300, Ezequiel Garcia wrote:
--- a/drivers/media/v4l2-core/v4l2-common.c +++ b/drivers/media/v4l2-core/v4l2-common.c@@ -275,6 +275,9 @@ const struct v4l2_format_info*v4l2_format_info(u32 format) { .format = V4L2_PIX_FMT_YUV422P, .pixel_enc = V4L2_PIXEL_ENC_YUV, .mem_planes = 1, .comp_planes = 3, .bpp = { 1, 1, 1, 0 }, .hdiv = 2, .vdiv = 1 }, { .format = V4L2_PIX_FMT_GREY, .pixel_enc = V4L2_PIXEL_ENC_YUV, .mem_planes = 1, .comp_planes = 1, .bpp = { 1, 0, 0, 0 }, .hdiv = 1, .vdiv = 1 }, + /* Tiled YUV formats */ + { .format = V4L2_PIX_FMT_NV12_4L4, .pixel_enc = V4L2_PIXEL_ENC_YUV, .mem_planes = 1, .comp_planes = 2, .bpp = { 1, 2, 0, 0 }, .hdiv = 2, .vdiv = 2 },
Still no movement on modifiers, I guess ... :( Cheers, Daniel