Commit 22df2e7a authored by Hans Verkuil's avatar Hans Verkuil Committed by Mauro Carvalho Chehab

[media] sh-vou: fix incorrect initial pixelformat

It was set to a format that wasn't supported.
Signed-off-by: default avatarHans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@osg.samsung.com>
parent 4de00d0e
...@@ -1368,7 +1368,7 @@ static int sh_vou_probe(struct platform_device *pdev) ...@@ -1368,7 +1368,7 @@ static int sh_vou_probe(struct platform_device *pdev)
rect->height = 480; rect->height = 480;
pix->width = VOU_MAX_IMAGE_WIDTH; pix->width = VOU_MAX_IMAGE_WIDTH;
pix->height = 480; pix->height = 480;
pix->pixelformat = V4L2_PIX_FMT_YVYU; pix->pixelformat = V4L2_PIX_FMT_NV16;
pix->field = V4L2_FIELD_NONE; pix->field = V4L2_FIELD_NONE;
pix->bytesperline = VOU_MAX_IMAGE_WIDTH * 2; pix->bytesperline = VOU_MAX_IMAGE_WIDTH * 2;
pix->sizeimage = VOU_MAX_IMAGE_WIDTH * 2 * 480; pix->sizeimage = VOU_MAX_IMAGE_WIDTH * 2 * 480;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment