[media] sh-vou: fix incorrect initial pixelformat
authorHans Verkuil <hans.verkuil@cisco.com>
Sun, 7 Jun 2015 08:58:00 +0000 (05:58 -0300)
committerMauro Carvalho Chehab <mchehab@osg.samsung.com>
Mon, 6 Jul 2015 11:26:10 +0000 (08:26 -0300)
It was set to a format that wasn't supported.

Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
drivers/media/platform/sh_vou.c

index d9a4502..262c244 100644 (file)
@@ -1368,7 +1368,7 @@ static int sh_vou_probe(struct platform_device *pdev)
        rect->height            = 480;
        pix->width              = VOU_MAX_IMAGE_WIDTH;
        pix->height             = 480;
-       pix->pixelformat        = V4L2_PIX_FMT_YVYU;
+       pix->pixelformat        = V4L2_PIX_FMT_NV16;
        pix->field              = V4L2_FIELD_NONE;
        pix->bytesperline       = VOU_MAX_IMAGE_WIDTH * 2;
        pix->sizeimage          = VOU_MAX_IMAGE_WIDTH * 2 * 480;