1 #ifndef __LINUX_VIDEODEV2_H
2 #define __LINUX_VIDEODEV2_H
6 * Header file for v4l or V4L2 drivers and applications, for
7 * Linux kernels 2.2.x or 2.4.x.
9 * See http://bytesex.org/v4l/ for API specs and other
12 * Author: Bill Dirks <bdirks@pacbell.net>
17 #include <linux/time.h> /* need struct timeval */
21 * M I S C E L L A N E O U S
24 /* Four-character-code (FOURCC) */
25 #define v4l2_fourcc(a,b,c,d)\
26 (((__u32)(a)<<0)|((__u32)(b)<<8)|((__u32)(c)<<16)|((__u32)(d)<<24))
32 V4L2_FIELD_ANY
= 0, /* driver can choose from none,
33 top, bottom, interlaced
34 depending on whatever it thinks
36 V4L2_FIELD_NONE
= 1, /* this device has no fields ... */
37 V4L2_FIELD_TOP
= 2, /* top field only */
38 V4L2_FIELD_BOTTOM
= 3, /* bottom field only */
39 V4L2_FIELD_INTERLACED
= 4, /* both fields interlaced */
40 V4L2_FIELD_SEQ_TB
= 5, /* both fields sequential into one
41 buffer, top-bottom order */
42 V4L2_FIELD_SEQ_BT
= 6, /* same as above + bottom-top order */
43 V4L2_FIELD_ALTERNATE
= 7, /* both fields alternating into
46 #define V4L2_FIELD_HAS_TOP(field) \
47 ((field) == V4L2_FIELD_TOP ||\
48 (field) == V4L2_FIELD_INTERLACED ||\
49 (field) == V4L2_FIELD_SEQ_TB ||\
50 (field) == V4L2_FIELD_SEQ_BT)
51 #define V4L2_FIELD_HAS_BOTTOM(field) \
52 ((field) == V4L2_FIELD_BOTTOM ||\
53 (field) == V4L2_FIELD_INTERLACED ||\
54 (field) == V4L2_FIELD_SEQ_TB ||\
55 (field) == V4L2_FIELD_SEQ_BT)
56 #define V4L2_FIELD_HAS_BOTH(field) \
57 ((field) == V4L2_FIELD_INTERLACED ||\
58 (field) == V4L2_FIELD_SEQ_TB ||\
59 (field) == V4L2_FIELD_SEQ_BT)
62 V4L2_BUF_TYPE_VIDEO_CAPTURE
= 1,
63 V4L2_BUF_TYPE_VIDEO_OUTPUT
= 2,
64 V4L2_BUF_TYPE_VIDEO_OVERLAY
= 3,
65 V4L2_BUF_TYPE_VBI_CAPTURE
= 4,
66 V4L2_BUF_TYPE_VBI_OUTPUT
= 5,
67 V4L2_BUF_TYPE_PRIVATE
= 0x80,
71 V4L2_CTRL_TYPE_INTEGER
= 1,
72 V4L2_CTRL_TYPE_BOOLEAN
= 2,
73 V4L2_CTRL_TYPE_MENU
= 3,
74 V4L2_CTRL_TYPE_BUTTON
= 4,
77 enum v4l2_tuner_type
{
79 V4L2_TUNER_ANALOG_TV
= 2,
84 V4L2_MEMORY_USERPTR
= 2,
85 V4L2_MEMORY_OVERLAY
= 3,
88 /* see also http://vektor.theorem.ca/graphics/ycbcr/ */
89 enum v4l2_colorspace
{
90 /* ITU-R 601 -- broadcast NTSC/PAL */
91 V4L2_COLORSPACE_SMPTE170M
= 1,
93 /* 1125-Line (US) HDTV */
94 V4L2_COLORSPACE_SMPTE240M
= 2,
96 /* HD and modern captures. */
97 V4L2_COLORSPACE_REC709
= 3,
99 /* broken BT878 extents (601, luma range 16-253 instead of 16-235) */
100 V4L2_COLORSPACE_BT878
= 4,
102 /* These should be useful. Assume 601 extents. */
103 V4L2_COLORSPACE_470_SYSTEM_M
= 5,
104 V4L2_COLORSPACE_470_SYSTEM_BG
= 6,
106 /* I know there will be cameras that send this. So, this is
107 * unspecified chromaticities and full 0-255 on each of the
110 V4L2_COLORSPACE_JPEG
= 7,
112 /* For RGB colourspaces, this is probably a good start. */
113 V4L2_COLORSPACE_SRGB
= 8,
117 V4L2_PRIORITY_UNSET
= 0, /* not initialized */
118 V4L2_PRIORITY_BACKGROUND
= 1,
119 V4L2_PRIORITY_INTERACTIVE
= 2,
120 V4L2_PRIORITY_RECORD
= 3,
121 V4L2_PRIORITY_DEFAULT
= V4L2_PRIORITY_INTERACTIVE
,
137 * D R I V E R C A P A B I L I T I E S
139 struct v4l2_capability
141 __u8 driver
[16]; /* i.e. "bttv" */
142 __u8 card
[32]; /* i.e. "Hauppauge WinTV" */
143 __u8 bus_info
[32]; /* "PCI:" + pci_name(pci_dev) */
144 __u32 version
; /* should use KERNEL_VERSION() */
145 __u32 capabilities
; /* Device capabilities */
149 /* Values for 'capabilities' field */
150 #define V4L2_CAP_VIDEO_CAPTURE 0x00000001 /* Is a video capture device */
151 #define V4L2_CAP_VIDEO_OUTPUT 0x00000002 /* Is a video output device */
152 #define V4L2_CAP_VIDEO_OVERLAY 0x00000004 /* Can do video overlay */
153 #define V4L2_CAP_VBI_CAPTURE 0x00000010 /* Is a VBI capture device */
154 #define V4L2_CAP_VBI_OUTPUT 0x00000020 /* Is a VBI output device */
155 #define V4L2_CAP_RDS_CAPTURE 0x00000100 /* RDS data capture */
157 #define V4L2_CAP_TUNER 0x00010000 /* has a tuner */
158 #define V4L2_CAP_AUDIO 0x00020000 /* has audio support */
159 #define V4L2_CAP_RADIO 0x00040000 /* is a radio device */
161 #define V4L2_CAP_READWRITE 0x01000000 /* read/write systemcalls */
162 #define V4L2_CAP_ASYNCIO 0x02000000 /* async I/O */
163 #define V4L2_CAP_STREAMING 0x04000000 /* streaming I/O ioctls */
166 * V I D E O I M A G E F O R M A T
169 struct v4l2_pix_format
174 enum v4l2_field field
;
175 __u32 bytesperline
; /* for padding, zero if unused */
177 enum v4l2_colorspace colorspace
;
178 __u32 priv
; /* private data, depends on pixelformat */
181 /* Pixel format FOURCC depth Description */
182 #define V4L2_PIX_FMT_RGB332 v4l2_fourcc('R','G','B','1') /* 8 RGB-3-3-2 */
183 #define V4L2_PIX_FMT_RGB555 v4l2_fourcc('R','G','B','O') /* 16 RGB-5-5-5 */
184 #define V4L2_PIX_FMT_RGB565 v4l2_fourcc('R','G','B','P') /* 16 RGB-5-6-5 */
185 #define V4L2_PIX_FMT_RGB555X v4l2_fourcc('R','G','B','Q') /* 16 RGB-5-5-5 BE */
186 #define V4L2_PIX_FMT_RGB565X v4l2_fourcc('R','G','B','R') /* 16 RGB-5-6-5 BE */
187 #define V4L2_PIX_FMT_BGR24 v4l2_fourcc('B','G','R','3') /* 24 BGR-8-8-8 */
188 #define V4L2_PIX_FMT_RGB24 v4l2_fourcc('R','G','B','3') /* 24 RGB-8-8-8 */
189 #define V4L2_PIX_FMT_BGR32 v4l2_fourcc('B','G','R','4') /* 32 BGR-8-8-8-8 */
190 #define V4L2_PIX_FMT_RGB32 v4l2_fourcc('R','G','B','4') /* 32 RGB-8-8-8-8 */
191 #define V4L2_PIX_FMT_GREY v4l2_fourcc('G','R','E','Y') /* 8 Greyscale */
192 #define V4L2_PIX_FMT_YVU410 v4l2_fourcc('Y','V','U','9') /* 9 YVU 4:1:0 */
193 #define V4L2_PIX_FMT_YVU420 v4l2_fourcc('Y','V','1','2') /* 12 YVU 4:2:0 */
194 #define V4L2_PIX_FMT_YUYV v4l2_fourcc('Y','U','Y','V') /* 16 YUV 4:2:2 */
195 #define V4L2_PIX_FMT_UYVY v4l2_fourcc('U','Y','V','Y') /* 16 YUV 4:2:2 */
196 #define V4L2_PIX_FMT_YUV422P v4l2_fourcc('4','2','2','P') /* 16 YVU422 planar */
197 #define V4L2_PIX_FMT_YUV411P v4l2_fourcc('4','1','1','P') /* 16 YVU411 planar */
198 #define V4L2_PIX_FMT_Y41P v4l2_fourcc('Y','4','1','P') /* 12 YUV 4:1:1 */
200 /* two planes -- one Y, one Cr + Cb interleaved */
201 #define V4L2_PIX_FMT_NV12 v4l2_fourcc('N','V','1','2') /* 12 Y/CbCr 4:2:0 */
202 #define V4L2_PIX_FMT_NV21 v4l2_fourcc('N','V','2','1') /* 12 Y/CrCb 4:2:0 */
204 /* The following formats are not defined in the V4L2 specification */
205 #define V4L2_PIX_FMT_YUV410 v4l2_fourcc('Y','U','V','9') /* 9 YUV 4:1:0 */
206 #define V4L2_PIX_FMT_YUV420 v4l2_fourcc('Y','U','1','2') /* 12 YUV 4:2:0 */
207 #define V4L2_PIX_FMT_YYUV v4l2_fourcc('Y','Y','U','V') /* 16 YUV 4:2:2 */
208 #define V4L2_PIX_FMT_HI240 v4l2_fourcc('H','I','2','4') /* 8 8-bit color */
210 /* see http://www.siliconimaging.com/RGB%20Bayer.htm */
211 #define V4L2_PIX_FMT_SBGGR8 v4l2_fourcc('B','A','8','1') /* 8 BGBG.. GRGR.. */
213 /* compressed formats */
214 #define V4L2_PIX_FMT_MJPEG v4l2_fourcc('M','J','P','G') /* Motion-JPEG */
215 #define V4L2_PIX_FMT_JPEG v4l2_fourcc('J','P','E','G') /* JFIF JPEG */
216 #define V4L2_PIX_FMT_DV v4l2_fourcc('d','v','s','d') /* 1394 */
217 #define V4L2_PIX_FMT_MPEG v4l2_fourcc('M','P','E','G') /* MPEG */
219 /* Vendor-specific formats */
220 #define V4L2_PIX_FMT_WNVA v4l2_fourcc('W','N','V','A') /* Winnov hw compress */
223 * F O R M A T E N U M E R A T I O N
227 __u32 index
; /* Format number */
228 enum v4l2_buf_type type
; /* buffer type */
230 __u8 description
[32]; /* Description string */
231 __u32 pixelformat
; /* Format fourcc */
235 #define V4L2_FMT_FLAG_COMPRESSED 0x0001
253 #define V4L2_TC_TYPE_24FPS 1
254 #define V4L2_TC_TYPE_25FPS 2
255 #define V4L2_TC_TYPE_30FPS 3
256 #define V4L2_TC_TYPE_50FPS 4
257 #define V4L2_TC_TYPE_60FPS 5
260 #define V4L2_TC_FLAG_DROPFRAME 0x0001 /* "drop-frame" mode */
261 #define V4L2_TC_FLAG_COLORFRAME 0x0002
262 #define V4L2_TC_USERBITS_field 0x000C
263 #define V4L2_TC_USERBITS_USERDEFINED 0x0000
264 #define V4L2_TC_USERBITS_8BITCHARS 0x0008
265 /* The above is based on SMPTE timecodes */
269 * C O M P R E S S I O N P A R A M E T E R S
272 /* ### generic compression settings don't work, there is too much
273 * ### codec-specific stuff. Maybe reuse that for MPEG codec settings
275 struct v4l2_compression
282 /* what we'll need for MPEG, extracted from some postings on
283 the v4l list (Gert Vervoort, PlasmaJohn).
286 - type: elementary stream(ES), packatised elementary stream(s) (PES)
287 program stream(PS), transport stream(TS)
289 - PS packet size (DVD: 2048 bytes, VCD: 2324 bytes)
293 - TS system information tables (PAT, PMT, CAT, NIT and SIT)
294 - (MPEG-1 systems stream vs. MPEG-2 program stream (TS not supported
298 - type: MPEG (+Layer I,II,III), AC-3, LPCM
300 - sampling frequency (DVD: 48 Khz, VCD: 44.1 KHz, 32 kHz)
301 - Trick Modes? (ff, rew)
306 - picturesize (SIF, 1/2 D1, 2/3 D1, D1) and PAL/NTSC norm can be set
307 through excisting V4L2 controls
308 - noise reduction, parameters encoder specific?
309 - MPEG video version: MPEG-1, MPEG-2
310 - GOP (Group Of Pictures) definition:
311 - N: number of frames per GOP
312 - M: distance between reference (I,P) frames
314 - quantiser matrix: inter Q matrix (64 bytes) and intra Q matrix (64 bytes)
315 - quantiser scale: linear or logarithmic
316 - scanning: alternate or zigzag
317 - bitrate mode: CBR (constant bitrate) or VBR (variable bitrate).
318 - target video bitrate for CBR
319 - target video bitrate for VBR
320 - maximum video bitrate for VBR - min. quantiser value for VBR
321 - max. quantiser value for VBR
322 - adaptive quantisation value
323 - return the number of bytes per GOP or bitrate for bitrate monitoring
329 struct v4l2_jpegcompression
333 int APPn
; /* Number of APP segment to be written,
335 int APP_len
; /* Length of data in JPEG APPn segment */
336 char APP_data
[60]; /* Data in the JPEG APPn segment. */
338 int COM_len
; /* Length of data in JPEG COM segment */
339 char COM_data
[60]; /* Data in JPEG COM segment */
341 __u32 jpeg_markers
; /* Which markers should go into the JPEG
342 * output. Unless you exactly know what
343 * you do, leave them untouched.
344 * Inluding less markers will make the
345 * resulting code smaller, but there will
346 * be fewer aplications which can read it.
347 * The presence of the APP and COM marker
348 * is influenced by APP_len and COM_len
349 * ONLY, not by this property! */
351 #define V4L2_JPEG_MARKER_DHT (1<<3) /* Define Huffman Tables */
352 #define V4L2_JPEG_MARKER_DQT (1<<4) /* Define Quantization Tables */
353 #define V4L2_JPEG_MARKER_DRI (1<<5) /* Define Restart Interval */
354 #define V4L2_JPEG_MARKER_COM (1<<6) /* Comment segment */
355 #define V4L2_JPEG_MARKER_APP (1<<7) /* App segment, driver will
356 * allways use APP0 */
361 * M E M O R Y - M A P P I N G B U F F E R S
363 struct v4l2_requestbuffers
366 enum v4l2_buf_type type
;
367 enum v4l2_memory memory
;
374 enum v4l2_buf_type type
;
377 enum v4l2_field field
;
378 struct timeval timestamp
;
379 struct v4l2_timecode timecode
;
382 /* memory location */
383 enum v4l2_memory memory
;
386 unsigned long userptr
;
393 /* Flags for 'flags' field */
394 #define V4L2_BUF_FLAG_MAPPED 0x0001 /* Buffer is mapped (flag) */
395 #define V4L2_BUF_FLAG_QUEUED 0x0002 /* Buffer is queued for processing */
396 #define V4L2_BUF_FLAG_DONE 0x0004 /* Buffer is ready */
397 #define V4L2_BUF_FLAG_KEYFRAME 0x0008 /* Image is a keyframe (I-frame) */
398 #define V4L2_BUF_FLAG_PFRAME 0x0010 /* Image is a P-frame */
399 #define V4L2_BUF_FLAG_BFRAME 0x0020 /* Image is a B-frame */
400 #define V4L2_BUF_FLAG_TIMECODE 0x0100 /* timecode field is valid */
401 #define V4L2_BUF_FLAG_INPUT 0x0200 /* input field is valid */
404 * O V E R L A Y P R E V I E W
406 struct v4l2_framebuffer
410 /* FIXME: in theory we should pass something like PCI device + memory
411 * region + offset instead of some physical address */
413 struct v4l2_pix_format fmt
;
415 /* Flags for the 'capability' field. Read only */
416 #define V4L2_FBUF_CAP_EXTERNOVERLAY 0x0001
417 #define V4L2_FBUF_CAP_CHROMAKEY 0x0002
418 #define V4L2_FBUF_CAP_LIST_CLIPPING 0x0004
419 #define V4L2_FBUF_CAP_BITMAP_CLIPPING 0x0008
420 /* Flags for the 'flags' field. */
421 #define V4L2_FBUF_FLAG_PRIMARY 0x0001
422 #define V4L2_FBUF_FLAG_OVERLAY 0x0002
423 #define V4L2_FBUF_FLAG_CHROMAKEY 0x0004
428 struct v4l2_clip
*next
;
434 enum v4l2_field field
;
436 struct v4l2_clip __user
*clips
;
443 * C A P T U R E P A R A M E T E R S
445 struct v4l2_captureparm
447 __u32 capability
; /* Supported modes */
448 __u32 capturemode
; /* Current mode */
449 struct v4l2_fract timeperframe
; /* Time per frame in .1us units */
450 __u32 extendedmode
; /* Driver-specific extensions */
451 __u32 readbuffers
; /* # of buffers for read */
454 /* Flags for 'capability' and 'capturemode' fields */
455 #define V4L2_MODE_HIGHQUALITY 0x0001 /* High quality imaging mode */
456 #define V4L2_CAP_TIMEPERFRAME 0x1000 /* timeperframe field is supported */
458 struct v4l2_outputparm
460 __u32 capability
; /* Supported modes */
461 __u32 outputmode
; /* Current mode */
462 struct v4l2_fract timeperframe
; /* Time per frame in seconds */
463 __u32 extendedmode
; /* Driver-specific extensions */
464 __u32 writebuffers
; /* # of buffers for write */
469 * I N P U T I M A G E C R O P P I N G
472 struct v4l2_cropcap
{
473 enum v4l2_buf_type type
;
474 struct v4l2_rect bounds
;
475 struct v4l2_rect defrect
;
476 struct v4l2_fract pixelaspect
;
480 enum v4l2_buf_type type
;
485 * A N A L O G V I D E O S T A N D A R D
488 typedef __u64 v4l2_std_id
;
490 /* one bit for each */
491 #define V4L2_STD_PAL_B ((v4l2_std_id)0x00000001)
492 #define V4L2_STD_PAL_B1 ((v4l2_std_id)0x00000002)
493 #define V4L2_STD_PAL_G ((v4l2_std_id)0x00000004)
494 #define V4L2_STD_PAL_H ((v4l2_std_id)0x00000008)
495 #define V4L2_STD_PAL_I ((v4l2_std_id)0x00000010)
496 #define V4L2_STD_PAL_D ((v4l2_std_id)0x00000020)
497 #define V4L2_STD_PAL_D1 ((v4l2_std_id)0x00000040)
498 #define V4L2_STD_PAL_K ((v4l2_std_id)0x00000080)
500 #define V4L2_STD_PAL_M ((v4l2_std_id)0x00000100)
501 #define V4L2_STD_PAL_N ((v4l2_std_id)0x00000200)
502 #define V4L2_STD_PAL_Nc ((v4l2_std_id)0x00000400)
503 #define V4L2_STD_PAL_60 ((v4l2_std_id)0x00000800)
505 #define V4L2_STD_NTSC_M ((v4l2_std_id)0x00001000)
506 #define V4L2_STD_NTSC_M_JP ((v4l2_std_id)0x00002000)
508 #define V4L2_STD_SECAM_B ((v4l2_std_id)0x00010000)
509 #define V4L2_STD_SECAM_D ((v4l2_std_id)0x00020000)
510 #define V4L2_STD_SECAM_G ((v4l2_std_id)0x00040000)
511 #define V4L2_STD_SECAM_H ((v4l2_std_id)0x00080000)
512 #define V4L2_STD_SECAM_K ((v4l2_std_id)0x00100000)
513 #define V4L2_STD_SECAM_K1 ((v4l2_std_id)0x00200000)
514 #define V4L2_STD_SECAM_L ((v4l2_std_id)0x00400000)
517 #define V4L2_STD_ATSC_8_VSB ((v4l2_std_id)0x01000000)
518 #define V4L2_STD_ATSC_16_VSB ((v4l2_std_id)0x02000000)
520 /* some common needed stuff */
521 #define V4L2_STD_PAL_BG (V4L2_STD_PAL_B |\
524 #define V4L2_STD_PAL_DK (V4L2_STD_PAL_D |\
527 #define V4L2_STD_PAL (V4L2_STD_PAL_BG |\
531 #define V4L2_STD_NTSC (V4L2_STD_NTSC_M |\
533 #define V4L2_STD_SECAM_DK (V4L2_STD_SECAM_D |\
536 #define V4L2_STD_SECAM (V4L2_STD_SECAM_B |\
542 #define V4L2_STD_525_60 (V4L2_STD_PAL_M |\
545 #define V4L2_STD_625_50 (V4L2_STD_PAL |\
549 #define V4L2_STD_ATSC (V4L2_STD_ATSC_8_VSB |\
550 V4L2_STD_ATSC_16_VSB)
552 #define V4L2_STD_UNKNOWN 0
553 #define V4L2_STD_ALL (V4L2_STD_525_60 |\
561 struct v4l2_fract frameperiod
; /* Frames, not fields */
568 * V I D E O I N P U T S
572 __u32 index
; /* Which input */
573 __u8 name
[32]; /* Label */
574 __u32 type
; /* Type of input */
575 __u32 audioset
; /* Associated audios (bitfield) */
576 __u32 tuner
; /* Associated tuner */
581 /* Values for the 'type' field */
582 #define V4L2_INPUT_TYPE_TUNER 1
583 #define V4L2_INPUT_TYPE_CAMERA 2
585 /* field 'status' - general */
586 #define V4L2_IN_ST_NO_POWER 0x00000001 /* Attached device is off */
587 #define V4L2_IN_ST_NO_SIGNAL 0x00000002
588 #define V4L2_IN_ST_NO_COLOR 0x00000004
590 /* field 'status' - analog */
591 #define V4L2_IN_ST_NO_H_LOCK 0x00000100 /* No horizontal sync lock */
592 #define V4L2_IN_ST_COLOR_KILL 0x00000200 /* Color killer is active */
594 /* field 'status' - digital */
595 #define V4L2_IN_ST_NO_SYNC 0x00010000 /* No synchronization lock */
596 #define V4L2_IN_ST_NO_EQU 0x00020000 /* No equalizer lock */
597 #define V4L2_IN_ST_NO_CARRIER 0x00040000 /* Carrier recovery failed */
599 /* field 'status' - VCR and set-top box */
600 #define V4L2_IN_ST_MACROVISION 0x01000000 /* Macrovision detected */
601 #define V4L2_IN_ST_NO_ACCESS 0x02000000 /* Conditional access denied */
602 #define V4L2_IN_ST_VTR 0x04000000 /* VTR time constant */
605 * V I D E O O U T P U T S
609 __u32 index
; /* Which output */
610 __u8 name
[32]; /* Label */
611 __u32 type
; /* Type of output */
612 __u32 audioset
; /* Associated audios (bitfield) */
613 __u32 modulator
; /* Associated modulator */
617 /* Values for the 'type' field */
618 #define V4L2_OUTPUT_TYPE_MODULATOR 1
619 #define V4L2_OUTPUT_TYPE_ANALOG 2
620 #define V4L2_OUTPUT_TYPE_ANALOGVGAOVERLAY 3
631 /* Used in the VIDIOC_QUERYCTRL ioctl for querying controls */
632 struct v4l2_queryctrl
635 enum v4l2_ctrl_type type
;
636 __u8 name
[32]; /* Whatever */
637 __s32 minimum
; /* Note signedness */
645 /* Used in the VIDIOC_QUERYMENU ioctl for querying menu items */
646 struct v4l2_querymenu
650 __u8 name
[32]; /* Whatever */
655 #define V4L2_CTRL_FLAG_DISABLED 0x0001
656 #define V4L2_CTRL_FLAG_GRABBED 0x0002
658 /* Control IDs defined by V4L2 */
659 #define V4L2_CID_BASE 0x00980900
660 /* IDs reserved for driver specific controls */
661 #define V4L2_CID_PRIVATE_BASE 0x08000000
663 #define V4L2_CID_BRIGHTNESS (V4L2_CID_BASE+0)
664 #define V4L2_CID_CONTRAST (V4L2_CID_BASE+1)
665 #define V4L2_CID_SATURATION (V4L2_CID_BASE+2)
666 #define V4L2_CID_HUE (V4L2_CID_BASE+3)
667 #define V4L2_CID_AUDIO_VOLUME (V4L2_CID_BASE+5)
668 #define V4L2_CID_AUDIO_BALANCE (V4L2_CID_BASE+6)
669 #define V4L2_CID_AUDIO_BASS (V4L2_CID_BASE+7)
670 #define V4L2_CID_AUDIO_TREBLE (V4L2_CID_BASE+8)
671 #define V4L2_CID_AUDIO_MUTE (V4L2_CID_BASE+9)
672 #define V4L2_CID_AUDIO_LOUDNESS (V4L2_CID_BASE+10)
673 #define V4L2_CID_BLACK_LEVEL (V4L2_CID_BASE+11)
674 #define V4L2_CID_AUTO_WHITE_BALANCE (V4L2_CID_BASE+12)
675 #define V4L2_CID_DO_WHITE_BALANCE (V4L2_CID_BASE+13)
676 #define V4L2_CID_RED_BALANCE (V4L2_CID_BASE+14)
677 #define V4L2_CID_BLUE_BALANCE (V4L2_CID_BASE+15)
678 #define V4L2_CID_GAMMA (V4L2_CID_BASE+16)
679 #define V4L2_CID_WHITENESS (V4L2_CID_GAMMA) /* ? Not sure */
680 #define V4L2_CID_EXPOSURE (V4L2_CID_BASE+17)
681 #define V4L2_CID_AUTOGAIN (V4L2_CID_BASE+18)
682 #define V4L2_CID_GAIN (V4L2_CID_BASE+19)
683 #define V4L2_CID_HFLIP (V4L2_CID_BASE+20)
684 #define V4L2_CID_VFLIP (V4L2_CID_BASE+21)
685 #define V4L2_CID_HCENTER (V4L2_CID_BASE+22)
686 #define V4L2_CID_VCENTER (V4L2_CID_BASE+23)
687 #define V4L2_CID_LASTP1 (V4L2_CID_BASE+24) /* last CID + 1 */
696 enum v4l2_tuner_type type
;
707 struct v4l2_modulator
718 /* Flags for the 'capability' field */
719 #define V4L2_TUNER_CAP_LOW 0x0001
720 #define V4L2_TUNER_CAP_NORM 0x0002
721 #define V4L2_TUNER_CAP_STEREO 0x0010
722 #define V4L2_TUNER_CAP_LANG2 0x0020
723 #define V4L2_TUNER_CAP_SAP 0x0020
724 #define V4L2_TUNER_CAP_LANG1 0x0040
726 /* Flags for the 'rxsubchans' field */
727 #define V4L2_TUNER_SUB_MONO 0x0001
728 #define V4L2_TUNER_SUB_STEREO 0x0002
729 #define V4L2_TUNER_SUB_LANG2 0x0004
730 #define V4L2_TUNER_SUB_SAP 0x0004
731 #define V4L2_TUNER_SUB_LANG1 0x0008
733 /* Values for the 'audmode' field */
734 #define V4L2_TUNER_MODE_MONO 0x0000
735 #define V4L2_TUNER_MODE_STEREO 0x0001
736 #define V4L2_TUNER_MODE_LANG2 0x0002
737 #define V4L2_TUNER_MODE_SAP 0x0002
738 #define V4L2_TUNER_MODE_LANG1 0x0003
740 struct v4l2_frequency
743 enum v4l2_tuner_type type
;
759 /* Flags for the 'capability' field */
760 #define V4L2_AUDCAP_STEREO 0x00001
761 #define V4L2_AUDCAP_AVL 0x00002
763 /* Flags for the 'mode' field */
764 #define V4L2_AUDMODE_AVL 0x00001
776 * D A T A S E R V I C E S ( V B I )
778 * Data services API by Michael Schimek
781 struct v4l2_vbi_format
783 __u32 sampling_rate
; /* in 1 Hz */
785 __u32 samples_per_line
;
786 __u32 sample_format
; /* V4L2_PIX_FMT_* */
789 __u32 flags
; /* V4L2_VBI_* */
790 __u32 reserved
[2]; /* must be zero */
794 #define V4L2_VBI_UNSYNC (1<< 0)
795 #define V4L2_VBI_INTERLACED (1<< 1)
799 * A G G R E G A T E S T R U C T U R E S
802 /* Stream data format
806 enum v4l2_buf_type type
;
809 struct v4l2_pix_format pix
; // V4L2_BUF_TYPE_VIDEO_CAPTURE
810 struct v4l2_window win
; // V4L2_BUF_TYPE_VIDEO_OVERLAY
811 struct v4l2_vbi_format vbi
; // V4L2_BUF_TYPE_VBI_CAPTURE
812 __u8 raw_data
[200]; // user-defined
817 /* Stream type-dependent parameters
819 struct v4l2_streamparm
821 enum v4l2_buf_type type
;
824 struct v4l2_captureparm capture
;
825 struct v4l2_outputparm output
;
826 __u8 raw_data
[200]; /* user-defined */
833 * 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
836 #define VIDIOC_QUERYCAP _IOR ('V', 0, struct v4l2_capability)
837 #define VIDIOC_RESERVED _IO ('V', 1)
838 #define VIDIOC_ENUM_FMT _IOWR ('V', 2, struct v4l2_fmtdesc)
839 #define VIDIOC_G_FMT _IOWR ('V', 4, struct v4l2_format)
840 #define VIDIOC_S_FMT _IOWR ('V', 5, struct v4l2_format)
842 #define VIDIOC_G_COMP _IOR ('V', 6, struct v4l2_compression)
843 #define VIDIOC_S_COMP _IOW ('V', 7, struct v4l2_compression)
845 #define VIDIOC_REQBUFS _IOWR ('V', 8, struct v4l2_requestbuffers)
846 #define VIDIOC_QUERYBUF _IOWR ('V', 9, struct v4l2_buffer)
847 #define VIDIOC_G_FBUF _IOR ('V', 10, struct v4l2_framebuffer)
848 #define VIDIOC_S_FBUF _IOW ('V', 11, struct v4l2_framebuffer)
849 #define VIDIOC_OVERLAY _IOW ('V', 14, int)
850 #define VIDIOC_QBUF _IOWR ('V', 15, struct v4l2_buffer)
851 #define VIDIOC_DQBUF _IOWR ('V', 17, struct v4l2_buffer)
852 #define VIDIOC_STREAMON _IOW ('V', 18, int)
853 #define VIDIOC_STREAMOFF _IOW ('V', 19, int)
854 #define VIDIOC_G_PARM _IOWR ('V', 21, struct v4l2_streamparm)
855 #define VIDIOC_S_PARM _IOWR ('V', 22, struct v4l2_streamparm)
856 #define VIDIOC_G_STD _IOR ('V', 23, v4l2_std_id)
857 #define VIDIOC_S_STD _IOW ('V', 24, v4l2_std_id)
858 #define VIDIOC_ENUMSTD _IOWR ('V', 25, struct v4l2_standard)
859 #define VIDIOC_ENUMINPUT _IOWR ('V', 26, struct v4l2_input)
860 #define VIDIOC_G_CTRL _IOWR ('V', 27, struct v4l2_control)
861 #define VIDIOC_S_CTRL _IOWR ('V', 28, struct v4l2_control)
862 #define VIDIOC_G_TUNER _IOWR ('V', 29, struct v4l2_tuner)
863 #define VIDIOC_S_TUNER _IOW ('V', 30, struct v4l2_tuner)
864 #define VIDIOC_G_AUDIO _IOR ('V', 33, struct v4l2_audio)
865 #define VIDIOC_S_AUDIO _IOW ('V', 34, struct v4l2_audio)
866 #define VIDIOC_QUERYCTRL _IOWR ('V', 36, struct v4l2_queryctrl)
867 #define VIDIOC_QUERYMENU _IOWR ('V', 37, struct v4l2_querymenu)
868 #define VIDIOC_G_INPUT _IOR ('V', 38, int)
869 #define VIDIOC_S_INPUT _IOWR ('V', 39, int)
870 #define VIDIOC_G_OUTPUT _IOR ('V', 46, int)
871 #define VIDIOC_S_OUTPUT _IOWR ('V', 47, int)
872 #define VIDIOC_ENUMOUTPUT _IOWR ('V', 48, struct v4l2_output)
873 #define VIDIOC_G_AUDOUT _IOR ('V', 49, struct v4l2_audioout)
874 #define VIDIOC_S_AUDOUT _IOW ('V', 50, struct v4l2_audioout)
875 #define VIDIOC_G_MODULATOR _IOWR ('V', 54, struct v4l2_modulator)
876 #define VIDIOC_S_MODULATOR _IOW ('V', 55, struct v4l2_modulator)
877 #define VIDIOC_G_FREQUENCY _IOWR ('V', 56, struct v4l2_frequency)
878 #define VIDIOC_S_FREQUENCY _IOW ('V', 57, struct v4l2_frequency)
879 #define VIDIOC_CROPCAP _IOWR ('V', 58, struct v4l2_cropcap)
880 #define VIDIOC_G_CROP _IOWR ('V', 59, struct v4l2_crop)
881 #define VIDIOC_S_CROP _IOW ('V', 60, struct v4l2_crop)
882 #define VIDIOC_G_JPEGCOMP _IOR ('V', 61, struct v4l2_jpegcompression)
883 #define VIDIOC_S_JPEGCOMP _IOW ('V', 62, struct v4l2_jpegcompression)
884 #define VIDIOC_QUERYSTD _IOR ('V', 63, v4l2_std_id)
885 #define VIDIOC_TRY_FMT _IOWR ('V', 64, struct v4l2_format)
886 #define VIDIOC_ENUMAUDIO _IOWR ('V', 65, struct v4l2_audio)
887 #define VIDIOC_ENUMAUDOUT _IOWR ('V', 66, struct v4l2_audioout)
888 #define VIDIOC_G_PRIORITY _IOR ('V', 67, enum v4l2_priority)
889 #define VIDIOC_S_PRIORITY _IOW ('V', 68, enum v4l2_priority)
891 /* for compatibility, will go away some day */
892 #define VIDIOC_OVERLAY_OLD _IOWR ('V', 14, int)
893 #define VIDIOC_S_PARM_OLD _IOW ('V', 22, struct v4l2_streamparm)
894 #define VIDIOC_S_CTRL_OLD _IOW ('V', 28, struct v4l2_control)
895 #define VIDIOC_G_AUDIO_OLD _IOWR ('V', 33, struct v4l2_audio)
896 #define VIDIOC_G_AUDOUT_OLD _IOWR ('V', 49, struct v4l2_audioout)
897 #define VIDIOC_CROPCAP_OLD _IOR ('V', 58, struct v4l2_cropcap)
899 #define BASE_VIDIOC_PRIVATE 192 /* 192-255 are private */
905 * V 4 L 2 D R I V E R H E L P E R A P I
907 * Some commonly needed functions for drivers (v4l2-common.o module)
909 #include <linux/fs.h>
911 /* Video standard functions */
912 extern unsigned int v4l2_video_std_fps(struct v4l2_standard
*vs
);
913 extern int v4l2_video_std_construct(struct v4l2_standard
*vs
,
916 /* prority handling */
917 struct v4l2_prio_state
{
920 int v4l2_prio_init(struct v4l2_prio_state
*global
);
921 int v4l2_prio_change(struct v4l2_prio_state
*global
, enum v4l2_priority
*local
,
922 enum v4l2_priority
new);
923 int v4l2_prio_open(struct v4l2_prio_state
*global
, enum v4l2_priority
*local
);
924 int v4l2_prio_close(struct v4l2_prio_state
*global
, enum v4l2_priority
*local
);
925 enum v4l2_priority
v4l2_prio_max(struct v4l2_prio_state
*global
);
926 int v4l2_prio_check(struct v4l2_prio_state
*global
, enum v4l2_priority
*local
);
928 /* names for fancy debug output */
929 extern char *v4l2_field_names
[];
930 extern char *v4l2_type_names
[];
931 extern char *v4l2_ioctl_names
[];
933 /* Compatibility layer interface -- v4l1-compat module */
934 typedef int (*v4l2_kioctl
)(struct inode
*inode
, struct file
*file
,
935 unsigned int cmd
, void *arg
);
936 int v4l_compat_translate_ioctl(struct inode
*inode
, struct file
*file
,
937 int cmd
, void *arg
, v4l2_kioctl driver_ioctl
);
939 #endif /* __KERNEL__ */
940 #endif /* __LINUX_VIDEODEV2_H */