commit | 3700a90f05f316948328e8d0e6a9955338a96565 | [log] [tgz] |
---|---|---|
author | Hans Verkuil <hverkuil@xs4all.nl> | Sun Mar 11 10:50:03 2007 -0300 |
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | Fri Apr 27 15:44:33 2007 -0300 |
tree | 157bf9985dcb85d2d921bc080e585ec3449e50e7 | |
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>
diff --git a/include/linux/dvb/video.h b/include/linux/dvb/video.h index 0c2a1c7..4c31491 100644 --- a/include/linux/dvb/video.h +++ b/include/linux/dvb/video.h
@@ -110,7 +110,7 @@ } stop; struct { - __u32 speed; + __s32 speed; __u32 format; } play;