diff options
author | Ian Armstrong <ian@iarmst.demon.co.uk> | 2007-11-05 12:30:03 -0500 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2008-01-25 16:03:11 -0500 |
commit | 368f080b6870e65d43c346e085e8f81ade5d3e07 (patch) | |
tree | 1b5e1bc68394375e211b19989e2f842820e92b1c /drivers/media/video/ivtv | |
parent | 77aded6ba51f01335840ce8e18b413067810b68e (diff) |
V4L/DVB (6718): ivtv: ivtv yuv format description correction
The driver was incorrectly reporting that it supported YUV 4:2:2 output, when
it is actually YUV 4:2:0. Though I believe the hardware can be pushed to
4:2:2, we don't currently support that.
Signed-off-by: Ian Armstrong <ian@iarmst.demon.co.uk>
Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'drivers/media/video/ivtv')
-rw-r--r-- | drivers/media/video/ivtv/ivtv-ioctl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/video/ivtv/ivtv-ioctl.c b/drivers/media/video/ivtv/ivtv-ioctl.c index 57eb8dfe53fa..0618fee24952 100644 --- a/drivers/media/video/ivtv/ivtv-ioctl.c +++ b/drivers/media/video/ivtv/ivtv-ioctl.c | |||
@@ -894,7 +894,7 @@ int ivtv_v4l2_ioctls(struct ivtv *itv, struct file *filp, unsigned int cmd, void | |||
894 | case VIDIOC_ENUM_FMT: { | 894 | case VIDIOC_ENUM_FMT: { |
895 | static struct v4l2_fmtdesc formats[] = { | 895 | static struct v4l2_fmtdesc formats[] = { |
896 | { 0, 0, 0, | 896 | { 0, 0, 0, |
897 | "HM12 (YUV 4:2:2)", V4L2_PIX_FMT_HM12, | 897 | "HM12 (YUV 4:2:0)", V4L2_PIX_FMT_HM12, |
898 | { 0, 0, 0, 0 } | 898 | { 0, 0, 0, 0 } |
899 | }, | 899 | }, |
900 | { 1, 0, V4L2_FMT_FLAG_COMPRESSED, | 900 | { 1, 0, V4L2_FMT_FLAG_COMPRESSED, |