Browse Source

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>
Hans Verkuil 18 years ago
parent
commit
3700a90f05
1 changed files with 1 additions and 1 deletions
  1. 1 1
      include/linux/dvb/video.h

+ 1 - 1
include/linux/dvb/video.h

@@ -110,7 +110,7 @@ struct video_command {
 		} stop;
 
 		struct {
-			__u32 speed;
+			__s32 speed;
 			__u32 format;
 		} play;