videodev2.h 49 KB

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