mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-10-30 08:02:30 +00:00
[media] media: tvp5150: Fix mbus format
According to p.14 fig 3-3 of the datasheet (SLES098A) this decoder transmits data in UYVY format. Signed-off-by: Javier Martin <javier.martin@vista-silicon.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
parent
1eaef48b42
commit
002eaf90a2
1 changed files with 2 additions and 2 deletions
|
@ -822,7 +822,7 @@ static int tvp5150_enum_mbus_fmt(struct v4l2_subdev *sd, unsigned index,
|
||||||
if (index)
|
if (index)
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
|
|
||||||
*code = V4L2_MBUS_FMT_YUYV8_2X8;
|
*code = V4L2_MBUS_FMT_UYVY8_2X8;
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -839,7 +839,7 @@ static int tvp5150_mbus_fmt(struct v4l2_subdev *sd,
|
||||||
f->width = decoder->rect.width;
|
f->width = decoder->rect.width;
|
||||||
f->height = decoder->rect.height;
|
f->height = decoder->rect.height;
|
||||||
|
|
||||||
f->code = V4L2_MBUS_FMT_YUYV8_2X8;
|
f->code = V4L2_MBUS_FMT_UYVY8_2X8;
|
||||||
f->field = V4L2_FIELD_SEQ_TB;
|
f->field = V4L2_FIELD_SEQ_TB;
|
||||||
f->colorspace = V4L2_COLORSPACE_SMPTE170M;
|
f->colorspace = V4L2_COLORSPACE_SMPTE170M;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue