10536
|
1 #ifndef __LINUX_VIDEODEV2_H
|
|
2 #define __LINUX_VIDEODEV2_H
|
|
3 /*
|
|
4 * Video for Linux Two
|
|
5 *
|
|
6 * Header file for v4l or V4L2 drivers and applications, for
|
|
7 * Linux kernels 2.2.x or 2.4.x.
|
|
8 *
|
|
9 * See http://www.thedirks.org/v4l2/ for API specs and other
|
|
10 * v4l2 documentation.
|
|
11 *
|
|
12 * Author: Bill Dirks <bdirks@pacbell.net>
|
|
13 * Justin Schoeman
|
|
14 * et al.
|
|
15 */
|
|
16 #include <sys/time.h> /* need struct timeval */
|
|
17
|
|
18 #include <linux/types.h>
|
|
19 #include <linux/version.h>
|
|
20
|
|
21 /*
|
|
22 * M I S C E L L A N E O U S
|
|
23 */
|
|
24
|
|
25 /* Four-character-code (FOURCC) */
|
|
26 #define v4l2_fourcc(a,b,c,d)\
|
|
27 (((__u32)(a)<<0)|((__u32)(b)<<8)|((__u32)(c)<<16)|((__u32)(d)<<24))
|
|
28
|
|
29 /*
|
|
30 * E N U M S
|
|
31 */
|
|
32 enum v4l2_field {
|
|
33 V4L2_FIELD_ANY = 0, /* driver can choose from none,
|
|
34 top, bottom, interlaced
|
|
35 depending on whatever it thinks
|
|
36 is approximate ... */
|
|
37 V4L2_FIELD_NONE = 1, /* this device has no fields ... */
|
|
38 V4L2_FIELD_TOP = 2, /* top field only */
|
|
39 V4L2_FIELD_BOTTOM = 3, /* bottom field only */
|
|
40 V4L2_FIELD_INTERLACED = 4, /* both fields interlaced */
|
|
41 V4L2_FIELD_SEQ_TB = 5, /* both fields sequential into one
|
|
42 buffer, top-bottom order */
|
|
43 V4L2_FIELD_SEQ_BT = 6, /* same as above + bottom-top order */
|
|
44 V4L2_FIELD_ALTERNATE = 7, /* both fields alternating into
|
|
45 separate buffers */
|
|
46 };
|
|
47 #define V4L2_FIELD_HAS_TOP(field) \
|
|
48 ((field) == V4L2_FIELD_TOP ||\
|
|
49 (field) == V4L2_FIELD_INTERLACED ||\
|
|
50 (field) == V4L2_FIELD_SEQ_TB ||\
|
|
51 (field) == V4L2_FIELD_SEQ_BT)
|
|
52 #define V4L2_FIELD_HAS_BOTTOM(field) \
|
|
53 ((field) == V4L2_FIELD_BOTTOM ||\
|
|
54 (field) == V4L2_FIELD_INTERLACED ||\
|
|
55 (field) == V4L2_FIELD_SEQ_TB ||\
|
|
56 (field) == V4L2_FIELD_SEQ_BT)
|
|
57 #define V4L2_FIELD_HAS_BOTH(field) \
|
|
58 ((field) == V4L2_FIELD_INTERLACED ||\
|
|
59 (field) == V4L2_FIELD_SEQ_TB ||\
|
|
60 (field) == V4L2_FIELD_SEQ_BT)
|
|
61
|
|
62 enum v4l2_buf_type {
|
|
63 V4L2_BUF_TYPE_VIDEO_CAPTURE = 1,
|
|
64 V4L2_BUF_TYPE_VIDEO_OUTPUT = 2,
|
|
65 V4L2_BUF_TYPE_VIDEO_OVERLAY = 3,
|
|
66 V4L2_BUF_TYPE_VBI_CAPTURE = 4,
|
|
67 V4L2_BUF_TYPE_VBI_OUTPUT = 5,
|
|
68 V4L2_BUF_TYPE_PRIVATE = 0x80,
|
|
69 };
|
|
70
|
|
71 enum v4l2_ctrl_type {
|
|
72 V4L2_CTRL_TYPE_INTEGER = 1,
|
|
73 V4L2_CTRL_TYPE_BOOLEAN = 2,
|
|
74 V4L2_CTRL_TYPE_MENU = 3,
|
|
75 V4L2_CTRL_TYPE_BUTTON = 4,
|
|
76 };
|
|
77
|
|
78 enum v4l2_tuner_type {
|
|
79 V4L2_TUNER_RADIO = 1,
|
|
80 V4L2_TUNER_ANALOG_TV = 2,
|
|
81 };
|
|
82
|
|
83 enum v4l2_memory {
|
|
84 V4L2_MEMORY_MMAP = 1,
|
|
85 V4L2_MEMORY_USERPTR = 2,
|
|
86 V4L2_MEMORY_OVERLAY = 3,
|
|
87 };
|
|
88
|
|
89 /* see also http://vektor.theorem.ca/graphics/ycbcr/ */
|
|
90 enum v4l2_colorspace {
|
|
91 /* ITU-R 601 -- broadcast NTSC/PAL */
|
|
92 V4L2_COLORSPACE_SMPTE170M = 1,
|
|
93
|
|
94 /* 1125-Line (US) HDTV */
|
|
95 V4L2_COLORSPACE_SMPTE240M = 2,
|
|
96
|
|
97 /* HD and modern captures. */
|
|
98 V4L2_COLORSPACE_REC709 = 3,
|
|
99
|
|
100 /* broken BT878 extents (601, luma range 16-253 instead of 16-235) */
|
|
101 V4L2_COLORSPACE_BT878 = 4,
|
|
102
|
|
103 /* These should be useful. Assume 601 extents. */
|
|
104 V4L2_COLORSPACE_470_SYSTEM_M = 5,
|
|
105 V4L2_COLORSPACE_470_SYSTEM_BG = 6,
|
|
106
|
|
107 /* I know there will be cameras that send this. So, this is
|
|
108 * unspecified chromaticities and full 0-255 on each of the
|
|
109 * Y'CbCr components
|
|
110 */
|
|
111 V4L2_COLORSPACE_JPEG = 7,
|
|
112
|
|
113 /* For RGB colourspaces, this is probably a good start. */
|
|
114 V4L2_COLORSPACE_SRGB = 8,
|
|
115 };
|
|
116
|
|
117 struct v4l2_rect {
|
|
118 __s32 left;
|
|
119 __s32 top;
|
|
120 __s32 width;
|
|
121 __s32 height;
|
|
122 };
|
|
123
|
|
124 struct v4l2_fract {
|
|
125 __u32 numerator;
|
|
126 __u32 denominator;
|
|
127 };
|
|
128
|
|
129 /*
|
|
130 * D R I V E R C A P A B I L I T I E S
|
|
131 */
|
|
132 struct v4l2_capability
|
|
133 {
|
|
134 __u8 driver[16]; /* i.e. "bttv" */
|
|
135 __u8 card[32]; /* i.e. "Hauppauge WinTV" */
|
|
136 __u8 bus_info[32]; /* "PCI:" + pci_dev->slot_name */
|
|
137 __u32 version; /* should use KERNEL_VERSION() */
|
|
138 __u32 capabilities; /* Device capabilities */
|
|
139 __u32 reserved[4];
|
|
140 };
|
|
141
|
|
142 /* Values for 'capabilities' field */
|
|
143 #define V4L2_CAP_VIDEO_CAPTURE 0x00000001 /* Is a video capture device */
|
|
144 #define V4L2_CAP_VIDEO_OUTPUT 0x00000002 /* Is a video output device */
|
|
145 #define V4L2_CAP_VIDEO_OVERLAY 0x00000004 /* Can do video overlay */
|
|
146 #define V4L2_CAP_VBI_CAPTURE 0x00000010 /* Is a VBI capture device */
|
|
147 #define V4L2_CAP_VBI_OUTPUT 0x00000020 /* Is a VBI output device */
|
|
148 #define V4L2_CAP_RDS_CAPTURE 0x00000100 /* RDS data capture */
|
|
149
|
|
150 #define V4L2_CAP_TUNER 0x00010000 /* Has a tuner */
|
|
151 #define V4L2_CAP_AUDIO 0x00020000 /* has audio support */
|
|
152
|
|
153 #define V4L2_CAP_READWRITE 0x01000000 /* read/write systemcalls */
|
|
154 #define V4L2_CAP_ASYNCIO 0x02000000 /* async I/O */
|
|
155 #define V4L2_CAP_STREAMING 0x04000000 /* streaming I/O ioctls */
|
|
156
|
|
157 /*
|
|
158 * V I D E O I M A G E F O R M A T
|
|
159 */
|
|
160
|
|
161 struct v4l2_pix_format
|
|
162 {
|
|
163 __u32 width;
|
|
164 __u32 height;
|
|
165 __u32 pixelformat;
|
|
166 enum v4l2_field field;
|
|
167 __u32 bytesperline; /* for padding, zero if unused */
|
|
168 __u32 sizeimage;
|
|
169 enum v4l2_colorspace colorspace;
|
|
170 __u32 priv; /* private data, depends on pixelformat */
|
|
171 };
|
|
172
|
|
173 /* Pixel format FOURCC depth Description */
|
|
174 #define V4L2_PIX_FMT_RGB332 v4l2_fourcc('R','G','B','1') /* 8 RGB-3-3-2 */
|
|
175 #define V4L2_PIX_FMT_RGB555 v4l2_fourcc('R','G','B','O') /* 16 RGB-5-5-5 */
|
|
176 #define V4L2_PIX_FMT_RGB565 v4l2_fourcc('R','G','B','P') /* 16 RGB-5-6-5 */
|
|
177 #define V4L2_PIX_FMT_RGB555X v4l2_fourcc('R','G','B','Q') /* 16 RGB-5-5-5 BE */
|
|
178 #define V4L2_PIX_FMT_RGB565X v4l2_fourcc('R','G','B','R') /* 16 RGB-5-6-5 BE */
|
|
179 #define V4L2_PIX_FMT_BGR24 v4l2_fourcc('B','G','R','3') /* 24 BGR-8-8-8 */
|
|
180 #define V4L2_PIX_FMT_RGB24 v4l2_fourcc('R','G','B','3') /* 24 RGB-8-8-8 */
|
|
181 #define V4L2_PIX_FMT_BGR32 v4l2_fourcc('B','G','R','4') /* 32 BGR-8-8-8-8 */
|
|
182 #define V4L2_PIX_FMT_RGB32 v4l2_fourcc('R','G','B','4') /* 32 RGB-8-8-8-8 */
|
|
183 #define V4L2_PIX_FMT_GREY v4l2_fourcc('G','R','E','Y') /* 8 Greyscale */
|
|
184 #define V4L2_PIX_FMT_YVU410 v4l2_fourcc('Y','V','U','9') /* 9 YVU 4:1:0 */
|
|
185 #define V4L2_PIX_FMT_YVU420 v4l2_fourcc('Y','V','1','2') /* 12 YVU 4:2:0 */
|
|
186 #define V4L2_PIX_FMT_YUYV v4l2_fourcc('Y','U','Y','V') /* 16 YUV 4:2:2 */
|
|
187 #define V4L2_PIX_FMT_UYVY v4l2_fourcc('U','Y','V','Y') /* 16 YUV 4:2:2 */
|
|
188 #define V4L2_PIX_FMT_YUV422P v4l2_fourcc('4','2','2','P') /* 16 YVU422 planar */
|
|
189 #define V4L2_PIX_FMT_YUV411P v4l2_fourcc('4','1','1','P') /* 16 YVU411 planar */
|
|
190 #define V4L2_PIX_FMT_Y41P v4l2_fourcc('Y','4','1','P') /* 12 YUV 4:1:1 */
|
|
191
|
|
192 /* two planes -- one Y, one Cr + Cb interleaved */
|
|
193 #define V4L2_PIX_FMT_NV12 v4l2_fourcc('N','V','1','2') /* 12 Y/CbCr 4:2:0 */
|
|
194 #define V4L2_PIX_FMT_NV21 v4l2_fourcc('N','V','2','1') /* 12 Y/CrCb 4:2:0 */
|
|
195
|
|
196 /* The following formats are not defined in the V4L2 specification */
|
|
197 #define V4L2_PIX_FMT_YUV410 v4l2_fourcc('Y','U','V','9') /* 9 YUV 4:1:0 */
|
|
198 #define V4L2_PIX_FMT_YUV420 v4l2_fourcc('Y','U','1','2') /* 12 YUV 4:2:0 */
|
|
199 #define V4L2_PIX_FMT_YYUV v4l2_fourcc('Y','Y','U','V') /* 16 YUV 4:2:2 */
|
|
200 #define V4L2_PIX_FMT_HI240 v4l2_fourcc('H','I','2','4') /* 8 8-bit color */
|
|
201
|
|
202 /* compressed formats */
|
|
203 #define V4L2_PIX_FMT_MJPEG v4l2_fourcc('M','J','P','G') /* Motion-JPEG */
|
|
204 #define V4L2_PIX_FMT_JPEG v4l2_fourcc('J','P','E','G') /* JFIF JPEG */
|
|
205 #define V4L2_PIX_FMT_DV v4l2_fourcc('d','v','s','d') /* 1394 */
|
|
206 #define V4L2_PIX_FMT_MPEG v4l2_fourcc('M','P','E','G') /* MPEG */
|
|
207
|
|
208 /* Vendor-specific formats */
|
|
209 #define V4L2_PIX_FMT_WNVA v4l2_fourcc('W','N','V','A') /* Winnov hw compres */
|
|
210
|
|
211 /*
|
|
212 * F O R M A T E N U M E R A T I O N
|
|
213 */
|
|
214 struct v4l2_fmtdesc
|
|
215 {
|
|
216 __u32 index; /* Format number */
|
|
217 enum v4l2_buf_type type; /* buffer type */
|
|
218 __u32 flags;
|
|
219 __u8 description[32]; /* Description string */
|
|
220 __u32 pixelformat; /* Format fourcc */
|
|
221 __u32 reserved[4];
|
|
222 };
|
|
223
|
|
224 #define V4L2_FMT_FLAG_COMPRESSED 0x0001
|
|
225
|
|
226
|
|
227 /*
|
|
228 * T I M E C O D E
|
|
229 */
|
|
230 struct v4l2_timecode
|
|
231 {
|
|
232 __u32 type;
|
|
233 __u32 flags;
|
|
234 __u8 frames;
|
|
235 __u8 seconds;
|
|
236 __u8 minutes;
|
|
237 __u8 hours;
|
|
238 __u8 userbits[4];
|
|
239 };
|
|
240
|
|
241 /* Type */
|
|
242 #define V4L2_TC_TYPE_24FPS 1
|
|
243 #define V4L2_TC_TYPE_25FPS 2
|
|
244 #define V4L2_TC_TYPE_30FPS 3
|
|
245 #define V4L2_TC_TYPE_50FPS 4
|
|
246 #define V4L2_TC_TYPE_60FPS 5
|
|
247
|
|
248 /* Flags */
|
|
249 #define V4L2_TC_FLAG_DROPFRAME 0x0001 /* "drop-frame" mode */
|
|
250 #define V4L2_TC_FLAG_COLORFRAME 0x0002
|
|
251 #define V4L2_TC_USERBITS_field 0x000C
|
|
252 #define V4L2_TC_USERBITS_USERDEFINED 0x0000
|
|
253 #define V4L2_TC_USERBITS_8BITCHARS 0x0008
|
|
254 /* The above is based on SMPTE timecodes */
|
|
255
|
|
256
|
|
257 /*
|
|
258 * C O M P R E S S I O N P A R A M E T E R S
|
|
259 */
|
|
260 #if 0
|
|
261 /* ### generic compression settings don't work, there is too much
|
|
262 * ### codec-specific stuff. Maybe reuse that for MPEG codec settings
|
|
263 * ### later ... */
|
|
264 struct v4l2_compression
|
|
265 {
|
|
266 __u32 quality;
|
|
267 __u32 keyframerate;
|
|
268 __u32 pframerate;
|
|
269 __u32 reserved[5];
|
|
270 };
|
|
271 #endif
|
|
272
|
|
273 struct v4l2_jpegcompression
|
|
274 {
|
|
275 int quality;
|
|
276
|
|
277 int APPn; /* Number of APP segment to be written,
|
|
278 * must be 0..15 */
|
|
279 int APP_len; /* Length of data in JPEG APPn segment */
|
|
280 char APP_data[60]; /* Data in the JPEG APPn segment. */
|
|
281
|
|
282 int COM_len; /* Length of data in JPEG COM segment */
|
|
283 char COM_data[60]; /* Data in JPEG COM segment */
|
|
284
|
|
285 __u32 jpeg_markers; /* Which markers should go into the JPEG
|
|
286 * output. Unless you exactly know what
|
|
287 * you do, leave them untouched.
|
|
288 * Inluding less markers will make the
|
|
289 * resulting code smaller, but there will
|
|
290 * be fewer aplications which can read it.
|
|
291 * The presence of the APP and COM marker
|
|
292 * is influenced by APP_len and COM_len
|
|
293 * ONLY, not by this property! */
|
|
294
|
|
295 #define V4L2_JPEG_MARKER_DHT (1<<3) /* Define Huffman Tables */
|
|
296 #define V4L2_JPEG_MARKER_DQT (1<<4) /* Define Quantization Tables */
|
|
297 #define V4L2_JPEG_MARKER_DRI (1<<5) /* Define Restart Interval */
|
|
298 #define V4L2_JPEG_MARKER_COM (1<<6) /* Comment segment */
|
|
299 #define V4L2_JPEG_MARKER_APP (1<<7) /* App segment, driver will
|
|
300 * allways use APP0 */
|
|
301 };
|
|
302
|
|
303
|
|
304 /*
|
|
305 * M E M O R Y - M A P P I N G B U F F E R S
|
|
306 */
|
|
307 struct v4l2_requestbuffers
|
|
308 {
|
|
309 __u32 count;
|
|
310 enum v4l2_buf_type type;
|
|
311 enum v4l2_memory memory;
|
|
312 __u32 reserved[2];
|
|
313 };
|
|
314
|
|
315 struct v4l2_buffer
|
|
316 {
|
|
317 __u32 index;
|
|
318 enum v4l2_buf_type type;
|
|
319 __u32 bytesused;
|
|
320 __u32 flags;
|
|
321 enum v4l2_field field;
|
|
322 struct timeval timestamp;
|
|
323 struct v4l2_timecode timecode;
|
|
324 __u32 sequence;
|
|
325
|
|
326 /* memory location */
|
|
327 enum v4l2_memory memory;
|
|
328 union {
|
|
329 __u32 offset;
|
|
330 unsigned long userptr;
|
|
331 } m;
|
|
332 __u32 length;
|
|
333
|
|
334 __u32 reserved[2];
|
|
335 };
|
|
336
|
|
337 /* Flags for 'flags' field */
|
|
338 #define V4L2_BUF_FLAG_MAPPED 0x0001 /* Buffer is mapped (flag) */
|
|
339 #define V4L2_BUF_FLAG_QUEUED 0x0002 /* Buffer is queued for processing */
|
|
340 #define V4L2_BUF_FLAG_DONE 0x0004 /* Buffer is ready */
|
|
341 #define V4L2_BUF_FLAG_KEYFRAME 0x0008 /* Image is a keyframe (I-frame) */
|
|
342 #define V4L2_BUF_FLAG_PFRAME 0x0010 /* Image is a P-frame */
|
|
343 #define V4L2_BUF_FLAG_BFRAME 0x0020 /* Image is a B-frame */
|
|
344 #define V4L2_BUF_FLAG_TIMECODE 0x0100 /* timecode field is valid */
|
|
345
|
|
346 /*
|
|
347 * O V E R L A Y P R E V I E W
|
|
348 */
|
|
349 struct v4l2_framebuffer
|
|
350 {
|
|
351 __u32 capability;
|
|
352 __u32 flags;
|
|
353 /* FIXME: in theory we should pass something like PCI device + memory
|
|
354 * region + offset instead of some physical address */
|
|
355 void* base;
|
|
356 struct v4l2_pix_format fmt;
|
|
357 };
|
|
358 /* Flags for the 'capability' field. Read only */
|
|
359 #define V4L2_FBUF_CAP_EXTERNOVERLAY 0x0001
|
|
360 #define V4L2_FBUF_CAP_CHROMAKEY 0x0002
|
|
361 #define V4L2_FBUF_CAP_LIST_CLIPPING 0x0004
|
|
362 #define V4L2_FBUF_CAP_BITMAP_CLIPPING 0x0008
|
|
363 /* Flags for the 'flags' field. */
|
|
364 #define V4L2_FBUF_FLAG_PRIMARY 0x0001
|
|
365 #define V4L2_FBUF_FLAG_OVERLAY 0x0002
|
|
366 #define V4L2_FBUF_FLAG_CHROMAKEY 0x0004
|
|
367
|
|
368 struct v4l2_clip
|
|
369 {
|
|
370 struct v4l2_rect c;
|
|
371 struct v4l2_clip *next;
|
|
372 };
|
|
373
|
|
374 struct v4l2_window
|
|
375 {
|
|
376 struct v4l2_rect w;
|
|
377 enum v4l2_field field;
|
|
378 __u32 chromakey;
|
|
379 struct v4l2_clip *clips;
|
|
380 __u32 clipcount;
|
|
381 void *bitmap;
|
|
382 };
|
|
383
|
|
384
|
|
385 /*
|
|
386 * C A P T U R E P A R A M E T E R S
|
|
387 */
|
|
388 struct v4l2_captureparm
|
|
389 {
|
|
390 __u32 capability; /* Supported modes */
|
|
391 __u32 capturemode; /* Current mode */
|
|
392 struct v4l2_fract timeperframe; /* Time per frame in .1us units */
|
|
393 __u32 extendedmode; /* Driver-specific extensions */
|
|
394 __u32 readbuffers; /* # of buffers for read */
|
|
395 __u32 reserved[4];
|
|
396 };
|
|
397 /* Flags for 'capability' and 'capturemode' fields */
|
|
398 #define V4L2_MODE_HIGHQUALITY 0x0001 /* High quality imaging mode */
|
|
399 #define V4L2_CAP_TIMEPERFRAME 0x1000 /* timeperframe field is supported */
|
|
400
|
|
401 struct v4l2_outputparm
|
|
402 {
|
|
403 __u32 capability; /* Supported modes */
|
|
404 __u32 outputmode; /* Current mode */
|
|
405 struct v4l2_fract timeperframe; /* Time per frame in seconds */
|
|
406 __u32 extendedmode; /* Driver-specific extensions */
|
|
407 __u32 writebuffers; /* # of buffers for write */
|
|
408 __u32 reserved[4];
|
|
409 };
|
|
410
|
|
411 /*
|
|
412 * I N P U T I M A G E C R O P P I N G
|
|
413 */
|
|
414
|
|
415 struct v4l2_cropcap {
|
|
416 enum v4l2_buf_type type;
|
|
417 struct v4l2_rect bounds;
|
|
418 struct v4l2_rect defrect;
|
|
419 struct v4l2_fract pixelaspect;
|
|
420 };
|
|
421
|
|
422 struct v4l2_crop {
|
|
423 enum v4l2_buf_type type;
|
|
424 struct v4l2_rect c;
|
|
425 };
|
|
426
|
|
427 /*
|
|
428 * A N A L O G V I D E O S T A N D A R D
|
|
429 */
|
|
430
|
|
431 typedef __u64 v4l2_std_id;
|
|
432
|
|
433 /* one bit for each */
|
|
434 #define V4L2_STD_PAL_B ((v4l2_std_id)0x00000001)
|
|
435 #define V4L2_STD_PAL_B1 ((v4l2_std_id)0x00000002)
|
|
436 #define V4L2_STD_PAL_G ((v4l2_std_id)0x00000004)
|
|
437 #define V4L2_STD_PAL_H ((v4l2_std_id)0x00000008)
|
|
438 #define V4L2_STD_PAL_I ((v4l2_std_id)0x00000010)
|
|
439 #define V4L2_STD_PAL_D ((v4l2_std_id)0x00000020)
|
|
440 #define V4L2_STD_PAL_D1 ((v4l2_std_id)0x00000040)
|
|
441 #define V4L2_STD_PAL_K ((v4l2_std_id)0x00000080)
|
|
442
|
|
443 #define V4L2_STD_PAL_M ((v4l2_std_id)0x00000100)
|
|
444 #define V4L2_STD_PAL_N ((v4l2_std_id)0x00000200)
|
|
445 #define V4L2_STD_PAL_Nc ((v4l2_std_id)0x00000400)
|
|
446 #define V4L2_STD_PAL_60 ((v4l2_std_id)0x00000800)
|
|
447
|
|
448 #define V4L2_STD_NTSC_M ((v4l2_std_id)0x00001000)
|
|
449 #define V4L2_STD_NTSC_M_JP ((v4l2_std_id)0x00002000)
|
|
450
|
|
451 #define V4L2_STD_SECAM_B ((v4l2_std_id)0x00010000)
|
|
452 #define V4L2_STD_SECAM_D ((v4l2_std_id)0x00020000)
|
|
453 #define V4L2_STD_SECAM_G ((v4l2_std_id)0x00040000)
|
|
454 #define V4L2_STD_SECAM_H ((v4l2_std_id)0x00080000)
|
|
455 #define V4L2_STD_SECAM_K ((v4l2_std_id)0x00100000)
|
|
456 #define V4L2_STD_SECAM_K1 ((v4l2_std_id)0x00200000)
|
|
457 #define V4L2_STD_SECAM_L ((v4l2_std_id)0x00400000)
|
|
458
|
|
459 /* ATSC/HDTV */
|
|
460 #define V4L2_STD_ATSC_8_VSB ((v4l2_std_id)0x01000000)
|
|
461 #define V4L2_STD_ATSC_16_VSB ((v4l2_std_id)0x02000000)
|
|
462
|
|
463 /* some common needed stuff */
|
|
464 #define V4L2_STD_PAL_BG (V4L2_STD_PAL_B |\
|
|
465 V4L2_STD_PAL_B1 |\
|
|
466 V4L2_STD_PAL_G)
|
|
467 #define V4L2_STD_PAL_DK (V4L2_STD_PAL_D |\
|
|
468 V4L2_STD_PAL_D1 |\
|
|
469 V4L2_STD_PAL_K)
|
|
470 #define V4L2_STD_PAL (V4L2_STD_PAL_BG |\
|
|
471 V4L2_STD_PAL_DK |\
|
|
472 V4L2_STD_PAL_H |\
|
|
473 V4L2_STD_PAL_I)
|
|
474 #define V4L2_STD_NTSC (V4L2_STD_NTSC_M |\
|
|
475 V4L2_STD_NTSC_M_JP)
|
|
476 #define V4L2_STD_SECAM (V4L2_STD_SECAM_B |\
|
|
477 V4L2_STD_SECAM_D |\
|
|
478 V4L2_STD_SECAM_G |\
|
|
479 V4L2_STD_SECAM_H |\
|
|
480 V4L2_STD_SECAM_K |\
|
|
481 V4L2_STD_SECAM_K1 |\
|
|
482 V4L2_STD_SECAM_L)
|
|
483
|
|
484 #define V4L2_STD_525_60 (V4L2_STD_PAL_M |\
|
|
485 V4L2_STD_PAL_60 |\
|
|
486 V4L2_STD_NTSC)
|
|
487 #define V4L2_STD_625_50 (V4L2_STD_PAL |\
|
|
488 V4L2_STD_PAL_N |\
|
|
489 V4L2_STD_PAL_Nc |\
|
|
490 V4L2_STD_SECAM)
|
|
491
|
|
492 #define V4L2_STD_UNKNOWN 0
|
|
493 #define V4L2_STD_ALL (V4L2_STD_525_60 |\
|
|
494 V4L2_STD_625_50)
|
|
495
|
|
496 struct v4l2_standard
|
|
497 {
|
|
498 __u32 index;
|
|
499 v4l2_std_id id;
|
|
500 __u8 name[24];
|
|
501 struct v4l2_fract frameperiod; /* Frames, not fields */
|
|
502 __u32 framelines;
|
|
503 __u32 reserved[4];
|
|
504 };
|
|
505
|
|
506
|
|
507 /*
|
|
508 * V I D E O I N P U T S
|
|
509 */
|
|
510 struct v4l2_input
|
|
511 {
|
|
512 __u32 index; /* Which input */
|
|
513 __u8 name[32]; /* Label */
|
|
514 __u32 type; /* Type of input */
|
|
515 __u32 audioset; /* Associated audios (bitfield) */
|
|
516 __u32 tuner; /* Associated tuner */
|
|
517 v4l2_std_id std;
|
|
518 __u32 status;
|
|
519 __u32 reserved[4];
|
|
520 };
|
|
521 /* Values for the 'type' field */
|
|
522 #define V4L2_INPUT_TYPE_TUNER 1
|
|
523 #define V4L2_INPUT_TYPE_CAMERA 2
|
|
524
|
|
525 /* field 'status' - general */
|
|
526 #define V4L2_IN_ST_NO_POWER 0x00000001 /* Attached device is off */
|
|
527 #define V4L2_IN_ST_NO_SIGNAL 0x00000002
|
|
528 #define V4L2_IN_ST_NO_COLOR 0x00000004
|
|
529
|
|
530 /* field 'status' - analog */
|
|
531 #define V4L2_IN_ST_NO_H_LOCK 0x00000100 /* No horizontal sync lock */
|
|
532 #define V4L2_IN_ST_COLOR_KILL 0x00000200 /* Color killer is active */
|
|
533
|
|
534 /* field 'status' - digital */
|
|
535 #define V4L2_IN_ST_NO_SYNC 0x00010000 /* No synchronization lock */
|
|
536 #define V4L2_IN_ST_NO_EQU 0x00020000 /* No equalizer lock */
|
|
537 #define V4L2_IN_ST_NO_CARRIER 0x00040000 /* Carrier recovery failed */
|
|
538
|
|
539 /* field 'status' - VCR and set-top box */
|
|
540 #define V4L2_IN_ST_MACROVISION 0x01000000 /* Macrovision detected */
|
|
541 #define V4L2_IN_ST_NO_ACCESS 0x02000000 /* Conditional access denied */
|
|
542 #define V4L2_IN_ST_VTR 0x04000000 /* VTR time constant */
|
|
543
|
|
544 /*
|
|
545 * V I D E O O U T P U T S
|
|
546 */
|
|
547 struct v4l2_output
|
|
548 {
|
|
549 __u32 index; /* Which output */
|
|
550 __u8 name[32]; /* Label */
|
|
551 __u32 type; /* Type of output */
|
|
552 __u32 audioset; /* Associated audios (bitfield) */
|
|
553 __u32 modulator; /* Associated modulator */
|
|
554 v4l2_std_id std;
|
|
555 __u32 reserved[4];
|
|
556 };
|
|
557 /* Values for the 'type' field */
|
|
558 #define V4L2_OUTPUT_TYPE_MODULATOR 1
|
|
559 #define V4L2_OUTPUT_TYPE_ANALOG 2
|
|
560 #define V4L2_OUTPUT_TYPE_ANALOGVGAOVERLAY 3
|
|
561
|
|
562 /*
|
|
563 * C O N T R O L S
|
|
564 */
|
|
565 struct v4l2_control
|
|
566 {
|
|
567 __u32 id;
|
|
568 __s32 value;
|
|
569 };
|
|
570
|
|
571 /* Used in the VIDIOC_QUERYCTRL ioctl for querying controls */
|
|
572 struct v4l2_queryctrl
|
|
573 {
|
|
574 __u32 id;
|
|
575 enum v4l2_ctrl_type type;
|
|
576 __u8 name[32]; /* Whatever */
|
|
577 __s32 minimum; /* Note signedness */
|
|
578 __s32 maximum;
|
|
579 __s32 step;
|
|
580 __s32 default_value;
|
|
581 __u32 flags;
|
|
582 __u32 reserved[2];
|
|
583 };
|
|
584
|
|
585 /* Used in the VIDIOC_QUERYMENU ioctl for querying menu items */
|
|
586 struct v4l2_querymenu
|
|
587 {
|
|
588 __u32 id;
|
|
589 __u32 index;
|
|
590 __u8 name[32]; /* Whatever */
|
|
591 __u32 reserved;
|
|
592 };
|
|
593
|
|
594 /* Control flags */
|
|
595 #define V4L2_CTRL_FLAG_DISABLED 0x0001
|
|
596 #define V4L2_CTRL_FLAG_GRABBED 0x0002
|
|
597
|
|
598 /* Control IDs defined by V4L2 */
|
|
599 #define V4L2_CID_BASE 0x00980900
|
|
600 /* IDs reserved for driver specific controls */
|
|
601 #define V4L2_CID_PRIVATE_BASE 0x08000000
|
|
602
|
|
603 #define V4L2_CID_BRIGHTNESS (V4L2_CID_BASE+0)
|
|
604 #define V4L2_CID_CONTRAST (V4L2_CID_BASE+1)
|
|
605 #define V4L2_CID_SATURATION (V4L2_CID_BASE+2)
|
|
606 #define V4L2_CID_HUE (V4L2_CID_BASE+3)
|
|
607 #define V4L2_CID_AUDIO_VOLUME (V4L2_CID_BASE+5)
|
|
608 #define V4L2_CID_AUDIO_BALANCE (V4L2_CID_BASE+6)
|
|
609 #define V4L2_CID_AUDIO_BASS (V4L2_CID_BASE+7)
|
|
610 #define V4L2_CID_AUDIO_TREBLE (V4L2_CID_BASE+8)
|
|
611 #define V4L2_CID_AUDIO_MUTE (V4L2_CID_BASE+9)
|
|
612 #define V4L2_CID_AUDIO_LOUDNESS (V4L2_CID_BASE+10)
|
|
613 #define V4L2_CID_BLACK_LEVEL (V4L2_CID_BASE+11)
|
|
614 #define V4L2_CID_AUTO_WHITE_BALANCE (V4L2_CID_BASE+12)
|
|
615 #define V4L2_CID_DO_WHITE_BALANCE (V4L2_CID_BASE+13)
|
|
616 #define V4L2_CID_RED_BALANCE (V4L2_CID_BASE+14)
|
|
617 #define V4L2_CID_BLUE_BALANCE (V4L2_CID_BASE+15)
|
|
618 #define V4L2_CID_GAMMA (V4L2_CID_BASE+16)
|
|
619 #define V4L2_CID_WHITENESS (V4L2_CID_GAMMA) /* ? Not sure */
|
|
620 #define V4L2_CID_EXPOSURE (V4L2_CID_BASE+17)
|
|
621 #define V4L2_CID_AUTOGAIN (V4L2_CID_BASE+18)
|
|
622 #define V4L2_CID_GAIN (V4L2_CID_BASE+19)
|
|
623 #define V4L2_CID_HFLIP (V4L2_CID_BASE+20)
|
|
624 #define V4L2_CID_VFLIP (V4L2_CID_BASE+21)
|
|
625 #define V4L2_CID_HCENTER (V4L2_CID_BASE+22)
|
|
626 #define V4L2_CID_VCENTER (V4L2_CID_BASE+23)
|
|
627 #define V4L2_CID_LASTP1 (V4L2_CID_BASE+24) /* last CID + 1 */
|
|
628
|
|
629 /*
|
|
630 * T U N I N G
|
|
631 */
|
|
632 struct v4l2_tuner
|
|
633 {
|
|
634 __u32 index;
|
|
635 __u8 name[32];
|
|
636 enum v4l2_tuner_type type;
|
|
637 __u32 capability;
|
|
638 __u32 rangelow;
|
|
639 __u32 rangehigh;
|
|
640 __u32 rxsubchans;
|
|
641 __u32 audmode;
|
|
642 __s32 signal;
|
|
643 __s32 afc;
|
|
644 __u32 reserved[4];
|
|
645 };
|
|
646
|
|
647 struct v4l2_modulator
|
|
648 {
|
|
649 __u32 index;
|
|
650 __u8 name[32];
|
|
651 __u32 capability;
|
|
652 __u32 rangelow;
|
|
653 __u32 rangehigh;
|
|
654 __u32 txsubchans;
|
|
655 __u32 reserved[4];
|
|
656 };
|
|
657
|
|
658 /* Flags for the 'capability' field */
|
|
659 #define V4L2_TUNER_CAP_LOW 0x0001
|
|
660 #define V4L2_TUNER_CAP_NORM 0x0002
|
|
661 #define V4L2_TUNER_CAP_STEREO 0x0010
|
|
662 #define V4L2_TUNER_CAP_LANG2 0x0020
|
|
663 #define V4L2_TUNER_CAP_SAP 0x0020
|
|
664 #define V4L2_TUNER_CAP_LANG1 0x0040
|
|
665
|
|
666 /* Flags for the 'rxsubchans' field */
|
|
667 #define V4L2_TUNER_SUB_MONO 0x0001
|
|
668 #define V4L2_TUNER_SUB_STEREO 0x0002
|
|
669 #define V4L2_TUNER_SUB_LANG2 0x0004
|
|
670 #define V4L2_TUNER_SUB_SAP 0x0004
|
|
671 #define V4L2_TUNER_SUB_LANG1 0x0008
|
|
672
|
|
673 /* Values for the 'audmode' field */
|
|
674 #define V4L2_TUNER_MODE_MONO 0x0000
|
|
675 #define V4L2_TUNER_MODE_STEREO 0x0001
|
|
676 #define V4L2_TUNER_MODE_LANG2 0x0002
|
|
677 #define V4L2_TUNER_MODE_SAP 0x0002
|
|
678 #define V4L2_TUNER_MODE_LANG1 0x0003
|
|
679
|
|
680 struct v4l2_frequency
|
|
681 {
|
|
682 __u32 tuner;
|
|
683 enum v4l2_tuner_type type;
|
|
684 __u32 frequency;
|
|
685 __u32 reserved[8];
|
|
686 };
|
|
687
|
|
688 /*
|
|
689 * A U D I O
|
|
690 */
|
|
691 struct v4l2_audio
|
|
692 {
|
|
693 __u32 index;
|
|
694 __u8 name[32];
|
|
695 __u32 capability;
|
|
696 __u32 mode;
|
|
697 __u32 reserved[2];
|
|
698 };
|
|
699 /* Flags for the 'capability' field */
|
|
700 #define V4L2_AUDCAP_STEREO 0x00001
|
|
701 #define V4L2_AUDCAP_AVL 0x00002
|
|
702
|
|
703 /* Flags for the 'mode' field */
|
|
704 #define V4L2_AUDMODE_AVL 0x00001
|
|
705
|
|
706 struct v4l2_audioout
|
|
707 {
|
|
708 __u32 index;
|
|
709 __u8 name[32];
|
|
710 __u32 capability;
|
|
711 __u32 mode;
|
|
712 __u32 reserved[2];
|
|
713 };
|
|
714
|
|
715 /*
|
|
716 * D A T A S E R V I C E S ( V B I )
|
|
717 *
|
|
718 * Data services API by Michael Schimek
|
|
719 */
|
|
720
|
|
721 struct v4l2_vbi_format
|
|
722 {
|
|
723 __u32 sampling_rate; /* in 1 Hz */
|
|
724 __u32 offset;
|
|
725 __u32 samples_per_line;
|
|
726 __u32 sample_format; /* V4L2_PIX_FMT_* */
|
|
727 __s32 start[2];
|
|
728 __u32 count[2];
|
|
729 __u32 flags; /* V4L2_VBI_* */
|
|
730 __u32 reserved[2]; /* must be zero */
|
|
731 };
|
|
732
|
|
733 /* VBI flags */
|
|
734 #define V4L2_VBI_UNSYNC (1<< 0)
|
|
735 #define V4L2_VBI_INTERLACED (1<< 1)
|
|
736
|
|
737
|
|
738 /*
|
|
739 * A G G R E G A T E S T R U C T U R E S
|
|
740 */
|
|
741
|
|
742 /* Stream data format
|
|
743 */
|
|
744 struct v4l2_format
|
|
745 {
|
|
746 enum v4l2_buf_type type;
|
|
747 union
|
|
748 {
|
|
749 struct v4l2_pix_format pix; // V4L2_BUF_TYPE_VIDEO_CAPTURE
|
|
750 struct v4l2_window win; // V4L2_BUF_TYPE_VIDEO_OVERLAY
|
|
751 struct v4l2_vbi_format vbi; // V4L2_BUF_TYPE_VBI_CAPTURE
|
|
752 __u8 raw_data[200]; // user-defined
|
|
753 } fmt;
|
|
754 };
|
|
755
|
|
756
|
|
757 /* Stream type-dependent parameters
|
|
758 */
|
|
759 struct v4l2_streamparm
|
|
760 {
|
|
761 enum v4l2_buf_type type;
|
|
762 union
|
|
763 {
|
|
764 struct v4l2_captureparm capture;
|
|
765 struct v4l2_outputparm output;
|
|
766 __u8 raw_data[200]; /* user-defined */
|
|
767 } parm;
|
|
768 };
|
|
769
|
|
770
|
|
771
|
|
772 /*
|
|
773 * 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
|
|
774 *
|
|
775 */
|
|
776 #define VIDIOC_QUERYCAP _IOR ('V', 0, struct v4l2_capability)
|
|
777 #define VIDIOC_RESERVED _IO ('V', 1)
|
|
778 #define VIDIOC_ENUM_FMT _IOWR ('V', 2, struct v4l2_fmtdesc)
|
|
779 #define VIDIOC_G_FMT _IOWR ('V', 4, struct v4l2_format)
|
|
780 #define VIDIOC_S_FMT _IOWR ('V', 5, struct v4l2_format)
|
|
781 #if 0
|
|
782 #define VIDIOC_G_COMP _IOR ('V', 6, struct v4l2_compression)
|
|
783 #define VIDIOC_S_COMP _IOW ('V', 7, struct v4l2_compression)
|
|
784 #endif
|
|
785 #define VIDIOC_REQBUFS _IOWR ('V', 8, struct v4l2_requestbuffers)
|
|
786 #define VIDIOC_QUERYBUF _IOWR ('V', 9, struct v4l2_buffer)
|
|
787 #define VIDIOC_G_FBUF _IOR ('V', 10, struct v4l2_framebuffer)
|
|
788 #define VIDIOC_S_FBUF _IOW ('V', 11, struct v4l2_framebuffer)
|
|
789 #define VIDIOC_OVERLAY _IOWR ('V', 14, int)
|
|
790 #define VIDIOC_QBUF _IOWR ('V', 15, struct v4l2_buffer)
|
|
791 #define VIDIOC_DQBUF _IOWR ('V', 17, struct v4l2_buffer)
|
|
792 #define VIDIOC_STREAMON _IOW ('V', 18, int)
|
|
793 #define VIDIOC_STREAMOFF _IOW ('V', 19, int)
|
|
794 #define VIDIOC_G_PARM _IOWR ('V', 21, struct v4l2_streamparm)
|
|
795 #define VIDIOC_S_PARM _IOW ('V', 22, struct v4l2_streamparm)
|
|
796 #define VIDIOC_G_STD _IOR ('V', 23, v4l2_std_id)
|
|
797 #define VIDIOC_S_STD _IOW ('V', 24, v4l2_std_id)
|
|
798 #define VIDIOC_ENUMSTD _IOWR ('V', 25, struct v4l2_standard)
|
|
799 #define VIDIOC_ENUMINPUT _IOWR ('V', 26, struct v4l2_input)
|
|
800 #define VIDIOC_G_CTRL _IOWR ('V', 27, struct v4l2_control)
|
|
801 #define VIDIOC_S_CTRL _IOW ('V', 28, struct v4l2_control)
|
|
802 #define VIDIOC_G_TUNER _IOWR ('V', 29, struct v4l2_tuner)
|
|
803 #define VIDIOC_S_TUNER _IOW ('V', 30, struct v4l2_tuner)
|
|
804 #define VIDIOC_G_AUDIO _IOWR ('V', 33, struct v4l2_audio)
|
|
805 #define VIDIOC_S_AUDIO _IOW ('V', 34, struct v4l2_audio)
|
|
806 #define VIDIOC_QUERYCTRL _IOWR ('V', 36, struct v4l2_queryctrl)
|
|
807 #define VIDIOC_QUERYMENU _IOWR ('V', 37, struct v4l2_querymenu)
|
|
808 #define VIDIOC_G_INPUT _IOR ('V', 38, int)
|
|
809 #define VIDIOC_S_INPUT _IOWR ('V', 39, int)
|
|
810 #define VIDIOC_G_OUTPUT _IOR ('V', 46, int)
|
|
811 #define VIDIOC_S_OUTPUT _IOWR ('V', 47, int)
|
|
812 #define VIDIOC_ENUMOUTPUT _IOWR ('V', 48, struct v4l2_output)
|
|
813 #define VIDIOC_G_AUDOUT _IOWR ('V', 49, struct v4l2_audioout)
|
|
814 #define VIDIOC_S_AUDOUT _IOW ('V', 50, struct v4l2_audioout)
|
|
815 #define VIDIOC_G_MODULATOR _IOWR ('V', 54, struct v4l2_modulator)
|
|
816 #define VIDIOC_S_MODULATOR _IOW ('V', 55, struct v4l2_modulator)
|
|
817 #define VIDIOC_G_FREQUENCY _IOWR ('V', 56, struct v4l2_frequency)
|
|
818 #define VIDIOC_S_FREQUENCY _IOW ('V', 57, struct v4l2_frequency)
|
|
819 #define VIDIOC_CROPCAP _IOR ('V', 58, struct v4l2_cropcap)
|
|
820 #define VIDIOC_G_CROP _IOWR ('V', 59, struct v4l2_crop)
|
|
821 #define VIDIOC_S_CROP _IOW ('V', 60, struct v4l2_crop)
|
|
822 #define VIDIOC_G_JPEGCOMP _IOR ('V', 61, struct v4l2_jpegcompression)
|
|
823 #define VIDIOC_S_JPEGCOMP _IOW ('V', 62, struct v4l2_jpegcompression)
|
|
824 #define VIDIOC_QUERYSTD _IOR ('V', 63, v4l2_std_id)
|
|
825 #define VIDIOC_TRY_FMT _IOWR ('V', 64, struct v4l2_format)
|
|
826
|
|
827 #define BASE_VIDIOC_PRIVATE 192 /* 192-255 are private */
|
|
828
|
|
829
|
|
830 #ifdef __KERNEL__
|
|
831 /*
|
|
832 *
|
|
833 * V 4 L 2 D R I V E R H E L P E R A P I
|
|
834 *
|
|
835 * Some commonly needed functions for drivers (v4l2-common.o module)
|
|
836 */
|
|
837 #include <linux/fs.h>
|
|
838
|
|
839 /* Video standard functions */
|
|
840 extern unsigned int v4l2_video_std_fps(struct v4l2_standard *vs);
|
|
841 extern int v4l2_video_std_construct(struct v4l2_standard *vs,
|
|
842 int id, char *name);
|
|
843
|
|
844 /* Compatibility layer interface */
|
|
845 typedef int (*v4l2_kioctl)(struct inode *inode, struct file *file,
|
|
846 unsigned int cmd, void *arg);
|
|
847 int v4l_compat_translate_ioctl(struct inode *inode, struct file *file,
|
|
848 int cmd, void *arg, v4l2_kioctl driver_ioctl);
|
|
849
|
|
850 /* names for fancy debug output */
|
|
851 extern char *v4l2_field_names[];
|
|
852 extern char *v4l2_type_names[];
|
|
853 extern char *v4l2_ioctl_names[];
|
|
854
|
|
855 #endif /* __KERNEL__ */
|
|
856 #endif /* __LINUX_VIDEODEV2_H */
|
|
857
|
|
858 /*
|
|
859 * Local variables:
|
|
860 * c-basic-offset: 8
|
|
861 * End:
|
|
862 */
|