videodev2.h
上传用户:aoeyumen
上传日期:2007-01-06
资源大小:3329k
文件大小:32k
源码类别:

DVD

开发平台:

Unix_Linux

  1. /*
  2.  * Video for Linux Two
  3.  *
  4.  * Header file for V4L2 drivers and applications.
  5.  *
  6.  * Author: Bill Dirks <bdirks@pacbell.net>
  7.  */
  8. #ifndef __LINUX_VIDEODEV_H
  9. #define __LINUX_VIDEODEV_H
  10. #define V4L2_MAJOR_VERSION 0
  11. #define V4L2_MINOR_VERSION 19
  12. /*
  13.  * M I S C E L L A N E O U S
  14.  */
  15. /*  Four-character-code (FOURCC) */
  16. #define fourcc(a,b,c,d)
  17.         (((__u32)(a)<<0)|((__u32)(b)<<8)|((__u32)(c)<<16)|((__u32)(d)<<24))
  18. /*  Open flag for non-capturing opens on capture devices  */
  19. #define O_NONCAP O_TRUNC
  20. #define O_NOIO O_TRUNC
  21. /*
  22.  * D R I V E R   C A P A B I L I T I E S
  23.  */
  24. struct v4l2_capability
  25. {
  26. char name[32]; /* Descriptive, and unique */
  27. int type; /* Device type, see below */
  28. int inputs; /* Num video inputs */
  29. int outputs; /* Num video outputs */
  30. int audios; /* Num audio devices */
  31. int maxwidth;
  32. int maxheight;
  33. int minwidth;
  34. int minheight;
  35. int maxframerate;
  36. __u32 flags; /* Feature flags, see below */
  37. __u32 reserved[4];
  38. };
  39. /* Values for 'type' field */
  40. #define V4L2_TYPE_CAPTURE 0 /* Is a video capture device */
  41. #define V4L2_TYPE_CODEC 1 /* Is a CODEC device */
  42. #define V4L2_TYPE_OUTPUT 2 /* Is a video output device */
  43. #define V4L2_TYPE_FX 3 /* Is a video effects device */
  44. #define V4L2_TYPE_VBI 4 /* Is a VBI capture device */
  45. #define V4L2_TYPE_VTR 5 /* Is a tape recorder controller */
  46. #define V4L2_TYPE_VTX 6 /* Is a teletext device */
  47. #define V4L2_TYPE_RADIO 7 /* Is a radio device */
  48. #define V4L2_TYPE_PRIVATE 1000 /* Start of driver private types */
  49. /* Flags for 'flags' field */
  50. #define V4L2_FLAG_READ 0x00001 /* Can capture via read() call */
  51. #define V4L2_FLAG_WRITE 0x00002 /* Can accept data via write() */
  52. #define V4L2_FLAG_STREAMING 0x00004 /* Can capture streaming video */
  53. #define V4L2_FLAG_PREVIEW 0x00008 /* Can do automatic preview */
  54. #define V4L2_FLAG_SELECT 0x00010 /* Supports the select() call */
  55. #define V4L2_FLAG_TUNER 0x00020 /* Can tune */
  56. #define V4L2_FLAG_MONOCHROME 0x00040 /* Monochrome only */
  57. #define V4L2_FLAG_DATA_SERVICE 0x00080 /* Has a related data service dev. */
  58. /*
  59.  * V I D E O   I M A G E   F O R M A T
  60.  */
  61. struct v4l2_format
  62. {
  63. __u32 width;
  64. __u32 height;
  65. __u32 depth;
  66. __u32 pixelformat;
  67. __u32 flags;
  68. __u32 bytesperline; /* only used when there are pad bytes */
  69. __u32 sizeimage;
  70. __u32 priv; /* private data, depends on pixelformat */
  71. };
  72. /*           Pixel format    FOURCC                  depth  Description   */
  73. #define V4L2_PIX_FMT_RGB332  fourcc('R','G','B','1') /*  8  RGB-3-3-2     */
  74. #define V4L2_PIX_FMT_RGB555  fourcc('R','G','B','O') /* 16  RGB-5-5-5     */
  75. #define V4L2_PIX_FMT_RGB565  fourcc('R','G','B','P') /* 16  RGB-5-6-5     */
  76. #define V4L2_PIX_FMT_BGR24   fourcc('B','G','R','3') /* 24  BGR-8-8-8     */
  77. #define V4L2_PIX_FMT_RGB24   fourcc('R','G','B','3') /* 24  RGB-8-8-8     */
  78. #define V4L2_PIX_FMT_BGR32   fourcc('B','G','R','4') /* 32  BGR-8-8-8-8   */
  79. #define V4L2_PIX_FMT_RGB32   fourcc('R','G','B','4') /* 32  RGB-8-8-8-8   */
  80. #define V4L2_PIX_FMT_GREY    fourcc('G','R','E','Y') /*  8  Greyscale     */
  81. #define V4L2_PIX_FMT_YVU410  fourcc('Y','V','U','9') /*  9  YVU 4:1:0     */
  82. #define V4L2_PIX_FMT_YVU420  fourcc('Y','V','1','2') /* 12  YVU 4:2:0     */
  83. #define V4L2_PIX_FMT_YUYV    fourcc('Y','U','Y','V') /* 16  YUV 4:2:2     */
  84. #define V4L2_PIX_FMT_UYVY    fourcc('U','Y','V','Y') /* 16  YUV 4:2:2     */
  85. #define V4L2_PIX_FMT_YVU422P fourcc('4','2','2','P') /* 16  YVU422 planar */
  86. #define V4L2_PIX_FMT_YVU411P fourcc('4','1','1','P') /* 16  YVU411 planar */
  87. /*  The following formats are not defined in the V4L2 specification */
  88. #define V4L2_PIX_FMT_YUV410  fourcc('Y','U','V','9') /*  9  YUV 4:1:0     */
  89. #define V4L2_PIX_FMT_YUV420  fourcc('Y','U','1','2') /* 12  YUV 4:2:0     */
  90. #define V4L2_PIX_FMT_YYUV    fourcc('Y','Y','U','V') /* 16  YUV 4:2:2     */
  91. #define V4L2_PIX_FMT_HI240   fourcc('H','I','2','4') /*  8  8-bit color   */
  92. /*  Flags */
  93. #define V4L2_FMT_FLAG_COMPRESSED 0x0001 /* Compressed format */
  94. #define V4L2_FMT_FLAG_BYTESPERLINE 0x0002 /* bytesperline field valid */
  95. #define V4L2_FMT_FLAG_INTERLACED 0x0004 /* Image is interlaced */
  96. #define V4L2_FMT_FLAG_TOPFIELD 0x0008 /* is a top field only */
  97. #define V4L2_FMT_FLAG_BOTFIELD 0x0010 /* is a bottom field only */
  98. #define V4L2_FMT_FLAG_ODDFIELD FMT_FLAG_TOPFIELD
  99. #define V4L2_FMT_FLAG_EVENFIELD FMT_FLAG_BOTFIELD
  100. #define V4L2_FMT_FLAG_COMBINED FMT_FLAG_INTERLACED
  101. #define V4L2_FMT_CS_field 0xF000 /* Color space field mask */
  102. #define V4L2_FMT_CS_601YUV 0x1000 /* ITU YCrCb color space */
  103. #define V4L2_FMT_FLAG_SWCONVERSION 0x0800 /* used only in format enum. */
  104. /*  SWCONVERSION indicates the format is not natively supported by the  */
  105. /*  driver and the driver uses software conversion to support it  */
  106. /*
  107.  * F O R M A T   E N U M E R A T I O N
  108.  */
  109. struct v4l2_fmtdesc
  110. {
  111. int index; /* Format number */
  112. char description[32]; /* Description string */
  113. __u32 pixelformat; /* Format fourcc */
  114. __u32 flags; /* Format flags */
  115. __u32 depth; /* Bits per pixel */
  116. __u32 reserved[2];
  117. };
  118. struct v4l2_cvtdesc
  119. {
  120. int index;
  121. struct
  122. {
  123. __u32 pixelformat;
  124. __u32 flags;
  125. __u32 depth;
  126. __u32 reserved[2];
  127. } in, out;
  128. };
  129. struct v4l2_fxdesc
  130. {
  131. int index;
  132. char  name[32];
  133. __u32 flags;
  134. __u32 inputs;
  135. __u32 controls;
  136. __u32 reserved[2];
  137. };
  138. /*
  139.  * T I M E C O D E
  140.  */
  141. struct v4l2_timecode
  142. {
  143. __u8 frames;
  144. __u8 seconds;
  145. __u8 minutes;
  146. __u8 hours;
  147. __u8 userbits[4];
  148. __u32 flags;
  149. __u32 type;
  150. };
  151. /*  Type  */
  152. #define V4L2_TC_TYPE_24FPS 1
  153. #define V4L2_TC_TYPE_25FPS 2
  154. #define V4L2_TC_TYPE_30FPS 3
  155. #define V4L2_TC_TYPE_50FPS 4
  156. #define V4L2_TC_TYPE_60FPS 5
  157. /*  Flags  */
  158. #define V4L2_TC_FLAG_DROPFRAME 0x0001 /* "drop-frame" mode */
  159. #define V4L2_TC_FLAG_COLORFRAME 0x0002
  160. #define V4L2_TC_USERBITS_field 0x000C
  161. #define V4L2_TC_USERBITS_USERDEFINED 0x0000
  162. #define V4L2_TC_USERBITS_8BITCHARS 0x0008
  163. /* The above is based on SMPTE timecodes */
  164. /*
  165.  * C O M P R E S S I O N   P A R A M E T E R S
  166.  */
  167. struct v4l2_compression
  168. {
  169. int quality;
  170. int keyframerate;
  171. int pframerate;
  172. __u32 reserved[5];
  173. };
  174. /*
  175.  * M E M O R Y - M A P P I N G   B U F F E R S
  176.  */
  177. struct v4l2_requestbuffers
  178. {
  179. int count;
  180. __u32 type;
  181. __u32 reserved[2];
  182. };
  183. struct v4l2_buffer
  184. {
  185. int index;
  186. __u32 type;
  187. __u32 offset;
  188. __u32 length;
  189. __u32 bytesused;
  190. __u32 flags;
  191. struct timeval timestamp;
  192. struct v4l2_timecode timecode;
  193. __u32 reserved[4];
  194. };
  195. /*  Buffer type codes and flags for 'type' field */
  196. #define V4L2_BUF_TYPE_field 0x00001FFF  /* Type field mask  */
  197. #define V4L2_BUF_TYPE_CAPTURE 0x00000001
  198. #define V4L2_BUF_TYPE_CODECIN 0x00000002
  199. #define V4L2_BUF_TYPE_CODECOUT 0x00000003
  200. #define V4L2_BUF_TYPE_EFFECTSIN 0x00000004
  201. #define V4L2_BUF_TYPE_EFFECTSIN2 0x00000005
  202. #define V4L2_BUF_TYPE_EFFECTSOUT 0x00000006
  203. #define V4L2_BUF_TYPE_VIDEOOUT 0x00000007
  204. #define V4L2_BUF_TYPE_FXCONTROL 0x00000008
  205. /*  Starting value of driver private buffer types  */
  206. #define V4L2_BUF_TYPE_PRIVATE 0x00001000
  207. #define V4L2_BUF_ATTR_DEVICEMEM 0x00010000  /* Buffer is on device (flag) */
  208. /*  Flags used only in VIDIOC_REQBUFS  */
  209. #define V4L2_BUF_REQ_field 0xF0000000
  210. #define V4L2_BUF_REQ_CONTIG 0x10000000  /* Map all buffers in one
  211.        contiguous mmap(). This flag
  212.        only used in VIDIOC_REQBUFS */
  213. /*  Flags for 'flags' field */
  214. #define V4L2_BUF_FLAG_MAPPED 0x0001  /* Buffer is mapped (flag) */
  215. #define V4L2_BUF_FLAG_QUEUED 0x0002 /* Buffer is queued for processing */
  216. #define V4L2_BUF_FLAG_DONE 0x0004 /* Buffer is ready */
  217. #define V4L2_BUF_FLAG_KEYFRAME 0x0008 /* Image is a keyframe (I-frame) */
  218. #define V4L2_BUF_FLAG_PFRAME 0x0010 /* Image is a P-frame */
  219. #define V4L2_BUF_FLAG_BFRAME 0x0020 /* Image is a B-frame */
  220. #define V4L2_BUF_FLAG_TOPFIELD 0x0040 /* Image is a top field only */
  221. #define V4L2_BUF_FLAG_BOTFIELD 0x0080 /* Image is a bottom field only */
  222. #define V4L2_BUF_FLAG_ODDFIELD V4L2_BUF_FLAG_TOPFIELD
  223. #define V4L2_BUF_FLAG_EVENFIELD V4L2_BUF_FLAG_BOTFIELD
  224. /*
  225.  * O V E R L A Y   P R E V I E W
  226.  */
  227. struct v4l2_framebuffer
  228. {
  229. __u32 capability;
  230. __u32 flags;
  231. void *base[3];
  232. struct v4l2_format fmt;
  233. };
  234. /*  Flags for the 'capability' field. Read only */
  235. #define V4L2_FBUF_CAP_EXTERNOVERLAY 0x0001
  236. #define V4L2_FBUF_CAP_CHROMAKEY 0x0002
  237. #define V4L2_FBUF_CAP_CLIPPING 0x0004
  238. #define V4L2_FBUF_CAP_SCALEUP 0x0008
  239. #define V4L2_FBUF_CAP_SCALEDOWN 0x0010
  240. #define V4L2_FBUF_CAP_BITMAP_CLIPPING 0x0020
  241. /*  Flags for the 'flags' field. */
  242. #define V4L2_FBUF_FLAG_PRIMARY 0x0001
  243. #define V4L2_FBUF_FLAG_OVERLAY 0x0002
  244. #define V4L2_FBUF_FLAG_CHROMAKEY 0x0004
  245. struct v4l2_clip
  246. {
  247. struct v4l2_clip *next;
  248. int x;
  249. int y;
  250. int width;
  251. int height;
  252. };
  253. struct v4l2_window
  254. {
  255. int x;
  256. int y;
  257. int width;
  258. int height;
  259. __u32 chromakey;
  260. struct v4l2_clip *clips;
  261. int clipcount;
  262. void *bitmap;
  263. };
  264. /*
  265.  * D E V I C E   P E R F O R M A N C E
  266.  */
  267. struct v4l2_performance
  268. {
  269. int frames;
  270. int framesdropped;
  271. __u64 bytesin;
  272. __u64 bytesout;
  273. __u32 reserved[4];
  274. };
  275. /*
  276.  * C A P T U R E   P A R A M E T E R S
  277.  */
  278. struct v4l2_captureparm
  279. {
  280. __u32 capability; /*  Supported modes */
  281. __u32 capturemode; /*  Current mode */
  282. unsigned long timeperframe; /*  Time per frame in .1us units */
  283. __u32 extendedmode; /*  Driver-specific extensions */
  284. __u32 reserved[4];
  285. };
  286. /*  Flags for 'capability' and 'capturemode' fields */
  287. #define V4L2_MODE_HIGHQUALITY 0x0001 /*  High quality imaging mode */
  288. //#define V4L2_MODE_VFLIP 0x0002 /*  Flip image vertically */
  289. //#define V4L2_MODE_HFLIP 0x0004 /*  Flip image horizontally */
  290. #define V4L2_CAP_TIMEPERFRAME 0x1000 /*  timeperframe field is supported */
  291. struct v4l2_outputparm
  292. {
  293. __u32 capability; /*  Supported modes */
  294. __u32 outputmode; /*  Current mode */
  295. unsigned long timeperframe; /*  Time per frame in .1us units */
  296. __u32 extendedmode; /*  Driver-specific extensions */
  297. __u32 reserved[4];
  298. };
  299. /*
  300.  * I N P U T   I M A G E   C R O P P I N G
  301.  */
  302. struct v4l2_cropcap
  303. {
  304. __u32 capability;
  305. int min_x;
  306. int min_y;
  307. int max_x;
  308. int max_y;
  309. int default_left;
  310. int default_top;
  311. int default_right;
  312. int default_bottom;
  313. __u32 reserved[2];
  314. };
  315. struct v4l2_crop
  316. {
  317. int left;
  318. int top;
  319. int right;
  320. int bottom;
  321. __u32 reserved;
  322. };
  323. /*
  324.  * D I G I T A L   Z O O M
  325.  */
  326. struct v4l2_zoomcap
  327. {
  328. __u32 capability;
  329. __u32 maxwidth;
  330. __u32 maxheight;
  331. __u32 minwidth;
  332. __u32 minheight;
  333. __u32 reserved[2];
  334. };
  335. /*  Flags for the capability field  */
  336. #define V4L2_ZOOM_NONCAP 0x0001
  337. #define V4L2_ZOOM_WHILESTREAMING 0x0002
  338. struct v4l2_zoom
  339. {
  340. __u32 x;
  341. __u32 y;
  342. __u32 width;
  343. __u32 height;
  344. __u32 reserved;
  345. };
  346. /*
  347.  *      A N A L O G   V I D E O   S T A N D A R D
  348.  */
  349. struct v4l2_standard
  350. {
  351. __u8 name[24];
  352. struct {
  353. __u32 numerator;
  354. __u32 denominator; /* >= 1 */
  355. } framerate; /* Frames, not fields */
  356. __u32 framelines;
  357. __u32 reserved1;
  358. __u32 colorstandard;
  359. union {
  360. struct {
  361. __u32 colorsubcarrier; /* Hz */
  362. }  pal;
  363. struct {
  364. __u32 colorsubcarrier; /* Hz */
  365. }  ntsc;
  366. struct {
  367. __u32 f0b; /* Hz (blue) */
  368. __u32 f0r; /* Hz (red)  */
  369. }  secam;
  370. __u8 reserved[12];
  371. } colorstandard_data;
  372. __u32 transmission; /* Bit field. Must be zero for
  373.    non-modulators/demodulators. */
  374. __u32 reserved2; /* Must be set to zero */
  375. };
  376. /*  Values for the 'colorstandard' field  */
  377. #define V4L2_COLOR_STD_PAL 1
  378. #define V4L2_COLOR_STD_NTSC 2
  379. #define V4L2_COLOR_STD_SECAM 3
  380. /*  Values for the color subcarrier fields  */
  381. #define V4L2_COLOR_SUBC_PAL 4433619 /* PAL BGHI, NTSC-44 */
  382. #define V4L2_COLOR_SUBC_PAL_M 3575611 /* PAL M (Brazil) */
  383. #define V4L2_COLOR_SUBC_PAL_N 3582056 /* PAL N */
  384. #define V4L2_COLOR_SUBC_NTSC 3579545 /* NTSC M, NTSC-Japan */
  385. #define V4L2_COLOR_SUBC_SECAMB 4250000 /* SECAM B - Y carrier */
  386. #define V4L2_COLOR_SUBC_SECAMR 4406250 /* SECAM R - Y carrier */
  387. /*  Flags for the 'transmission' field  */
  388. #define V4L2_TRANSM_STD_B (1<<1)
  389. #define V4L2_TRANSM_STD_D (1<<3)
  390. #define V4L2_TRANSM_STD_G (1<<6)
  391. #define V4L2_TRANSM_STD_H (1<<7)
  392. #define V4L2_TRANSM_STD_I (1<<8)
  393. #define V4L2_TRANSM_STD_K (1<<10)
  394. #define V4L2_TRANSM_STD_K1 (1<<11)
  395. #define V4L2_TRANSM_STD_L (1<<12)
  396. #define V4L2_TRANSM_STD_M (1<<13)
  397. #define V4L2_TRANSM_STD_N (1<<14)
  398. /*  Used in the VIDIOC_ENUMSTD ioctl for querying supported standards  */
  399. struct v4l2_enumstd
  400. {
  401. int index;
  402. struct v4l2_standard std;
  403. __u32 inputs;  /* set of inputs that */
  404.  /* support this standard */
  405. __u32 outputs; /* set of outputs that */
  406.  /* support this standard */
  407. __u32 reserved[2];
  408. };
  409. /*
  410.  * V I D E O   I N P U T S
  411.  */
  412. struct v4l2_input
  413. {
  414. int index; /*  Which input */
  415. char name[32]; /*  Label */
  416. int type; /*  Type of input */
  417. __u32 capability; /*  Capability flags */
  418. int assoc_audio; /*  Associated audio input */
  419. __u32 reserved[4];
  420. };
  421. /*  Values for the 'type' field */
  422. #define V4L2_INPUT_TYPE_TUNER 1
  423. #define V4L2_INPUT_TYPE_CAMERA 2
  424. /*  Flags for the 'capability' field */
  425. #define V4L2_INPUT_CAP_AUDIO 0x0001 /* assoc_audio */
  426. /*
  427.  * V I D E O   O U T P U T S
  428.  */
  429. struct v4l2_output
  430. {
  431. int index; /*  Which output */
  432. char name[32]; /*  Label */
  433. int type; /*  Type of output */
  434. __u32 capability; /*  Capability flags */
  435. int assoc_audio; /*  Associated audio */
  436. __u32 reserved[4];
  437. };
  438. /*  Values for the 'type' field */
  439. #define V4L2_OUTPUT_TYPE_MODULATOR 1
  440. #define V4L2_OUTPUT_TYPE_ANALOG 2
  441. #define V4L2_OUTPUT_TYPE_ANALOGVGAOVERLAY 3
  442. /*  Flags for the 'capability' field */
  443. #define V4L2_OUTPUT_CAP_AUDIO 0x0001 /* assoc_audio */
  444. /*
  445.  * C O N T R O L S
  446.  */
  447. struct v4l2_control
  448. {
  449. __u32 id;
  450. int value;
  451. };
  452. /*  Used in the VIDIOC_QUERYCTRL ioctl for querying controls */
  453. struct v4l2_queryctrl
  454. {
  455. __u32 id;
  456. __u8 name[32]; /* Whatever */
  457. int minimum; /* Note signedness */
  458. int maximum;
  459. unsigned int step;
  460. int default_value;
  461. __u32 type;
  462. __u32 flags;
  463. __u32 category; /* Automatically filled in by V4L2 */
  464. __u8 catname[32]; /*   for pre-defined controls      */
  465. __u32 reserved[2];
  466. };
  467. /*  Used in the VIDIOC_QUERYMENU ioctl for querying menu items */
  468. struct v4l2_querymenu
  469. {
  470. __u32 id;
  471. int index;
  472. __u8 name[32]; /* Whatever */
  473. int reserved;
  474. };
  475. /*  Used in V4L2_BUF_TYPE_FXCONTROL buffers  */
  476. struct v4l2_fxcontrol
  477. {
  478. __u32 id;
  479. __u32 value;
  480. };
  481. /*  Control types  */
  482. #define V4L2_CTRL_TYPE_INTEGER 0
  483. #define V4L2_CTRL_TYPE_BOOLEAN 1
  484. #define V4L2_CTRL_TYPE_MENU 2
  485. #define V4L2_CTRL_TYPE_BUTTON 3
  486. /*  Control flags  */
  487. #define V4L2_CTRL_FLAG_GRAYED 0x0001
  488. /*  Control categories */
  489. #define V4L2_CTRL_CAT_VIDEO 1  /*  "Video"   */
  490. #define V4L2_CTRL_CAT_AUDIO 2  /*  "Audio"   */
  491. #define V4L2_CTRL_CAT_EFFECT 3  /*  "Effect"  */
  492. /*  Control IDs defined by V4L2 */
  493. #define V4L2_CID_BASE 0x00980900
  494. /*  IDs reserved for driver specific controls */
  495. #define V4L2_CID_PRIVATE_BASE 0x08000000
  496. /*  IDs reserved for effect-specific controls on effects devices  */
  497. #define V4L2_CID_EFFECT_BASE 0x0A00B000
  498. #define V4L2_CID_BRIGHTNESS (V4L2_CID_BASE+0)
  499. #define V4L2_CID_CONTRAST (V4L2_CID_BASE+1)
  500. #define V4L2_CID_SATURATION (V4L2_CID_BASE+2)
  501. #define V4L2_CID_HUE (V4L2_CID_BASE+3)
  502. #define V4L2_CID_AUDIO_VOLUME (V4L2_CID_BASE+5)
  503. #define V4L2_CID_AUDIO_BALANCE (V4L2_CID_BASE+6)
  504. #define V4L2_CID_AUDIO_BASS (V4L2_CID_BASE+7)
  505. #define V4L2_CID_AUDIO_TREBLE (V4L2_CID_BASE+8)
  506. #define V4L2_CID_AUDIO_MUTE (V4L2_CID_BASE+9)
  507. #define V4L2_CID_AUDIO_LOUDNESS (V4L2_CID_BASE+10)
  508. #define V4L2_CID_BLACK_LEVEL (V4L2_CID_BASE+11)
  509. #define V4l2_CID_AUTO_WHITE_BALANCE (V4L2_CID_BASE+12)
  510. #define V4L2_CID_DO_WHITE_BALANCE (V4L2_CID_BASE+13)
  511. #define V4L2_CID_RED_BALANCE (V4L2_CID_BASE+14)
  512. #define V4L2_CID_BLUE_BALANCE (V4L2_CID_BASE+15)
  513. #define V4L2_CID_GAMMA (V4L2_CID_BASE+16)
  514. #define V4L2_CID_WHITENESS (V4L2_CID_GAMMA) /* ? Not sure */
  515. #define V4L2_CID_EXPOSURE (V4L2_CID_BASE+17)
  516. #define V4L2_CID_AUTOGAIN (V4L2_CID_BASE+18)
  517. #define V4L2_CID_GAIN (V4L2_CID_BASE+19)
  518. #define V4L2_CID_HFLIP (V4L2_CID_BASE+20)
  519. #define V4L2_CID_VFLIP (V4L2_CID_BASE+21)
  520. #define V4L2_CID_HCENTER (V4L2_CID_BASE+22)
  521. #define V4L2_CID_VCENTER (V4l2_CID_BASE+23)
  522. #define V4L2_CID_LASTP1 (V4L2_CID_BASE+24) /* last CID + 1 */
  523. /*  Remember to change fill_ctrl_category() in videodev.c  */
  524. /*
  525.  * T U N I N G
  526.  */
  527. struct v4l2_tuner
  528. {
  529. int input;
  530. char name[32];
  531. struct v4l2_standard std;
  532. __u32 capability;
  533. __u32 rangelow;
  534. __u32 rangehigh;
  535. __u32 rxsubchans;
  536. __u32 audmode;
  537. int signal;
  538. int afc;
  539. __u32 reserved[4];
  540. };
  541. struct v4l2_modulator
  542. {
  543. int output;
  544. char name[32];
  545. struct v4l2_standard std;
  546. __u32 capability;
  547. __u32 rangelow;
  548. __u32 rangehigh;
  549. __u32 audmode;
  550. __u32 reserved[4];
  551. };
  552. /*  Flags for the 'capability' field */
  553. #define V4L2_TUNER_CAP_LOW 0x0001
  554. #define V4L2_TUNER_CAP_NORM 0x0002
  555. #define V4L2_TUNER_CAP_STEREO 0x0010
  556. #define V4L2_TUNER_CAP_LANG2 0x0020
  557. #define V4L2_TUNER_CAP_SAP 0x0020
  558. /*  Flags for the 'rxsubchans' field */
  559. #define V4L2_TUNER_SUB_MONO 0x0001
  560. #define V4L2_TUNER_SUB_STEREO 0x0002
  561. #define V4L2_TUNER_SUB_LANG2 0x0004
  562. #define V4L2_TUNER_SUB_SAP 0x0004
  563. /*  Values for the 'audmode' field */
  564. #define V4L2_TUNER_MODE_MONO 0x0000
  565. #define V4L2_TUNER_MODE_STEREO 0x0001
  566. #define V4L2_TUNER_MODE_LANG2        0x0002
  567. #define V4L2_TUNER_MODE_SAP 0x0002
  568. struct v4l2_frequency
  569. {
  570. int port;
  571. __u32 frequency;
  572. __u32 reserved[2];
  573. };
  574. /*
  575.  * A U D I O
  576.  */
  577. struct v4l2_audio
  578. {
  579. int audio;
  580. char name[32];
  581. __u32 capability;
  582. __u32 mode;
  583. __u32 reserved[2];
  584. };
  585. /*  Flags for the 'capability' field */
  586. #define V4L2_AUDCAP_EFFECTS 0x0020
  587. #define V4L2_AUDCAP_LOUDNESS 0x0040
  588. #define V4L2_AUDCAP_AVL 0x0080
  589. /*  Flags for the 'mode' field */
  590. #define V4L2_AUDMODE_LOUDNESS 0x00002
  591. #define V4L2_AUDMODE_AVL 0x00004
  592. #define V4L2_AUDMODE_STEREO_field 0x0FF00
  593. #define V4L2_AUDMODE_STEREO_LINEAR 0x00100
  594. #define V4L2_AUDMODE_STEREO_PSEUDO 0x00200
  595. #define V4L2_AUDMODE_STEREO_SPATIAL30 0x00300
  596. #define V4L2_AUDMODE_STEREO_SPATIAL50 0x00400
  597. struct v4l2_audioout
  598. {
  599. int audio;
  600. char name[32];
  601. __u32 capability;
  602. __u32 mode;
  603. __u32 reserved[2];
  604. };
  605. /*
  606.  * D A T A   S E R V I C E S   ( V B I )
  607.  */
  608. struct v4l2_vbi_format
  609. {
  610. __u32 sampling_rate; /* in 1 Hz */
  611. __u32 reserved1; /* must be zero */
  612. __u32 samples_per_line;
  613. __u32 sample_format; /* V4L2_VBI_SF_* */
  614. __s32 start[2];
  615. __u32 count[2];
  616. __u32 flags; /* V4L2_VBI_* */
  617. __u32 reserved2; /* must be zero */
  618. };
  619. /*  VBI sampling formats */
  620. #define V4L2_VBI_SF_UBYTE 1
  621. /*  VBI flags  */
  622. #define V4L2_VBI_UNSYNC (1<< 0)
  623. #define V4L2_VBI_INTERLACED (1<< 1)
  624. /*
  625.  * 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
  626.  *
  627.  */
  628. #define VIDIOC_QUERYCAP _IOR  ('V',  0, struct v4l2_capability)
  629. #define VIDIOC_RESERVED _IO   ('V',  1)
  630. #define VIDIOC_ENUM_CAPFMT _IOWR ('V',  2, struct v4l2_fmtdesc)
  631. #define VIDIOC_ENUM_FBUFFMT _IOWR ('V',  3, struct v4l2_fmtdesc)
  632. #define VIDIOC_G_FMT _IOR  ('V',  4, struct v4l2_format)
  633. #define VIDIOC_S_FMT _IOWR ('V',  5, struct v4l2_format)
  634. #define VIDIOC_G_COMP _IOR  ('V',  6, struct v4l2_compression)
  635. #define VIDIOC_S_COMP _IOW  ('V',  7, struct v4l2_compression)
  636. #define VIDIOC_REQBUFS _IOWR ('V',  8, struct v4l2_requestbuffers)
  637. #define VIDIOC_QUERYBUF _IOWR ('V',  9, struct v4l2_buffer)
  638. #define VIDIOC_G_FBUF _IOR  ('V', 10, struct v4l2_framebuffer)
  639. #define VIDIOC_S_FBUF _IOW  ('V', 11, struct v4l2_framebuffer)
  640. #define VIDIOC_G_WIN _IOR  ('V', 12, struct v4l2_window)
  641. #define VIDIOC_S_WIN _IOW  ('V', 13, struct v4l2_window)
  642. #define VIDIOC_PREVIEW _IO   ('V', 14)
  643. #define VIDIOC_QBUF _IOWR ('V', 15, struct v4l2_buffer)
  644. #define VIDIOC_S_VBIFMT _IOWR ('V', 16, struct v4l2_vbi_format)
  645. #define VIDIOC_DQBUF _IOWR ('V', 17, struct v4l2_buffer)
  646. #define VIDIOC_STREAMON _IO   ('V', 18)
  647. #define VIDIOC_STREAMOFF _IO   ('V', 19)
  648. #define VIDIOC_G_PERF _IOR  ('V', 20, struct v4l2_performance)
  649. #define VIDIOC_G_PARM _IOR  ('V', 21, struct v4l2_captureparm)
  650. #define VIDIOC_S_PARM _IOW  ('V', 22, struct v4l2_captureparm)
  651. #define VIDIOC_G_STD _IOR  ('V', 23, struct v4l2_standard)
  652. #define VIDIOC_S_STD _IOW  ('V', 24, struct v4l2_standard)
  653. #define VIDIOC_ENUMSTD _IOWR ('V', 25, struct v4l2_enumstd)
  654. #define VIDIOC_ENUMINPUT _IOWR ('V', 26, struct v4l2_input)
  655. #define VIDIOC_G_CTRL _IOWR ('V', 27, struct v4l2_control)
  656. #define VIDIOC_S_CTRL _IOW  ('V', 28, struct v4l2_control)
  657. #define VIDIOC_G_TUNER _IOWR ('V', 29, struct v4l2_tuner)
  658. #define VIDIOC_S_TUNER _IOW  ('V', 30, struct v4l2_tuner)
  659. #define VIDIOC_G_FREQ _IOR  ('V', 31, __u32)
  660. #define VIDIOC_S_FREQ _IO   ('V', 32)
  661. #define VIDIOC_G_AUDIO _IOWR ('V', 33, struct v4l2_audio)
  662. #define VIDIOC_S_AUDIO _IOW  ('V', 34, struct v4l2_audio)
  663. #define VIDIOC_QUERYCTRL _IOWR ('V', 36, struct v4l2_queryctrl)
  664. #define VIDIOC_QUERYMENU _IOWR ('V', 37, struct v4l2_querymenu)
  665. #define VIDIOC_G_INPUT _IOR  ('V', 38, int)
  666. #define VIDIOC_S_INPUT _IO   ('V', 39)
  667. #define VIDIOC_ENUMCVT _IOWR ('V', 40, struct v4l2_cvtdesc)
  668. #define VIDIOC_G_INFMT _IOR  ('V', 41, struct v4l2_format)
  669. #define VIDIOC_S_INFMT _IOWR ('V', 42, struct v4l2_format)
  670. #define VIDIOC_G_VBIFMT _IOR  ('V', 43, struct v4l2_vbi_format)
  671. #define VIDIOC_G_OUTPARM _IOR  ('V', 44, struct v4l2_outputparm)
  672. #define VIDIOC_S_OUTPARM _IOW  ('V', 45, struct v4l2_outputparm)
  673. #define VIDIOC_G_OUTPUT _IOR  ('V', 46, int)
  674. #define VIDIOC_S_OUTPUT _IO   ('V', 47)
  675. #define VIDIOC_ENUMOUTPUT _IOWR ('V', 48, struct v4l2_output)
  676. #define VIDIOC_G_AUDOUT _IOWR ('V', 49, struct v4l2_audioout)
  677. #define VIDIOC_S_AUDOUT _IOW  ('V', 50, struct v4l2_audioout)
  678. #define VIDIOC_ENUMFX _IOWR ('V', 51, struct v4l2_fxdesc)
  679. #define VIDIOC_G_EFFECT _IOR  ('V', 52, int)
  680. #define VIDIOC_S_EFFECT _IO   ('V', 53)
  681. #define VIDIOC_G_MODULATOR _IOWR ('V', 54, struct v4l2_modulator)
  682. #define VIDIOC_S_MODULATOR _IOW  ('V', 55, struct v4l2_modulator)
  683. #define VIDIOC_G_OUTFMT VIDIOC_G_FMT
  684. #define VIDIOC_S_OUTFMT VIDIOC_S_FMT
  685. #define VIDIOC_ENUM_OUTFMT VIDIOC_ENUM_CAPFMT
  686. #define VIDIOC_ENUM_SRCFMT VIDIOC_ENUM_CAPFMT
  687. #define VIDIOC_ENUMFMT VIDIOC_ENUM_CAPFMT
  688. #define BASE_VIDIOC_PRIVATE 192 /* 192-255 are private */
  689. #ifdef __KERNEL__
  690. /*
  691.  * These things are used only by drivers.
  692.  */
  693. extern int videodev_init(void);
  694. /*
  695.  *
  696.  * V 4 L 2   D R I V E R   H E L P E R   A P I
  697.  *
  698.  * Some commonly needed functions for drivers.
  699.  */
  700. extern void v4l2_version(int *major, int *minor);
  701. extern int v4l2_major_number(void);
  702. /*  Memory management  */
  703. extern unsigned long v4l2_vmalloc_to_bus(void *virt);
  704. extern unsigned long v4l2_vmalloc_to_page(void *virt);
  705. /*  Simple queue management  */
  706. struct v4l2_q_node
  707. {
  708. struct v4l2_q_node  *forw, *back;
  709. };
  710. struct v4l2_queue
  711. {
  712. struct v4l2_q_node *forw, *back;
  713. rwlock_t qlock;
  714. };
  715. extern void  v4l2_q_init(struct v4l2_queue *q);
  716. extern void  v4l2_q_add_head(struct v4l2_queue *q, struct v4l2_q_node *node);
  717. extern void  v4l2_q_add_tail(struct v4l2_queue *q, struct v4l2_q_node *node);
  718. extern void *v4l2_q_del_head(struct v4l2_queue *q);
  719. extern void *v4l2_q_del_tail(struct v4l2_queue *q);
  720. extern void *v4l2_q_peek_head(struct v4l2_queue *q);
  721. extern void *v4l2_q_peek_tail(struct v4l2_queue *q);
  722. extern void *v4l2_q_yank_node(struct v4l2_queue *q, struct v4l2_q_node *node);
  723. /*  Math functions  */
  724. extern u32 v4l2_math_div6432(u64 a, u32 d, u32 *r);
  725. /*  Time functions  */
  726. extern void v4l2_timeval_delta(struct timeval *d,
  727.        struct timeval *a, struct timeval *b);
  728. extern unsigned long v4l2_timeval_divide(struct timeval *t, 
  729.  unsigned long p_100ns);
  730. extern unsigned long v4l2_timeval_correct(struct timeval *t, 
  731.   unsigned long p_100ns);
  732. /*  Master Clock functions  */
  733. struct v4l2_clock
  734. {
  735. void (*gettime)(struct timeval *);
  736. };
  737. extern int  v4l2_masterclock_register(struct v4l2_clock *clock);
  738. extern void v4l2_masterclock_unregister(struct v4l2_clock *clock);
  739. extern void v4l2_masterclock_gettime(struct timeval *curr);
  740. /*  Video standard functions  */
  741. extern unsigned int v4l2_video_std_fps(struct v4l2_standard *vs);
  742. extern unsigned long v4l2_video_std_tpf(struct v4l2_standard *vs);
  743. extern int v4l2_video_std_confirm(struct v4l2_standard *vs);
  744. extern int v4l2_video_std_construct(struct v4l2_standard *vs,
  745.     int id, __u32 transmission);
  746. #define V4L2_STD_PAL 1 /* PAL B, G, H, I (...) */
  747. #define V4L2_STD_PAL_M 5 /* (Brazil) */
  748. #define V4L2_STD_PAL_N 6 /* (Argentina, Paraguay, Uruguay) */
  749. #define V4L2_STD_PAL_60 10 /* PAL/NTSC hybrid */
  750. #define V4L2_STD_NTSC 11 /* NTSC M (USA, ...) */
  751. #define V4L2_STD_NTSC_N 12 /* (Barbados, Bolivia, Colombia, 
  752.    S. Korea) */
  753. #define V4L2_STD_NTSC_44 15 /* PAL/NTSC hybrid */
  754. #define V4L2_STD_SECAM 21 /* SECAM B, D, G, K, K1 (...) */
  755. //#define V4L2_STD_SECAM_H 27 /* (Greece, Iran, Morocco) */ 
  756. //#define V4L2_STD_SECAM_L 28 /* (France, Luxembourg, Monaco) */
  757. //#define V4L2_STD_SECAM_M 29 /* (Jamaica) */
  758. /*
  759.  * D E V I C E   D R I V E R   R E G I S T R A T I O N
  760.  *
  761.  */
  762. struct v4l2_device
  763. {
  764. char name[32];
  765. int type;
  766. int minor;
  767. int (*open)(struct v4l2_device *v,
  768. int flags, void **idptr);
  769. void (*close)(void *id);
  770. long (*read)(void *id,
  771. char *buf, unsigned long count, int noblock);
  772. long (*write)(void *id,
  773.  const char *buf, unsigned long count, int noblock);
  774. int (*ioctl)(void *id,
  775.  unsigned int cmd, void *arg);
  776. int (*mmap)(void *id,
  777. struct vm_area_struct *vma);
  778. int (*poll)(void *id,
  779. struct file *file, poll_table *table);
  780. int (*initialize)(struct v4l2_device *v);
  781. void *priv; /*  may be used by the driver  */
  782. int busy; /*  open count maintained by videodev.c  */
  783. void *v4l2_priv; /*  for V4L2 use  */
  784. int v4l2_reserved[4]; /*  for V4L2 use  */
  785. };
  786. /*  Size of kernel ioctl arg buffer used in ioctl handler  */
  787. #define V4L2_MAX_IOCTL_SIZE 256
  788. extern int v4l2_register_device(struct v4l2_device *);
  789. extern void v4l2_unregister_device(struct v4l2_device *);
  790. /*  V4L2 structures  */
  791. extern struct v4l2_device *v4l2_device_from_file(struct file *file);
  792. extern void *v4l2_openid_from_file(struct file *file);
  793. #endif/*ifdef __KERNEL__ */
  794. /*----------------------------------------------------------------------
  795.        Old Video for Linux backward compatibility below this line. 
  796.   ----------------------------------------------------------------------
  797.   All new applications should use the new API calls.
  798.   (These definitions taken from 2.2.1.)
  799.  */
  800. #define VID_TYPE_CAPTURE 1 /* Can capture */
  801. #define VID_TYPE_TUNER 2 /* Can tune */
  802. #define VID_TYPE_TELETEXT 4 /* Does teletext */
  803. #define VID_TYPE_OVERLAY 8 /* Overlay onto frame buffer */
  804. #define VID_TYPE_CHROMAKEY 16 /* Overlay by chromakey */
  805. #define VID_TYPE_CLIPPING 32 /* Can clip */
  806. #define VID_TYPE_FRAMERAM 64 /* Uses the frame buffer memory */
  807. #define VID_TYPE_SCALES 128 /* Scalable */
  808. #define VID_TYPE_MONOCHROME 256 /* Monochrome only */
  809. #define VID_TYPE_SUBCAPTURE 512 /* Can capture subareas of the image */
  810. struct video_capability
  811. {
  812. char name[32];
  813. int type;
  814. int channels; /* Num channels */
  815. int audios; /* Num audio devices */
  816. int maxwidth; /* Supported width */
  817. int maxheight; /* And height */
  818. int minwidth; /* Supported width */
  819. int minheight; /* And height */
  820. };
  821. struct video_channel
  822. {
  823. int channel;
  824. char name[32];
  825. int tuners;
  826. __u32  flags;
  827. #define VIDEO_VC_TUNER 1 /* Channel has a tuner */
  828. #define VIDEO_VC_AUDIO 2 /* Channel has audio */
  829. __u16  type;
  830. #define VIDEO_TYPE_TV 1
  831. #define VIDEO_TYPE_CAMERA 2
  832. __u16 norm; /* Norm set by channel */
  833. };
  834. struct video_tuner
  835. {
  836. int tuner;
  837. char name[32];
  838. ulong rangelow, rangehigh; /* Tuner range */
  839. __u32 flags;
  840. #define VIDEO_TUNER_PAL 1
  841. #define VIDEO_TUNER_NTSC 2
  842. #define VIDEO_TUNER_SECAM 4
  843. #define VIDEO_TUNER_LOW 8 /* Uses KHz not MHz */
  844. #define VIDEO_TUNER_NORM 16 /* Tuner can set norm */
  845. #define VIDEO_TUNER_STEREO_ON 128 /* Tuner is seeing stereo */
  846. __u16 mode; /* PAL/NTSC/SECAM/OTHER */
  847. #define VIDEO_MODE_PAL 0
  848. #define VIDEO_MODE_NTSC 1
  849. #define VIDEO_MODE_SECAM 2
  850. #define VIDEO_MODE_AUTO 3
  851. __u16 signal; /* Signal strength 16bit scale */
  852. };
  853. struct video_picture
  854. {
  855. __u16 brightness;
  856. __u16 hue;
  857. __u16 colour;
  858. __u16 contrast;
  859. __u16 whiteness; /* Black and white only */
  860. __u16 depth; /* Capture depth */
  861. __u16   palette; /* Palette in use */
  862. #define VIDEO_PALETTE_GREY 1 /* Linear greyscale */
  863. #define VIDEO_PALETTE_HI240 2 /* High 240 cube (BT848) */
  864. #define VIDEO_PALETTE_RGB565 3 /* 565 16 bit RGB */
  865. #define VIDEO_PALETTE_RGB24 4 /* 24bit RGB */
  866. #define VIDEO_PALETTE_RGB32 5 /* 32bit RGB */
  867. #define VIDEO_PALETTE_RGB555 6 /* 555 15bit RGB */
  868. #define VIDEO_PALETTE_YUV422 7 /* YUV422 capture */
  869. #define VIDEO_PALETTE_YUYV 8
  870. #define VIDEO_PALETTE_UYVY 9 /* The great thing about standards is ... */
  871. #define VIDEO_PALETTE_YUV420 10
  872. #define VIDEO_PALETTE_YUV411 11 /* YUV411 capture */
  873. #define VIDEO_PALETTE_RAW 12 /* RAW capture (BT848) */
  874. #define VIDEO_PALETTE_YUV422P 13 /* YUV 4:2:2 Planar */
  875. #define VIDEO_PALETTE_YUV411P 14 /* YUV 4:1:1 Planar */
  876. #define VIDEO_PALETTE_YUV420P 15 /* YUV 4:2:0 Planar */
  877. #define VIDEO_PALETTE_YUV410P 16 /* YUV 4:1:0 Planar */
  878. #define VIDEO_PALETTE_PLANAR 13 /* start of planar entries */
  879. #define VIDEO_PALETTE_COMPONENT 7 /* start of component entries */
  880. };
  881. struct video_audio
  882. {
  883. int audio; /* Audio channel */
  884. __u16 volume; /* If settable */
  885. __u16 bass, treble;
  886. __u32 flags;
  887. #define VIDEO_AUDIO_MUTE 1
  888. #define VIDEO_AUDIO_MUTABLE 2
  889. #define VIDEO_AUDIO_VOLUME 4
  890. #define VIDEO_AUDIO_BASS 8
  891. #define VIDEO_AUDIO_TREBLE 16
  892. #define VIDEO_AUDIO_BALANCE 32
  893. char    name[16];
  894. #define VIDEO_SOUND_MONO 1
  895. #define VIDEO_SOUND_STEREO 2
  896. #define VIDEO_SOUND_LANG1 4
  897. #define VIDEO_SOUND_LANG2 8
  898.         __u16   mode;
  899.         __u16 balance; /* Stereo balance */
  900.         __u16 step; /* Step actual volume uses */
  901. };
  902. struct video_clip
  903. {
  904. __s32 x,y;
  905. __s32 width, height;
  906. struct video_clip *next; /* For user use/driver use only */
  907. };
  908. struct video_window
  909. {
  910. __u32 x,y; /* Position of window */
  911. __u32 width,height; /* Its size */
  912. __u32 chromakey;
  913. __u32 flags;
  914. struct video_clip *clips; /* Set only */
  915. int clipcount;
  916. #define VIDEO_WINDOW_INTERLACE 1
  917. #define VIDEO_CLIP_BITMAP -1
  918. /* bitmap is 1024x625, a '1' bit represents a clipped pixel */
  919. #define VIDEO_CLIPMAP_SIZE (128 * 625)
  920. };
  921. struct video_capture
  922. {
  923. __u32  x,y; /* Offsets into image */
  924. __u32 width, height; /* Area to capture */
  925. __u16 decimation; /* Decimation divder */
  926. __u16 flags; /* Flags for capture */
  927. #define VIDEO_CAPTURE_ODD 0 /* Temporal */
  928. #define VIDEO_CAPTURE_EVEN 1
  929. };
  930. struct video_buffer
  931. {
  932. void *base;
  933. int height,width;
  934. int depth;
  935. int bytesperline;
  936. };
  937. struct video_mmap
  938. {
  939. unsigned int frame; /* Frame (0 - n) for double buffer */
  940. int height,width;
  941. unsigned int format; /* should be VIDEO_PALETTE_* */
  942. };
  943. struct video_key
  944. {
  945. __u8 key[8];
  946. __u32 flags;
  947. };
  948. #define VIDEO_MAX_FRAME 32
  949. struct video_mbuf
  950. {
  951. int size; /* Total memory to map */
  952. int frames; /* Frames */
  953. int offsets[VIDEO_MAX_FRAME];
  954. };
  955. #define  VIDEO_NO_UNIT (-1)
  956. struct video_unit
  957. {
  958. int  video; /* Video minor */
  959. int vbi; /* VBI minor */
  960. int radio; /* Radio minor */
  961. int audio; /* Audio minor */
  962. int teletext; /* Teletext minor */
  963. };
  964. #define VIDIOCGCAP _IOR('v',1,struct video_capability) /* Get capabilities */
  965. #define VIDIOCGCHAN _IOWR('v',2,struct video_channel) /* Get channel info (sources) */
  966. #define VIDIOCSCHAN _IOW('v',3,struct video_channel) /* Set channel  */
  967. #define VIDIOCGTUNER _IOWR('v',4,struct video_tuner) /* Get tuner abilities */
  968. #define VIDIOCSTUNER _IOW('v',5,struct video_tuner) /* Tune the tuner for the current channel */
  969. #define VIDIOCGPICT _IOR('v',6,struct video_picture) /* Get picture properties */
  970. #define VIDIOCSPICT _IOW('v',7,struct video_picture) /* Set picture properties */
  971. #define VIDIOCCAPTURE _IOW('v',8,int) /* Start, end capture */
  972. #define VIDIOCGWIN _IOR('v',9, struct video_window) /* Set the video overlay window */
  973. #define VIDIOCSWIN _IOW('v',10, struct video_window) /* Set the video overlay window - passes clip list for hardware smarts , chromakey etc */
  974. #define VIDIOCGFBUF _IOR('v',11, struct video_buffer) /* Get frame buffer */
  975. #define VIDIOCSFBUF _IOW('v',12, struct video_buffer) /* Set frame buffer - root only */
  976. #define VIDIOCKEY _IOR('v',13, struct video_key) /* Video key event - to dev 255 is to all - cuts capture on all DMA windows with this key (0xFFFFFFFF == all) */
  977. #define VIDIOCGFREQ _IOR('v',14, unsigned long) /* Set tuner */
  978. #define VIDIOCSFREQ _IOW('v',15, unsigned long) /* Set tuner */
  979. #define VIDIOCGAUDIO _IOR('v',16, struct video_audio) /* Get audio info */
  980. #define VIDIOCSAUDIO _IOW('v',17, struct video_audio) /* Audio source, mute etc */
  981. #define VIDIOCSYNC _IOW('v',18, int) /* Sync with mmap grabbing */
  982. #define VIDIOCMCAPTURE _IOW('v',19, struct video_mmap) /* Grab frames */
  983. #define VIDIOCGMBUF _IOR('v', 20, struct video_mbuf) /* Memory map buffer info */
  984. #define VIDIOCGUNIT _IOR('v', 21, struct video_unit) /* Get attached units */
  985. #define VIDIOCGCAPTURE _IOR('v',22, struct video_capture) /* Get frame buffer */
  986. #define VIDIOCSCAPTURE _IOW('v',23, struct video_capture) /* Set frame buffer - root only */
  987. #define BASE_VIDIOCPRIVATE 192 /* 192-255 are private */
  988. #endif/*ifndef __LINUX_VIDEODEV_H*/