337c31409cd7d8802f37d4734ab2ebfc114f9674
[powerpc.git] / include / linux / videodev2.h
1 /*
2  *      Video for Linux Two
3  *
4  *      Header file for v4l or V4L2 drivers and applications
5  * with public API.
6  * All kernel-specific stuff were moved to media/v4l2-dev.h, so
7  * no #if __KERNEL tests are allowed here
8  *
9  *      See http://linuxtv.org for more info
10  *
11  *      Author: Bill Dirks <bdirks@pacbell.net>
12  *              Justin Schoeman
13  *              et al.
14  */
15 #ifndef __LINUX_VIDEODEV2_H
16 #define __LINUX_VIDEODEV2_H
17 #ifdef __KERNEL__
18 #include <linux/time.h>     /* need struct timeval */
19 #include <linux/compiler.h> /* need __user */
20 #else
21 #define __user
22 #endif
23 #include <linux/types.h>
24
25 #define HAVE_V4L2 1
26
27 /*
28  * Common stuff for both V4L1 and V4L2
29  * Moved from videodev.h
30  */
31 #define VIDEO_MAX_FRAME               32
32
33 #define VID_TYPE_CAPTURE        1       /* Can capture */
34 #define VID_TYPE_TUNER          2       /* Can tune */
35 #define VID_TYPE_TELETEXT       4       /* Does teletext */
36 #define VID_TYPE_OVERLAY        8       /* Overlay onto frame buffer */
37 #define VID_TYPE_CHROMAKEY      16      /* Overlay by chromakey */
38 #define VID_TYPE_CLIPPING       32      /* Can clip */
39 #define VID_TYPE_FRAMERAM       64      /* Uses the frame buffer memory */
40 #define VID_TYPE_SCALES         128     /* Scalable */
41 #define VID_TYPE_MONOCHROME     256     /* Monochrome only */
42 #define VID_TYPE_SUBCAPTURE     512     /* Can capture subareas of the image */
43 #define VID_TYPE_MPEG_DECODER   1024    /* Can decode MPEG streams */
44 #define VID_TYPE_MPEG_ENCODER   2048    /* Can encode MPEG streams */
45 #define VID_TYPE_MJPEG_DECODER  4096    /* Can decode MJPEG streams */
46 #define VID_TYPE_MJPEG_ENCODER  8192    /* Can encode MJPEG streams */
47
48 /*
49  *      M I S C E L L A N E O U S
50  */
51
52 /*  Four-character-code (FOURCC) */
53 #define v4l2_fourcc(a,b,c,d)\
54         (((__u32)(a)<<0)|((__u32)(b)<<8)|((__u32)(c)<<16)|((__u32)(d)<<24))
55
56 /*
57  *      E N U M S
58  */
59 enum v4l2_field {
60         V4L2_FIELD_ANY        = 0, /* driver can choose from none,
61                                       top, bottom, interlaced
62                                       depending on whatever it thinks
63                                       is approximate ... */
64         V4L2_FIELD_NONE       = 1, /* this device has no fields ... */
65         V4L2_FIELD_TOP        = 2, /* top field only */
66         V4L2_FIELD_BOTTOM     = 3, /* bottom field only */
67         V4L2_FIELD_INTERLACED = 4, /* both fields interlaced */
68         V4L2_FIELD_SEQ_TB     = 5, /* both fields sequential into one
69                                       buffer, top-bottom order */
70         V4L2_FIELD_SEQ_BT     = 6, /* same as above + bottom-top order */
71         V4L2_FIELD_ALTERNATE  = 7, /* both fields alternating into
72                                       separate buffers */
73 };
74 #define V4L2_FIELD_HAS_TOP(field)       \
75         ((field) == V4L2_FIELD_TOP      ||\
76          (field) == V4L2_FIELD_INTERLACED ||\
77          (field) == V4L2_FIELD_SEQ_TB   ||\
78          (field) == V4L2_FIELD_SEQ_BT)
79 #define V4L2_FIELD_HAS_BOTTOM(field)    \
80         ((field) == V4L2_FIELD_BOTTOM   ||\
81          (field) == V4L2_FIELD_INTERLACED ||\
82          (field) == V4L2_FIELD_SEQ_TB   ||\
83          (field) == V4L2_FIELD_SEQ_BT)
84 #define V4L2_FIELD_HAS_BOTH(field)      \
85         ((field) == V4L2_FIELD_INTERLACED ||\
86          (field) == V4L2_FIELD_SEQ_TB   ||\
87          (field) == V4L2_FIELD_SEQ_BT)
88
89 enum v4l2_buf_type {
90         V4L2_BUF_TYPE_VIDEO_CAPTURE      = 1,
91         V4L2_BUF_TYPE_VIDEO_OUTPUT       = 2,
92         V4L2_BUF_TYPE_VIDEO_OVERLAY      = 3,
93         V4L2_BUF_TYPE_VBI_CAPTURE        = 4,
94         V4L2_BUF_TYPE_VBI_OUTPUT         = 5,
95 #if 1
96         /* Experimental Sliced VBI */
97         V4L2_BUF_TYPE_SLICED_VBI_CAPTURE = 6,
98         V4L2_BUF_TYPE_SLICED_VBI_OUTPUT  = 7,
99 #endif
100         V4L2_BUF_TYPE_PRIVATE            = 0x80,
101 };
102
103 enum v4l2_ctrl_type {
104         V4L2_CTRL_TYPE_INTEGER       = 1,
105         V4L2_CTRL_TYPE_BOOLEAN       = 2,
106         V4L2_CTRL_TYPE_MENU          = 3,
107         V4L2_CTRL_TYPE_BUTTON        = 4,
108         V4L2_CTRL_TYPE_INTEGER64     = 5,
109         V4L2_CTRL_TYPE_CTRL_CLASS    = 6,
110 };
111
112 enum v4l2_tuner_type {
113         V4L2_TUNER_RADIO             = 1,
114         V4L2_TUNER_ANALOG_TV         = 2,
115         V4L2_TUNER_DIGITAL_TV        = 3,
116 };
117
118 enum v4l2_memory {
119         V4L2_MEMORY_MMAP             = 1,
120         V4L2_MEMORY_USERPTR          = 2,
121         V4L2_MEMORY_OVERLAY          = 3,
122 };
123
124 /* see also http://vektor.theorem.ca/graphics/ycbcr/ */
125 enum v4l2_colorspace {
126         /* ITU-R 601 -- broadcast NTSC/PAL */
127         V4L2_COLORSPACE_SMPTE170M     = 1,
128
129         /* 1125-Line (US) HDTV */
130         V4L2_COLORSPACE_SMPTE240M     = 2,
131
132         /* HD and modern captures. */
133         V4L2_COLORSPACE_REC709        = 3,
134
135         /* broken BT878 extents (601, luma range 16-253 instead of 16-235) */
136         V4L2_COLORSPACE_BT878         = 4,
137
138         /* These should be useful.  Assume 601 extents. */
139         V4L2_COLORSPACE_470_SYSTEM_M  = 5,
140         V4L2_COLORSPACE_470_SYSTEM_BG = 6,
141
142         /* I know there will be cameras that send this.  So, this is
143          * unspecified chromaticities and full 0-255 on each of the
144          * Y'CbCr components
145          */
146         V4L2_COLORSPACE_JPEG          = 7,
147
148         /* For RGB colourspaces, this is probably a good start. */
149         V4L2_COLORSPACE_SRGB          = 8,
150 };
151
152 enum v4l2_priority {
153         V4L2_PRIORITY_UNSET       = 0,  /* not initialized */
154         V4L2_PRIORITY_BACKGROUND  = 1,
155         V4L2_PRIORITY_INTERACTIVE = 2,
156         V4L2_PRIORITY_RECORD      = 3,
157         V4L2_PRIORITY_DEFAULT     = V4L2_PRIORITY_INTERACTIVE,
158 };
159
160 struct v4l2_rect {
161         __s32   left;
162         __s32   top;
163         __s32   width;
164         __s32   height;
165 };
166
167 struct v4l2_fract {
168         __u32   numerator;
169         __u32   denominator;
170 };
171
172 /*
173  *      D R I V E R   C A P A B I L I T I E S
174  */
175 struct v4l2_capability
176 {
177         __u8    driver[16];     /* i.e. "bttv" */
178         __u8    card[32];       /* i.e. "Hauppauge WinTV" */
179         __u8    bus_info[32];   /* "PCI:" + pci_name(pci_dev) */
180         __u32   version;        /* should use KERNEL_VERSION() */
181         __u32   capabilities;   /* Device capabilities */
182         __u32   reserved[4];
183 };
184
185 /* Values for 'capabilities' field */
186 #define V4L2_CAP_VIDEO_CAPTURE          0x00000001  /* Is a video capture device */
187 #define V4L2_CAP_VIDEO_OUTPUT           0x00000002  /* Is a video output device */
188 #define V4L2_CAP_VIDEO_OVERLAY          0x00000004  /* Can do video overlay */
189 #define V4L2_CAP_VBI_CAPTURE            0x00000010  /* Is a raw VBI capture device */
190 #define V4L2_CAP_VBI_OUTPUT             0x00000020  /* Is a raw VBI output device */
191 #if 1
192 #define V4L2_CAP_SLICED_VBI_CAPTURE     0x00000040  /* Is a sliced VBI capture device */
193 #define V4L2_CAP_SLICED_VBI_OUTPUT      0x00000080  /* Is a sliced VBI output device */
194 #endif
195 #define V4L2_CAP_RDS_CAPTURE            0x00000100  /* RDS data capture */
196
197 #define V4L2_CAP_TUNER                  0x00010000  /* has a tuner */
198 #define V4L2_CAP_AUDIO                  0x00020000  /* has audio support */
199 #define V4L2_CAP_RADIO                  0x00040000  /* is a radio device */
200
201 #define V4L2_CAP_READWRITE              0x01000000  /* read/write systemcalls */
202 #define V4L2_CAP_ASYNCIO                0x02000000  /* async I/O */
203 #define V4L2_CAP_STREAMING              0x04000000  /* streaming I/O ioctls */
204
205 /*
206  *      V I D E O   I M A G E   F O R M A T
207  */
208 struct v4l2_pix_format
209 {
210         __u32                   width;
211         __u32                   height;
212         __u32                   pixelformat;
213         enum v4l2_field         field;
214         __u32                   bytesperline;   /* for padding, zero if unused */
215         __u32                   sizeimage;
216         enum v4l2_colorspace    colorspace;
217         __u32                   priv;           /* private data, depends on pixelformat */
218 };
219
220 /*      Pixel format         FOURCC                        depth  Description  */
221 #define V4L2_PIX_FMT_RGB332  v4l2_fourcc('R','G','B','1') /*  8  RGB-3-3-2     */
222 #define V4L2_PIX_FMT_RGB555  v4l2_fourcc('R','G','B','O') /* 16  RGB-5-5-5     */
223 #define V4L2_PIX_FMT_RGB565  v4l2_fourcc('R','G','B','P') /* 16  RGB-5-6-5     */
224 #define V4L2_PIX_FMT_RGB555X v4l2_fourcc('R','G','B','Q') /* 16  RGB-5-5-5 BE  */
225 #define V4L2_PIX_FMT_RGB565X v4l2_fourcc('R','G','B','R') /* 16  RGB-5-6-5 BE  */
226 #define V4L2_PIX_FMT_BGR24   v4l2_fourcc('B','G','R','3') /* 24  BGR-8-8-8     */
227 #define V4L2_PIX_FMT_RGB24   v4l2_fourcc('R','G','B','3') /* 24  RGB-8-8-8     */
228 #define V4L2_PIX_FMT_BGR32   v4l2_fourcc('B','G','R','4') /* 32  BGR-8-8-8-8   */
229 #define V4L2_PIX_FMT_RGB32   v4l2_fourcc('R','G','B','4') /* 32  RGB-8-8-8-8   */
230 #define V4L2_PIX_FMT_GREY    v4l2_fourcc('G','R','E','Y') /*  8  Greyscale     */
231 #define V4L2_PIX_FMT_YVU410  v4l2_fourcc('Y','V','U','9') /*  9  YVU 4:1:0     */
232 #define V4L2_PIX_FMT_YVU420  v4l2_fourcc('Y','V','1','2') /* 12  YVU 4:2:0     */
233 #define V4L2_PIX_FMT_YUYV    v4l2_fourcc('Y','U','Y','V') /* 16  YUV 4:2:2     */
234 #define V4L2_PIX_FMT_UYVY    v4l2_fourcc('U','Y','V','Y') /* 16  YUV 4:2:2     */
235 #define V4L2_PIX_FMT_YUV422P v4l2_fourcc('4','2','2','P') /* 16  YVU422 planar */
236 #define V4L2_PIX_FMT_YUV411P v4l2_fourcc('4','1','1','P') /* 16  YVU411 planar */
237 #define V4L2_PIX_FMT_Y41P    v4l2_fourcc('Y','4','1','P') /* 12  YUV 4:1:1     */
238
239 /* two planes -- one Y, one Cr + Cb interleaved  */
240 #define V4L2_PIX_FMT_NV12    v4l2_fourcc('N','V','1','2') /* 12  Y/CbCr 4:2:0  */
241 #define V4L2_PIX_FMT_NV21    v4l2_fourcc('N','V','2','1') /* 12  Y/CrCb 4:2:0  */
242
243 /*  The following formats are not defined in the V4L2 specification */
244 #define V4L2_PIX_FMT_YUV410  v4l2_fourcc('Y','U','V','9') /*  9  YUV 4:1:0     */
245 #define V4L2_PIX_FMT_YUV420  v4l2_fourcc('Y','U','1','2') /* 12  YUV 4:2:0     */
246 #define V4L2_PIX_FMT_YYUV    v4l2_fourcc('Y','Y','U','V') /* 16  YUV 4:2:2     */
247 #define V4L2_PIX_FMT_HI240   v4l2_fourcc('H','I','2','4') /*  8  8-bit color   */
248
249 /* see http://www.siliconimaging.com/RGB%20Bayer.htm */
250 #define V4L2_PIX_FMT_SBGGR8  v4l2_fourcc('B','A','8','1') /*  8  BGBG.. GRGR.. */
251
252 /* compressed formats */
253 #define V4L2_PIX_FMT_MJPEG    v4l2_fourcc('M','J','P','G') /* Motion-JPEG   */
254 #define V4L2_PIX_FMT_JPEG     v4l2_fourcc('J','P','E','G') /* JFIF JPEG     */
255 #define V4L2_PIX_FMT_DV       v4l2_fourcc('d','v','s','d') /* 1394          */
256 #define V4L2_PIX_FMT_MPEG     v4l2_fourcc('M','P','E','G') /* MPEG-1/2/4    */
257
258 /*  Vendor-specific formats   */
259 #define V4L2_PIX_FMT_WNVA     v4l2_fourcc('W','N','V','A') /* Winnov hw compress */
260 #define V4L2_PIX_FMT_SN9C10X  v4l2_fourcc('S','9','1','0') /* SN9C10x compression */
261 #define V4L2_PIX_FMT_PWC1     v4l2_fourcc('P','W','C','1') /* pwc older webcam */
262 #define V4L2_PIX_FMT_PWC2     v4l2_fourcc('P','W','C','2') /* pwc newer webcam */
263 #define V4L2_PIX_FMT_ET61X251 v4l2_fourcc('E','6','2','5') /* ET61X251 compression */
264
265 /*
266  *      F O R M A T   E N U M E R A T I O N
267  */
268 struct v4l2_fmtdesc
269 {
270         __u32               index;             /* Format number      */
271         enum v4l2_buf_type  type;              /* buffer type        */
272         __u32               flags;
273         __u8                description[32];   /* Description string */
274         __u32               pixelformat;       /* Format fourcc      */
275         __u32               reserved[4];
276 };
277
278 #define V4L2_FMT_FLAG_COMPRESSED 0x0001
279
280 /*
281  *      T I M E C O D E
282  */
283 struct v4l2_timecode
284 {
285         __u32   type;
286         __u32   flags;
287         __u8    frames;
288         __u8    seconds;
289         __u8    minutes;
290         __u8    hours;
291         __u8    userbits[4];
292 };
293
294 /*  Type  */
295 #define V4L2_TC_TYPE_24FPS              1
296 #define V4L2_TC_TYPE_25FPS              2
297 #define V4L2_TC_TYPE_30FPS              3
298 #define V4L2_TC_TYPE_50FPS              4
299 #define V4L2_TC_TYPE_60FPS              5
300
301 /*  Flags  */
302 #define V4L2_TC_FLAG_DROPFRAME          0x0001 /* "drop-frame" mode */
303 #define V4L2_TC_FLAG_COLORFRAME         0x0002
304 #define V4L2_TC_USERBITS_field          0x000C
305 #define V4L2_TC_USERBITS_USERDEFINED    0x0000
306 #define V4L2_TC_USERBITS_8BITCHARS      0x0008
307 /* The above is based on SMPTE timecodes */
308
309 /*
310  *      M P E G   C O M P R E S S I O N   P A R A M E T E R S
311  *
312  *  ### WARNING: this is still work-in-progress right now, most likely
313  *  ###          there will be some incompatible changes.
314  *
315  */
316 enum v4l2_bitrate_mode {
317         V4L2_BITRATE_NONE = 0,  /* not specified */
318         V4L2_BITRATE_CBR,       /* constant bitrate */
319         V4L2_BITRATE_VBR,       /* variable bitrate */
320 };
321 struct v4l2_bitrate {
322         /* rates are specified in kbit/sec */
323         enum v4l2_bitrate_mode  mode;
324         __u32                   min;
325         __u32                   target;  /* use this one for CBR */
326         __u32                   max;
327 };
328
329 enum v4l2_mpeg_streamtype {
330         V4L2_MPEG_SS_1,         /* MPEG-1 system stream */
331         V4L2_MPEG_PS_2,         /* MPEG-2 program stream */
332         V4L2_MPEG_TS_2,         /* MPEG-2 transport stream */
333         V4L2_MPEG_PS_DVD,       /* MPEG-2 program stream with DVD header fixups */
334 };
335 enum v4l2_mpeg_audiotype {
336         V4L2_MPEG_AU_2_I,       /* MPEG-2 layer 1 */
337         V4L2_MPEG_AU_2_II,      /* MPEG-2 layer 2 */
338         V4L2_MPEG_AU_2_III,     /* MPEG-2 layer 3 */
339         V4L2_MPEG_AC3,          /* AC3 */
340         V4L2_MPEG_LPCM,         /* LPCM */
341 };
342 enum v4l2_mpeg_videotype {
343         V4L2_MPEG_VI_1,         /* MPEG-1 */
344         V4L2_MPEG_VI_2,         /* MPEG-2 */
345 };
346 enum v4l2_mpeg_aspectratio {
347         V4L2_MPEG_ASPECT_SQUARE = 1,   /* square pixel */
348         V4L2_MPEG_ASPECT_4_3    = 2,   /*  4 : 3       */
349         V4L2_MPEG_ASPECT_16_9   = 3,   /* 16 : 9       */
350         V4L2_MPEG_ASPECT_1_221  = 4,   /*  1 : 2,21    */
351 };
352
353 struct v4l2_mpeg_compression {
354         /* general */
355         enum v4l2_mpeg_streamtype       st_type;
356         struct v4l2_bitrate             st_bitrate;
357
358         /* transport streams */
359         __u16                           ts_pid_pmt;
360         __u16                           ts_pid_audio;
361         __u16                           ts_pid_video;
362         __u16                           ts_pid_pcr;
363
364         /* program stream */
365         __u16                           ps_size;
366         __u16                           reserved_1;    /* align */
367
368         /* audio */
369         enum v4l2_mpeg_audiotype        au_type;
370         struct v4l2_bitrate             au_bitrate;
371         __u32                           au_sample_rate;
372         __u8                            au_pesid;
373         __u8                            reserved_2[3]; /* align */
374
375         /* video */
376         enum v4l2_mpeg_videotype        vi_type;
377         enum v4l2_mpeg_aspectratio      vi_aspect_ratio;
378         struct v4l2_bitrate             vi_bitrate;
379         __u32                           vi_frame_rate;
380         __u16                           vi_frames_per_gop;
381         __u16                           vi_bframes_count;
382         __u8                            vi_pesid;
383         __u8                            reserved_3[3]; /* align */
384
385         /* misc flags */
386         __u32                           closed_gops:1;
387         __u32                           pulldown:1;
388         __u32                           reserved_4:30; /* align */
389
390         /* I don't expect the above being perfect yet ;) */
391         __u32                           reserved_5[8];
392 };
393
394 struct v4l2_jpegcompression
395 {
396         int quality;
397
398         int  APPn;              /* Number of APP segment to be written,
399                                  * must be 0..15 */
400         int  APP_len;           /* Length of data in JPEG APPn segment */
401         char APP_data[60];      /* Data in the JPEG APPn segment. */
402
403         int  COM_len;           /* Length of data in JPEG COM segment */
404         char COM_data[60];      /* Data in JPEG COM segment */
405
406         __u32 jpeg_markers;     /* Which markers should go into the JPEG
407                                  * output. Unless you exactly know what
408                                  * you do, leave them untouched.
409                                  * Inluding less markers will make the
410                                  * resulting code smaller, but there will
411                                  * be fewer aplications which can read it.
412                                  * The presence of the APP and COM marker
413                                  * is influenced by APP_len and COM_len
414                                  * ONLY, not by this property! */
415
416 #define V4L2_JPEG_MARKER_DHT (1<<3)    /* Define Huffman Tables */
417 #define V4L2_JPEG_MARKER_DQT (1<<4)    /* Define Quantization Tables */
418 #define V4L2_JPEG_MARKER_DRI (1<<5)    /* Define Restart Interval */
419 #define V4L2_JPEG_MARKER_COM (1<<6)    /* Comment segment */
420 #define V4L2_JPEG_MARKER_APP (1<<7)    /* App segment, driver will
421                                         * allways use APP0 */
422 };
423
424 /*
425  *      M E M O R Y - M A P P I N G   B U F F E R S
426  */
427 struct v4l2_requestbuffers
428 {
429         __u32                   count;
430         enum v4l2_buf_type      type;
431         enum v4l2_memory        memory;
432         __u32                   reserved[2];
433 };
434
435 struct v4l2_buffer
436 {
437         __u32                   index;
438         enum v4l2_buf_type      type;
439         __u32                   bytesused;
440         __u32                   flags;
441         enum v4l2_field         field;
442         struct timeval          timestamp;
443         struct v4l2_timecode    timecode;
444         __u32                   sequence;
445
446         /* memory location */
447         enum v4l2_memory        memory;
448         union {
449                 __u32           offset;
450                 unsigned long   userptr;
451         } m;
452         __u32                   length;
453         __u32                   input;
454         __u32                   reserved;
455 };
456
457 /*  Flags for 'flags' field */
458 #define V4L2_BUF_FLAG_MAPPED    0x0001  /* Buffer is mapped (flag) */
459 #define V4L2_BUF_FLAG_QUEUED    0x0002  /* Buffer is queued for processing */
460 #define V4L2_BUF_FLAG_DONE      0x0004  /* Buffer is ready */
461 #define V4L2_BUF_FLAG_KEYFRAME  0x0008  /* Image is a keyframe (I-frame) */
462 #define V4L2_BUF_FLAG_PFRAME    0x0010  /* Image is a P-frame */
463 #define V4L2_BUF_FLAG_BFRAME    0x0020  /* Image is a B-frame */
464 #define V4L2_BUF_FLAG_TIMECODE  0x0100  /* timecode field is valid */
465 #define V4L2_BUF_FLAG_INPUT     0x0200  /* input field is valid */
466
467 /*
468  *      O V E R L A Y   P R E V I E W
469  */
470 struct v4l2_framebuffer
471 {
472         __u32                   capability;
473         __u32                   flags;
474 /* FIXME: in theory we should pass something like PCI device + memory
475  * region + offset instead of some physical address */
476         void*                   base;
477         struct v4l2_pix_format  fmt;
478 };
479 /*  Flags for the 'capability' field. Read only */
480 #define V4L2_FBUF_CAP_EXTERNOVERLAY     0x0001
481 #define V4L2_FBUF_CAP_CHROMAKEY         0x0002
482 #define V4L2_FBUF_CAP_LIST_CLIPPING     0x0004
483 #define V4L2_FBUF_CAP_BITMAP_CLIPPING   0x0008
484 /*  Flags for the 'flags' field. */
485 #define V4L2_FBUF_FLAG_PRIMARY          0x0001
486 #define V4L2_FBUF_FLAG_OVERLAY          0x0002
487 #define V4L2_FBUF_FLAG_CHROMAKEY        0x0004
488
489 struct v4l2_clip
490 {
491         struct v4l2_rect        c;
492         struct v4l2_clip        __user *next;
493 };
494
495 struct v4l2_window
496 {
497         struct v4l2_rect        w;
498         enum v4l2_field         field;
499         __u32                   chromakey;
500         struct v4l2_clip        __user *clips;
501         __u32                   clipcount;
502         void                    __user *bitmap;
503 };
504
505 /*
506  *      C A P T U R E   P A R A M E T E R S
507  */
508 struct v4l2_captureparm
509 {
510         __u32              capability;    /*  Supported modes */
511         __u32              capturemode;   /*  Current mode */
512         struct v4l2_fract  timeperframe;  /*  Time per frame in .1us units */
513         __u32              extendedmode;  /*  Driver-specific extensions */
514         __u32              readbuffers;   /*  # of buffers for read */
515         __u32              reserved[4];
516 };
517
518 /*  Flags for 'capability' and 'capturemode' fields */
519 #define V4L2_MODE_HIGHQUALITY   0x0001  /*  High quality imaging mode */
520 #define V4L2_CAP_TIMEPERFRAME   0x1000  /*  timeperframe field is supported */
521
522 struct v4l2_outputparm
523 {
524         __u32              capability;   /*  Supported modes */
525         __u32              outputmode;   /*  Current mode */
526         struct v4l2_fract  timeperframe; /*  Time per frame in seconds */
527         __u32              extendedmode; /*  Driver-specific extensions */
528         __u32              writebuffers; /*  # of buffers for write */
529         __u32              reserved[4];
530 };
531
532 /*
533  *      I N P U T   I M A G E   C R O P P I N G
534  */
535 struct v4l2_cropcap {
536         enum v4l2_buf_type      type;
537         struct v4l2_rect        bounds;
538         struct v4l2_rect        defrect;
539         struct v4l2_fract       pixelaspect;
540 };
541
542 struct v4l2_crop {
543         enum v4l2_buf_type      type;
544         struct v4l2_rect        c;
545 };
546
547 /*
548  *      A N A L O G   V I D E O   S T A N D A R D
549  */
550
551 typedef __u64 v4l2_std_id;
552
553 /* one bit for each */
554 #define V4L2_STD_PAL_B          ((v4l2_std_id)0x00000001)
555 #define V4L2_STD_PAL_B1         ((v4l2_std_id)0x00000002)
556 #define V4L2_STD_PAL_G          ((v4l2_std_id)0x00000004)
557 #define V4L2_STD_PAL_H          ((v4l2_std_id)0x00000008)
558 #define V4L2_STD_PAL_I          ((v4l2_std_id)0x00000010)
559 #define V4L2_STD_PAL_D          ((v4l2_std_id)0x00000020)
560 #define V4L2_STD_PAL_D1         ((v4l2_std_id)0x00000040)
561 #define V4L2_STD_PAL_K          ((v4l2_std_id)0x00000080)
562
563 #define V4L2_STD_PAL_M          ((v4l2_std_id)0x00000100)
564 #define V4L2_STD_PAL_N          ((v4l2_std_id)0x00000200)
565 #define V4L2_STD_PAL_Nc         ((v4l2_std_id)0x00000400)
566 #define V4L2_STD_PAL_60         ((v4l2_std_id)0x00000800)
567
568 #define V4L2_STD_NTSC_M         ((v4l2_std_id)0x00001000)
569 #define V4L2_STD_NTSC_M_JP      ((v4l2_std_id)0x00002000)
570 #define V4L2_STD_NTSC_443       ((v4l2_std_id)0x00004000)
571 #define V4L2_STD_NTSC_M_KR      ((v4l2_std_id)0x00008000)
572
573 #define V4L2_STD_SECAM_B        ((v4l2_std_id)0x00010000)
574 #define V4L2_STD_SECAM_D        ((v4l2_std_id)0x00020000)
575 #define V4L2_STD_SECAM_G        ((v4l2_std_id)0x00040000)
576 #define V4L2_STD_SECAM_H        ((v4l2_std_id)0x00080000)
577 #define V4L2_STD_SECAM_K        ((v4l2_std_id)0x00100000)
578 #define V4L2_STD_SECAM_K1       ((v4l2_std_id)0x00200000)
579 #define V4L2_STD_SECAM_L        ((v4l2_std_id)0x00400000)
580 #define V4L2_STD_SECAM_LC       ((v4l2_std_id)0x00800000)
581
582 /* ATSC/HDTV */
583 #define V4L2_STD_ATSC_8_VSB     ((v4l2_std_id)0x01000000)
584 #define V4L2_STD_ATSC_16_VSB    ((v4l2_std_id)0x02000000)
585
586 /* some merged standards */
587 #define V4L2_STD_MN     (V4L2_STD_PAL_M|V4L2_STD_PAL_N|V4L2_STD_PAL_Nc|V4L2_STD_NTSC)
588 #define V4L2_STD_B      (V4L2_STD_PAL_B|V4L2_STD_PAL_B1|V4L2_STD_SECAM_B)
589 #define V4L2_STD_GH     (V4L2_STD_PAL_G|V4L2_STD_PAL_H|V4L2_STD_SECAM_G|V4L2_STD_SECAM_H)
590 #define V4L2_STD_DK     (V4L2_STD_PAL_DK|V4L2_STD_SECAM_DK)
591
592 /* some common needed stuff */
593 #define V4L2_STD_PAL_BG         (V4L2_STD_PAL_B         |\
594                                  V4L2_STD_PAL_B1        |\
595                                  V4L2_STD_PAL_G)
596 #define V4L2_STD_PAL_DK         (V4L2_STD_PAL_D         |\
597                                  V4L2_STD_PAL_D1        |\
598                                  V4L2_STD_PAL_K)
599 #define V4L2_STD_PAL            (V4L2_STD_PAL_BG        |\
600                                  V4L2_STD_PAL_DK        |\
601                                  V4L2_STD_PAL_H         |\
602                                  V4L2_STD_PAL_I)
603 #define V4L2_STD_NTSC           (V4L2_STD_NTSC_M        |\
604                                  V4L2_STD_NTSC_M_JP     |\
605                                  V4L2_STD_NTSC_M_KR)
606 #define V4L2_STD_SECAM_DK       (V4L2_STD_SECAM_D       |\
607                                  V4L2_STD_SECAM_K       |\
608                                  V4L2_STD_SECAM_K1)
609 #define V4L2_STD_SECAM          (V4L2_STD_SECAM_B       |\
610                                  V4L2_STD_SECAM_G       |\
611                                  V4L2_STD_SECAM_H       |\
612                                  V4L2_STD_SECAM_DK      |\
613                                  V4L2_STD_SECAM_L       |\
614                                  V4L2_STD_SECAM_LC)
615
616 #define V4L2_STD_525_60         (V4L2_STD_PAL_M         |\
617                                  V4L2_STD_PAL_60        |\
618                                  V4L2_STD_NTSC          |\
619                                  V4L2_STD_NTSC_443)
620 #define V4L2_STD_625_50         (V4L2_STD_PAL           |\
621                                  V4L2_STD_PAL_N         |\
622                                  V4L2_STD_PAL_Nc        |\
623                                  V4L2_STD_SECAM)
624 #define V4L2_STD_ATSC           (V4L2_STD_ATSC_8_VSB    |\
625                                  V4L2_STD_ATSC_16_VSB)
626
627 #define V4L2_STD_UNKNOWN        0
628 #define V4L2_STD_ALL            (V4L2_STD_525_60        |\
629                                  V4L2_STD_625_50)
630
631 struct v4l2_standard
632 {
633         __u32                index;
634         v4l2_std_id          id;
635         __u8                 name[24];
636         struct v4l2_fract    frameperiod; /* Frames, not fields */
637         __u32                framelines;
638         __u32                reserved[4];
639 };
640
641 /*
642  *      V I D E O   I N P U T S
643  */
644 struct v4l2_input
645 {
646         __u32        index;             /*  Which input */
647         __u8         name[32];          /*  Label */
648         __u32        type;              /*  Type of input */
649         __u32        audioset;          /*  Associated audios (bitfield) */
650         __u32        tuner;             /*  Associated tuner */
651         v4l2_std_id  std;
652         __u32        status;
653         __u32        reserved[4];
654 };
655
656 /*  Values for the 'type' field */
657 #define V4L2_INPUT_TYPE_TUNER           1
658 #define V4L2_INPUT_TYPE_CAMERA          2
659
660 /* field 'status' - general */
661 #define V4L2_IN_ST_NO_POWER    0x00000001  /* Attached device is off */
662 #define V4L2_IN_ST_NO_SIGNAL   0x00000002
663 #define V4L2_IN_ST_NO_COLOR    0x00000004
664
665 /* field 'status' - analog */
666 #define V4L2_IN_ST_NO_H_LOCK   0x00000100  /* No horizontal sync lock */
667 #define V4L2_IN_ST_COLOR_KILL  0x00000200  /* Color killer is active */
668
669 /* field 'status' - digital */
670 #define V4L2_IN_ST_NO_SYNC     0x00010000  /* No synchronization lock */
671 #define V4L2_IN_ST_NO_EQU      0x00020000  /* No equalizer lock */
672 #define V4L2_IN_ST_NO_CARRIER  0x00040000  /* Carrier recovery failed */
673
674 /* field 'status' - VCR and set-top box */
675 #define V4L2_IN_ST_MACROVISION 0x01000000  /* Macrovision detected */
676 #define V4L2_IN_ST_NO_ACCESS   0x02000000  /* Conditional access denied */
677 #define V4L2_IN_ST_VTR         0x04000000  /* VTR time constant */
678
679 /*
680  *      V I D E O   O U T P U T S
681  */
682 struct v4l2_output
683 {
684         __u32        index;             /*  Which output */
685         __u8         name[32];          /*  Label */
686         __u32        type;              /*  Type of output */
687         __u32        audioset;          /*  Associated audios (bitfield) */
688         __u32        modulator;         /*  Associated modulator */
689         v4l2_std_id  std;
690         __u32        reserved[4];
691 };
692 /*  Values for the 'type' field */
693 #define V4L2_OUTPUT_TYPE_MODULATOR              1
694 #define V4L2_OUTPUT_TYPE_ANALOG                 2
695 #define V4L2_OUTPUT_TYPE_ANALOGVGAOVERLAY       3
696
697 /*
698  *      C O N T R O L S
699  */
700 struct v4l2_control
701 {
702         __u32                id;
703         __s32                value;
704 };
705
706 struct v4l2_ext_control
707 {
708         __u32 id;
709         __u32 reserved2[2];
710         union {
711                 __s32 value;
712                 __s64 value64;
713                 void *reserved;
714         };
715 };
716
717 struct v4l2_ext_controls
718 {
719         __u32 ctrl_class;
720         __u32 count;
721         __u32 error_idx;
722         __u32 reserved[2];
723         struct v4l2_ext_control *controls;
724 };
725
726 /*  Values for ctrl_class field */
727 #define V4L2_CTRL_CLASS_USER 0x00980000 /* Old-style 'user' controls */
728 #define V4L2_CTRL_CLASS_MPEG 0x00990000 /* MPEG-compression controls */
729
730 #define V4L2_CTRL_ID_MASK         (0x0fffffff)
731 #define V4L2_CTRL_ID2CLASS(id)    ((id) & 0x0fff0000UL)
732 #define V4L2_CTRL_DRIVER_PRIV(id) (((id) & 0xffff) >= 0x1000)
733
734 /*  Used in the VIDIOC_QUERYCTRL ioctl for querying controls */
735 struct v4l2_queryctrl
736 {
737         __u32                id;
738         enum v4l2_ctrl_type  type;
739         __u8                 name[32];  /* Whatever */
740         __s32                minimum;   /* Note signedness */
741         __s32                maximum;
742         __s32                step;
743         __s32                default_value;
744         __u32                flags;
745         __u32                reserved[2];
746 };
747
748 /*  Used in the VIDIOC_QUERYMENU ioctl for querying menu items */
749 struct v4l2_querymenu
750 {
751         __u32           id;
752         __u32           index;
753         __u8            name[32];       /* Whatever */
754         __u32           reserved;
755 };
756
757 /*  Control flags  */
758 #define V4L2_CTRL_FLAG_DISABLED         0x0001
759 #define V4L2_CTRL_FLAG_GRABBED          0x0002
760 #define V4L2_CTRL_FLAG_READ_ONLY        0x0004
761 #define V4L2_CTRL_FLAG_UPDATE           0x0008
762 #define V4L2_CTRL_FLAG_INACTIVE         0x0010
763 #define V4L2_CTRL_FLAG_SLIDER           0x0020
764
765 /*  Query flag, to be ORed with the control ID */
766 #define V4L2_CTRL_FLAG_NEXT_CTRL        0x80000000
767
768 /*  User-class control IDs defined by V4L2 */
769 #define V4L2_CID_BASE                   (V4L2_CTRL_CLASS_USER | 0x900)
770 #define V4L2_CID_USER_BASE              V4L2_CID_BASE
771 /*  IDs reserved for driver specific controls */
772 #define V4L2_CID_PRIVATE_BASE           0x08000000
773
774 #define V4L2_CID_USER_CLASS             (V4L2_CTRL_CLASS_USER | 1)
775 #define V4L2_CID_BRIGHTNESS             (V4L2_CID_BASE+0)
776 #define V4L2_CID_CONTRAST               (V4L2_CID_BASE+1)
777 #define V4L2_CID_SATURATION             (V4L2_CID_BASE+2)
778 #define V4L2_CID_HUE                    (V4L2_CID_BASE+3)
779 #define V4L2_CID_AUDIO_VOLUME           (V4L2_CID_BASE+5)
780 #define V4L2_CID_AUDIO_BALANCE          (V4L2_CID_BASE+6)
781 #define V4L2_CID_AUDIO_BASS             (V4L2_CID_BASE+7)
782 #define V4L2_CID_AUDIO_TREBLE           (V4L2_CID_BASE+8)
783 #define V4L2_CID_AUDIO_MUTE             (V4L2_CID_BASE+9)
784 #define V4L2_CID_AUDIO_LOUDNESS         (V4L2_CID_BASE+10)
785 #define V4L2_CID_BLACK_LEVEL            (V4L2_CID_BASE+11)
786 #define V4L2_CID_AUTO_WHITE_BALANCE     (V4L2_CID_BASE+12)
787 #define V4L2_CID_DO_WHITE_BALANCE       (V4L2_CID_BASE+13)
788 #define V4L2_CID_RED_BALANCE            (V4L2_CID_BASE+14)
789 #define V4L2_CID_BLUE_BALANCE           (V4L2_CID_BASE+15)
790 #define V4L2_CID_GAMMA                  (V4L2_CID_BASE+16)
791 #define V4L2_CID_WHITENESS              (V4L2_CID_GAMMA) /* ? Not sure */
792 #define V4L2_CID_EXPOSURE               (V4L2_CID_BASE+17)
793 #define V4L2_CID_AUTOGAIN               (V4L2_CID_BASE+18)
794 #define V4L2_CID_GAIN                   (V4L2_CID_BASE+19)
795 #define V4L2_CID_HFLIP                  (V4L2_CID_BASE+20)
796 #define V4L2_CID_VFLIP                  (V4L2_CID_BASE+21)
797 #define V4L2_CID_HCENTER                (V4L2_CID_BASE+22)
798 #define V4L2_CID_VCENTER                (V4L2_CID_BASE+23)
799 #define V4L2_CID_LASTP1                 (V4L2_CID_BASE+24) /* last CID + 1 */
800
801 /*  MPEG-class control IDs defined by V4L2 */
802 #define V4L2_CID_MPEG_BASE                      (V4L2_CTRL_CLASS_MPEG | 0x900)
803 #define V4L2_CID_MPEG_CLASS                     (V4L2_CTRL_CLASS_MPEG | 1)
804
805 /*  MPEG streams */
806 #define V4L2_CID_MPEG_STREAM_TYPE               (V4L2_CID_MPEG_BASE+0)
807 enum v4l2_mpeg_stream_type {
808         V4L2_MPEG_STREAM_TYPE_MPEG2_PS,   /* MPEG-2 program stream */
809         V4L2_MPEG_STREAM_TYPE_MPEG2_TS,   /* MPEG-2 transport stream */
810         V4L2_MPEG_STREAM_TYPE_MPEG1_SS,   /* MPEG-1 system stream */
811         V4L2_MPEG_STREAM_TYPE_MPEG2_DVD,  /* MPEG-2 DVD-compatible stream */
812         V4L2_MPEG_STREAM_TYPE_MPEG1_VCD,  /* MPEG-1 VCD-compatible stream */
813         V4L2_MPEG_STREAM_TYPE_MPEG2_SVCD, /* MPEG-2 SVCD-compatible stream */
814 };
815 #define V4L2_CID_MPEG_STREAM_PID_PMT            (V4L2_CID_MPEG_BASE+1)
816 #define V4L2_CID_MPEG_STREAM_PID_AUDIO          (V4L2_CID_MPEG_BASE+2)
817 #define V4L2_CID_MPEG_STREAM_PID_VIDEO          (V4L2_CID_MPEG_BASE+3)
818 #define V4L2_CID_MPEG_STREAM_PID_PCR            (V4L2_CID_MPEG_BASE+4)
819 #define V4L2_CID_MPEG_STREAM_PES_ID_AUDIO       (V4L2_CID_MPEG_BASE+5)
820 #define V4L2_CID_MPEG_STREAM_PES_ID_VIDEO       (V4L2_CID_MPEG_BASE+6)
821
822 /*  MPEG audio */
823 #define V4L2_CID_MPEG_AUDIO_SAMPLING_FREQ       (V4L2_CID_MPEG_BASE+100)
824 enum v4l2_mpeg_audio_sampling_freq {
825         V4L2_MPEG_AUDIO_SAMPLING_FREQ_44100,
826         V4L2_MPEG_AUDIO_SAMPLING_FREQ_48000,
827         V4L2_MPEG_AUDIO_SAMPLING_FREQ_32000,
828 };
829 #define V4L2_CID_MPEG_AUDIO_ENCODING            (V4L2_CID_MPEG_BASE+101)
830 enum v4l2_mpeg_audio_encoding {
831         V4L2_MPEG_AUDIO_ENCODING_LAYER_1,
832         V4L2_MPEG_AUDIO_ENCODING_LAYER_2,
833         V4L2_MPEG_AUDIO_ENCODING_LAYER_3,
834 };
835 #define V4L2_CID_MPEG_AUDIO_L1_BITRATE          (V4L2_CID_MPEG_BASE+102)
836 enum v4l2_mpeg_audio_l1_bitrate {
837         V4L2_MPEG_AUDIO_L1_BITRATE_32K,
838         V4L2_MPEG_AUDIO_L1_BITRATE_64K,
839         V4L2_MPEG_AUDIO_L1_BITRATE_96K,
840         V4L2_MPEG_AUDIO_L1_BITRATE_128K,
841         V4L2_MPEG_AUDIO_L1_BITRATE_160K,
842         V4L2_MPEG_AUDIO_L1_BITRATE_192K,
843         V4L2_MPEG_AUDIO_L1_BITRATE_224K,
844         V4L2_MPEG_AUDIO_L1_BITRATE_256K,
845         V4L2_MPEG_AUDIO_L1_BITRATE_288K,
846         V4L2_MPEG_AUDIO_L1_BITRATE_320K,
847         V4L2_MPEG_AUDIO_L1_BITRATE_352K,
848         V4L2_MPEG_AUDIO_L1_BITRATE_384K,
849         V4L2_MPEG_AUDIO_L1_BITRATE_416K,
850         V4L2_MPEG_AUDIO_L1_BITRATE_448K,
851 };
852 #define V4L2_CID_MPEG_AUDIO_L2_BITRATE          (V4L2_CID_MPEG_BASE+103)
853 enum v4l2_mpeg_audio_l2_bitrate {
854         V4L2_MPEG_AUDIO_L2_BITRATE_32K,
855         V4L2_MPEG_AUDIO_L2_BITRATE_48K,
856         V4L2_MPEG_AUDIO_L2_BITRATE_56K,
857         V4L2_MPEG_AUDIO_L2_BITRATE_64K,
858         V4L2_MPEG_AUDIO_L2_BITRATE_80K,
859         V4L2_MPEG_AUDIO_L2_BITRATE_96K,
860         V4L2_MPEG_AUDIO_L2_BITRATE_112K,
861         V4L2_MPEG_AUDIO_L2_BITRATE_128K,
862         V4L2_MPEG_AUDIO_L2_BITRATE_160K,
863         V4L2_MPEG_AUDIO_L2_BITRATE_192K,
864         V4L2_MPEG_AUDIO_L2_BITRATE_224K,
865         V4L2_MPEG_AUDIO_L2_BITRATE_256K,
866         V4L2_MPEG_AUDIO_L2_BITRATE_320K,
867         V4L2_MPEG_AUDIO_L2_BITRATE_384K,
868 };
869 #define V4L2_CID_MPEG_AUDIO_L3_BITRATE          (V4L2_CID_MPEG_BASE+104)
870 enum v4l2_mpeg_audio_l3_bitrate {
871         V4L2_MPEG_AUDIO_L3_BITRATE_32K,
872         V4L2_MPEG_AUDIO_L3_BITRATE_40K,
873         V4L2_MPEG_AUDIO_L3_BITRATE_48K,
874         V4L2_MPEG_AUDIO_L3_BITRATE_56K,
875         V4L2_MPEG_AUDIO_L3_BITRATE_64K,
876         V4L2_MPEG_AUDIO_L3_BITRATE_80K,
877         V4L2_MPEG_AUDIO_L3_BITRATE_96K,
878         V4L2_MPEG_AUDIO_L3_BITRATE_112K,
879         V4L2_MPEG_AUDIO_L3_BITRATE_128K,
880         V4L2_MPEG_AUDIO_L3_BITRATE_160K,
881         V4L2_MPEG_AUDIO_L3_BITRATE_192K,
882         V4L2_MPEG_AUDIO_L3_BITRATE_224K,
883         V4L2_MPEG_AUDIO_L3_BITRATE_256K,
884         V4L2_MPEG_AUDIO_L3_BITRATE_320K,
885 };
886 #define V4L2_CID_MPEG_AUDIO_MODE                (V4L2_CID_MPEG_BASE+105)
887 enum v4l2_mpeg_audio_mode {
888         V4L2_MPEG_AUDIO_MODE_STEREO,
889         V4L2_MPEG_AUDIO_MODE_JOINT_STEREO,
890         V4L2_MPEG_AUDIO_MODE_DUAL,
891         V4L2_MPEG_AUDIO_MODE_MONO,
892 };
893 #define V4L2_CID_MPEG_AUDIO_MODE_EXTENSION      (V4L2_CID_MPEG_BASE+106)
894 enum v4l2_mpeg_audio_mode_extension {
895         V4L2_MPEG_AUDIO_MODE_EXTENSION_BOUND_4,
896         V4L2_MPEG_AUDIO_MODE_EXTENSION_BOUND_8,
897         V4L2_MPEG_AUDIO_MODE_EXTENSION_BOUND_12,
898         V4L2_MPEG_AUDIO_MODE_EXTENSION_BOUND_16,
899 };
900 #define V4L2_CID_MPEG_AUDIO_EMPHASIS            (V4L2_CID_MPEG_BASE+107)
901 enum v4l2_mpeg_audio_emphasis {
902         V4L2_MPEG_AUDIO_EMPHASIS_NONE,
903         V4L2_MPEG_AUDIO_EMPHASIS_50_DIV_15_uS,
904         V4L2_MPEG_AUDIO_EMPHASIS_CCITT_J17,
905 };
906 #define V4L2_CID_MPEG_AUDIO_CRC                 (V4L2_CID_MPEG_BASE+108)
907 enum v4l2_mpeg_audio_crc {
908         V4L2_MPEG_AUDIO_CRC_NONE,
909         V4L2_MPEG_AUDIO_CRC_CRC16,
910 };
911
912 /*  MPEG video */
913 #define V4L2_CID_MPEG_VIDEO_ENCODING            (V4L2_CID_MPEG_BASE+200)
914 enum v4l2_mpeg_video_encoding {
915         V4L2_MPEG_VIDEO_ENCODING_MPEG_1,
916         V4L2_MPEG_VIDEO_ENCODING_MPEG_2,
917 };
918 #define V4L2_CID_MPEG_VIDEO_ASPECT              (V4L2_CID_MPEG_BASE+201)
919 enum v4l2_mpeg_video_aspect {
920         V4L2_MPEG_VIDEO_ASPECT_1x1,
921         V4L2_MPEG_VIDEO_ASPECT_4x3,
922         V4L2_MPEG_VIDEO_ASPECT_16x9,
923         V4L2_MPEG_VIDEO_ASPECT_221x100,
924 };
925 #define V4L2_CID_MPEG_VIDEO_B_FRAMES            (V4L2_CID_MPEG_BASE+202)
926 #define V4L2_CID_MPEG_VIDEO_GOP_SIZE            (V4L2_CID_MPEG_BASE+203)
927 #define V4L2_CID_MPEG_VIDEO_GOP_CLOSURE         (V4L2_CID_MPEG_BASE+204)
928 #define V4L2_CID_MPEG_VIDEO_PULLDOWN            (V4L2_CID_MPEG_BASE+205)
929 #define V4L2_CID_MPEG_VIDEO_BITRATE_MODE        (V4L2_CID_MPEG_BASE+206)
930 enum v4l2_mpeg_video_bitrate_mode {
931         V4L2_MPEG_VIDEO_BITRATE_MODE_VBR,
932         V4L2_MPEG_VIDEO_BITRATE_MODE_CBR,
933 };
934 #define V4L2_CID_MPEG_VIDEO_BITRATE             (V4L2_CID_MPEG_BASE+207)
935 #define V4L2_CID_MPEG_VIDEO_BITRATE_PEAK        (V4L2_CID_MPEG_BASE+208)
936 #define V4L2_CID_MPEG_VIDEO_TEMPORAL_DECIMATION (V4L2_CID_MPEG_BASE+209)
937
938 /*  MPEG-class control IDs specific to the CX2584x driver as defined by V4L2 */
939 #define V4L2_CID_MPEG_CX2341X_BASE                              (V4L2_CTRL_CLASS_MPEG | 0x1000)
940 #define V4L2_CID_MPEG_CX2341X_VIDEO_SPATIAL_FILTER_MODE         (V4L2_CID_MPEG_CX2341X_BASE+0)
941 enum v4l2_mpeg_cx2341x_video_spatial_filter_mode {
942         V4L2_MPEG_CX2341X_VIDEO_SPATIAL_FILTER_MODE_MANUAL,
943         V4L2_MPEG_CX2341X_VIDEO_SPATIAL_FILTER_MODE_AUTO,
944 };
945 #define V4L2_CID_MPEG_CX2341X_VIDEO_SPATIAL_FILTER              (V4L2_CID_MPEG_CX2341X_BASE+1)
946 #define V4L2_CID_MPEG_CX2341X_VIDEO_LUMA_SPATIAL_FILTER_TYPE    (V4L2_CID_MPEG_CX2341X_BASE+2)
947 enum v4l2_mpeg_cx2341x_video_luma_spatial_filter_type {
948         V4L2_MPEG_CX2341X_VIDEO_LUMA_SPATIAL_FILTER_TYPE_OFF,
949         V4L2_MPEG_CX2341X_VIDEO_LUMA_SPATIAL_FILTER_TYPE_1D_HOR,
950         V4L2_MPEG_CX2341X_VIDEO_LUMA_SPATIAL_FILTER_TYPE_1D_VERT,
951         V4L2_MPEG_CX2341X_VIDEO_LUMA_SPATIAL_FILTER_TYPE_2D_HV_SEPARABLE,
952         V4L2_MPEG_CX2341X_VIDEO_LUMA_SPATIAL_FILTER_TYPE_2D_SYM_NON_SEPARABLE,
953 };
954 #define V4L2_CID_MPEG_CX2341X_VIDEO_CHROMA_SPATIAL_FILTER_TYPE  (V4L2_CID_MPEG_CX2341X_BASE+3)
955 enum v4l2_mpeg_cx2341x_video_chroma_spatial_filter_type {
956         V4L2_MPEG_CX2341X_VIDEO_CHROMA_SPATIAL_FILTER_TYPE_OFF,
957         V4L2_MPEG_CX2341X_VIDEO_CHROMA_SPATIAL_FILTER_TYPE_1D_HOR,
958 };
959 #define V4L2_CID_MPEG_CX2341X_VIDEO_TEMPORAL_FILTER_MODE        (V4L2_CID_MPEG_CX2341X_BASE+4)
960 enum v4l2_mpeg_cx2341x_video_temporal_filter_mode {
961         V4L2_MPEG_CX2341X_VIDEO_TEMPORAL_FILTER_MODE_MANUAL,
962         V4L2_MPEG_CX2341X_VIDEO_TEMPORAL_FILTER_MODE_AUTO,
963 };
964 #define V4L2_CID_MPEG_CX2341X_VIDEO_TEMPORAL_FILTER             (V4L2_CID_MPEG_CX2341X_BASE+5)
965 #define V4L2_CID_MPEG_CX2341X_VIDEO_MEDIAN_FILTER_TYPE          (V4L2_CID_MPEG_CX2341X_BASE+6)
966 enum v4l2_mpeg_cx2341x_video_median_filter_type {
967         V4L2_MPEG_CX2341X_VIDEO_MEDIAN_FILTER_TYPE_OFF,
968         V4L2_MPEG_CX2341X_VIDEO_MEDIAN_FILTER_TYPE_HOR,
969         V4L2_MPEG_CX2341X_VIDEO_MEDIAN_FILTER_TYPE_VERT,
970         V4L2_MPEG_CX2341X_VIDEO_MEDIAN_FILTER_TYPE_HOR_VERT,
971         V4L2_MPEG_CX2341X_VIDEO_MEDIAN_FILTER_TYPE_DIAG,
972 };
973 #define V4L2_CID_MPEG_CX2341X_VIDEO_LUMA_MEDIAN_FILTER_BOTTOM   (V4L2_CID_MPEG_CX2341X_BASE+7)
974 #define V4L2_CID_MPEG_CX2341X_VIDEO_LUMA_MEDIAN_FILTER_TOP      (V4L2_CID_MPEG_CX2341X_BASE+8)
975 #define V4L2_CID_MPEG_CX2341X_VIDEO_CHROMA_MEDIAN_FILTER_BOTTOM (V4L2_CID_MPEG_CX2341X_BASE+9)
976 #define V4L2_CID_MPEG_CX2341X_VIDEO_CHROMA_MEDIAN_FILTER_TOP    (V4L2_CID_MPEG_CX2341X_BASE+10)
977
978 /*
979  *      T U N I N G
980  */
981 struct v4l2_tuner
982 {
983         __u32                   index;
984         __u8                    name[32];
985         enum v4l2_tuner_type    type;
986         __u32                   capability;
987         __u32                   rangelow;
988         __u32                   rangehigh;
989         __u32                   rxsubchans;
990         __u32                   audmode;
991         __s32                   signal;
992         __s32                   afc;
993         __u32                   reserved[4];
994 };
995
996 struct v4l2_modulator
997 {
998         __u32                   index;
999         __u8                    name[32];
1000         __u32                   capability;
1001         __u32                   rangelow;
1002         __u32                   rangehigh;
1003         __u32                   txsubchans;
1004         __u32                   reserved[4];
1005 };
1006
1007 /*  Flags for the 'capability' field */
1008 #define V4L2_TUNER_CAP_LOW              0x0001
1009 #define V4L2_TUNER_CAP_NORM             0x0002
1010 #define V4L2_TUNER_CAP_STEREO           0x0010
1011 #define V4L2_TUNER_CAP_LANG2            0x0020
1012 #define V4L2_TUNER_CAP_SAP              0x0020
1013 #define V4L2_TUNER_CAP_LANG1            0x0040
1014
1015 /*  Flags for the 'rxsubchans' field */
1016 #define V4L2_TUNER_SUB_MONO             0x0001
1017 #define V4L2_TUNER_SUB_STEREO           0x0002
1018 #define V4L2_TUNER_SUB_LANG2            0x0004
1019 #define V4L2_TUNER_SUB_SAP              0x0004
1020 #define V4L2_TUNER_SUB_LANG1            0x0008
1021
1022 /*  Values for the 'audmode' field */
1023 #define V4L2_TUNER_MODE_MONO            0x0000
1024 #define V4L2_TUNER_MODE_STEREO          0x0001
1025 #define V4L2_TUNER_MODE_LANG2           0x0002
1026 #define V4L2_TUNER_MODE_SAP             0x0002
1027 #define V4L2_TUNER_MODE_LANG1           0x0003
1028 #define V4L2_TUNER_MODE_LANG1_LANG2     0x0004
1029
1030 struct v4l2_frequency
1031 {
1032         __u32                 tuner;
1033         enum v4l2_tuner_type  type;
1034         __u32                 frequency;
1035         __u32                 reserved[8];
1036 };
1037
1038 /*
1039  *      A U D I O
1040  */
1041 struct v4l2_audio
1042 {
1043         __u32   index;
1044         __u8    name[32];
1045         __u32   capability;
1046         __u32   mode;
1047         __u32   reserved[2];
1048 };
1049
1050 /*  Flags for the 'capability' field */
1051 #define V4L2_AUDCAP_STEREO              0x00001
1052 #define V4L2_AUDCAP_AVL                 0x00002
1053
1054 /*  Flags for the 'mode' field */
1055 #define V4L2_AUDMODE_AVL                0x00001
1056
1057 struct v4l2_audioout
1058 {
1059         __u32   index;
1060         __u8    name[32];
1061         __u32   capability;
1062         __u32   mode;
1063         __u32   reserved[2];
1064 };
1065
1066 /*
1067  *      D A T A   S E R V I C E S   ( V B I )
1068  *
1069  *      Data services API by Michael Schimek
1070  */
1071
1072 /* Raw VBI */
1073 struct v4l2_vbi_format
1074 {
1075         __u32   sampling_rate;          /* in 1 Hz */
1076         __u32   offset;
1077         __u32   samples_per_line;
1078         __u32   sample_format;          /* V4L2_PIX_FMT_* */
1079         __s32   start[2];
1080         __u32   count[2];
1081         __u32   flags;                  /* V4L2_VBI_* */
1082         __u32   reserved[2];            /* must be zero */
1083 };
1084
1085 /*  VBI flags  */
1086 #define V4L2_VBI_UNSYNC         (1<< 0)
1087 #define V4L2_VBI_INTERLACED     (1<< 1)
1088
1089 #if 1
1090 /* Sliced VBI
1091  *
1092  *    This implements is a proposal V4L2 API to allow SLICED VBI
1093  * required for some hardware encoders. It should change without
1094  * notice in the definitive implementation.
1095  */
1096
1097 struct v4l2_sliced_vbi_format
1098 {
1099         __u16   service_set;
1100         /* service_lines[0][...] specifies lines 0-23 (1-23 used) of the first field
1101            service_lines[1][...] specifies lines 0-23 (1-23 used) of the second field
1102                                  (equals frame lines 313-336 for 625 line video
1103                                   standards, 263-286 for 525 line standards) */
1104         __u16   service_lines[2][24];
1105         __u32   io_size;
1106         __u32   reserved[2];            /* must be zero */
1107 };
1108
1109 /* Teletext World System Teletext
1110    (WST), defined on ITU-R BT.653-2 */
1111 #define V4L2_SLICED_TELETEXT_B          (0x0001)
1112 /* Video Program System, defined on ETS 300 231*/
1113 #define V4L2_SLICED_VPS                 (0x0400)
1114 /* Closed Caption, defined on EIA-608 */
1115 #define V4L2_SLICED_CAPTION_525         (0x1000)
1116 /* Wide Screen System, defined on ITU-R BT1119.1 */
1117 #define V4L2_SLICED_WSS_625             (0x4000)
1118
1119 #define V4L2_SLICED_VBI_525             (V4L2_SLICED_CAPTION_525)
1120 #define V4L2_SLICED_VBI_625             (V4L2_SLICED_TELETEXT_B | V4L2_SLICED_VPS | V4L2_SLICED_WSS_625)
1121
1122
1123 struct v4l2_sliced_vbi_cap
1124 {
1125         __u16   service_set;
1126         /* service_lines[0][...] specifies lines 0-23 (1-23 used) of the first field
1127            service_lines[1][...] specifies lines 0-23 (1-23 used) of the second field
1128                                  (equals frame lines 313-336 for 625 line video
1129                                   standards, 263-286 for 525 line standards) */
1130         __u16   service_lines[2][24];
1131         __u32   reserved[4];    /* must be 0 */
1132 };
1133
1134 struct v4l2_sliced_vbi_data
1135 {
1136         __u32   id;
1137         __u32   field;          /* 0: first field, 1: second field */
1138         __u32   line;           /* 1-23 */
1139         __u32   reserved;       /* must be 0 */
1140         __u8    data[48];
1141 };
1142 #endif
1143
1144 /*
1145  *      A G G R E G A T E   S T R U C T U R E S
1146  */
1147
1148 /*      Stream data format
1149  */
1150 struct v4l2_format
1151 {
1152         enum v4l2_buf_type type;
1153         union
1154         {
1155                 struct v4l2_pix_format          pix;     // V4L2_BUF_TYPE_VIDEO_CAPTURE
1156                 struct v4l2_window              win;     // V4L2_BUF_TYPE_VIDEO_OVERLAY
1157                 struct v4l2_vbi_format          vbi;     // V4L2_BUF_TYPE_VBI_CAPTURE
1158 #if 1
1159                 struct v4l2_sliced_vbi_format   sliced;  // V4L2_BUF_TYPE_SLICED_VBI_CAPTURE
1160 #endif
1161                 __u8    raw_data[200];                   // user-defined
1162         } fmt;
1163 };
1164
1165
1166 /*      Stream type-dependent parameters
1167  */
1168 struct v4l2_streamparm
1169 {
1170         enum v4l2_buf_type type;
1171         union
1172         {
1173                 struct v4l2_captureparm capture;
1174                 struct v4l2_outputparm  output;
1175                 __u8    raw_data[200];  /* user-defined */
1176         } parm;
1177 };
1178
1179 /*
1180  *      I O C T L   C O D E S   F O R   V I D E O   D E V I C E S
1181  *
1182  */
1183 #define VIDIOC_QUERYCAP         _IOR  ('V',  0, struct v4l2_capability)
1184 #define VIDIOC_RESERVED         _IO   ('V',  1)
1185 #define VIDIOC_ENUM_FMT         _IOWR ('V',  2, struct v4l2_fmtdesc)
1186 #define VIDIOC_G_FMT            _IOWR ('V',  4, struct v4l2_format)
1187 #define VIDIOC_S_FMT            _IOWR ('V',  5, struct v4l2_format)
1188 #define VIDIOC_G_MPEGCOMP       _IOR  ('V',  6, struct v4l2_mpeg_compression)
1189 #define VIDIOC_S_MPEGCOMP       _IOW  ('V',  7, struct v4l2_mpeg_compression)
1190 #define VIDIOC_REQBUFS          _IOWR ('V',  8, struct v4l2_requestbuffers)
1191 #define VIDIOC_QUERYBUF         _IOWR ('V',  9, struct v4l2_buffer)
1192 #define VIDIOC_G_FBUF           _IOR  ('V', 10, struct v4l2_framebuffer)
1193 #define VIDIOC_S_FBUF           _IOW  ('V', 11, struct v4l2_framebuffer)
1194 #define VIDIOC_OVERLAY          _IOW  ('V', 14, int)
1195 #define VIDIOC_QBUF             _IOWR ('V', 15, struct v4l2_buffer)
1196 #define VIDIOC_DQBUF            _IOWR ('V', 17, struct v4l2_buffer)
1197 #define VIDIOC_STREAMON         _IOW  ('V', 18, int)
1198 #define VIDIOC_STREAMOFF        _IOW  ('V', 19, int)
1199 #define VIDIOC_G_PARM           _IOWR ('V', 21, struct v4l2_streamparm)
1200 #define VIDIOC_S_PARM           _IOWR ('V', 22, struct v4l2_streamparm)
1201 #define VIDIOC_G_STD            _IOR  ('V', 23, v4l2_std_id)
1202 #define VIDIOC_S_STD            _IOW  ('V', 24, v4l2_std_id)
1203 #define VIDIOC_ENUMSTD          _IOWR ('V', 25, struct v4l2_standard)
1204 #define VIDIOC_ENUMINPUT        _IOWR ('V', 26, struct v4l2_input)
1205 #define VIDIOC_G_CTRL           _IOWR ('V', 27, struct v4l2_control)
1206 #define VIDIOC_S_CTRL           _IOWR ('V', 28, struct v4l2_control)
1207 #define VIDIOC_G_TUNER          _IOWR ('V', 29, struct v4l2_tuner)
1208 #define VIDIOC_S_TUNER          _IOW  ('V', 30, struct v4l2_tuner)
1209 #define VIDIOC_G_AUDIO          _IOR  ('V', 33, struct v4l2_audio)
1210 #define VIDIOC_S_AUDIO          _IOW  ('V', 34, struct v4l2_audio)
1211 #define VIDIOC_QUERYCTRL        _IOWR ('V', 36, struct v4l2_queryctrl)
1212 #define VIDIOC_QUERYMENU        _IOWR ('V', 37, struct v4l2_querymenu)
1213 #define VIDIOC_G_INPUT          _IOR  ('V', 38, int)
1214 #define VIDIOC_S_INPUT          _IOWR ('V', 39, int)
1215 #define VIDIOC_G_OUTPUT         _IOR  ('V', 46, int)
1216 #define VIDIOC_S_OUTPUT         _IOWR ('V', 47, int)
1217 #define VIDIOC_ENUMOUTPUT       _IOWR ('V', 48, struct v4l2_output)
1218 #define VIDIOC_G_AUDOUT         _IOR  ('V', 49, struct v4l2_audioout)
1219 #define VIDIOC_S_AUDOUT         _IOW  ('V', 50, struct v4l2_audioout)
1220 #define VIDIOC_G_MODULATOR      _IOWR ('V', 54, struct v4l2_modulator)
1221 #define VIDIOC_S_MODULATOR      _IOW  ('V', 55, struct v4l2_modulator)
1222 #define VIDIOC_G_FREQUENCY      _IOWR ('V', 56, struct v4l2_frequency)
1223 #define VIDIOC_S_FREQUENCY      _IOW  ('V', 57, struct v4l2_frequency)
1224 #define VIDIOC_CROPCAP          _IOWR ('V', 58, struct v4l2_cropcap)
1225 #define VIDIOC_G_CROP           _IOWR ('V', 59, struct v4l2_crop)
1226 #define VIDIOC_S_CROP           _IOW  ('V', 60, struct v4l2_crop)
1227 #define VIDIOC_G_JPEGCOMP       _IOR  ('V', 61, struct v4l2_jpegcompression)
1228 #define VIDIOC_S_JPEGCOMP       _IOW  ('V', 62, struct v4l2_jpegcompression)
1229 #define VIDIOC_QUERYSTD         _IOR  ('V', 63, v4l2_std_id)
1230 #define VIDIOC_TRY_FMT          _IOWR ('V', 64, struct v4l2_format)
1231 #define VIDIOC_ENUMAUDIO        _IOWR ('V', 65, struct v4l2_audio)
1232 #define VIDIOC_ENUMAUDOUT       _IOWR ('V', 66, struct v4l2_audioout)
1233 #define VIDIOC_G_PRIORITY       _IOR  ('V', 67, enum v4l2_priority)
1234 #define VIDIOC_S_PRIORITY       _IOW  ('V', 68, enum v4l2_priority)
1235 #if 1
1236 #define VIDIOC_G_SLICED_VBI_CAP _IOR  ('V', 69, struct v4l2_sliced_vbi_cap)
1237 #endif
1238 #define VIDIOC_LOG_STATUS       _IO   ('V', 70)
1239 #define VIDIOC_G_EXT_CTRLS      _IOWR ('V', 71, struct v4l2_ext_controls)
1240 #define VIDIOC_S_EXT_CTRLS      _IOWR ('V', 72, struct v4l2_ext_controls)
1241 #define VIDIOC_TRY_EXT_CTRLS    _IOWR ('V', 73, struct v4l2_ext_controls)
1242
1243 #ifdef __OLD_VIDIOC_
1244 /* for compatibility, will go away some day */
1245 #define VIDIOC_OVERLAY_OLD      _IOWR ('V', 14, int)
1246 #define VIDIOC_S_PARM_OLD       _IOW  ('V', 22, struct v4l2_streamparm)
1247 #define VIDIOC_S_CTRL_OLD       _IOW  ('V', 28, struct v4l2_control)
1248 #define VIDIOC_G_AUDIO_OLD      _IOWR ('V', 33, struct v4l2_audio)
1249 #define VIDIOC_G_AUDOUT_OLD     _IOWR ('V', 49, struct v4l2_audioout)
1250 #define VIDIOC_CROPCAP_OLD      _IOR  ('V', 58, struct v4l2_cropcap)
1251 #endif
1252
1253 #define BASE_VIDIOC_PRIVATE     192             /* 192-255 are private */
1254
1255 #endif /* __LINUX_VIDEODEV2_H */
1256
1257 /*
1258  * Local variables:
1259  * c-basic-offset: 8
1260  * End:
1261  */