videodev2.h 65 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830
  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. #include <sys/time.h>
  59. #include <linux/ioctl.h>
  60. #include <linux/types.h>
  61. /*
  62. * Common stuff for both V4L1 and V4L2
  63. * Moved from videodev.h
  64. */
  65. #define VIDEO_MAX_FRAME 32
  66. /* These defines are V4L1 specific and should not be used with the V4L2 API!
  67. They will be removed from this header in the future. */
  68. #define VID_TYPE_CAPTURE 1 /* Can capture */
  69. #define VID_TYPE_TUNER 2 /* Can tune */
  70. #define VID_TYPE_TELETEXT 4 /* Does teletext */
  71. #define VID_TYPE_OVERLAY 8 /* Overlay onto frame buffer */
  72. #define VID_TYPE_CHROMAKEY 16 /* Overlay by chromakey */
  73. #define VID_TYPE_CLIPPING 32 /* Can clip */
  74. #define VID_TYPE_FRAMERAM 64 /* Uses the frame buffer memory */
  75. #define VID_TYPE_SCALES 128 /* Scalable */
  76. #define VID_TYPE_MONOCHROME 256 /* Monochrome only */
  77. #define VID_TYPE_SUBCAPTURE 512 /* Can capture subareas of the image */
  78. #define VID_TYPE_MPEG_DECODER 1024 /* Can decode MPEG streams */
  79. #define VID_TYPE_MPEG_ENCODER 2048 /* Can encode MPEG streams */
  80. #define VID_TYPE_MJPEG_DECODER 4096 /* Can decode MJPEG streams */
  81. #define VID_TYPE_MJPEG_ENCODER 8192 /* Can encode MJPEG streams */
  82. /*
  83. * M I S C E L L A N E O U S
  84. */
  85. /* Four-character-code (FOURCC) */
  86. #define v4l2_fourcc(a, b, c, d)\
  87. ((__u32)(a) | ((__u32)(b) << 8) | ((__u32)(c) << 16) | ((__u32)(d) << 24))
  88. /*
  89. * E N U M S
  90. */
  91. enum v4l2_field {
  92. V4L2_FIELD_ANY = 0, /* driver can choose from none,
  93. top, bottom, interlaced
  94. depending on whatever it thinks
  95. is approximate ... */
  96. V4L2_FIELD_NONE = 1, /* this device has no fields ... */
  97. V4L2_FIELD_TOP = 2, /* top field only */
  98. V4L2_FIELD_BOTTOM = 3, /* bottom field only */
  99. V4L2_FIELD_INTERLACED = 4, /* both fields interlaced */
  100. V4L2_FIELD_SEQ_TB = 5, /* both fields sequential into one
  101. buffer, top-bottom order */
  102. V4L2_FIELD_SEQ_BT = 6, /* same as above + bottom-top order */
  103. V4L2_FIELD_ALTERNATE = 7, /* both fields alternating into
  104. separate buffers */
  105. V4L2_FIELD_INTERLACED_TB = 8, /* both fields interlaced, top field
  106. first and the top field is
  107. transmitted first */
  108. V4L2_FIELD_INTERLACED_BT = 9, /* both fields interlaced, top field
  109. first and the bottom field is
  110. transmitted first */
  111. };
  112. #define V4L2_FIELD_HAS_TOP(field) \
  113. ((field) == V4L2_FIELD_TOP ||\
  114. (field) == V4L2_FIELD_INTERLACED ||\
  115. (field) == V4L2_FIELD_INTERLACED_TB ||\
  116. (field) == V4L2_FIELD_INTERLACED_BT ||\
  117. (field) == V4L2_FIELD_SEQ_TB ||\
  118. (field) == V4L2_FIELD_SEQ_BT)
  119. #define V4L2_FIELD_HAS_BOTTOM(field) \
  120. ((field) == V4L2_FIELD_BOTTOM ||\
  121. (field) == V4L2_FIELD_INTERLACED ||\
  122. (field) == V4L2_FIELD_INTERLACED_TB ||\
  123. (field) == V4L2_FIELD_INTERLACED_BT ||\
  124. (field) == V4L2_FIELD_SEQ_TB ||\
  125. (field) == V4L2_FIELD_SEQ_BT)
  126. #define V4L2_FIELD_HAS_BOTH(field) \
  127. ((field) == V4L2_FIELD_INTERLACED ||\
  128. (field) == V4L2_FIELD_INTERLACED_TB ||\
  129. (field) == V4L2_FIELD_INTERLACED_BT ||\
  130. (field) == V4L2_FIELD_SEQ_TB ||\
  131. (field) == V4L2_FIELD_SEQ_BT)
  132. enum v4l2_buf_type {
  133. V4L2_BUF_TYPE_VIDEO_CAPTURE = 1,
  134. V4L2_BUF_TYPE_VIDEO_OUTPUT = 2,
  135. V4L2_BUF_TYPE_VIDEO_OVERLAY = 3,
  136. V4L2_BUF_TYPE_VBI_CAPTURE = 4,
  137. V4L2_BUF_TYPE_VBI_OUTPUT = 5,
  138. V4L2_BUF_TYPE_SLICED_VBI_CAPTURE = 6,
  139. V4L2_BUF_TYPE_SLICED_VBI_OUTPUT = 7,
  140. #if 1
  141. /* Experimental */
  142. V4L2_BUF_TYPE_VIDEO_OUTPUT_OVERLAY = 8,
  143. #endif
  144. V4L2_BUF_TYPE_PRIVATE = 0x80,
  145. };
  146. enum v4l2_tuner_type {
  147. V4L2_TUNER_RADIO = 1,
  148. V4L2_TUNER_ANALOG_TV = 2,
  149. V4L2_TUNER_DIGITAL_TV = 3,
  150. };
  151. enum v4l2_memory {
  152. V4L2_MEMORY_MMAP = 1,
  153. V4L2_MEMORY_USERPTR = 2,
  154. V4L2_MEMORY_OVERLAY = 3,
  155. };
  156. /* see also http://vektor.theorem.ca/graphics/ycbcr/ */
  157. enum v4l2_colorspace {
  158. /* ITU-R 601 -- broadcast NTSC/PAL */
  159. V4L2_COLORSPACE_SMPTE170M = 1,
  160. /* 1125-Line (US) HDTV */
  161. V4L2_COLORSPACE_SMPTE240M = 2,
  162. /* HD and modern captures. */
  163. V4L2_COLORSPACE_REC709 = 3,
  164. /* broken BT878 extents (601, luma range 16-253 instead of 16-235) */
  165. V4L2_COLORSPACE_BT878 = 4,
  166. /* These should be useful. Assume 601 extents. */
  167. V4L2_COLORSPACE_470_SYSTEM_M = 5,
  168. V4L2_COLORSPACE_470_SYSTEM_BG = 6,
  169. /* I know there will be cameras that send this. So, this is
  170. * unspecified chromaticities and full 0-255 on each of the
  171. * Y'CbCr components
  172. */
  173. V4L2_COLORSPACE_JPEG = 7,
  174. /* For RGB colourspaces, this is probably a good start. */
  175. V4L2_COLORSPACE_SRGB = 8,
  176. };
  177. enum v4l2_priority {
  178. V4L2_PRIORITY_UNSET = 0, /* not initialized */
  179. V4L2_PRIORITY_BACKGROUND = 1,
  180. V4L2_PRIORITY_INTERACTIVE = 2,
  181. V4L2_PRIORITY_RECORD = 3,
  182. V4L2_PRIORITY_DEFAULT = V4L2_PRIORITY_INTERACTIVE,
  183. };
  184. struct v4l2_rect {
  185. __s32 left;
  186. __s32 top;
  187. __s32 width;
  188. __s32 height;
  189. };
  190. struct v4l2_fract {
  191. __u32 numerator;
  192. __u32 denominator;
  193. };
  194. /*
  195. * D R I V E R C A P A B I L I T I E S
  196. */
  197. struct v4l2_capability {
  198. __u8 driver[16]; /* i.e. "bttv" */
  199. __u8 card[32]; /* i.e. "Hauppauge WinTV" */
  200. __u8 bus_info[32]; /* "PCI:" + pci_name(pci_dev) */
  201. __u32 version; /* should use KERNEL_VERSION() */
  202. __u32 capabilities; /* Device capabilities */
  203. __u32 reserved[4];
  204. };
  205. /* Values for 'capabilities' field */
  206. #define V4L2_CAP_VIDEO_CAPTURE 0x00000001 /* Is a video capture device */
  207. #define V4L2_CAP_VIDEO_OUTPUT 0x00000002 /* Is a video output device */
  208. #define V4L2_CAP_VIDEO_OVERLAY 0x00000004 /* Can do video overlay */
  209. #define V4L2_CAP_VBI_CAPTURE 0x00000010 /* Is a raw VBI capture device */
  210. #define V4L2_CAP_VBI_OUTPUT 0x00000020 /* Is a raw VBI output device */
  211. #define V4L2_CAP_SLICED_VBI_CAPTURE 0x00000040 /* Is a sliced VBI capture device */
  212. #define V4L2_CAP_SLICED_VBI_OUTPUT 0x00000080 /* Is a sliced VBI output device */
  213. #define V4L2_CAP_RDS_CAPTURE 0x00000100 /* RDS data capture */
  214. #define V4L2_CAP_VIDEO_OUTPUT_OVERLAY 0x00000200 /* Can do video output overlay */
  215. #define V4L2_CAP_HW_FREQ_SEEK 0x00000400 /* Can do hardware frequency seek */
  216. #define V4L2_CAP_RDS_OUTPUT 0x00000800 /* Is an RDS encoder */
  217. #define V4L2_CAP_TUNER 0x00010000 /* has a tuner */
  218. #define V4L2_CAP_AUDIO 0x00020000 /* has audio support */
  219. #define V4L2_CAP_RADIO 0x00040000 /* is a radio device */
  220. #define V4L2_CAP_MODULATOR 0x00080000 /* has a modulator */
  221. #define V4L2_CAP_READWRITE 0x01000000 /* read/write systemcalls */
  222. #define V4L2_CAP_ASYNCIO 0x02000000 /* async I/O */
  223. #define V4L2_CAP_STREAMING 0x04000000 /* streaming I/O ioctls */
  224. /*
  225. * V I D E O I M A G E F O R M A T
  226. */
  227. struct v4l2_pix_format {
  228. __u32 width;
  229. __u32 height;
  230. __u32 pixelformat;
  231. enum v4l2_field field;
  232. __u32 bytesperline; /* for padding, zero if unused */
  233. __u32 sizeimage;
  234. enum v4l2_colorspace colorspace;
  235. __u32 priv; /* private data, depends on pixelformat */
  236. };
  237. /* Pixel format FOURCC depth Description */
  238. /* RGB formats */
  239. #define V4L2_PIX_FMT_RGB332 v4l2_fourcc('R', 'G', 'B', '1') /* 8 RGB-3-3-2 */
  240. #define V4L2_PIX_FMT_RGB444 v4l2_fourcc('R', '4', '4', '4') /* 16 xxxxrrrr ggggbbbb */
  241. #define V4L2_PIX_FMT_RGB555 v4l2_fourcc('R', 'G', 'B', 'O') /* 16 RGB-5-5-5 */
  242. #define V4L2_PIX_FMT_RGB565 v4l2_fourcc('R', 'G', 'B', 'P') /* 16 RGB-5-6-5 */
  243. #define V4L2_PIX_FMT_RGB555X v4l2_fourcc('R', 'G', 'B', 'Q') /* 16 RGB-5-5-5 BE */
  244. #define V4L2_PIX_FMT_RGB565X v4l2_fourcc('R', 'G', 'B', 'R') /* 16 RGB-5-6-5 BE */
  245. #define V4L2_PIX_FMT_BGR666 v4l2_fourcc('B', 'G', 'R', 'H') /* 18 BGR-6-6-6 */
  246. #define V4L2_PIX_FMT_BGR24 v4l2_fourcc('B', 'G', 'R', '3') /* 24 BGR-8-8-8 */
  247. #define V4L2_PIX_FMT_RGB24 v4l2_fourcc('R', 'G', 'B', '3') /* 24 RGB-8-8-8 */
  248. #define V4L2_PIX_FMT_BGR32 v4l2_fourcc('B', 'G', 'R', '4') /* 32 BGR-8-8-8-8 */
  249. #define V4L2_PIX_FMT_RGB32 v4l2_fourcc('R', 'G', 'B', '4') /* 32 RGB-8-8-8-8 */
  250. /* Grey formats */
  251. #define V4L2_PIX_FMT_GREY v4l2_fourcc('G', 'R', 'E', 'Y') /* 8 Greyscale */
  252. #define V4L2_PIX_FMT_Y4 v4l2_fourcc('Y', '0', '4', ' ') /* 4 Greyscale */
  253. #define V4L2_PIX_FMT_Y6 v4l2_fourcc('Y', '0', '6', ' ') /* 6 Greyscale */
  254. #define V4L2_PIX_FMT_Y10 v4l2_fourcc('Y', '1', '0', ' ') /* 10 Greyscale */
  255. #define V4L2_PIX_FMT_Y16 v4l2_fourcc('Y', '1', '6', ' ') /* 16 Greyscale */
  256. /* Palette formats */
  257. #define V4L2_PIX_FMT_PAL8 v4l2_fourcc('P', 'A', 'L', '8') /* 8 8-bit palette */
  258. /* Luminance+Chrominance formats */
  259. #define V4L2_PIX_FMT_YVU410 v4l2_fourcc('Y', 'V', 'U', '9') /* 9 YVU 4:1:0 */
  260. #define V4L2_PIX_FMT_YVU420 v4l2_fourcc('Y', 'V', '1', '2') /* 12 YVU 4:2:0 */
  261. #define V4L2_PIX_FMT_YUYV v4l2_fourcc('Y', 'U', 'Y', 'V') /* 16 YUV 4:2:2 */
  262. #define V4L2_PIX_FMT_YYUV v4l2_fourcc('Y', 'Y', 'U', 'V') /* 16 YUV 4:2:2 */
  263. #define V4L2_PIX_FMT_YVYU v4l2_fourcc('Y', 'V', 'Y', 'U') /* 16 YVU 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_VYUY v4l2_fourcc('V', 'Y', 'U', 'Y') /* 16 YUV 4:2:2 */
  266. #define V4L2_PIX_FMT_YUV422P v4l2_fourcc('4', '2', '2', 'P') /* 16 YVU422 planar */
  267. #define V4L2_PIX_FMT_YUV411P v4l2_fourcc('4', '1', '1', 'P') /* 16 YVU411 planar */
  268. #define V4L2_PIX_FMT_Y41P v4l2_fourcc('Y', '4', '1', 'P') /* 12 YUV 4:1:1 */
  269. #define V4L2_PIX_FMT_YUV444 v4l2_fourcc('Y', '4', '4', '4') /* 16 xxxxyyyy uuuuvvvv */
  270. #define V4L2_PIX_FMT_YUV555 v4l2_fourcc('Y', 'U', 'V', 'O') /* 16 YUV-5-5-5 */
  271. #define V4L2_PIX_FMT_YUV565 v4l2_fourcc('Y', 'U', 'V', 'P') /* 16 YUV-5-6-5 */
  272. #define V4L2_PIX_FMT_YUV32 v4l2_fourcc('Y', 'U', 'V', '4') /* 32 YUV-8-8-8-8 */
  273. #define V4L2_PIX_FMT_YUV410 v4l2_fourcc('Y', 'U', 'V', '9') /* 9 YUV 4:1:0 */
  274. #define V4L2_PIX_FMT_YUV420 v4l2_fourcc('Y', 'U', '1', '2') /* 12 YUV 4:2:0 */
  275. #define V4L2_PIX_FMT_HI240 v4l2_fourcc('H', 'I', '2', '4') /* 8 8-bit color */
  276. #define V4L2_PIX_FMT_HM12 v4l2_fourcc('H', 'M', '1', '2') /* 8 YUV 4:2:0 16x16 macroblocks */
  277. /* two planes -- one Y, one Cr + Cb interleaved */
  278. #define V4L2_PIX_FMT_NV12 v4l2_fourcc('N', 'V', '1', '2') /* 12 Y/CbCr 4:2:0 */
  279. #define V4L2_PIX_FMT_NV21 v4l2_fourcc('N', 'V', '2', '1') /* 12 Y/CrCb 4:2:0 */
  280. #define V4L2_PIX_FMT_NV16 v4l2_fourcc('N', 'V', '1', '6') /* 16 Y/CbCr 4:2:2 */
  281. #define V4L2_PIX_FMT_NV61 v4l2_fourcc('N', 'V', '6', '1') /* 16 Y/CrCb 4:2:2 */
  282. /* Bayer formats - see http://www.siliconimaging.com/RGB%20Bayer.htm */
  283. #define V4L2_PIX_FMT_SBGGR8 v4l2_fourcc('B', 'A', '8', '1') /* 8 BGBG.. GRGR.. */
  284. #define V4L2_PIX_FMT_SGBRG8 v4l2_fourcc('G', 'B', 'R', 'G') /* 8 GBGB.. RGRG.. */
  285. #define V4L2_PIX_FMT_SGRBG8 v4l2_fourcc('G', 'R', 'B', 'G') /* 8 GRGR.. BGBG.. */
  286. #define V4L2_PIX_FMT_SRGGB8 v4l2_fourcc('R', 'G', 'G', 'B') /* 8 RGRG.. GBGB.. */
  287. #define V4L2_PIX_FMT_SBGGR10 v4l2_fourcc('B', 'G', '1', '0') /* 10 BGBG.. GRGR.. */
  288. #define V4L2_PIX_FMT_SGBRG10 v4l2_fourcc('G', 'B', '1', '0') /* 10 GBGB.. RGRG.. */
  289. #define V4L2_PIX_FMT_SGRBG10 v4l2_fourcc('B', 'A', '1', '0') /* 10 GRGR.. BGBG.. */
  290. #define V4L2_PIX_FMT_SRGGB10 v4l2_fourcc('R', 'G', '1', '0') /* 10 RGRG.. GBGB.. */
  291. /* 10bit raw bayer DPCM compressed to 8 bits */
  292. #define V4L2_PIX_FMT_SGRBG10DPCM8 v4l2_fourcc('B', 'D', '1', '0')
  293. /*
  294. * 10bit raw bayer, expanded to 16 bits
  295. * xxxxrrrrrrrrrrxxxxgggggggggg xxxxggggggggggxxxxbbbbbbbbbb...
  296. */
  297. #define V4L2_PIX_FMT_SBGGR16 v4l2_fourcc('B', 'Y', 'R', '2') /* 16 BGBG.. GRGR.. */
  298. /* compressed formats */
  299. #define V4L2_PIX_FMT_MJPEG v4l2_fourcc('M', 'J', 'P', 'G') /* Motion-JPEG */
  300. #define V4L2_PIX_FMT_JPEG v4l2_fourcc('J', 'P', 'E', 'G') /* JFIF JPEG */
  301. #define V4L2_PIX_FMT_DV v4l2_fourcc('d', 'v', 's', 'd') /* 1394 */
  302. #define V4L2_PIX_FMT_MPEG v4l2_fourcc('M', 'P', 'E', 'G') /* MPEG-1/2/4 */
  303. /* Vendor-specific formats */
  304. #define V4L2_PIX_FMT_CPIA1 v4l2_fourcc('C', 'P', 'I', 'A') /* cpia1 YUV */
  305. #define V4L2_PIX_FMT_WNVA v4l2_fourcc('W', 'N', 'V', 'A') /* Winnov hw compress */
  306. #define V4L2_PIX_FMT_SN9C10X v4l2_fourcc('S', '9', '1', '0') /* SN9C10x compression */
  307. #define V4L2_PIX_FMT_SN9C20X_I420 v4l2_fourcc('S', '9', '2', '0') /* SN9C20x YUV 4:2:0 */
  308. #define V4L2_PIX_FMT_PWC1 v4l2_fourcc('P', 'W', 'C', '1') /* pwc older webcam */
  309. #define V4L2_PIX_FMT_PWC2 v4l2_fourcc('P', 'W', 'C', '2') /* pwc newer webcam */
  310. #define V4L2_PIX_FMT_ET61X251 v4l2_fourcc('E', '6', '2', '5') /* ET61X251 compression */
  311. #define V4L2_PIX_FMT_SPCA501 v4l2_fourcc('S', '5', '0', '1') /* YUYV per line */
  312. #define V4L2_PIX_FMT_SPCA505 v4l2_fourcc('S', '5', '0', '5') /* YYUV per line */
  313. #define V4L2_PIX_FMT_SPCA508 v4l2_fourcc('S', '5', '0', '8') /* YUVY per line */
  314. #define V4L2_PIX_FMT_SPCA561 v4l2_fourcc('S', '5', '6', '1') /* compressed GBRG bayer */
  315. #define V4L2_PIX_FMT_PAC207 v4l2_fourcc('P', '2', '0', '7') /* compressed BGGR bayer */
  316. #define V4L2_PIX_FMT_MR97310A v4l2_fourcc('M', '3', '1', '0') /* compressed BGGR bayer */
  317. #define V4L2_PIX_FMT_SN9C2028 v4l2_fourcc('S', 'O', 'N', 'X') /* compressed GBRG bayer */
  318. #define V4L2_PIX_FMT_SQ905C v4l2_fourcc('9', '0', '5', 'C') /* compressed RGGB bayer */
  319. #define V4L2_PIX_FMT_PJPG v4l2_fourcc('P', 'J', 'P', 'G') /* Pixart 73xx JPEG */
  320. #define V4L2_PIX_FMT_OV511 v4l2_fourcc('O', '5', '1', '1') /* ov511 JPEG */
  321. #define V4L2_PIX_FMT_OV518 v4l2_fourcc('O', '5', '1', '8') /* ov518 JPEG */
  322. #define V4L2_PIX_FMT_STV0680 v4l2_fourcc('S', '6', '8', '0') /* stv0680 bayer */
  323. #define V4L2_PIX_FMT_TM6000 v4l2_fourcc('T', 'M', '6', '0') /* tm5600/tm60x0 */
  324. #define V4L2_PIX_FMT_CIT_YYVYUY v4l2_fourcc('C', 'I', 'T', 'V') /* one line of Y then 1 line of VYUY */
  325. #define V4L2_PIX_FMT_KONICA420 v4l2_fourcc('K', 'O', 'N', 'I') /* YUV420 planar in blocks of 256 pixels */
  326. /*
  327. * F O R M A T E N U M E R A T I O N
  328. */
  329. struct v4l2_fmtdesc {
  330. __u32 index; /* Format number */
  331. enum v4l2_buf_type type; /* buffer type */
  332. __u32 flags;
  333. __u8 description[32]; /* Description string */
  334. __u32 pixelformat; /* Format fourcc */
  335. __u32 reserved[4];
  336. };
  337. #define V4L2_FMT_FLAG_COMPRESSED 0x0001
  338. #define V4L2_FMT_FLAG_EMULATED 0x0002
  339. #if 1
  340. /* Experimental Frame Size and frame rate enumeration */
  341. /*
  342. * F R A M E S I Z E E N U M E R A T I O N
  343. */
  344. enum v4l2_frmsizetypes {
  345. V4L2_FRMSIZE_TYPE_DISCRETE = 1,
  346. V4L2_FRMSIZE_TYPE_CONTINUOUS = 2,
  347. V4L2_FRMSIZE_TYPE_STEPWISE = 3,
  348. };
  349. struct v4l2_frmsize_discrete {
  350. __u32 width; /* Frame width [pixel] */
  351. __u32 height; /* Frame height [pixel] */
  352. };
  353. struct v4l2_frmsize_stepwise {
  354. __u32 min_width; /* Minimum frame width [pixel] */
  355. __u32 max_width; /* Maximum frame width [pixel] */
  356. __u32 step_width; /* Frame width step size [pixel] */
  357. __u32 min_height; /* Minimum frame height [pixel] */
  358. __u32 max_height; /* Maximum frame height [pixel] */
  359. __u32 step_height; /* Frame height step size [pixel] */
  360. };
  361. struct v4l2_frmsizeenum {
  362. __u32 index; /* Frame size number */
  363. __u32 pixel_format; /* Pixel format */
  364. __u32 type; /* Frame size type the device supports. */
  365. union { /* Frame size */
  366. struct v4l2_frmsize_discrete discrete;
  367. struct v4l2_frmsize_stepwise stepwise;
  368. };
  369. __u32 reserved[2]; /* Reserved space for future use */
  370. };
  371. /*
  372. * F R A M E R A T E E N U M E R A T I O N
  373. */
  374. enum v4l2_frmivaltypes {
  375. V4L2_FRMIVAL_TYPE_DISCRETE = 1,
  376. V4L2_FRMIVAL_TYPE_CONTINUOUS = 2,
  377. V4L2_FRMIVAL_TYPE_STEPWISE = 3,
  378. };
  379. struct v4l2_frmival_stepwise {
  380. struct v4l2_fract min; /* Minimum frame interval [s] */
  381. struct v4l2_fract max; /* Maximum frame interval [s] */
  382. struct v4l2_fract step; /* Frame interval step size [s] */
  383. };
  384. struct v4l2_frmivalenum {
  385. __u32 index; /* Frame format index */
  386. __u32 pixel_format; /* Pixel format */
  387. __u32 width; /* Frame width */
  388. __u32 height; /* Frame height */
  389. __u32 type; /* Frame interval type the device supports. */
  390. union { /* Frame interval */
  391. struct v4l2_fract discrete;
  392. struct v4l2_frmival_stepwise stepwise;
  393. };
  394. __u32 reserved[2]; /* Reserved space for future use */
  395. };
  396. #endif
  397. /*
  398. * T I M E C O D E
  399. */
  400. struct v4l2_timecode {
  401. __u32 type;
  402. __u32 flags;
  403. __u8 frames;
  404. __u8 seconds;
  405. __u8 minutes;
  406. __u8 hours;
  407. __u8 userbits[4];
  408. };
  409. /* Type */
  410. #define V4L2_TC_TYPE_24FPS 1
  411. #define V4L2_TC_TYPE_25FPS 2
  412. #define V4L2_TC_TYPE_30FPS 3
  413. #define V4L2_TC_TYPE_50FPS 4
  414. #define V4L2_TC_TYPE_60FPS 5
  415. /* Flags */
  416. #define V4L2_TC_FLAG_DROPFRAME 0x0001 /* "drop-frame" mode */
  417. #define V4L2_TC_FLAG_COLORFRAME 0x0002
  418. #define V4L2_TC_USERBITS_field 0x000C
  419. #define V4L2_TC_USERBITS_USERDEFINED 0x0000
  420. #define V4L2_TC_USERBITS_8BITCHARS 0x0008
  421. /* The above is based on SMPTE timecodes */
  422. struct v4l2_jpegcompression {
  423. int quality;
  424. int APPn; /* Number of APP segment to be written,
  425. * must be 0..15 */
  426. int APP_len; /* Length of data in JPEG APPn segment */
  427. char APP_data[60]; /* Data in the JPEG APPn segment. */
  428. int COM_len; /* Length of data in JPEG COM segment */
  429. char COM_data[60]; /* Data in JPEG COM segment */
  430. __u32 jpeg_markers; /* Which markers should go into the JPEG
  431. * output. Unless you exactly know what
  432. * you do, leave them untouched.
  433. * Inluding less markers will make the
  434. * resulting code smaller, but there will
  435. * be fewer applications which can read it.
  436. * The presence of the APP and COM marker
  437. * is influenced by APP_len and COM_len
  438. * ONLY, not by this property! */
  439. #define V4L2_JPEG_MARKER_DHT (1<<3) /* Define Huffman Tables */
  440. #define V4L2_JPEG_MARKER_DQT (1<<4) /* Define Quantization Tables */
  441. #define V4L2_JPEG_MARKER_DRI (1<<5) /* Define Restart Interval */
  442. #define V4L2_JPEG_MARKER_COM (1<<6) /* Comment segment */
  443. #define V4L2_JPEG_MARKER_APP (1<<7) /* App segment, driver will
  444. * allways use APP0 */
  445. };
  446. /*
  447. * M E M O R Y - M A P P I N G B U F F E R S
  448. */
  449. struct v4l2_requestbuffers {
  450. __u32 count;
  451. enum v4l2_buf_type type;
  452. enum v4l2_memory memory;
  453. __u32 reserved[2];
  454. };
  455. struct v4l2_buffer {
  456. __u32 index;
  457. enum v4l2_buf_type type;
  458. __u32 bytesused;
  459. __u32 flags;
  460. enum v4l2_field field;
  461. struct timeval timestamp;
  462. struct v4l2_timecode timecode;
  463. __u32 sequence;
  464. /* memory location */
  465. enum v4l2_memory memory;
  466. union {
  467. __u32 offset;
  468. unsigned long userptr;
  469. } m;
  470. __u32 length;
  471. __u32 input;
  472. __u32 reserved;
  473. };
  474. /* Flags for 'flags' field */
  475. #define V4L2_BUF_FLAG_MAPPED 0x0001 /* Buffer is mapped (flag) */
  476. #define V4L2_BUF_FLAG_QUEUED 0x0002 /* Buffer is queued for processing */
  477. #define V4L2_BUF_FLAG_DONE 0x0004 /* Buffer is ready */
  478. #define V4L2_BUF_FLAG_KEYFRAME 0x0008 /* Image is a keyframe (I-frame) */
  479. #define V4L2_BUF_FLAG_PFRAME 0x0010 /* Image is a P-frame */
  480. #define V4L2_BUF_FLAG_BFRAME 0x0020 /* Image is a B-frame */
  481. /* Buffer is ready, but the data contained within is corrupted. */
  482. #define V4L2_BUF_FLAG_ERROR 0x0040
  483. #define V4L2_BUF_FLAG_TIMECODE 0x0100 /* timecode field is valid */
  484. #define V4L2_BUF_FLAG_INPUT 0x0200 /* input field is valid */
  485. /*
  486. * O V E R L A Y P R E V I E W
  487. */
  488. struct v4l2_framebuffer {
  489. __u32 capability;
  490. __u32 flags;
  491. /* FIXME: in theory we should pass something like PCI device + memory
  492. * region + offset instead of some physical address */
  493. void *base;
  494. struct v4l2_pix_format fmt;
  495. };
  496. /* Flags for the 'capability' field. Read only */
  497. #define V4L2_FBUF_CAP_EXTERNOVERLAY 0x0001
  498. #define V4L2_FBUF_CAP_CHROMAKEY 0x0002
  499. #define V4L2_FBUF_CAP_LIST_CLIPPING 0x0004
  500. #define V4L2_FBUF_CAP_BITMAP_CLIPPING 0x0008
  501. #define V4L2_FBUF_CAP_LOCAL_ALPHA 0x0010
  502. #define V4L2_FBUF_CAP_GLOBAL_ALPHA 0x0020
  503. #define V4L2_FBUF_CAP_LOCAL_INV_ALPHA 0x0040
  504. #define V4L2_FBUF_CAP_SRC_CHROMAKEY 0x0080
  505. /* Flags for the 'flags' field. */
  506. #define V4L2_FBUF_FLAG_PRIMARY 0x0001
  507. #define V4L2_FBUF_FLAG_OVERLAY 0x0002
  508. #define V4L2_FBUF_FLAG_CHROMAKEY 0x0004
  509. #define V4L2_FBUF_FLAG_LOCAL_ALPHA 0x0008
  510. #define V4L2_FBUF_FLAG_GLOBAL_ALPHA 0x0010
  511. #define V4L2_FBUF_FLAG_LOCAL_INV_ALPHA 0x0020
  512. #define V4L2_FBUF_FLAG_SRC_CHROMAKEY 0x0040
  513. struct v4l2_clip {
  514. struct v4l2_rect c;
  515. struct v4l2_clip *next;
  516. };
  517. struct v4l2_window {
  518. struct v4l2_rect w;
  519. enum v4l2_field field;
  520. __u32 chromakey;
  521. struct v4l2_clip *clips;
  522. __u32 clipcount;
  523. void *bitmap;
  524. __u8 global_alpha;
  525. };
  526. /*
  527. * C A P T U R E P A R A M E T E R S
  528. */
  529. struct v4l2_captureparm {
  530. __u32 capability; /* Supported modes */
  531. __u32 capturemode; /* Current mode */
  532. struct v4l2_fract timeperframe; /* Time per frame in .1us units */
  533. __u32 extendedmode; /* Driver-specific extensions */
  534. __u32 readbuffers; /* # of buffers for read */
  535. __u32 reserved[4];
  536. };
  537. /* Flags for 'capability' and 'capturemode' fields */
  538. #define V4L2_MODE_HIGHQUALITY 0x0001 /* High quality imaging mode */
  539. #define V4L2_CAP_TIMEPERFRAME 0x1000 /* timeperframe field is supported */
  540. struct v4l2_outputparm {
  541. __u32 capability; /* Supported modes */
  542. __u32 outputmode; /* Current mode */
  543. struct v4l2_fract timeperframe; /* Time per frame in seconds */
  544. __u32 extendedmode; /* Driver-specific extensions */
  545. __u32 writebuffers; /* # of buffers for write */
  546. __u32 reserved[4];
  547. };
  548. /*
  549. * I N P U T I M A G E C R O P P I N G
  550. */
  551. struct v4l2_cropcap {
  552. enum v4l2_buf_type type;
  553. struct v4l2_rect bounds;
  554. struct v4l2_rect defrect;
  555. struct v4l2_fract pixelaspect;
  556. };
  557. struct v4l2_crop {
  558. enum v4l2_buf_type type;
  559. struct v4l2_rect c;
  560. };
  561. /*
  562. * A N A L O G V I D E O S T A N D A R D
  563. */
  564. typedef __u64 v4l2_std_id;
  565. /* one bit for each */
  566. #define V4L2_STD_PAL_B ((v4l2_std_id)0x00000001)
  567. #define V4L2_STD_PAL_B1 ((v4l2_std_id)0x00000002)
  568. #define V4L2_STD_PAL_G ((v4l2_std_id)0x00000004)
  569. #define V4L2_STD_PAL_H ((v4l2_std_id)0x00000008)
  570. #define V4L2_STD_PAL_I ((v4l2_std_id)0x00000010)
  571. #define V4L2_STD_PAL_D ((v4l2_std_id)0x00000020)
  572. #define V4L2_STD_PAL_D1 ((v4l2_std_id)0x00000040)
  573. #define V4L2_STD_PAL_K ((v4l2_std_id)0x00000080)
  574. #define V4L2_STD_PAL_M ((v4l2_std_id)0x00000100)
  575. #define V4L2_STD_PAL_N ((v4l2_std_id)0x00000200)
  576. #define V4L2_STD_PAL_Nc ((v4l2_std_id)0x00000400)
  577. #define V4L2_STD_PAL_60 ((v4l2_std_id)0x00000800)
  578. #define V4L2_STD_NTSC_M ((v4l2_std_id)0x00001000)
  579. #define V4L2_STD_NTSC_M_JP ((v4l2_std_id)0x00002000)
  580. #define V4L2_STD_NTSC_443 ((v4l2_std_id)0x00004000)
  581. #define V4L2_STD_NTSC_M_KR ((v4l2_std_id)0x00008000)
  582. #define V4L2_STD_SECAM_B ((v4l2_std_id)0x00010000)
  583. #define V4L2_STD_SECAM_D ((v4l2_std_id)0x00020000)
  584. #define V4L2_STD_SECAM_G ((v4l2_std_id)0x00040000)
  585. #define V4L2_STD_SECAM_H ((v4l2_std_id)0x00080000)
  586. #define V4L2_STD_SECAM_K ((v4l2_std_id)0x00100000)
  587. #define V4L2_STD_SECAM_K1 ((v4l2_std_id)0x00200000)
  588. #define V4L2_STD_SECAM_L ((v4l2_std_id)0x00400000)
  589. #define V4L2_STD_SECAM_LC ((v4l2_std_id)0x00800000)
  590. /* ATSC/HDTV */
  591. #define V4L2_STD_ATSC_8_VSB ((v4l2_std_id)0x01000000)
  592. #define V4L2_STD_ATSC_16_VSB ((v4l2_std_id)0x02000000)
  593. /* FIXME:
  594. Although std_id is 64 bits, there is an issue on PPC32 architecture that
  595. makes switch(__u64) to break. So, there's a hack on v4l2-common.c rounding
  596. this value to 32 bits.
  597. As, currently, the max value is for V4L2_STD_ATSC_16_VSB (30 bits wide),
  598. it should work fine. However, if needed to add more than two standards,
  599. v4l2-common.c should be fixed.
  600. */
  601. /* some merged standards */
  602. #define V4L2_STD_MN (V4L2_STD_PAL_M|V4L2_STD_PAL_N|V4L2_STD_PAL_Nc|V4L2_STD_NTSC)
  603. #define V4L2_STD_B (V4L2_STD_PAL_B|V4L2_STD_PAL_B1|V4L2_STD_SECAM_B)
  604. #define V4L2_STD_GH (V4L2_STD_PAL_G|V4L2_STD_PAL_H|V4L2_STD_SECAM_G|V4L2_STD_SECAM_H)
  605. #define V4L2_STD_DK (V4L2_STD_PAL_DK|V4L2_STD_SECAM_DK)
  606. /* some common needed stuff */
  607. #define V4L2_STD_PAL_BG (V4L2_STD_PAL_B |\
  608. V4L2_STD_PAL_B1 |\
  609. V4L2_STD_PAL_G)
  610. #define V4L2_STD_PAL_DK (V4L2_STD_PAL_D |\
  611. V4L2_STD_PAL_D1 |\
  612. V4L2_STD_PAL_K)
  613. #define V4L2_STD_PAL (V4L2_STD_PAL_BG |\
  614. V4L2_STD_PAL_DK |\
  615. V4L2_STD_PAL_H |\
  616. V4L2_STD_PAL_I)
  617. #define V4L2_STD_NTSC (V4L2_STD_NTSC_M |\
  618. V4L2_STD_NTSC_M_JP |\
  619. V4L2_STD_NTSC_M_KR)
  620. #define V4L2_STD_SECAM_DK (V4L2_STD_SECAM_D |\
  621. V4L2_STD_SECAM_K |\
  622. V4L2_STD_SECAM_K1)
  623. #define V4L2_STD_SECAM (V4L2_STD_SECAM_B |\
  624. V4L2_STD_SECAM_G |\
  625. V4L2_STD_SECAM_H |\
  626. V4L2_STD_SECAM_DK |\
  627. V4L2_STD_SECAM_L |\
  628. V4L2_STD_SECAM_LC)
  629. #define V4L2_STD_525_60 (V4L2_STD_PAL_M |\
  630. V4L2_STD_PAL_60 |\
  631. V4L2_STD_NTSC |\
  632. V4L2_STD_NTSC_443)
  633. #define V4L2_STD_625_50 (V4L2_STD_PAL |\
  634. V4L2_STD_PAL_N |\
  635. V4L2_STD_PAL_Nc |\
  636. V4L2_STD_SECAM)
  637. #define V4L2_STD_ATSC (V4L2_STD_ATSC_8_VSB |\
  638. V4L2_STD_ATSC_16_VSB)
  639. #define V4L2_STD_UNKNOWN 0
  640. #define V4L2_STD_ALL (V4L2_STD_525_60 |\
  641. V4L2_STD_625_50)
  642. struct v4l2_standard {
  643. __u32 index;
  644. v4l2_std_id id;
  645. __u8 name[24];
  646. struct v4l2_fract frameperiod; /* Frames, not fields */
  647. __u32 framelines;
  648. __u32 reserved[4];
  649. };
  650. /*
  651. * V I D E O T I M I N G S D V P R E S E T
  652. */
  653. struct v4l2_dv_preset {
  654. __u32 preset;
  655. __u32 reserved[4];
  656. };
  657. /*
  658. * D V P R E S E T S E N U M E R A T I O N
  659. */
  660. struct v4l2_dv_enum_preset {
  661. __u32 index;
  662. __u32 preset;
  663. __u8 name[32]; /* Name of the preset timing */
  664. __u32 width;
  665. __u32 height;
  666. __u32 reserved[4];
  667. };
  668. /*
  669. * D V P R E S E T V A L U E S
  670. */
  671. #define V4L2_DV_INVALID 0
  672. #define V4L2_DV_480P59_94 1 /* BT.1362 */
  673. #define V4L2_DV_576P50 2 /* BT.1362 */
  674. #define V4L2_DV_720P24 3 /* SMPTE 296M */
  675. #define V4L2_DV_720P25 4 /* SMPTE 296M */
  676. #define V4L2_DV_720P30 5 /* SMPTE 296M */
  677. #define V4L2_DV_720P50 6 /* SMPTE 296M */
  678. #define V4L2_DV_720P59_94 7 /* SMPTE 274M */
  679. #define V4L2_DV_720P60 8 /* SMPTE 274M/296M */
  680. #define V4L2_DV_1080I29_97 9 /* BT.1120/ SMPTE 274M */
  681. #define V4L2_DV_1080I30 10 /* BT.1120/ SMPTE 274M */
  682. #define V4L2_DV_1080I25 11 /* BT.1120 */
  683. #define V4L2_DV_1080I50 12 /* SMPTE 296M */
  684. #define V4L2_DV_1080I60 13 /* SMPTE 296M */
  685. #define V4L2_DV_1080P24 14 /* SMPTE 296M */
  686. #define V4L2_DV_1080P25 15 /* SMPTE 296M */
  687. #define V4L2_DV_1080P30 16 /* SMPTE 296M */
  688. #define V4L2_DV_1080P50 17 /* BT.1120 */
  689. #define V4L2_DV_1080P60 18 /* BT.1120 */
  690. /*
  691. * D V B T T I M I N G S
  692. */
  693. /* BT.656/BT.1120 timing data */
  694. struct v4l2_bt_timings {
  695. __u32 width; /* width in pixels */
  696. __u32 height; /* height in lines */
  697. __u32 interlaced; /* Interlaced or progressive */
  698. __u32 polarities; /* Positive or negative polarity */
  699. __u64 pixelclock; /* Pixel clock in HZ. Ex. 74.25MHz->74250000 */
  700. __u32 hfrontporch; /* Horizpontal front porch in pixels */
  701. __u32 hsync; /* Horizontal Sync length in pixels */
  702. __u32 hbackporch; /* Horizontal back porch in pixels */
  703. __u32 vfrontporch; /* Vertical front porch in pixels */
  704. __u32 vsync; /* Vertical Sync length in lines */
  705. __u32 vbackporch; /* Vertical back porch in lines */
  706. __u32 il_vfrontporch; /* Vertical front porch for bottom field of
  707. * interlaced field formats
  708. */
  709. __u32 il_vsync; /* Vertical sync length for bottom field of
  710. * interlaced field formats
  711. */
  712. __u32 il_vbackporch; /* Vertical back porch for bottom field of
  713. * interlaced field formats
  714. */
  715. __u32 reserved[16];
  716. } __attribute__ ((packed));
  717. /* Interlaced or progressive format */
  718. #define V4L2_DV_PROGRESSIVE 0
  719. #define V4L2_DV_INTERLACED 1
  720. /* Polarities. If bit is not set, it is assumed to be negative polarity */
  721. #define V4L2_DV_VSYNC_POS_POL 0x00000001
  722. #define V4L2_DV_HSYNC_POS_POL 0x00000002
  723. /* DV timings */
  724. struct v4l2_dv_timings {
  725. __u32 type;
  726. union {
  727. struct v4l2_bt_timings bt;
  728. __u32 reserved[32];
  729. };
  730. } __attribute__ ((packed));
  731. /* Values for the type field */
  732. #define V4L2_DV_BT_656_1120 0 /* BT.656/1120 timing type */
  733. /*
  734. * V I D E O I N P U T S
  735. */
  736. struct v4l2_input {
  737. __u32 index; /* Which input */
  738. __u8 name[32]; /* Label */
  739. __u32 type; /* Type of input */
  740. __u32 audioset; /* Associated audios (bitfield) */
  741. __u32 tuner; /* Associated tuner */
  742. v4l2_std_id std;
  743. __u32 status;
  744. #ifndef __GENKSYMS__
  745. __u32 capabilities;
  746. __u32 reserved[3];
  747. #else
  748. __u32 reserved[4];
  749. #endif
  750. };
  751. /* Values for the 'type' field */
  752. #define V4L2_INPUT_TYPE_TUNER 1
  753. #define V4L2_INPUT_TYPE_CAMERA 2
  754. /* field 'status' - general */
  755. #define V4L2_IN_ST_NO_POWER 0x00000001 /* Attached device is off */
  756. #define V4L2_IN_ST_NO_SIGNAL 0x00000002
  757. #define V4L2_IN_ST_NO_COLOR 0x00000004
  758. /* field 'status' - sensor orientation */
  759. /* If sensor is mounted upside down set both bits */
  760. #define V4L2_IN_ST_HFLIP 0x00000010 /* Frames are flipped horizontally */
  761. #define V4L2_IN_ST_VFLIP 0x00000020 /* Frames are flipped vertically */
  762. /* field 'status' - analog */
  763. #define V4L2_IN_ST_NO_H_LOCK 0x00000100 /* No horizontal sync lock */
  764. #define V4L2_IN_ST_COLOR_KILL 0x00000200 /* Color killer is active */
  765. /* field 'status' - digital */
  766. #define V4L2_IN_ST_NO_SYNC 0x00010000 /* No synchronization lock */
  767. #define V4L2_IN_ST_NO_EQU 0x00020000 /* No equalizer lock */
  768. #define V4L2_IN_ST_NO_CARRIER 0x00040000 /* Carrier recovery failed */
  769. /* field 'status' - VCR and set-top box */
  770. #define V4L2_IN_ST_MACROVISION 0x01000000 /* Macrovision detected */
  771. #define V4L2_IN_ST_NO_ACCESS 0x02000000 /* Conditional access denied */
  772. #define V4L2_IN_ST_VTR 0x04000000 /* VTR time constant */
  773. /* capabilities flags */
  774. #define V4L2_IN_CAP_PRESETS 0x00000001 /* Supports S_DV_PRESET */
  775. #define V4L2_IN_CAP_CUSTOM_TIMINGS 0x00000002 /* Supports S_DV_TIMINGS */
  776. #define V4L2_IN_CAP_STD 0x00000004 /* Supports S_STD */
  777. /*
  778. * V I D E O O U T P U T S
  779. */
  780. struct v4l2_output {
  781. __u32 index; /* Which output */
  782. __u8 name[32]; /* Label */
  783. __u32 type; /* Type of output */
  784. __u32 audioset; /* Associated audios (bitfield) */
  785. __u32 modulator; /* Associated modulator */
  786. v4l2_std_id std;
  787. #ifndef __GENKSYMS__
  788. __u32 capabilities;
  789. __u32 reserved[3];
  790. #else
  791. __u32 reserved[4];
  792. #endif
  793. };
  794. /* Values for the 'type' field */
  795. #define V4L2_OUTPUT_TYPE_MODULATOR 1
  796. #define V4L2_OUTPUT_TYPE_ANALOG 2
  797. #define V4L2_OUTPUT_TYPE_ANALOGVGAOVERLAY 3
  798. /* capabilities flags */
  799. #define V4L2_OUT_CAP_PRESETS 0x00000001 /* Supports S_DV_PRESET */
  800. #define V4L2_OUT_CAP_CUSTOM_TIMINGS 0x00000002 /* Supports S_DV_TIMINGS */
  801. #define V4L2_OUT_CAP_STD 0x00000004 /* Supports S_STD */
  802. /*
  803. * C O N T R O L S
  804. */
  805. struct v4l2_control {
  806. __u32 id;
  807. __s32 value;
  808. };
  809. struct v4l2_ext_control {
  810. __u32 id;
  811. __u32 size;
  812. __u32 reserved2[1];
  813. union {
  814. __s32 value;
  815. __s64 value64;
  816. char *string;
  817. };
  818. } __attribute__ ((packed));
  819. struct v4l2_ext_controls {
  820. __u32 ctrl_class;
  821. __u32 count;
  822. __u32 error_idx;
  823. __u32 reserved[2];
  824. struct v4l2_ext_control *controls;
  825. };
  826. /* Values for ctrl_class field */
  827. #define V4L2_CTRL_CLASS_USER 0x00980000 /* Old-style 'user' controls */
  828. #define V4L2_CTRL_CLASS_MPEG 0x00990000 /* MPEG-compression controls */
  829. #define V4L2_CTRL_CLASS_CAMERA 0x009a0000 /* Camera class controls */
  830. #define V4L2_CTRL_CLASS_FM_TX 0x009b0000 /* FM Modulator control class */
  831. #define V4L2_CTRL_ID_MASK (0x0fffffff)
  832. #define V4L2_CTRL_ID2CLASS(id) ((id) & 0x0fff0000UL)
  833. #define V4L2_CTRL_DRIVER_PRIV(id) (((id) & 0xffff) >= 0x1000)
  834. enum v4l2_ctrl_type {
  835. V4L2_CTRL_TYPE_INTEGER = 1,
  836. V4L2_CTRL_TYPE_BOOLEAN = 2,
  837. V4L2_CTRL_TYPE_MENU = 3,
  838. V4L2_CTRL_TYPE_BUTTON = 4,
  839. V4L2_CTRL_TYPE_INTEGER64 = 5,
  840. V4L2_CTRL_TYPE_CTRL_CLASS = 6,
  841. V4L2_CTRL_TYPE_STRING = 7,
  842. };
  843. /* Used in the VIDIOC_QUERYCTRL ioctl for querying controls */
  844. struct v4l2_queryctrl {
  845. __u32 id;
  846. enum v4l2_ctrl_type type;
  847. __u8 name[32]; /* Whatever */
  848. __s32 minimum; /* Note signedness */
  849. __s32 maximum;
  850. __s32 step;
  851. __s32 default_value;
  852. __u32 flags;
  853. __u32 reserved[2];
  854. };
  855. /* Used in the VIDIOC_QUERYMENU ioctl for querying menu items */
  856. struct v4l2_querymenu {
  857. __u32 id;
  858. __u32 index;
  859. __u8 name[32]; /* Whatever */
  860. __u32 reserved;
  861. };
  862. /* Control flags */
  863. #define V4L2_CTRL_FLAG_DISABLED 0x0001
  864. #define V4L2_CTRL_FLAG_GRABBED 0x0002
  865. #define V4L2_CTRL_FLAG_READ_ONLY 0x0004
  866. #define V4L2_CTRL_FLAG_UPDATE 0x0008
  867. #define V4L2_CTRL_FLAG_INACTIVE 0x0010
  868. #define V4L2_CTRL_FLAG_SLIDER 0x0020
  869. #define V4L2_CTRL_FLAG_WRITE_ONLY 0x0040
  870. /* Query flag, to be ORed with the control ID */
  871. #define V4L2_CTRL_FLAG_NEXT_CTRL 0x80000000
  872. /* User-class control IDs defined by V4L2 */
  873. #define V4L2_CID_BASE (V4L2_CTRL_CLASS_USER | 0x900)
  874. #define V4L2_CID_USER_BASE V4L2_CID_BASE
  875. /* IDs reserved for driver specific controls */
  876. #define V4L2_CID_PRIVATE_BASE 0x08000000
  877. #define V4L2_CID_USER_CLASS (V4L2_CTRL_CLASS_USER | 1)
  878. #define V4L2_CID_BRIGHTNESS (V4L2_CID_BASE+0)
  879. #define V4L2_CID_CONTRAST (V4L2_CID_BASE+1)
  880. #define V4L2_CID_SATURATION (V4L2_CID_BASE+2)
  881. #define V4L2_CID_HUE (V4L2_CID_BASE+3)
  882. #define V4L2_CID_AUDIO_VOLUME (V4L2_CID_BASE+5)
  883. #define V4L2_CID_AUDIO_BALANCE (V4L2_CID_BASE+6)
  884. #define V4L2_CID_AUDIO_BASS (V4L2_CID_BASE+7)
  885. #define V4L2_CID_AUDIO_TREBLE (V4L2_CID_BASE+8)
  886. #define V4L2_CID_AUDIO_MUTE (V4L2_CID_BASE+9)
  887. #define V4L2_CID_AUDIO_LOUDNESS (V4L2_CID_BASE+10)
  888. #define V4L2_CID_BLACK_LEVEL (V4L2_CID_BASE+11) /* Deprecated */
  889. #define V4L2_CID_AUTO_WHITE_BALANCE (V4L2_CID_BASE+12)
  890. #define V4L2_CID_DO_WHITE_BALANCE (V4L2_CID_BASE+13)
  891. #define V4L2_CID_RED_BALANCE (V4L2_CID_BASE+14)
  892. #define V4L2_CID_BLUE_BALANCE (V4L2_CID_BASE+15)
  893. #define V4L2_CID_GAMMA (V4L2_CID_BASE+16)
  894. #define V4L2_CID_WHITENESS (V4L2_CID_GAMMA) /* Deprecated */
  895. #define V4L2_CID_EXPOSURE (V4L2_CID_BASE+17)
  896. #define V4L2_CID_AUTOGAIN (V4L2_CID_BASE+18)
  897. #define V4L2_CID_GAIN (V4L2_CID_BASE+19)
  898. #define V4L2_CID_HFLIP (V4L2_CID_BASE+20)
  899. #define V4L2_CID_VFLIP (V4L2_CID_BASE+21)
  900. /* Deprecated; use V4L2_CID_PAN_RESET and V4L2_CID_TILT_RESET */
  901. #define V4L2_CID_HCENTER (V4L2_CID_BASE+22)
  902. #define V4L2_CID_VCENTER (V4L2_CID_BASE+23)
  903. #define V4L2_CID_POWER_LINE_FREQUENCY (V4L2_CID_BASE+24)
  904. enum v4l2_power_line_frequency {
  905. V4L2_CID_POWER_LINE_FREQUENCY_DISABLED = 0,
  906. V4L2_CID_POWER_LINE_FREQUENCY_50HZ = 1,
  907. V4L2_CID_POWER_LINE_FREQUENCY_60HZ = 2,
  908. };
  909. #define V4L2_CID_HUE_AUTO (V4L2_CID_BASE+25)
  910. #define V4L2_CID_WHITE_BALANCE_TEMPERATURE (V4L2_CID_BASE+26)
  911. #define V4L2_CID_SHARPNESS (V4L2_CID_BASE+27)
  912. #define V4L2_CID_BACKLIGHT_COMPENSATION (V4L2_CID_BASE+28)
  913. #define V4L2_CID_CHROMA_AGC (V4L2_CID_BASE+29)
  914. #define V4L2_CID_COLOR_KILLER (V4L2_CID_BASE+30)
  915. #define V4L2_CID_COLORFX (V4L2_CID_BASE+31)
  916. enum v4l2_colorfx {
  917. V4L2_COLORFX_NONE = 0,
  918. V4L2_COLORFX_BW = 1,
  919. V4L2_COLORFX_SEPIA = 2,
  920. V4L2_COLORFX_NEGATIVE = 3,
  921. V4L2_COLORFX_EMBOSS = 4,
  922. V4L2_COLORFX_SKETCH = 5,
  923. V4L2_COLORFX_SKY_BLUE = 6,
  924. V4L2_COLORFX_GRASS_GREEN = 7,
  925. V4L2_COLORFX_SKIN_WHITEN = 8,
  926. V4L2_COLORFX_VIVID = 9,
  927. };
  928. #define V4L2_CID_AUTOBRIGHTNESS (V4L2_CID_BASE+32)
  929. #define V4L2_CID_BAND_STOP_FILTER (V4L2_CID_BASE+33)
  930. #define V4L2_CID_ROTATE (V4L2_CID_BASE+34)
  931. #define V4L2_CID_BG_COLOR (V4L2_CID_BASE+35)
  932. #define V4L2_CID_CHROMA_GAIN (V4L2_CID_BASE+36)
  933. #define V4L2_CID_ILLUMINATORS_1 (V4L2_CID_BASE+37)
  934. #define V4L2_CID_ILLUMINATORS_2 (V4L2_CID_BASE+38)
  935. /* last CID + 1 */
  936. #define V4L2_CID_LASTP1 (V4L2_CID_BASE+39)
  937. /* MPEG-class control IDs defined by V4L2 */
  938. #define V4L2_CID_MPEG_BASE (V4L2_CTRL_CLASS_MPEG | 0x900)
  939. #define V4L2_CID_MPEG_CLASS (V4L2_CTRL_CLASS_MPEG | 1)
  940. /* MPEG streams */
  941. #define V4L2_CID_MPEG_STREAM_TYPE (V4L2_CID_MPEG_BASE+0)
  942. enum v4l2_mpeg_stream_type {
  943. V4L2_MPEG_STREAM_TYPE_MPEG2_PS = 0, /* MPEG-2 program stream */
  944. V4L2_MPEG_STREAM_TYPE_MPEG2_TS = 1, /* MPEG-2 transport stream */
  945. V4L2_MPEG_STREAM_TYPE_MPEG1_SS = 2, /* MPEG-1 system stream */
  946. V4L2_MPEG_STREAM_TYPE_MPEG2_DVD = 3, /* MPEG-2 DVD-compatible stream */
  947. V4L2_MPEG_STREAM_TYPE_MPEG1_VCD = 4, /* MPEG-1 VCD-compatible stream */
  948. V4L2_MPEG_STREAM_TYPE_MPEG2_SVCD = 5, /* MPEG-2 SVCD-compatible stream */
  949. };
  950. #define V4L2_CID_MPEG_STREAM_PID_PMT (V4L2_CID_MPEG_BASE+1)
  951. #define V4L2_CID_MPEG_STREAM_PID_AUDIO (V4L2_CID_MPEG_BASE+2)
  952. #define V4L2_CID_MPEG_STREAM_PID_VIDEO (V4L2_CID_MPEG_BASE+3)
  953. #define V4L2_CID_MPEG_STREAM_PID_PCR (V4L2_CID_MPEG_BASE+4)
  954. #define V4L2_CID_MPEG_STREAM_PES_ID_AUDIO (V4L2_CID_MPEG_BASE+5)
  955. #define V4L2_CID_MPEG_STREAM_PES_ID_VIDEO (V4L2_CID_MPEG_BASE+6)
  956. #define V4L2_CID_MPEG_STREAM_VBI_FMT (V4L2_CID_MPEG_BASE+7)
  957. enum v4l2_mpeg_stream_vbi_fmt {
  958. V4L2_MPEG_STREAM_VBI_FMT_NONE = 0, /* No VBI in the MPEG stream */
  959. V4L2_MPEG_STREAM_VBI_FMT_IVTV = 1, /* VBI in private packets, IVTV format */
  960. };
  961. /* MPEG audio */
  962. #define V4L2_CID_MPEG_AUDIO_SAMPLING_FREQ (V4L2_CID_MPEG_BASE+100)
  963. enum v4l2_mpeg_audio_sampling_freq {
  964. V4L2_MPEG_AUDIO_SAMPLING_FREQ_44100 = 0,
  965. V4L2_MPEG_AUDIO_SAMPLING_FREQ_48000 = 1,
  966. V4L2_MPEG_AUDIO_SAMPLING_FREQ_32000 = 2,
  967. };
  968. #define V4L2_CID_MPEG_AUDIO_ENCODING (V4L2_CID_MPEG_BASE+101)
  969. enum v4l2_mpeg_audio_encoding {
  970. V4L2_MPEG_AUDIO_ENCODING_LAYER_1 = 0,
  971. V4L2_MPEG_AUDIO_ENCODING_LAYER_2 = 1,
  972. V4L2_MPEG_AUDIO_ENCODING_LAYER_3 = 2,
  973. V4L2_MPEG_AUDIO_ENCODING_AAC = 3,
  974. V4L2_MPEG_AUDIO_ENCODING_AC3 = 4,
  975. };
  976. #define V4L2_CID_MPEG_AUDIO_L1_BITRATE (V4L2_CID_MPEG_BASE+102)
  977. enum v4l2_mpeg_audio_l1_bitrate {
  978. V4L2_MPEG_AUDIO_L1_BITRATE_32K = 0,
  979. V4L2_MPEG_AUDIO_L1_BITRATE_64K = 1,
  980. V4L2_MPEG_AUDIO_L1_BITRATE_96K = 2,
  981. V4L2_MPEG_AUDIO_L1_BITRATE_128K = 3,
  982. V4L2_MPEG_AUDIO_L1_BITRATE_160K = 4,
  983. V4L2_MPEG_AUDIO_L1_BITRATE_192K = 5,
  984. V4L2_MPEG_AUDIO_L1_BITRATE_224K = 6,
  985. V4L2_MPEG_AUDIO_L1_BITRATE_256K = 7,
  986. V4L2_MPEG_AUDIO_L1_BITRATE_288K = 8,
  987. V4L2_MPEG_AUDIO_L1_BITRATE_320K = 9,
  988. V4L2_MPEG_AUDIO_L1_BITRATE_352K = 10,
  989. V4L2_MPEG_AUDIO_L1_BITRATE_384K = 11,
  990. V4L2_MPEG_AUDIO_L1_BITRATE_416K = 12,
  991. V4L2_MPEG_AUDIO_L1_BITRATE_448K = 13,
  992. };
  993. #define V4L2_CID_MPEG_AUDIO_L2_BITRATE (V4L2_CID_MPEG_BASE+103)
  994. enum v4l2_mpeg_audio_l2_bitrate {
  995. V4L2_MPEG_AUDIO_L2_BITRATE_32K = 0,
  996. V4L2_MPEG_AUDIO_L2_BITRATE_48K = 1,
  997. V4L2_MPEG_AUDIO_L2_BITRATE_56K = 2,
  998. V4L2_MPEG_AUDIO_L2_BITRATE_64K = 3,
  999. V4L2_MPEG_AUDIO_L2_BITRATE_80K = 4,
  1000. V4L2_MPEG_AUDIO_L2_BITRATE_96K = 5,
  1001. V4L2_MPEG_AUDIO_L2_BITRATE_112K = 6,
  1002. V4L2_MPEG_AUDIO_L2_BITRATE_128K = 7,
  1003. V4L2_MPEG_AUDIO_L2_BITRATE_160K = 8,
  1004. V4L2_MPEG_AUDIO_L2_BITRATE_192K = 9,
  1005. V4L2_MPEG_AUDIO_L2_BITRATE_224K = 10,
  1006. V4L2_MPEG_AUDIO_L2_BITRATE_256K = 11,
  1007. V4L2_MPEG_AUDIO_L2_BITRATE_320K = 12,
  1008. V4L2_MPEG_AUDIO_L2_BITRATE_384K = 13,
  1009. };
  1010. #define V4L2_CID_MPEG_AUDIO_L3_BITRATE (V4L2_CID_MPEG_BASE+104)
  1011. enum v4l2_mpeg_audio_l3_bitrate {
  1012. V4L2_MPEG_AUDIO_L3_BITRATE_32K = 0,
  1013. V4L2_MPEG_AUDIO_L3_BITRATE_40K = 1,
  1014. V4L2_MPEG_AUDIO_L3_BITRATE_48K = 2,
  1015. V4L2_MPEG_AUDIO_L3_BITRATE_56K = 3,
  1016. V4L2_MPEG_AUDIO_L3_BITRATE_64K = 4,
  1017. V4L2_MPEG_AUDIO_L3_BITRATE_80K = 5,
  1018. V4L2_MPEG_AUDIO_L3_BITRATE_96K = 6,
  1019. V4L2_MPEG_AUDIO_L3_BITRATE_112K = 7,
  1020. V4L2_MPEG_AUDIO_L3_BITRATE_128K = 8,
  1021. V4L2_MPEG_AUDIO_L3_BITRATE_160K = 9,
  1022. V4L2_MPEG_AUDIO_L3_BITRATE_192K = 10,
  1023. V4L2_MPEG_AUDIO_L3_BITRATE_224K = 11,
  1024. V4L2_MPEG_AUDIO_L3_BITRATE_256K = 12,
  1025. V4L2_MPEG_AUDIO_L3_BITRATE_320K = 13,
  1026. };
  1027. #define V4L2_CID_MPEG_AUDIO_MODE (V4L2_CID_MPEG_BASE+105)
  1028. enum v4l2_mpeg_audio_mode {
  1029. V4L2_MPEG_AUDIO_MODE_STEREO = 0,
  1030. V4L2_MPEG_AUDIO_MODE_JOINT_STEREO = 1,
  1031. V4L2_MPEG_AUDIO_MODE_DUAL = 2,
  1032. V4L2_MPEG_AUDIO_MODE_MONO = 3,
  1033. };
  1034. #define V4L2_CID_MPEG_AUDIO_MODE_EXTENSION (V4L2_CID_MPEG_BASE+106)
  1035. enum v4l2_mpeg_audio_mode_extension {
  1036. V4L2_MPEG_AUDIO_MODE_EXTENSION_BOUND_4 = 0,
  1037. V4L2_MPEG_AUDIO_MODE_EXTENSION_BOUND_8 = 1,
  1038. V4L2_MPEG_AUDIO_MODE_EXTENSION_BOUND_12 = 2,
  1039. V4L2_MPEG_AUDIO_MODE_EXTENSION_BOUND_16 = 3,
  1040. };
  1041. #define V4L2_CID_MPEG_AUDIO_EMPHASIS (V4L2_CID_MPEG_BASE+107)
  1042. enum v4l2_mpeg_audio_emphasis {
  1043. V4L2_MPEG_AUDIO_EMPHASIS_NONE = 0,
  1044. V4L2_MPEG_AUDIO_EMPHASIS_50_DIV_15_uS = 1,
  1045. V4L2_MPEG_AUDIO_EMPHASIS_CCITT_J17 = 2,
  1046. };
  1047. #define V4L2_CID_MPEG_AUDIO_CRC (V4L2_CID_MPEG_BASE+108)
  1048. enum v4l2_mpeg_audio_crc {
  1049. V4L2_MPEG_AUDIO_CRC_NONE = 0,
  1050. V4L2_MPEG_AUDIO_CRC_CRC16 = 1,
  1051. };
  1052. #define V4L2_CID_MPEG_AUDIO_MUTE (V4L2_CID_MPEG_BASE+109)
  1053. #define V4L2_CID_MPEG_AUDIO_AAC_BITRATE (V4L2_CID_MPEG_BASE+110)
  1054. #define V4L2_CID_MPEG_AUDIO_AC3_BITRATE (V4L2_CID_MPEG_BASE+111)
  1055. enum v4l2_mpeg_audio_ac3_bitrate {
  1056. V4L2_MPEG_AUDIO_AC3_BITRATE_32K = 0,
  1057. V4L2_MPEG_AUDIO_AC3_BITRATE_40K = 1,
  1058. V4L2_MPEG_AUDIO_AC3_BITRATE_48K = 2,
  1059. V4L2_MPEG_AUDIO_AC3_BITRATE_56K = 3,
  1060. V4L2_MPEG_AUDIO_AC3_BITRATE_64K = 4,
  1061. V4L2_MPEG_AUDIO_AC3_BITRATE_80K = 5,
  1062. V4L2_MPEG_AUDIO_AC3_BITRATE_96K = 6,
  1063. V4L2_MPEG_AUDIO_AC3_BITRATE_112K = 7,
  1064. V4L2_MPEG_AUDIO_AC3_BITRATE_128K = 8,
  1065. V4L2_MPEG_AUDIO_AC3_BITRATE_160K = 9,
  1066. V4L2_MPEG_AUDIO_AC3_BITRATE_192K = 10,
  1067. V4L2_MPEG_AUDIO_AC3_BITRATE_224K = 11,
  1068. V4L2_MPEG_AUDIO_AC3_BITRATE_256K = 12,
  1069. V4L2_MPEG_AUDIO_AC3_BITRATE_320K = 13,
  1070. V4L2_MPEG_AUDIO_AC3_BITRATE_384K = 14,
  1071. V4L2_MPEG_AUDIO_AC3_BITRATE_448K = 15,
  1072. V4L2_MPEG_AUDIO_AC3_BITRATE_512K = 16,
  1073. V4L2_MPEG_AUDIO_AC3_BITRATE_576K = 17,
  1074. V4L2_MPEG_AUDIO_AC3_BITRATE_640K = 18,
  1075. };
  1076. /* MPEG video */
  1077. #define V4L2_CID_MPEG_VIDEO_ENCODING (V4L2_CID_MPEG_BASE+200)
  1078. enum v4l2_mpeg_video_encoding {
  1079. V4L2_MPEG_VIDEO_ENCODING_MPEG_1 = 0,
  1080. V4L2_MPEG_VIDEO_ENCODING_MPEG_2 = 1,
  1081. V4L2_MPEG_VIDEO_ENCODING_MPEG_4_AVC = 2,
  1082. };
  1083. #define V4L2_CID_MPEG_VIDEO_ASPECT (V4L2_CID_MPEG_BASE+201)
  1084. enum v4l2_mpeg_video_aspect {
  1085. V4L2_MPEG_VIDEO_ASPECT_1x1 = 0,
  1086. V4L2_MPEG_VIDEO_ASPECT_4x3 = 1,
  1087. V4L2_MPEG_VIDEO_ASPECT_16x9 = 2,
  1088. V4L2_MPEG_VIDEO_ASPECT_221x100 = 3,
  1089. };
  1090. #define V4L2_CID_MPEG_VIDEO_B_FRAMES (V4L2_CID_MPEG_BASE+202)
  1091. #define V4L2_CID_MPEG_VIDEO_GOP_SIZE (V4L2_CID_MPEG_BASE+203)
  1092. #define V4L2_CID_MPEG_VIDEO_GOP_CLOSURE (V4L2_CID_MPEG_BASE+204)
  1093. #define V4L2_CID_MPEG_VIDEO_PULLDOWN (V4L2_CID_MPEG_BASE+205)
  1094. #define V4L2_CID_MPEG_VIDEO_BITRATE_MODE (V4L2_CID_MPEG_BASE+206)
  1095. enum v4l2_mpeg_video_bitrate_mode {
  1096. V4L2_MPEG_VIDEO_BITRATE_MODE_VBR = 0,
  1097. V4L2_MPEG_VIDEO_BITRATE_MODE_CBR = 1,
  1098. };
  1099. #define V4L2_CID_MPEG_VIDEO_BITRATE (V4L2_CID_MPEG_BASE+207)
  1100. #define V4L2_CID_MPEG_VIDEO_BITRATE_PEAK (V4L2_CID_MPEG_BASE+208)
  1101. #define V4L2_CID_MPEG_VIDEO_TEMPORAL_DECIMATION (V4L2_CID_MPEG_BASE+209)
  1102. #define V4L2_CID_MPEG_VIDEO_MUTE (V4L2_CID_MPEG_BASE+210)
  1103. #define V4L2_CID_MPEG_VIDEO_MUTE_YUV (V4L2_CID_MPEG_BASE+211)
  1104. /* MPEG-class control IDs specific to the CX2341x driver as defined by V4L2 */
  1105. #define V4L2_CID_MPEG_CX2341X_BASE (V4L2_CTRL_CLASS_MPEG | 0x1000)
  1106. #define V4L2_CID_MPEG_CX2341X_VIDEO_SPATIAL_FILTER_MODE (V4L2_CID_MPEG_CX2341X_BASE+0)
  1107. enum v4l2_mpeg_cx2341x_video_spatial_filter_mode {
  1108. V4L2_MPEG_CX2341X_VIDEO_SPATIAL_FILTER_MODE_MANUAL = 0,
  1109. V4L2_MPEG_CX2341X_VIDEO_SPATIAL_FILTER_MODE_AUTO = 1,
  1110. };
  1111. #define V4L2_CID_MPEG_CX2341X_VIDEO_SPATIAL_FILTER (V4L2_CID_MPEG_CX2341X_BASE+1)
  1112. #define V4L2_CID_MPEG_CX2341X_VIDEO_LUMA_SPATIAL_FILTER_TYPE (V4L2_CID_MPEG_CX2341X_BASE+2)
  1113. enum v4l2_mpeg_cx2341x_video_luma_spatial_filter_type {
  1114. V4L2_MPEG_CX2341X_VIDEO_LUMA_SPATIAL_FILTER_TYPE_OFF = 0,
  1115. V4L2_MPEG_CX2341X_VIDEO_LUMA_SPATIAL_FILTER_TYPE_1D_HOR = 1,
  1116. V4L2_MPEG_CX2341X_VIDEO_LUMA_SPATIAL_FILTER_TYPE_1D_VERT = 2,
  1117. V4L2_MPEG_CX2341X_VIDEO_LUMA_SPATIAL_FILTER_TYPE_2D_HV_SEPARABLE = 3,
  1118. V4L2_MPEG_CX2341X_VIDEO_LUMA_SPATIAL_FILTER_TYPE_2D_SYM_NON_SEPARABLE = 4,
  1119. };
  1120. #define V4L2_CID_MPEG_CX2341X_VIDEO_CHROMA_SPATIAL_FILTER_TYPE (V4L2_CID_MPEG_CX2341X_BASE+3)
  1121. enum v4l2_mpeg_cx2341x_video_chroma_spatial_filter_type {
  1122. V4L2_MPEG_CX2341X_VIDEO_CHROMA_SPATIAL_FILTER_TYPE_OFF = 0,
  1123. V4L2_MPEG_CX2341X_VIDEO_CHROMA_SPATIAL_FILTER_TYPE_1D_HOR = 1,
  1124. };
  1125. #define V4L2_CID_MPEG_CX2341X_VIDEO_TEMPORAL_FILTER_MODE (V4L2_CID_MPEG_CX2341X_BASE+4)
  1126. enum v4l2_mpeg_cx2341x_video_temporal_filter_mode {
  1127. V4L2_MPEG_CX2341X_VIDEO_TEMPORAL_FILTER_MODE_MANUAL = 0,
  1128. V4L2_MPEG_CX2341X_VIDEO_TEMPORAL_FILTER_MODE_AUTO = 1,
  1129. };
  1130. #define V4L2_CID_MPEG_CX2341X_VIDEO_TEMPORAL_FILTER (V4L2_CID_MPEG_CX2341X_BASE+5)
  1131. #define V4L2_CID_MPEG_CX2341X_VIDEO_MEDIAN_FILTER_TYPE (V4L2_CID_MPEG_CX2341X_BASE+6)
  1132. enum v4l2_mpeg_cx2341x_video_median_filter_type {
  1133. V4L2_MPEG_CX2341X_VIDEO_MEDIAN_FILTER_TYPE_OFF = 0,
  1134. V4L2_MPEG_CX2341X_VIDEO_MEDIAN_FILTER_TYPE_HOR = 1,
  1135. V4L2_MPEG_CX2341X_VIDEO_MEDIAN_FILTER_TYPE_VERT = 2,
  1136. V4L2_MPEG_CX2341X_VIDEO_MEDIAN_FILTER_TYPE_HOR_VERT = 3,
  1137. V4L2_MPEG_CX2341X_VIDEO_MEDIAN_FILTER_TYPE_DIAG = 4,
  1138. };
  1139. #define V4L2_CID_MPEG_CX2341X_VIDEO_LUMA_MEDIAN_FILTER_BOTTOM (V4L2_CID_MPEG_CX2341X_BASE+7)
  1140. #define V4L2_CID_MPEG_CX2341X_VIDEO_LUMA_MEDIAN_FILTER_TOP (V4L2_CID_MPEG_CX2341X_BASE+8)
  1141. #define V4L2_CID_MPEG_CX2341X_VIDEO_CHROMA_MEDIAN_FILTER_BOTTOM (V4L2_CID_MPEG_CX2341X_BASE+9)
  1142. #define V4L2_CID_MPEG_CX2341X_VIDEO_CHROMA_MEDIAN_FILTER_TOP (V4L2_CID_MPEG_CX2341X_BASE+10)
  1143. #define V4L2_CID_MPEG_CX2341X_STREAM_INSERT_NAV_PACKETS (V4L2_CID_MPEG_CX2341X_BASE+11)
  1144. /* Camera class control IDs */
  1145. #define V4L2_CID_CAMERA_CLASS_BASE (V4L2_CTRL_CLASS_CAMERA | 0x900)
  1146. #define V4L2_CID_CAMERA_CLASS (V4L2_CTRL_CLASS_CAMERA | 1)
  1147. #define V4L2_CID_EXPOSURE_AUTO (V4L2_CID_CAMERA_CLASS_BASE+1)
  1148. enum v4l2_exposure_auto_type {
  1149. V4L2_EXPOSURE_AUTO = 0,
  1150. V4L2_EXPOSURE_MANUAL = 1,
  1151. V4L2_EXPOSURE_SHUTTER_PRIORITY = 2,
  1152. V4L2_EXPOSURE_APERTURE_PRIORITY = 3
  1153. };
  1154. #define V4L2_CID_EXPOSURE_ABSOLUTE (V4L2_CID_CAMERA_CLASS_BASE+2)
  1155. #define V4L2_CID_EXPOSURE_AUTO_PRIORITY (V4L2_CID_CAMERA_CLASS_BASE+3)
  1156. #define V4L2_CID_PAN_RELATIVE (V4L2_CID_CAMERA_CLASS_BASE+4)
  1157. #define V4L2_CID_TILT_RELATIVE (V4L2_CID_CAMERA_CLASS_BASE+5)
  1158. #define V4L2_CID_PAN_RESET (V4L2_CID_CAMERA_CLASS_BASE+6)
  1159. #define V4L2_CID_TILT_RESET (V4L2_CID_CAMERA_CLASS_BASE+7)
  1160. #define V4L2_CID_PAN_ABSOLUTE (V4L2_CID_CAMERA_CLASS_BASE+8)
  1161. #define V4L2_CID_TILT_ABSOLUTE (V4L2_CID_CAMERA_CLASS_BASE+9)
  1162. #define V4L2_CID_FOCUS_ABSOLUTE (V4L2_CID_CAMERA_CLASS_BASE+10)
  1163. #define V4L2_CID_FOCUS_RELATIVE (V4L2_CID_CAMERA_CLASS_BASE+11)
  1164. #define V4L2_CID_FOCUS_AUTO (V4L2_CID_CAMERA_CLASS_BASE+12)
  1165. #define V4L2_CID_ZOOM_ABSOLUTE (V4L2_CID_CAMERA_CLASS_BASE+13)
  1166. #define V4L2_CID_ZOOM_RELATIVE (V4L2_CID_CAMERA_CLASS_BASE+14)
  1167. #define V4L2_CID_ZOOM_CONTINUOUS (V4L2_CID_CAMERA_CLASS_BASE+15)
  1168. #define V4L2_CID_PRIVACY (V4L2_CID_CAMERA_CLASS_BASE+16)
  1169. #define V4L2_CID_IRIS_ABSOLUTE (V4L2_CID_CAMERA_CLASS_BASE+17)
  1170. #define V4L2_CID_IRIS_RELATIVE (V4L2_CID_CAMERA_CLASS_BASE+18)
  1171. /* FM Modulator class control IDs */
  1172. #define V4L2_CID_FM_TX_CLASS_BASE (V4L2_CTRL_CLASS_FM_TX | 0x900)
  1173. #define V4L2_CID_FM_TX_CLASS (V4L2_CTRL_CLASS_FM_TX | 1)
  1174. #define V4L2_CID_RDS_TX_DEVIATION (V4L2_CID_FM_TX_CLASS_BASE + 1)
  1175. #define V4L2_CID_RDS_TX_PI (V4L2_CID_FM_TX_CLASS_BASE + 2)
  1176. #define V4L2_CID_RDS_TX_PTY (V4L2_CID_FM_TX_CLASS_BASE + 3)
  1177. #define V4L2_CID_RDS_TX_PS_NAME (V4L2_CID_FM_TX_CLASS_BASE + 5)
  1178. #define V4L2_CID_RDS_TX_RADIO_TEXT (V4L2_CID_FM_TX_CLASS_BASE + 6)
  1179. #define V4L2_CID_AUDIO_LIMITER_ENABLED (V4L2_CID_FM_TX_CLASS_BASE + 64)
  1180. #define V4L2_CID_AUDIO_LIMITER_RELEASE_TIME (V4L2_CID_FM_TX_CLASS_BASE + 65)
  1181. #define V4L2_CID_AUDIO_LIMITER_DEVIATION (V4L2_CID_FM_TX_CLASS_BASE + 66)
  1182. #define V4L2_CID_AUDIO_COMPRESSION_ENABLED (V4L2_CID_FM_TX_CLASS_BASE + 80)
  1183. #define V4L2_CID_AUDIO_COMPRESSION_GAIN (V4L2_CID_FM_TX_CLASS_BASE + 81)
  1184. #define V4L2_CID_AUDIO_COMPRESSION_THRESHOLD (V4L2_CID_FM_TX_CLASS_BASE + 82)
  1185. #define V4L2_CID_AUDIO_COMPRESSION_ATTACK_TIME (V4L2_CID_FM_TX_CLASS_BASE + 83)
  1186. #define V4L2_CID_AUDIO_COMPRESSION_RELEASE_TIME (V4L2_CID_FM_TX_CLASS_BASE + 84)
  1187. #define V4L2_CID_PILOT_TONE_ENABLED (V4L2_CID_FM_TX_CLASS_BASE + 96)
  1188. #define V4L2_CID_PILOT_TONE_DEVIATION (V4L2_CID_FM_TX_CLASS_BASE + 97)
  1189. #define V4L2_CID_PILOT_TONE_FREQUENCY (V4L2_CID_FM_TX_CLASS_BASE + 98)
  1190. #define V4L2_CID_TUNE_PREEMPHASIS (V4L2_CID_FM_TX_CLASS_BASE + 112)
  1191. enum v4l2_preemphasis {
  1192. V4L2_PREEMPHASIS_DISABLED = 0,
  1193. V4L2_PREEMPHASIS_50_uS = 1,
  1194. V4L2_PREEMPHASIS_75_uS = 2,
  1195. };
  1196. #define V4L2_CID_TUNE_POWER_LEVEL (V4L2_CID_FM_TX_CLASS_BASE + 113)
  1197. #define V4L2_CID_TUNE_ANTENNA_CAPACITOR (V4L2_CID_FM_TX_CLASS_BASE + 114)
  1198. /*
  1199. * T U N I N G
  1200. */
  1201. struct v4l2_tuner {
  1202. __u32 index;
  1203. __u8 name[32];
  1204. enum v4l2_tuner_type type;
  1205. __u32 capability;
  1206. __u32 rangelow;
  1207. __u32 rangehigh;
  1208. __u32 rxsubchans;
  1209. __u32 audmode;
  1210. __s32 signal;
  1211. __s32 afc;
  1212. __u32 reserved[4];
  1213. };
  1214. struct v4l2_modulator {
  1215. __u32 index;
  1216. __u8 name[32];
  1217. __u32 capability;
  1218. __u32 rangelow;
  1219. __u32 rangehigh;
  1220. __u32 txsubchans;
  1221. __u32 reserved[4];
  1222. };
  1223. /* Flags for the 'capability' field */
  1224. #define V4L2_TUNER_CAP_LOW 0x0001
  1225. #define V4L2_TUNER_CAP_NORM 0x0002
  1226. #define V4L2_TUNER_CAP_STEREO 0x0010
  1227. #define V4L2_TUNER_CAP_LANG2 0x0020
  1228. #define V4L2_TUNER_CAP_SAP 0x0020
  1229. #define V4L2_TUNER_CAP_LANG1 0x0040
  1230. #define V4L2_TUNER_CAP_RDS 0x0080
  1231. #define V4L2_TUNER_CAP_RDS_BLOCK_IO 0x0100
  1232. #define V4L2_TUNER_CAP_RDS_CONTROLS 0x0200
  1233. /* Flags for the 'rxsubchans' field */
  1234. #define V4L2_TUNER_SUB_MONO 0x0001
  1235. #define V4L2_TUNER_SUB_STEREO 0x0002
  1236. #define V4L2_TUNER_SUB_LANG2 0x0004
  1237. #define V4L2_TUNER_SUB_SAP 0x0004
  1238. #define V4L2_TUNER_SUB_LANG1 0x0008
  1239. #define V4L2_TUNER_SUB_RDS 0x0010
  1240. /* Values for the 'audmode' field */
  1241. #define V4L2_TUNER_MODE_MONO 0x0000
  1242. #define V4L2_TUNER_MODE_STEREO 0x0001
  1243. #define V4L2_TUNER_MODE_LANG2 0x0002
  1244. #define V4L2_TUNER_MODE_SAP 0x0002
  1245. #define V4L2_TUNER_MODE_LANG1 0x0003
  1246. #define V4L2_TUNER_MODE_LANG1_LANG2 0x0004
  1247. struct v4l2_frequency {
  1248. __u32 tuner;
  1249. enum v4l2_tuner_type type;
  1250. __u32 frequency;
  1251. __u32 reserved[8];
  1252. };
  1253. struct v4l2_hw_freq_seek {
  1254. __u32 tuner;
  1255. enum v4l2_tuner_type type;
  1256. __u32 seek_upward;
  1257. __u32 wrap_around;
  1258. #ifndef __GENKSYMS__
  1259. __u32 spacing;
  1260. __u32 reserved[7];
  1261. #else
  1262. __u32 reserved[8];
  1263. #endif
  1264. };
  1265. /*
  1266. * R D S
  1267. */
  1268. struct v4l2_rds_data {
  1269. __u8 lsb;
  1270. __u8 msb;
  1271. __u8 block;
  1272. } __attribute__ ((packed));
  1273. #define V4L2_RDS_BLOCK_MSK 0x7
  1274. #define V4L2_RDS_BLOCK_A 0
  1275. #define V4L2_RDS_BLOCK_B 1
  1276. #define V4L2_RDS_BLOCK_C 2
  1277. #define V4L2_RDS_BLOCK_D 3
  1278. #define V4L2_RDS_BLOCK_C_ALT 4
  1279. #define V4L2_RDS_BLOCK_INVALID 7
  1280. #define V4L2_RDS_BLOCK_CORRECTED 0x40
  1281. #define V4L2_RDS_BLOCK_ERROR 0x80
  1282. /*
  1283. * A U D I O
  1284. */
  1285. struct v4l2_audio {
  1286. __u32 index;
  1287. __u8 name[32];
  1288. __u32 capability;
  1289. __u32 mode;
  1290. __u32 reserved[2];
  1291. };
  1292. /* Flags for the 'capability' field */
  1293. #define V4L2_AUDCAP_STEREO 0x00001
  1294. #define V4L2_AUDCAP_AVL 0x00002
  1295. /* Flags for the 'mode' field */
  1296. #define V4L2_AUDMODE_AVL 0x00001
  1297. struct v4l2_audioout {
  1298. __u32 index;
  1299. __u8 name[32];
  1300. __u32 capability;
  1301. __u32 mode;
  1302. __u32 reserved[2];
  1303. };
  1304. /*
  1305. * M P E G S E R V I C E S
  1306. *
  1307. * NOTE: EXPERIMENTAL API
  1308. */
  1309. #if 1
  1310. #define V4L2_ENC_IDX_FRAME_I (0)
  1311. #define V4L2_ENC_IDX_FRAME_P (1)
  1312. #define V4L2_ENC_IDX_FRAME_B (2)
  1313. #define V4L2_ENC_IDX_FRAME_MASK (0xf)
  1314. struct v4l2_enc_idx_entry {
  1315. __u64 offset;
  1316. __u64 pts;
  1317. __u32 length;
  1318. __u32 flags;
  1319. __u32 reserved[2];
  1320. };
  1321. #define V4L2_ENC_IDX_ENTRIES (64)
  1322. struct v4l2_enc_idx {
  1323. __u32 entries;
  1324. __u32 entries_cap;
  1325. __u32 reserved[4];
  1326. struct v4l2_enc_idx_entry entry[V4L2_ENC_IDX_ENTRIES];
  1327. };
  1328. #define V4L2_ENC_CMD_START (0)
  1329. #define V4L2_ENC_CMD_STOP (1)
  1330. #define V4L2_ENC_CMD_PAUSE (2)
  1331. #define V4L2_ENC_CMD_RESUME (3)
  1332. /* Flags for V4L2_ENC_CMD_STOP */
  1333. #define V4L2_ENC_CMD_STOP_AT_GOP_END (1 << 0)
  1334. struct v4l2_encoder_cmd {
  1335. __u32 cmd;
  1336. __u32 flags;
  1337. union {
  1338. struct {
  1339. __u32 data[8];
  1340. } raw;
  1341. };
  1342. };
  1343. #endif
  1344. /*
  1345. * D A T A S E R V I C E S ( V B I )
  1346. *
  1347. * Data services API by Michael Schimek
  1348. */
  1349. /* Raw VBI */
  1350. struct v4l2_vbi_format {
  1351. __u32 sampling_rate; /* in 1 Hz */
  1352. __u32 offset;
  1353. __u32 samples_per_line;
  1354. __u32 sample_format; /* V4L2_PIX_FMT_* */
  1355. __s32 start[2];
  1356. __u32 count[2];
  1357. __u32 flags; /* V4L2_VBI_* */
  1358. __u32 reserved[2]; /* must be zero */
  1359. };
  1360. /* VBI flags */
  1361. #define V4L2_VBI_UNSYNC (1 << 0)
  1362. #define V4L2_VBI_INTERLACED (1 << 1)
  1363. /* Sliced VBI
  1364. *
  1365. * This implements is a proposal V4L2 API to allow SLICED VBI
  1366. * required for some hardware encoders. It should change without
  1367. * notice in the definitive implementation.
  1368. */
  1369. struct v4l2_sliced_vbi_format {
  1370. __u16 service_set;
  1371. /* service_lines[0][...] specifies lines 0-23 (1-23 used) of the first field
  1372. service_lines[1][...] specifies lines 0-23 (1-23 used) of the second field
  1373. (equals frame lines 313-336 for 625 line video
  1374. standards, 263-286 for 525 line standards) */
  1375. __u16 service_lines[2][24];
  1376. __u32 io_size;
  1377. __u32 reserved[2]; /* must be zero */
  1378. };
  1379. /* Teletext World System Teletext
  1380. (WST), defined on ITU-R BT.653-2 */
  1381. #define V4L2_SLICED_TELETEXT_B (0x0001)
  1382. /* Video Program System, defined on ETS 300 231*/
  1383. #define V4L2_SLICED_VPS (0x0400)
  1384. /* Closed Caption, defined on EIA-608 */
  1385. #define V4L2_SLICED_CAPTION_525 (0x1000)
  1386. /* Wide Screen System, defined on ITU-R BT1119.1 */
  1387. #define V4L2_SLICED_WSS_625 (0x4000)
  1388. #define V4L2_SLICED_VBI_525 (V4L2_SLICED_CAPTION_525)
  1389. #define V4L2_SLICED_VBI_625 (V4L2_SLICED_TELETEXT_B | V4L2_SLICED_VPS | V4L2_SLICED_WSS_625)
  1390. struct v4l2_sliced_vbi_cap {
  1391. __u16 service_set;
  1392. /* service_lines[0][...] specifies lines 0-23 (1-23 used) of the first field
  1393. service_lines[1][...] specifies lines 0-23 (1-23 used) of the second field
  1394. (equals frame lines 313-336 for 625 line video
  1395. standards, 263-286 for 525 line standards) */
  1396. __u16 service_lines[2][24];
  1397. enum v4l2_buf_type type;
  1398. __u32 reserved[3]; /* must be 0 */
  1399. };
  1400. struct v4l2_sliced_vbi_data {
  1401. __u32 id;
  1402. __u32 field; /* 0: first field, 1: second field */
  1403. __u32 line; /* 1-23 */
  1404. __u32 reserved; /* must be 0 */
  1405. __u8 data[48];
  1406. };
  1407. /*
  1408. * Sliced VBI data inserted into MPEG Streams
  1409. */
  1410. /*
  1411. * V4L2_MPEG_STREAM_VBI_FMT_IVTV:
  1412. *
  1413. * Structure of payload contained in an MPEG 2 Private Stream 1 PES Packet in an
  1414. * MPEG-2 Program Pack that contains V4L2_MPEG_STREAM_VBI_FMT_IVTV Sliced VBI
  1415. * data
  1416. *
  1417. * Note, the MPEG-2 Program Pack and Private Stream 1 PES packet header
  1418. * definitions are not included here. See the MPEG-2 specifications for details
  1419. * on these headers.
  1420. */
  1421. /* Line type IDs */
  1422. #define V4L2_MPEG_VBI_IVTV_TELETEXT_B (1)
  1423. #define V4L2_MPEG_VBI_IVTV_CAPTION_525 (4)
  1424. #define V4L2_MPEG_VBI_IVTV_WSS_625 (5)
  1425. #define V4L2_MPEG_VBI_IVTV_VPS (7)
  1426. struct v4l2_mpeg_vbi_itv0_line {
  1427. __u8 id; /* One of V4L2_MPEG_VBI_IVTV_* above */
  1428. __u8 data[42]; /* Sliced VBI data for the line */
  1429. } __attribute__ ((packed));
  1430. struct v4l2_mpeg_vbi_itv0 {
  1431. __le32 linemask[2]; /* Bitmasks of VBI service lines present */
  1432. struct v4l2_mpeg_vbi_itv0_line line[35];
  1433. } __attribute__ ((packed));
  1434. struct v4l2_mpeg_vbi_ITV0 {
  1435. struct v4l2_mpeg_vbi_itv0_line line[36];
  1436. } __attribute__ ((packed));
  1437. #define V4L2_MPEG_VBI_IVTV_MAGIC0 "itv0"
  1438. #define V4L2_MPEG_VBI_IVTV_MAGIC1 "ITV0"
  1439. struct v4l2_mpeg_vbi_fmt_ivtv {
  1440. __u8 magic[4];
  1441. union {
  1442. struct v4l2_mpeg_vbi_itv0 itv0;
  1443. struct v4l2_mpeg_vbi_ITV0 ITV0;
  1444. };
  1445. } __attribute__ ((packed));
  1446. /*
  1447. * A G G R E G A T E S T R U C T U R E S
  1448. */
  1449. /* Stream data format
  1450. */
  1451. struct v4l2_format {
  1452. enum v4l2_buf_type type;
  1453. union {
  1454. struct v4l2_pix_format pix; /* V4L2_BUF_TYPE_VIDEO_CAPTURE */
  1455. struct v4l2_window win; /* V4L2_BUF_TYPE_VIDEO_OVERLAY */
  1456. struct v4l2_vbi_format vbi; /* V4L2_BUF_TYPE_VBI_CAPTURE */
  1457. struct v4l2_sliced_vbi_format sliced; /* V4L2_BUF_TYPE_SLICED_VBI_CAPTURE */
  1458. __u8 raw_data[200]; /* user-defined */
  1459. } fmt;
  1460. };
  1461. /* Stream type-dependent parameters
  1462. */
  1463. struct v4l2_streamparm {
  1464. enum v4l2_buf_type type;
  1465. union {
  1466. struct v4l2_captureparm capture;
  1467. struct v4l2_outputparm output;
  1468. __u8 raw_data[200]; /* user-defined */
  1469. } parm;
  1470. };
  1471. /*
  1472. * E V E N T S
  1473. */
  1474. #define V4L2_EVENT_ALL 0
  1475. #define V4L2_EVENT_VSYNC 1
  1476. #define V4L2_EVENT_EOS 2
  1477. #define V4L2_EVENT_PRIVATE_START 0x08000000
  1478. /* Payload for V4L2_EVENT_VSYNC */
  1479. struct v4l2_event_vsync {
  1480. /* Can be V4L2_FIELD_ANY, _NONE, _TOP or _BOTTOM */
  1481. __u8 field;
  1482. } __attribute__ ((packed));
  1483. struct v4l2_event {
  1484. __u32 type;
  1485. union {
  1486. struct v4l2_event_vsync vsync;
  1487. __u8 data[64];
  1488. } u;
  1489. __u32 pending;
  1490. __u32 sequence;
  1491. struct timespec timestamp;
  1492. __u32 reserved[9];
  1493. };
  1494. struct v4l2_event_subscription {
  1495. __u32 type;
  1496. __u32 reserved[7];
  1497. };
  1498. /*
  1499. * A D V A N C E D D E B U G G I N G
  1500. *
  1501. * NOTE: EXPERIMENTAL API, NEVER RELY ON THIS IN APPLICATIONS!
  1502. * FOR DEBUGGING, TESTING AND INTERNAL USE ONLY!
  1503. */
  1504. /* VIDIOC_DBG_G_REGISTER and VIDIOC_DBG_S_REGISTER */
  1505. #define V4L2_CHIP_MATCH_HOST 0 /* Match against chip ID on host (0 for the host) */
  1506. #define V4L2_CHIP_MATCH_I2C_DRIVER 1 /* Match against I2C driver name */
  1507. #define V4L2_CHIP_MATCH_I2C_ADDR 2 /* Match against I2C 7-bit address */
  1508. #define V4L2_CHIP_MATCH_AC97 3 /* Match against anciliary AC97 chip */
  1509. struct v4l2_dbg_match {
  1510. __u32 type; /* Match type */
  1511. union { /* Match this chip, meaning determined by type */
  1512. __u32 addr;
  1513. char name[32];
  1514. };
  1515. } __attribute__ ((packed));
  1516. struct v4l2_dbg_register {
  1517. struct v4l2_dbg_match match;
  1518. __u32 size; /* register size in bytes */
  1519. __u64 reg;
  1520. __u64 val;
  1521. } __attribute__ ((packed));
  1522. /* VIDIOC_DBG_G_CHIP_IDENT */
  1523. struct v4l2_dbg_chip_ident {
  1524. struct v4l2_dbg_match match;
  1525. __u32 ident; /* chip identifier as specified in <media/v4l2-chip-ident.h> */
  1526. __u32 revision; /* chip revision, chip specific */
  1527. } __attribute__ ((packed));
  1528. /*
  1529. * 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
  1530. *
  1531. */
  1532. #define VIDIOC_QUERYCAP _IOR('V', 0, struct v4l2_capability)
  1533. #define VIDIOC_RESERVED _IO('V', 1)
  1534. #define VIDIOC_ENUM_FMT _IOWR('V', 2, struct v4l2_fmtdesc)
  1535. #define VIDIOC_G_FMT _IOWR('V', 4, struct v4l2_format)
  1536. #define VIDIOC_S_FMT _IOWR('V', 5, struct v4l2_format)
  1537. #define VIDIOC_REQBUFS _IOWR('V', 8, struct v4l2_requestbuffers)
  1538. #define VIDIOC_QUERYBUF _IOWR('V', 9, struct v4l2_buffer)
  1539. #define VIDIOC_G_FBUF _IOR('V', 10, struct v4l2_framebuffer)
  1540. #define VIDIOC_S_FBUF _IOW('V', 11, struct v4l2_framebuffer)
  1541. #define VIDIOC_OVERLAY _IOW('V', 14, int)
  1542. #define VIDIOC_QBUF _IOWR('V', 15, struct v4l2_buffer)
  1543. #define VIDIOC_DQBUF _IOWR('V', 17, struct v4l2_buffer)
  1544. #define VIDIOC_STREAMON _IOW('V', 18, int)
  1545. #define VIDIOC_STREAMOFF _IOW('V', 19, int)
  1546. #define VIDIOC_G_PARM _IOWR('V', 21, struct v4l2_streamparm)
  1547. #define VIDIOC_S_PARM _IOWR('V', 22, struct v4l2_streamparm)
  1548. #define VIDIOC_G_STD _IOR('V', 23, v4l2_std_id)
  1549. #define VIDIOC_S_STD _IOW('V', 24, v4l2_std_id)
  1550. #define VIDIOC_ENUMSTD _IOWR('V', 25, struct v4l2_standard)
  1551. #define VIDIOC_ENUMINPUT _IOWR('V', 26, struct v4l2_input)
  1552. #define VIDIOC_G_CTRL _IOWR('V', 27, struct v4l2_control)
  1553. #define VIDIOC_S_CTRL _IOWR('V', 28, struct v4l2_control)
  1554. #define VIDIOC_G_TUNER _IOWR('V', 29, struct v4l2_tuner)
  1555. #define VIDIOC_S_TUNER _IOW('V', 30, struct v4l2_tuner)
  1556. #define VIDIOC_G_AUDIO _IOR('V', 33, struct v4l2_audio)
  1557. #define VIDIOC_S_AUDIO _IOW('V', 34, struct v4l2_audio)
  1558. #define VIDIOC_QUERYCTRL _IOWR('V', 36, struct v4l2_queryctrl)
  1559. #define VIDIOC_QUERYMENU _IOWR('V', 37, struct v4l2_querymenu)
  1560. #define VIDIOC_G_INPUT _IOR('V', 38, int)
  1561. #define VIDIOC_S_INPUT _IOWR('V', 39, int)
  1562. #define VIDIOC_G_OUTPUT _IOR('V', 46, int)
  1563. #define VIDIOC_S_OUTPUT _IOWR('V', 47, int)
  1564. #define VIDIOC_ENUMOUTPUT _IOWR('V', 48, struct v4l2_output)
  1565. #define VIDIOC_G_AUDOUT _IOR('V', 49, struct v4l2_audioout)
  1566. #define VIDIOC_S_AUDOUT _IOW('V', 50, struct v4l2_audioout)
  1567. #define VIDIOC_G_MODULATOR _IOWR('V', 54, struct v4l2_modulator)
  1568. #define VIDIOC_S_MODULATOR _IOW('V', 55, struct v4l2_modulator)
  1569. #define VIDIOC_G_FREQUENCY _IOWR('V', 56, struct v4l2_frequency)
  1570. #define VIDIOC_S_FREQUENCY _IOW('V', 57, struct v4l2_frequency)
  1571. #define VIDIOC_CROPCAP _IOWR('V', 58, struct v4l2_cropcap)
  1572. #define VIDIOC_G_CROP _IOWR('V', 59, struct v4l2_crop)
  1573. #define VIDIOC_S_CROP _IOW('V', 60, struct v4l2_crop)
  1574. #define VIDIOC_G_JPEGCOMP _IOR('V', 61, struct v4l2_jpegcompression)
  1575. #define VIDIOC_S_JPEGCOMP _IOW('V', 62, struct v4l2_jpegcompression)
  1576. #define VIDIOC_QUERYSTD _IOR('V', 63, v4l2_std_id)
  1577. #define VIDIOC_TRY_FMT _IOWR('V', 64, struct v4l2_format)
  1578. #define VIDIOC_ENUMAUDIO _IOWR('V', 65, struct v4l2_audio)
  1579. #define VIDIOC_ENUMAUDOUT _IOWR('V', 66, struct v4l2_audioout)
  1580. #define VIDIOC_G_PRIORITY _IOR('V', 67, enum v4l2_priority)
  1581. #define VIDIOC_S_PRIORITY _IOW('V', 68, enum v4l2_priority)
  1582. #define VIDIOC_G_SLICED_VBI_CAP _IOWR('V', 69, struct v4l2_sliced_vbi_cap)
  1583. #define VIDIOC_LOG_STATUS _IO('V', 70)
  1584. #define VIDIOC_G_EXT_CTRLS _IOWR('V', 71, struct v4l2_ext_controls)
  1585. #define VIDIOC_S_EXT_CTRLS _IOWR('V', 72, struct v4l2_ext_controls)
  1586. #define VIDIOC_TRY_EXT_CTRLS _IOWR('V', 73, struct v4l2_ext_controls)
  1587. #if 1
  1588. #define VIDIOC_ENUM_FRAMESIZES _IOWR('V', 74, struct v4l2_frmsizeenum)
  1589. #define VIDIOC_ENUM_FRAMEINTERVALS _IOWR('V', 75, struct v4l2_frmivalenum)
  1590. #define VIDIOC_G_ENC_INDEX _IOR('V', 76, struct v4l2_enc_idx)
  1591. #define VIDIOC_ENCODER_CMD _IOWR('V', 77, struct v4l2_encoder_cmd)
  1592. #define VIDIOC_TRY_ENCODER_CMD _IOWR('V', 78, struct v4l2_encoder_cmd)
  1593. #endif
  1594. #if 1
  1595. /* Experimental, meant for debugging, testing and internal use.
  1596. Only implemented if CONFIG_VIDEO_ADV_DEBUG is defined.
  1597. You must be root to use these ioctls. Never use these in applications! */
  1598. #define VIDIOC_DBG_S_REGISTER _IOW('V', 79, struct v4l2_dbg_register)
  1599. #define VIDIOC_DBG_G_REGISTER _IOWR('V', 80, struct v4l2_dbg_register)
  1600. /* Experimental, meant for debugging, testing and internal use.
  1601. Never use this ioctl in applications! */
  1602. #define VIDIOC_DBG_G_CHIP_IDENT _IOWR('V', 81, struct v4l2_dbg_chip_ident)
  1603. #endif
  1604. #define VIDIOC_S_HW_FREQ_SEEK _IOW('V', 82, struct v4l2_hw_freq_seek)
  1605. #define VIDIOC_ENUM_DV_PRESETS _IOWR('V', 83, struct v4l2_dv_enum_preset)
  1606. #define VIDIOC_S_DV_PRESET _IOWR('V', 84, struct v4l2_dv_preset)
  1607. #define VIDIOC_G_DV_PRESET _IOWR('V', 85, struct v4l2_dv_preset)
  1608. #define VIDIOC_QUERY_DV_PRESET _IOR('V', 86, struct v4l2_dv_preset)
  1609. #define VIDIOC_S_DV_TIMINGS _IOWR('V', 87, struct v4l2_dv_timings)
  1610. #define VIDIOC_G_DV_TIMINGS _IOWR('V', 88, struct v4l2_dv_timings)
  1611. #define VIDIOC_DQEVENT _IOR('V', 89, struct v4l2_event)
  1612. #define VIDIOC_SUBSCRIBE_EVENT _IOW('V', 90, struct v4l2_event_subscription)
  1613. #define VIDIOC_UNSUBSCRIBE_EVENT _IOW('V', 91, struct v4l2_event_subscription)
  1614. /* Reminder: when adding new ioctls please add support for them to
  1615. drivers/media/video/v4l2-compat-ioctl32.c as well! */
  1616. #ifdef __OLD_VIDIOC_
  1617. /* for compatibility, will go away some day */
  1618. #define VIDIOC_OVERLAY_OLD _IOWR('V', 14, int)
  1619. #define VIDIOC_S_PARM_OLD _IOW('V', 22, struct v4l2_streamparm)
  1620. #define VIDIOC_S_CTRL_OLD _IOW('V', 28, struct v4l2_control)
  1621. #define VIDIOC_G_AUDIO_OLD _IOWR('V', 33, struct v4l2_audio)
  1622. #define VIDIOC_G_AUDOUT_OLD _IOWR('V', 49, struct v4l2_audioout)
  1623. #define VIDIOC_CROPCAP_OLD _IOR('V', 58, struct v4l2_cropcap)
  1624. #endif
  1625. #define BASE_VIDIOC_PRIVATE 192 /* 192-255 are private */
  1626. #endif /* __LINUX_VIDEODEV2_H */