diff options
author | Hans Verkuil <hans.verkuil@cisco.com> | 2013-03-20 14:26:36 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2013-04-14 18:56:07 -0400 |
commit | 292a878720b26213bc773619715525e9f7a4f4a1 (patch) | |
tree | 9923a1fae925448c02e1a37b11dbebab8bf57dae /include | |
parent | cd29ed853f90b39318643301d5389e80a7d466bc (diff) |
[media] videodev2.h: fix incorrect V4L2_DV_FL_HALF_LINE bitmask
This was set to 1 << 0 which is the same as V4L2_DV_FL_REDUCED_BLANKING.
It should be 1 << 3 instead. Luckily interlaced formats are rarely used,
which is why this bug wasn't seen until now.
Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/uapi/linux/videodev2.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/uapi/linux/videodev2.h b/include/uapi/linux/videodev2.h index 1282cd38e86a..97fb392bb2d9 100644 --- a/include/uapi/linux/videodev2.h +++ b/include/uapi/linux/videodev2.h | |||
@@ -1074,7 +1074,7 @@ struct v4l2_bt_timings { | |||
1074 | longer and field 2 is really one half-line shorter, so each field has | 1074 | longer and field 2 is really one half-line shorter, so each field has |
1075 | exactly the same number of half-lines. Whether half-lines can be detected | 1075 | exactly the same number of half-lines. Whether half-lines can be detected |
1076 | or used depends on the hardware. */ | 1076 | or used depends on the hardware. */ |
1077 | #define V4L2_DV_FL_HALF_LINE (1 << 0) | 1077 | #define V4L2_DV_FL_HALF_LINE (1 << 3) |
1078 | 1078 | ||
1079 | 1079 | ||
1080 | /** struct v4l2_dv_timings - DV timings | 1080 | /** struct v4l2_dv_timings - DV timings |