From c88c9a35e664c9ae8f3e450343f26f4789ef0619 Mon Sep 17 00:00:00 2001 From: Sheng Nan Date: Fri, 7 Dec 2012 17:08:07 +0800 Subject: [PATCH] ENGR00236196: mxc_vout: add YV12 format support in enum fmt field. Since YV12 format is supported in mxc_v4l2_capture, it should be also supported in mxc_vout. Signed-off-by: Sheng Nan --- drivers/media/video/mxc/output/mxc_vout.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/drivers/media/video/mxc/output/mxc_vout.c b/drivers/media/video/mxc/output/mxc_vout.c index 388c4b39570f..ec789ec2e826 100644 --- a/drivers/media/video/mxc/output/mxc_vout.c +++ b/drivers/media/video/mxc/output/mxc_vout.c @@ -188,6 +188,10 @@ const static struct v4l2_fmtdesc mxc_formats[] = { .description = "YUV420", .pixelformat = V4L2_PIX_FMT_YUV420, }, + { + .description = "YVU420", + .pixelformat = V4L2_PIX_FMT_YVU420, + }, { .description = "TILED NV12P", .pixelformat = IPU_PIX_FMT_TILED_NV12, -- 2.39.5