[media] sh-vou: fix incorrect initial pixelformat
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>
This commit is contained in:
parent
4de00d0efe
commit
22df2e7a39
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue