diff options
author | Hans Verkuil <hverkuil@xs4all.nl> | 2007-11-05 18:30:03 +0100 |
---|---|---|
committer | Hans Verkuil <hverkuil@xs4all.nl> | 2007-11-05 18:30:03 +0100 |
commit | 9058aa0fb66f57fae9e5cd1084410d94f1565fbc (patch) | |
tree | dde9d68d9d73b66298732abc56167d2faf75a843 /linux/drivers/media/video/ivtv | |
parent | 39446d1c76c5ebb42b424060c502ba0a57494476 (diff) | |
download | mediapointer-dvb-s2-9058aa0fb66f57fae9e5cd1084410d94f1565fbc.tar.gz mediapointer-dvb-s2-9058aa0fb66f57fae9e5cd1084410d94f1565fbc.tar.bz2 |
ivtv: ivtv yuv format description correction
From: Ian Armstrong <ian@iarmst.demon.co.uk>
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>
Diffstat (limited to 'linux/drivers/media/video/ivtv')
-rw-r--r-- | linux/drivers/media/video/ivtv/ivtv-ioctl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux/drivers/media/video/ivtv/ivtv-ioctl.c b/linux/drivers/media/video/ivtv/ivtv-ioctl.c index e571cbaef..30cc3b290 100644 --- a/linux/drivers/media/video/ivtv/ivtv-ioctl.c +++ b/linux/drivers/media/video/ivtv/ivtv-ioctl.c @@ -900,7 +900,7 @@ int ivtv_v4l2_ioctls(struct ivtv *itv, struct file *filp, unsigned int cmd, void case VIDIOC_ENUM_FMT: { static struct v4l2_fmtdesc formats[] = { { 0, 0, 0, - "HM12 (YUV 4:2:2)", V4L2_PIX_FMT_HM12, + "HM12 (YUV 4:2:0)", V4L2_PIX_FMT_HM12, { 0, 0, 0, 0 } }, { 1, 0, V4L2_FMT_FLAG_COMPRESSED, |