diff options
author | Hans Verkuil <hverkuil@xs4all.nl> | 2007-03-11 09:50:03 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2007-04-27 14:44:33 -0400 |
commit | 3700a90f05f316948328e8d0e6a9955338a96565 (patch) | |
tree | 157bf9985dcb85d2d921bc080e585ec3449e50e7 /include/linux/dvb | |
parent | f40a29168475d64d854ef16a9263b24b0b2a9c6e (diff) |
V4L/DVB (5418): Speed is a signed 32-bit integer, not unsigned.
Negative speed values have to be allowed for reverse playback.
Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'include/linux/dvb')
-rw-r--r-- | include/linux/dvb/video.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/dvb/video.h b/include/linux/dvb/video.h index 0c2a1c7c50a6..4c314914339f 100644 --- a/include/linux/dvb/video.h +++ b/include/linux/dvb/video.h | |||
@@ -110,7 +110,7 @@ struct video_command { | |||
110 | } stop; | 110 | } stop; |
111 | 111 | ||
112 | struct { | 112 | struct { |
113 | __u32 speed; | 113 | __s32 speed; |
114 | __u32 format; | 114 | __u32 format; |
115 | } play; | 115 | } play; |
116 | 116 | ||