diff options
author | Hans Verkuil <hverkuil@xs4all.nl> | 2007-03-11 10:50:03 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2007-04-27 15:44:33 -0300 |
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 { } stop; struct { - __u32 speed; + __s32 speed; __u32 format; } play; |