diff options
author | Hans Verkuil <hverkuil@xs4all.nl> | 2007-03-11 14:54:11 +0100 |
---|---|---|
committer | Hans Verkuil <hverkuil@xs4all.nl> | 2007-03-11 14:54:11 +0100 |
commit | 49a1d93009c600fd0a093aa0423a8988498a855b (patch) | |
tree | 5b8d96209b1a948b984ee978bde828d675722df6 | |
parent | 0c8ac1d17216468a4b552aafa5659b8f26835f00 (diff) | |
download | mediapointer-dvb-s2-49a1d93009c600fd0a093aa0423a8988498a855b.tar.gz mediapointer-dvb-s2-49a1d93009c600fd0a093aa0423a8988498a855b.tar.bz2 |
Add comment how the speed field is interpreted.
From: Hans Verkuil <hverkuil@xs4all.nl>
Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
-rw-r--r-- | linux/include/linux/dvb/video.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/linux/include/linux/dvb/video.h b/linux/include/linux/dvb/video.h index 4c3149143..93e4c3a6d 100644 --- a/linux/include/linux/dvb/video.h +++ b/linux/include/linux/dvb/video.h @@ -110,6 +110,11 @@ struct video_command { } stop; struct { + /* 0 or 1000 specifies normal speed, + 1 specifies forward single stepping, + -1 specifies backward single stepping, + >1: playback at speed/1000 of the normal speed, + <-1: reverse playback at (-speed/1000) of the normal speed. */ __s32 speed; __u32 format; } play; |