aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/dvb
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/dvb')
-rw-r--r--include/linux/dvb/video.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/include/linux/dvb/video.h b/include/linux/dvb/video.h
index a96da40c50f5..0c2a1c7c50a6 100644
--- a/include/linux/dvb/video.h
+++ b/include/linux/dvb/video.h
@@ -120,6 +120,13 @@ struct video_command {
120 }; 120 };
121}; 121};
122 122
123/* FIELD_UNKNOWN can be used if the hardware does not know whether
124 the Vsync is for an odd, even or progressive (i.e. non-interlaced)
125 field. */
126#define VIDEO_VSYNC_FIELD_UNKNOWN (0)
127#define VIDEO_VSYNC_FIELD_ODD (1)
128#define VIDEO_VSYNC_FIELD_EVEN (2)
129#define VIDEO_VSYNC_FIELD_PROGRESSIVE (3)
123 130
124struct video_event { 131struct video_event {
125 int32_t type; 132 int32_t type;
@@ -131,6 +138,7 @@ struct video_event {
131 union { 138 union {
132 video_size_t size; 139 video_size_t size;
133 unsigned int frame_rate; /* in frames per 1000sec */ 140 unsigned int frame_rate; /* in frames per 1000sec */
141 unsigned char vsync_field; /* unknown/odd/even/progressive */
134 } u; 142 } u;
135}; 143};
136 144