logo

oasis-root

Compiled tree of Oasis Linux based on own branch at <https://hacktivis.me/git/oasis/> git clone https://anongit.hacktivis.me/git/oasis-root.git

v4l2-controls.h (149407B)


  1. /* SPDX-License-Identifier: ((GPL-2.0+ WITH Linux-syscall-note) OR BSD-3-Clause) */
  2. /*
  3. * Video for Linux Two controls header file
  4. *
  5. * Copyright (C) 1999-2012 the contributors
  6. *
  7. * The contents of this header was split off from videodev2.h. All control
  8. * definitions should be added to this header, which is included by
  9. * videodev2.h.
  10. */
  11. #ifndef __LINUX_V4L2_CONTROLS_H
  12. #define __LINUX_V4L2_CONTROLS_H
  13. #include <linux/const.h>
  14. #include <linux/types.h>
  15. /* Control classes */
  16. #define V4L2_CTRL_CLASS_USER 0x00980000 /* Old-style 'user' controls */
  17. #define V4L2_CTRL_CLASS_CODEC 0x00990000 /* Stateful codec controls */
  18. #define V4L2_CTRL_CLASS_CAMERA 0x009a0000 /* Camera class controls */
  19. #define V4L2_CTRL_CLASS_FM_TX 0x009b0000 /* FM Modulator controls */
  20. #define V4L2_CTRL_CLASS_FLASH 0x009c0000 /* Camera flash controls */
  21. #define V4L2_CTRL_CLASS_JPEG 0x009d0000 /* JPEG-compression controls */
  22. #define V4L2_CTRL_CLASS_IMAGE_SOURCE 0x009e0000 /* Image source controls */
  23. #define V4L2_CTRL_CLASS_IMAGE_PROC 0x009f0000 /* Image processing controls */
  24. #define V4L2_CTRL_CLASS_DV 0x00a00000 /* Digital Video controls */
  25. #define V4L2_CTRL_CLASS_FM_RX 0x00a10000 /* FM Receiver controls */
  26. #define V4L2_CTRL_CLASS_RF_TUNER 0x00a20000 /* RF tuner controls */
  27. #define V4L2_CTRL_CLASS_DETECT 0x00a30000 /* Detection controls */
  28. #define V4L2_CTRL_CLASS_CODEC_STATELESS 0x00a40000 /* Stateless codecs controls */
  29. #define V4L2_CTRL_CLASS_COLORIMETRY 0x00a50000 /* Colorimetry controls */
  30. /* User-class control IDs */
  31. #define V4L2_CID_BASE (V4L2_CTRL_CLASS_USER | 0x900)
  32. #define V4L2_CID_USER_BASE V4L2_CID_BASE
  33. #define V4L2_CID_USER_CLASS (V4L2_CTRL_CLASS_USER | 1)
  34. #define V4L2_CID_BRIGHTNESS (V4L2_CID_BASE+0)
  35. #define V4L2_CID_CONTRAST (V4L2_CID_BASE+1)
  36. #define V4L2_CID_SATURATION (V4L2_CID_BASE+2)
  37. #define V4L2_CID_HUE (V4L2_CID_BASE+3)
  38. #define V4L2_CID_AUDIO_VOLUME (V4L2_CID_BASE+5)
  39. #define V4L2_CID_AUDIO_BALANCE (V4L2_CID_BASE+6)
  40. #define V4L2_CID_AUDIO_BASS (V4L2_CID_BASE+7)
  41. #define V4L2_CID_AUDIO_TREBLE (V4L2_CID_BASE+8)
  42. #define V4L2_CID_AUDIO_MUTE (V4L2_CID_BASE+9)
  43. #define V4L2_CID_AUDIO_LOUDNESS (V4L2_CID_BASE+10)
  44. #define V4L2_CID_BLACK_LEVEL (V4L2_CID_BASE+11) /* Deprecated */
  45. #define V4L2_CID_AUTO_WHITE_BALANCE (V4L2_CID_BASE+12)
  46. #define V4L2_CID_DO_WHITE_BALANCE (V4L2_CID_BASE+13)
  47. #define V4L2_CID_RED_BALANCE (V4L2_CID_BASE+14)
  48. #define V4L2_CID_BLUE_BALANCE (V4L2_CID_BASE+15)
  49. #define V4L2_CID_GAMMA (V4L2_CID_BASE+16)
  50. #define V4L2_CID_WHITENESS (V4L2_CID_GAMMA) /* Deprecated */
  51. #define V4L2_CID_EXPOSURE (V4L2_CID_BASE+17)
  52. #define V4L2_CID_AUTOGAIN (V4L2_CID_BASE+18)
  53. #define V4L2_CID_GAIN (V4L2_CID_BASE+19)
  54. #define V4L2_CID_HFLIP (V4L2_CID_BASE+20)
  55. #define V4L2_CID_VFLIP (V4L2_CID_BASE+21)
  56. #define V4L2_CID_POWER_LINE_FREQUENCY (V4L2_CID_BASE+24)
  57. enum v4l2_power_line_frequency {
  58. V4L2_CID_POWER_LINE_FREQUENCY_DISABLED = 0,
  59. V4L2_CID_POWER_LINE_FREQUENCY_50HZ = 1,
  60. V4L2_CID_POWER_LINE_FREQUENCY_60HZ = 2,
  61. V4L2_CID_POWER_LINE_FREQUENCY_AUTO = 3,
  62. };
  63. #define V4L2_CID_HUE_AUTO (V4L2_CID_BASE+25)
  64. #define V4L2_CID_WHITE_BALANCE_TEMPERATURE (V4L2_CID_BASE+26)
  65. #define V4L2_CID_SHARPNESS (V4L2_CID_BASE+27)
  66. #define V4L2_CID_BACKLIGHT_COMPENSATION (V4L2_CID_BASE+28)
  67. #define V4L2_CID_CHROMA_AGC (V4L2_CID_BASE+29)
  68. #define V4L2_CID_COLOR_KILLER (V4L2_CID_BASE+30)
  69. #define V4L2_CID_COLORFX (V4L2_CID_BASE+31)
  70. enum v4l2_colorfx {
  71. V4L2_COLORFX_NONE = 0,
  72. V4L2_COLORFX_BW = 1,
  73. V4L2_COLORFX_SEPIA = 2,
  74. V4L2_COLORFX_NEGATIVE = 3,
  75. V4L2_COLORFX_EMBOSS = 4,
  76. V4L2_COLORFX_SKETCH = 5,
  77. V4L2_COLORFX_SKY_BLUE = 6,
  78. V4L2_COLORFX_GRASS_GREEN = 7,
  79. V4L2_COLORFX_SKIN_WHITEN = 8,
  80. V4L2_COLORFX_VIVID = 9,
  81. V4L2_COLORFX_AQUA = 10,
  82. V4L2_COLORFX_ART_FREEZE = 11,
  83. V4L2_COLORFX_SILHOUETTE = 12,
  84. V4L2_COLORFX_SOLARIZATION = 13,
  85. V4L2_COLORFX_ANTIQUE = 14,
  86. V4L2_COLORFX_SET_CBCR = 15,
  87. V4L2_COLORFX_SET_RGB = 16,
  88. };
  89. #define V4L2_CID_AUTOBRIGHTNESS (V4L2_CID_BASE+32)
  90. #define V4L2_CID_BAND_STOP_FILTER (V4L2_CID_BASE+33)
  91. #define V4L2_CID_ROTATE (V4L2_CID_BASE+34)
  92. #define V4L2_CID_BG_COLOR (V4L2_CID_BASE+35)
  93. #define V4L2_CID_CHROMA_GAIN (V4L2_CID_BASE+36)
  94. #define V4L2_CID_ILLUMINATORS_1 (V4L2_CID_BASE+37)
  95. #define V4L2_CID_ILLUMINATORS_2 (V4L2_CID_BASE+38)
  96. #define V4L2_CID_MIN_BUFFERS_FOR_CAPTURE (V4L2_CID_BASE+39)
  97. #define V4L2_CID_MIN_BUFFERS_FOR_OUTPUT (V4L2_CID_BASE+40)
  98. #define V4L2_CID_ALPHA_COMPONENT (V4L2_CID_BASE+41)
  99. #define V4L2_CID_COLORFX_CBCR (V4L2_CID_BASE+42)
  100. #define V4L2_CID_COLORFX_RGB (V4L2_CID_BASE+43)
  101. /* last CID + 1 */
  102. #define V4L2_CID_LASTP1 (V4L2_CID_BASE+44)
  103. /* USER-class private control IDs */
  104. /*
  105. * The base for the meye driver controls. This driver was removed, but
  106. * we keep this define in case any software still uses it.
  107. */
  108. #define V4L2_CID_USER_MEYE_BASE (V4L2_CID_USER_BASE + 0x1000)
  109. /* The base for the bttv driver controls.
  110. * We reserve 32 controls for this driver. */
  111. #define V4L2_CID_USER_BTTV_BASE (V4L2_CID_USER_BASE + 0x1010)
  112. /* The base for the s2255 driver controls.
  113. * We reserve 16 controls for this driver. */
  114. #define V4L2_CID_USER_S2255_BASE (V4L2_CID_USER_BASE + 0x1030)
  115. /*
  116. * The base for the si476x driver controls. See include/media/drv-intf/si476x.h
  117. * for the list of controls. Total of 16 controls is reserved for this driver
  118. */
  119. #define V4L2_CID_USER_SI476X_BASE (V4L2_CID_USER_BASE + 0x1040)
  120. /* The base for the TI VPE driver controls. Total of 16 controls is reserved for
  121. * this driver */
  122. #define V4L2_CID_USER_TI_VPE_BASE (V4L2_CID_USER_BASE + 0x1050)
  123. /* The base for the saa7134 driver controls.
  124. * We reserve 16 controls for this driver. */
  125. #define V4L2_CID_USER_SAA7134_BASE (V4L2_CID_USER_BASE + 0x1060)
  126. /* The base for the adv7180 driver controls.
  127. * We reserve 16 controls for this driver. */
  128. #define V4L2_CID_USER_ADV7180_BASE (V4L2_CID_USER_BASE + 0x1070)
  129. /* The base for the tc358743 driver controls.
  130. * We reserve 16 controls for this driver. */
  131. #define V4L2_CID_USER_TC358743_BASE (V4L2_CID_USER_BASE + 0x1080)
  132. /* The base for the max217x driver controls.
  133. * We reserve 32 controls for this driver
  134. */
  135. #define V4L2_CID_USER_MAX217X_BASE (V4L2_CID_USER_BASE + 0x1090)
  136. /* The base for the imx driver controls.
  137. * We reserve 16 controls for this driver. */
  138. #define V4L2_CID_USER_IMX_BASE (V4L2_CID_USER_BASE + 0x10b0)
  139. /*
  140. * The base for the atmel isc driver controls.
  141. * We reserve 32 controls for this driver.
  142. */
  143. #define V4L2_CID_USER_ATMEL_ISC_BASE (V4L2_CID_USER_BASE + 0x10c0)
  144. /*
  145. * The base for the CODA driver controls.
  146. * We reserve 16 controls for this driver.
  147. */
  148. #define V4L2_CID_USER_CODA_BASE (V4L2_CID_USER_BASE + 0x10e0)
  149. /*
  150. * The base for MIPI CCS driver controls.
  151. * We reserve 128 controls for this driver.
  152. */
  153. #define V4L2_CID_USER_CCS_BASE (V4L2_CID_USER_BASE + 0x10f0)
  154. /*
  155. * The base for Allegro driver controls.
  156. * We reserve 16 controls for this driver.
  157. */
  158. #define V4L2_CID_USER_ALLEGRO_BASE (V4L2_CID_USER_BASE + 0x1170)
  159. /*
  160. * The base for the isl7998x driver controls.
  161. * We reserve 16 controls for this driver.
  162. */
  163. #define V4L2_CID_USER_ISL7998X_BASE (V4L2_CID_USER_BASE + 0x1180)
  164. /*
  165. * The base for DW100 driver controls.
  166. * We reserve 16 controls for this driver.
  167. */
  168. #define V4L2_CID_USER_DW100_BASE (V4L2_CID_USER_BASE + 0x1190)
  169. /*
  170. * The base for Aspeed driver controls.
  171. * We reserve 16 controls for this driver.
  172. */
  173. #define V4L2_CID_USER_ASPEED_BASE (V4L2_CID_USER_BASE + 0x11a0)
  174. /*
  175. * The base for Nuvoton NPCM driver controls.
  176. * We reserve 16 controls for this driver.
  177. */
  178. #define V4L2_CID_USER_NPCM_BASE (V4L2_CID_USER_BASE + 0x11b0)
  179. /*
  180. * The base for THine THP7312 driver controls.
  181. * We reserve 32 controls for this driver.
  182. */
  183. #define V4L2_CID_USER_THP7312_BASE (V4L2_CID_USER_BASE + 0x11c0)
  184. /* MPEG-class control IDs */
  185. /* The MPEG controls are applicable to all codec controls
  186. * and the 'MPEG' part of the define is historical */
  187. #define V4L2_CID_CODEC_BASE (V4L2_CTRL_CLASS_CODEC | 0x900)
  188. #define V4L2_CID_CODEC_CLASS (V4L2_CTRL_CLASS_CODEC | 1)
  189. /* MPEG streams, specific to multiplexed streams */
  190. #define V4L2_CID_MPEG_STREAM_TYPE (V4L2_CID_CODEC_BASE+0)
  191. enum v4l2_mpeg_stream_type {
  192. V4L2_MPEG_STREAM_TYPE_MPEG2_PS = 0, /* MPEG-2 program stream */
  193. V4L2_MPEG_STREAM_TYPE_MPEG2_TS = 1, /* MPEG-2 transport stream */
  194. V4L2_MPEG_STREAM_TYPE_MPEG1_SS = 2, /* MPEG-1 system stream */
  195. V4L2_MPEG_STREAM_TYPE_MPEG2_DVD = 3, /* MPEG-2 DVD-compatible stream */
  196. V4L2_MPEG_STREAM_TYPE_MPEG1_VCD = 4, /* MPEG-1 VCD-compatible stream */
  197. V4L2_MPEG_STREAM_TYPE_MPEG2_SVCD = 5, /* MPEG-2 SVCD-compatible stream */
  198. };
  199. #define V4L2_CID_MPEG_STREAM_PID_PMT (V4L2_CID_CODEC_BASE+1)
  200. #define V4L2_CID_MPEG_STREAM_PID_AUDIO (V4L2_CID_CODEC_BASE+2)
  201. #define V4L2_CID_MPEG_STREAM_PID_VIDEO (V4L2_CID_CODEC_BASE+3)
  202. #define V4L2_CID_MPEG_STREAM_PID_PCR (V4L2_CID_CODEC_BASE+4)
  203. #define V4L2_CID_MPEG_STREAM_PES_ID_AUDIO (V4L2_CID_CODEC_BASE+5)
  204. #define V4L2_CID_MPEG_STREAM_PES_ID_VIDEO (V4L2_CID_CODEC_BASE+6)
  205. #define V4L2_CID_MPEG_STREAM_VBI_FMT (V4L2_CID_CODEC_BASE+7)
  206. enum v4l2_mpeg_stream_vbi_fmt {
  207. V4L2_MPEG_STREAM_VBI_FMT_NONE = 0, /* No VBI in the MPEG stream */
  208. V4L2_MPEG_STREAM_VBI_FMT_IVTV = 1, /* VBI in private packets, IVTV format */
  209. };
  210. /* MPEG audio controls specific to multiplexed streams */
  211. #define V4L2_CID_MPEG_AUDIO_SAMPLING_FREQ (V4L2_CID_CODEC_BASE+100)
  212. enum v4l2_mpeg_audio_sampling_freq {
  213. V4L2_MPEG_AUDIO_SAMPLING_FREQ_44100 = 0,
  214. V4L2_MPEG_AUDIO_SAMPLING_FREQ_48000 = 1,
  215. V4L2_MPEG_AUDIO_SAMPLING_FREQ_32000 = 2,
  216. };
  217. #define V4L2_CID_MPEG_AUDIO_ENCODING (V4L2_CID_CODEC_BASE+101)
  218. enum v4l2_mpeg_audio_encoding {
  219. V4L2_MPEG_AUDIO_ENCODING_LAYER_1 = 0,
  220. V4L2_MPEG_AUDIO_ENCODING_LAYER_2 = 1,
  221. V4L2_MPEG_AUDIO_ENCODING_LAYER_3 = 2,
  222. V4L2_MPEG_AUDIO_ENCODING_AAC = 3,
  223. V4L2_MPEG_AUDIO_ENCODING_AC3 = 4,
  224. };
  225. #define V4L2_CID_MPEG_AUDIO_L1_BITRATE (V4L2_CID_CODEC_BASE+102)
  226. enum v4l2_mpeg_audio_l1_bitrate {
  227. V4L2_MPEG_AUDIO_L1_BITRATE_32K = 0,
  228. V4L2_MPEG_AUDIO_L1_BITRATE_64K = 1,
  229. V4L2_MPEG_AUDIO_L1_BITRATE_96K = 2,
  230. V4L2_MPEG_AUDIO_L1_BITRATE_128K = 3,
  231. V4L2_MPEG_AUDIO_L1_BITRATE_160K = 4,
  232. V4L2_MPEG_AUDIO_L1_BITRATE_192K = 5,
  233. V4L2_MPEG_AUDIO_L1_BITRATE_224K = 6,
  234. V4L2_MPEG_AUDIO_L1_BITRATE_256K = 7,
  235. V4L2_MPEG_AUDIO_L1_BITRATE_288K = 8,
  236. V4L2_MPEG_AUDIO_L1_BITRATE_320K = 9,
  237. V4L2_MPEG_AUDIO_L1_BITRATE_352K = 10,
  238. V4L2_MPEG_AUDIO_L1_BITRATE_384K = 11,
  239. V4L2_MPEG_AUDIO_L1_BITRATE_416K = 12,
  240. V4L2_MPEG_AUDIO_L1_BITRATE_448K = 13,
  241. };
  242. #define V4L2_CID_MPEG_AUDIO_L2_BITRATE (V4L2_CID_CODEC_BASE+103)
  243. enum v4l2_mpeg_audio_l2_bitrate {
  244. V4L2_MPEG_AUDIO_L2_BITRATE_32K = 0,
  245. V4L2_MPEG_AUDIO_L2_BITRATE_48K = 1,
  246. V4L2_MPEG_AUDIO_L2_BITRATE_56K = 2,
  247. V4L2_MPEG_AUDIO_L2_BITRATE_64K = 3,
  248. V4L2_MPEG_AUDIO_L2_BITRATE_80K = 4,
  249. V4L2_MPEG_AUDIO_L2_BITRATE_96K = 5,
  250. V4L2_MPEG_AUDIO_L2_BITRATE_112K = 6,
  251. V4L2_MPEG_AUDIO_L2_BITRATE_128K = 7,
  252. V4L2_MPEG_AUDIO_L2_BITRATE_160K = 8,
  253. V4L2_MPEG_AUDIO_L2_BITRATE_192K = 9,
  254. V4L2_MPEG_AUDIO_L2_BITRATE_224K = 10,
  255. V4L2_MPEG_AUDIO_L2_BITRATE_256K = 11,
  256. V4L2_MPEG_AUDIO_L2_BITRATE_320K = 12,
  257. V4L2_MPEG_AUDIO_L2_BITRATE_384K = 13,
  258. };
  259. #define V4L2_CID_MPEG_AUDIO_L3_BITRATE (V4L2_CID_CODEC_BASE+104)
  260. enum v4l2_mpeg_audio_l3_bitrate {
  261. V4L2_MPEG_AUDIO_L3_BITRATE_32K = 0,
  262. V4L2_MPEG_AUDIO_L3_BITRATE_40K = 1,
  263. V4L2_MPEG_AUDIO_L3_BITRATE_48K = 2,
  264. V4L2_MPEG_AUDIO_L3_BITRATE_56K = 3,
  265. V4L2_MPEG_AUDIO_L3_BITRATE_64K = 4,
  266. V4L2_MPEG_AUDIO_L3_BITRATE_80K = 5,
  267. V4L2_MPEG_AUDIO_L3_BITRATE_96K = 6,
  268. V4L2_MPEG_AUDIO_L3_BITRATE_112K = 7,
  269. V4L2_MPEG_AUDIO_L3_BITRATE_128K = 8,
  270. V4L2_MPEG_AUDIO_L3_BITRATE_160K = 9,
  271. V4L2_MPEG_AUDIO_L3_BITRATE_192K = 10,
  272. V4L2_MPEG_AUDIO_L3_BITRATE_224K = 11,
  273. V4L2_MPEG_AUDIO_L3_BITRATE_256K = 12,
  274. V4L2_MPEG_AUDIO_L3_BITRATE_320K = 13,
  275. };
  276. #define V4L2_CID_MPEG_AUDIO_MODE (V4L2_CID_CODEC_BASE+105)
  277. enum v4l2_mpeg_audio_mode {
  278. V4L2_MPEG_AUDIO_MODE_STEREO = 0,
  279. V4L2_MPEG_AUDIO_MODE_JOINT_STEREO = 1,
  280. V4L2_MPEG_AUDIO_MODE_DUAL = 2,
  281. V4L2_MPEG_AUDIO_MODE_MONO = 3,
  282. };
  283. #define V4L2_CID_MPEG_AUDIO_MODE_EXTENSION (V4L2_CID_CODEC_BASE+106)
  284. enum v4l2_mpeg_audio_mode_extension {
  285. V4L2_MPEG_AUDIO_MODE_EXTENSION_BOUND_4 = 0,
  286. V4L2_MPEG_AUDIO_MODE_EXTENSION_BOUND_8 = 1,
  287. V4L2_MPEG_AUDIO_MODE_EXTENSION_BOUND_12 = 2,
  288. V4L2_MPEG_AUDIO_MODE_EXTENSION_BOUND_16 = 3,
  289. };
  290. #define V4L2_CID_MPEG_AUDIO_EMPHASIS (V4L2_CID_CODEC_BASE+107)
  291. enum v4l2_mpeg_audio_emphasis {
  292. V4L2_MPEG_AUDIO_EMPHASIS_NONE = 0,
  293. V4L2_MPEG_AUDIO_EMPHASIS_50_DIV_15_uS = 1,
  294. V4L2_MPEG_AUDIO_EMPHASIS_CCITT_J17 = 2,
  295. };
  296. #define V4L2_CID_MPEG_AUDIO_CRC (V4L2_CID_CODEC_BASE+108)
  297. enum v4l2_mpeg_audio_crc {
  298. V4L2_MPEG_AUDIO_CRC_NONE = 0,
  299. V4L2_MPEG_AUDIO_CRC_CRC16 = 1,
  300. };
  301. #define V4L2_CID_MPEG_AUDIO_MUTE (V4L2_CID_CODEC_BASE+109)
  302. #define V4L2_CID_MPEG_AUDIO_AAC_BITRATE (V4L2_CID_CODEC_BASE+110)
  303. #define V4L2_CID_MPEG_AUDIO_AC3_BITRATE (V4L2_CID_CODEC_BASE+111)
  304. enum v4l2_mpeg_audio_ac3_bitrate {
  305. V4L2_MPEG_AUDIO_AC3_BITRATE_32K = 0,
  306. V4L2_MPEG_AUDIO_AC3_BITRATE_40K = 1,
  307. V4L2_MPEG_AUDIO_AC3_BITRATE_48K = 2,
  308. V4L2_MPEG_AUDIO_AC3_BITRATE_56K = 3,
  309. V4L2_MPEG_AUDIO_AC3_BITRATE_64K = 4,
  310. V4L2_MPEG_AUDIO_AC3_BITRATE_80K = 5,
  311. V4L2_MPEG_AUDIO_AC3_BITRATE_96K = 6,
  312. V4L2_MPEG_AUDIO_AC3_BITRATE_112K = 7,
  313. V4L2_MPEG_AUDIO_AC3_BITRATE_128K = 8,
  314. V4L2_MPEG_AUDIO_AC3_BITRATE_160K = 9,
  315. V4L2_MPEG_AUDIO_AC3_BITRATE_192K = 10,
  316. V4L2_MPEG_AUDIO_AC3_BITRATE_224K = 11,
  317. V4L2_MPEG_AUDIO_AC3_BITRATE_256K = 12,
  318. V4L2_MPEG_AUDIO_AC3_BITRATE_320K = 13,
  319. V4L2_MPEG_AUDIO_AC3_BITRATE_384K = 14,
  320. V4L2_MPEG_AUDIO_AC3_BITRATE_448K = 15,
  321. V4L2_MPEG_AUDIO_AC3_BITRATE_512K = 16,
  322. V4L2_MPEG_AUDIO_AC3_BITRATE_576K = 17,
  323. V4L2_MPEG_AUDIO_AC3_BITRATE_640K = 18,
  324. };
  325. #define V4L2_CID_MPEG_AUDIO_DEC_PLAYBACK (V4L2_CID_CODEC_BASE+112)
  326. enum v4l2_mpeg_audio_dec_playback {
  327. V4L2_MPEG_AUDIO_DEC_PLAYBACK_AUTO = 0,
  328. V4L2_MPEG_AUDIO_DEC_PLAYBACK_STEREO = 1,
  329. V4L2_MPEG_AUDIO_DEC_PLAYBACK_LEFT = 2,
  330. V4L2_MPEG_AUDIO_DEC_PLAYBACK_RIGHT = 3,
  331. V4L2_MPEG_AUDIO_DEC_PLAYBACK_MONO = 4,
  332. V4L2_MPEG_AUDIO_DEC_PLAYBACK_SWAPPED_STEREO = 5,
  333. };
  334. #define V4L2_CID_MPEG_AUDIO_DEC_MULTILINGUAL_PLAYBACK (V4L2_CID_CODEC_BASE+113)
  335. /* MPEG video controls specific to multiplexed streams */
  336. #define V4L2_CID_MPEG_VIDEO_ENCODING (V4L2_CID_CODEC_BASE+200)
  337. enum v4l2_mpeg_video_encoding {
  338. V4L2_MPEG_VIDEO_ENCODING_MPEG_1 = 0,
  339. V4L2_MPEG_VIDEO_ENCODING_MPEG_2 = 1,
  340. V4L2_MPEG_VIDEO_ENCODING_MPEG_4_AVC = 2,
  341. };
  342. #define V4L2_CID_MPEG_VIDEO_ASPECT (V4L2_CID_CODEC_BASE+201)
  343. enum v4l2_mpeg_video_aspect {
  344. V4L2_MPEG_VIDEO_ASPECT_1x1 = 0,
  345. V4L2_MPEG_VIDEO_ASPECT_4x3 = 1,
  346. V4L2_MPEG_VIDEO_ASPECT_16x9 = 2,
  347. V4L2_MPEG_VIDEO_ASPECT_221x100 = 3,
  348. };
  349. #define V4L2_CID_MPEG_VIDEO_B_FRAMES (V4L2_CID_CODEC_BASE+202)
  350. #define V4L2_CID_MPEG_VIDEO_GOP_SIZE (V4L2_CID_CODEC_BASE+203)
  351. #define V4L2_CID_MPEG_VIDEO_GOP_CLOSURE (V4L2_CID_CODEC_BASE+204)
  352. #define V4L2_CID_MPEG_VIDEO_PULLDOWN (V4L2_CID_CODEC_BASE+205)
  353. #define V4L2_CID_MPEG_VIDEO_BITRATE_MODE (V4L2_CID_CODEC_BASE+206)
  354. enum v4l2_mpeg_video_bitrate_mode {
  355. V4L2_MPEG_VIDEO_BITRATE_MODE_VBR = 0,
  356. V4L2_MPEG_VIDEO_BITRATE_MODE_CBR = 1,
  357. V4L2_MPEG_VIDEO_BITRATE_MODE_CQ = 2,
  358. };
  359. #define V4L2_CID_MPEG_VIDEO_BITRATE (V4L2_CID_CODEC_BASE+207)
  360. #define V4L2_CID_MPEG_VIDEO_BITRATE_PEAK (V4L2_CID_CODEC_BASE+208)
  361. #define V4L2_CID_MPEG_VIDEO_TEMPORAL_DECIMATION (V4L2_CID_CODEC_BASE+209)
  362. #define V4L2_CID_MPEG_VIDEO_MUTE (V4L2_CID_CODEC_BASE+210)
  363. #define V4L2_CID_MPEG_VIDEO_MUTE_YUV (V4L2_CID_CODEC_BASE+211)
  364. #define V4L2_CID_MPEG_VIDEO_DECODER_SLICE_INTERFACE (V4L2_CID_CODEC_BASE+212)
  365. #define V4L2_CID_MPEG_VIDEO_DECODER_MPEG4_DEBLOCK_FILTER (V4L2_CID_CODEC_BASE+213)
  366. #define V4L2_CID_MPEG_VIDEO_CYCLIC_INTRA_REFRESH_MB (V4L2_CID_CODEC_BASE+214)
  367. #define V4L2_CID_MPEG_VIDEO_FRAME_RC_ENABLE (V4L2_CID_CODEC_BASE+215)
  368. #define V4L2_CID_MPEG_VIDEO_HEADER_MODE (V4L2_CID_CODEC_BASE+216)
  369. enum v4l2_mpeg_video_header_mode {
  370. V4L2_MPEG_VIDEO_HEADER_MODE_SEPARATE = 0,
  371. V4L2_MPEG_VIDEO_HEADER_MODE_JOINED_WITH_1ST_FRAME = 1,
  372. };
  373. #define V4L2_CID_MPEG_VIDEO_MAX_REF_PIC (V4L2_CID_CODEC_BASE+217)
  374. #define V4L2_CID_MPEG_VIDEO_MB_RC_ENABLE (V4L2_CID_CODEC_BASE+218)
  375. #define V4L2_CID_MPEG_VIDEO_MULTI_SLICE_MAX_BYTES (V4L2_CID_CODEC_BASE+219)
  376. #define V4L2_CID_MPEG_VIDEO_MULTI_SLICE_MAX_MB (V4L2_CID_CODEC_BASE+220)
  377. #define V4L2_CID_MPEG_VIDEO_MULTI_SLICE_MODE (V4L2_CID_CODEC_BASE+221)
  378. enum v4l2_mpeg_video_multi_slice_mode {
  379. V4L2_MPEG_VIDEO_MULTI_SLICE_MODE_SINGLE = 0,
  380. V4L2_MPEG_VIDEO_MULTI_SLICE_MODE_MAX_MB = 1,
  381. V4L2_MPEG_VIDEO_MULTI_SLICE_MODE_MAX_BYTES = 2,
  382. /* Kept for backwards compatibility reasons. Stupid typo... */
  383. V4L2_MPEG_VIDEO_MULTI_SICE_MODE_MAX_MB = 1,
  384. V4L2_MPEG_VIDEO_MULTI_SICE_MODE_MAX_BYTES = 2,
  385. };
  386. #define V4L2_CID_MPEG_VIDEO_VBV_SIZE (V4L2_CID_CODEC_BASE+222)
  387. #define V4L2_CID_MPEG_VIDEO_DEC_PTS (V4L2_CID_CODEC_BASE+223)
  388. #define V4L2_CID_MPEG_VIDEO_DEC_FRAME (V4L2_CID_CODEC_BASE+224)
  389. #define V4L2_CID_MPEG_VIDEO_VBV_DELAY (V4L2_CID_CODEC_BASE+225)
  390. #define V4L2_CID_MPEG_VIDEO_REPEAT_SEQ_HEADER (V4L2_CID_CODEC_BASE+226)
  391. #define V4L2_CID_MPEG_VIDEO_MV_H_SEARCH_RANGE (V4L2_CID_CODEC_BASE+227)
  392. #define V4L2_CID_MPEG_VIDEO_MV_V_SEARCH_RANGE (V4L2_CID_CODEC_BASE+228)
  393. #define V4L2_CID_MPEG_VIDEO_FORCE_KEY_FRAME (V4L2_CID_CODEC_BASE+229)
  394. #define V4L2_CID_MPEG_VIDEO_BASELAYER_PRIORITY_ID (V4L2_CID_CODEC_BASE+230)
  395. #define V4L2_CID_MPEG_VIDEO_AU_DELIMITER (V4L2_CID_CODEC_BASE+231)
  396. #define V4L2_CID_MPEG_VIDEO_LTR_COUNT (V4L2_CID_CODEC_BASE+232)
  397. #define V4L2_CID_MPEG_VIDEO_FRAME_LTR_INDEX (V4L2_CID_CODEC_BASE+233)
  398. #define V4L2_CID_MPEG_VIDEO_USE_LTR_FRAMES (V4L2_CID_CODEC_BASE+234)
  399. #define V4L2_CID_MPEG_VIDEO_DEC_CONCEAL_COLOR (V4L2_CID_CODEC_BASE+235)
  400. #define V4L2_CID_MPEG_VIDEO_INTRA_REFRESH_PERIOD (V4L2_CID_CODEC_BASE+236)
  401. #define V4L2_CID_MPEG_VIDEO_INTRA_REFRESH_PERIOD_TYPE (V4L2_CID_CODEC_BASE+237)
  402. enum v4l2_mpeg_video_intra_refresh_period_type {
  403. V4L2_CID_MPEG_VIDEO_INTRA_REFRESH_PERIOD_TYPE_RANDOM = 0,
  404. V4L2_CID_MPEG_VIDEO_INTRA_REFRESH_PERIOD_TYPE_CYCLIC = 1,
  405. };
  406. /* CIDs for the MPEG-2 Part 2 (H.262) codec */
  407. #define V4L2_CID_MPEG_VIDEO_MPEG2_LEVEL (V4L2_CID_CODEC_BASE+270)
  408. enum v4l2_mpeg_video_mpeg2_level {
  409. V4L2_MPEG_VIDEO_MPEG2_LEVEL_LOW = 0,
  410. V4L2_MPEG_VIDEO_MPEG2_LEVEL_MAIN = 1,
  411. V4L2_MPEG_VIDEO_MPEG2_LEVEL_HIGH_1440 = 2,
  412. V4L2_MPEG_VIDEO_MPEG2_LEVEL_HIGH = 3,
  413. };
  414. #define V4L2_CID_MPEG_VIDEO_MPEG2_PROFILE (V4L2_CID_CODEC_BASE+271)
  415. enum v4l2_mpeg_video_mpeg2_profile {
  416. V4L2_MPEG_VIDEO_MPEG2_PROFILE_SIMPLE = 0,
  417. V4L2_MPEG_VIDEO_MPEG2_PROFILE_MAIN = 1,
  418. V4L2_MPEG_VIDEO_MPEG2_PROFILE_SNR_SCALABLE = 2,
  419. V4L2_MPEG_VIDEO_MPEG2_PROFILE_SPATIALLY_SCALABLE = 3,
  420. V4L2_MPEG_VIDEO_MPEG2_PROFILE_HIGH = 4,
  421. V4L2_MPEG_VIDEO_MPEG2_PROFILE_MULTIVIEW = 5,
  422. };
  423. /* CIDs for the FWHT codec as used by the vicodec driver. */
  424. #define V4L2_CID_FWHT_I_FRAME_QP (V4L2_CID_CODEC_BASE + 290)
  425. #define V4L2_CID_FWHT_P_FRAME_QP (V4L2_CID_CODEC_BASE + 291)
  426. #define V4L2_CID_MPEG_VIDEO_H263_I_FRAME_QP (V4L2_CID_CODEC_BASE+300)
  427. #define V4L2_CID_MPEG_VIDEO_H263_P_FRAME_QP (V4L2_CID_CODEC_BASE+301)
  428. #define V4L2_CID_MPEG_VIDEO_H263_B_FRAME_QP (V4L2_CID_CODEC_BASE+302)
  429. #define V4L2_CID_MPEG_VIDEO_H263_MIN_QP (V4L2_CID_CODEC_BASE+303)
  430. #define V4L2_CID_MPEG_VIDEO_H263_MAX_QP (V4L2_CID_CODEC_BASE+304)
  431. #define V4L2_CID_MPEG_VIDEO_H264_I_FRAME_QP (V4L2_CID_CODEC_BASE+350)
  432. #define V4L2_CID_MPEG_VIDEO_H264_P_FRAME_QP (V4L2_CID_CODEC_BASE+351)
  433. #define V4L2_CID_MPEG_VIDEO_H264_B_FRAME_QP (V4L2_CID_CODEC_BASE+352)
  434. #define V4L2_CID_MPEG_VIDEO_H264_MIN_QP (V4L2_CID_CODEC_BASE+353)
  435. #define V4L2_CID_MPEG_VIDEO_H264_MAX_QP (V4L2_CID_CODEC_BASE+354)
  436. #define V4L2_CID_MPEG_VIDEO_H264_8X8_TRANSFORM (V4L2_CID_CODEC_BASE+355)
  437. #define V4L2_CID_MPEG_VIDEO_H264_CPB_SIZE (V4L2_CID_CODEC_BASE+356)
  438. #define V4L2_CID_MPEG_VIDEO_H264_ENTROPY_MODE (V4L2_CID_CODEC_BASE+357)
  439. enum v4l2_mpeg_video_h264_entropy_mode {
  440. V4L2_MPEG_VIDEO_H264_ENTROPY_MODE_CAVLC = 0,
  441. V4L2_MPEG_VIDEO_H264_ENTROPY_MODE_CABAC = 1,
  442. };
  443. #define V4L2_CID_MPEG_VIDEO_H264_I_PERIOD (V4L2_CID_CODEC_BASE+358)
  444. #define V4L2_CID_MPEG_VIDEO_H264_LEVEL (V4L2_CID_CODEC_BASE+359)
  445. enum v4l2_mpeg_video_h264_level {
  446. V4L2_MPEG_VIDEO_H264_LEVEL_1_0 = 0,
  447. V4L2_MPEG_VIDEO_H264_LEVEL_1B = 1,
  448. V4L2_MPEG_VIDEO_H264_LEVEL_1_1 = 2,
  449. V4L2_MPEG_VIDEO_H264_LEVEL_1_2 = 3,
  450. V4L2_MPEG_VIDEO_H264_LEVEL_1_3 = 4,
  451. V4L2_MPEG_VIDEO_H264_LEVEL_2_0 = 5,
  452. V4L2_MPEG_VIDEO_H264_LEVEL_2_1 = 6,
  453. V4L2_MPEG_VIDEO_H264_LEVEL_2_2 = 7,
  454. V4L2_MPEG_VIDEO_H264_LEVEL_3_0 = 8,
  455. V4L2_MPEG_VIDEO_H264_LEVEL_3_1 = 9,
  456. V4L2_MPEG_VIDEO_H264_LEVEL_3_2 = 10,
  457. V4L2_MPEG_VIDEO_H264_LEVEL_4_0 = 11,
  458. V4L2_MPEG_VIDEO_H264_LEVEL_4_1 = 12,
  459. V4L2_MPEG_VIDEO_H264_LEVEL_4_2 = 13,
  460. V4L2_MPEG_VIDEO_H264_LEVEL_5_0 = 14,
  461. V4L2_MPEG_VIDEO_H264_LEVEL_5_1 = 15,
  462. V4L2_MPEG_VIDEO_H264_LEVEL_5_2 = 16,
  463. V4L2_MPEG_VIDEO_H264_LEVEL_6_0 = 17,
  464. V4L2_MPEG_VIDEO_H264_LEVEL_6_1 = 18,
  465. V4L2_MPEG_VIDEO_H264_LEVEL_6_2 = 19,
  466. };
  467. #define V4L2_CID_MPEG_VIDEO_H264_LOOP_FILTER_ALPHA (V4L2_CID_CODEC_BASE+360)
  468. #define V4L2_CID_MPEG_VIDEO_H264_LOOP_FILTER_BETA (V4L2_CID_CODEC_BASE+361)
  469. #define V4L2_CID_MPEG_VIDEO_H264_LOOP_FILTER_MODE (V4L2_CID_CODEC_BASE+362)
  470. enum v4l2_mpeg_video_h264_loop_filter_mode {
  471. V4L2_MPEG_VIDEO_H264_LOOP_FILTER_MODE_ENABLED = 0,
  472. V4L2_MPEG_VIDEO_H264_LOOP_FILTER_MODE_DISABLED = 1,
  473. V4L2_MPEG_VIDEO_H264_LOOP_FILTER_MODE_DISABLED_AT_SLICE_BOUNDARY = 2,
  474. };
  475. #define V4L2_CID_MPEG_VIDEO_H264_PROFILE (V4L2_CID_CODEC_BASE+363)
  476. enum v4l2_mpeg_video_h264_profile {
  477. V4L2_MPEG_VIDEO_H264_PROFILE_BASELINE = 0,
  478. V4L2_MPEG_VIDEO_H264_PROFILE_CONSTRAINED_BASELINE = 1,
  479. V4L2_MPEG_VIDEO_H264_PROFILE_MAIN = 2,
  480. V4L2_MPEG_VIDEO_H264_PROFILE_EXTENDED = 3,
  481. V4L2_MPEG_VIDEO_H264_PROFILE_HIGH = 4,
  482. V4L2_MPEG_VIDEO_H264_PROFILE_HIGH_10 = 5,
  483. V4L2_MPEG_VIDEO_H264_PROFILE_HIGH_422 = 6,
  484. V4L2_MPEG_VIDEO_H264_PROFILE_HIGH_444_PREDICTIVE = 7,
  485. V4L2_MPEG_VIDEO_H264_PROFILE_HIGH_10_INTRA = 8,
  486. V4L2_MPEG_VIDEO_H264_PROFILE_HIGH_422_INTRA = 9,
  487. V4L2_MPEG_VIDEO_H264_PROFILE_HIGH_444_INTRA = 10,
  488. V4L2_MPEG_VIDEO_H264_PROFILE_CAVLC_444_INTRA = 11,
  489. V4L2_MPEG_VIDEO_H264_PROFILE_SCALABLE_BASELINE = 12,
  490. V4L2_MPEG_VIDEO_H264_PROFILE_SCALABLE_HIGH = 13,
  491. V4L2_MPEG_VIDEO_H264_PROFILE_SCALABLE_HIGH_INTRA = 14,
  492. V4L2_MPEG_VIDEO_H264_PROFILE_STEREO_HIGH = 15,
  493. V4L2_MPEG_VIDEO_H264_PROFILE_MULTIVIEW_HIGH = 16,
  494. V4L2_MPEG_VIDEO_H264_PROFILE_CONSTRAINED_HIGH = 17,
  495. };
  496. #define V4L2_CID_MPEG_VIDEO_H264_VUI_EXT_SAR_HEIGHT (V4L2_CID_CODEC_BASE+364)
  497. #define V4L2_CID_MPEG_VIDEO_H264_VUI_EXT_SAR_WIDTH (V4L2_CID_CODEC_BASE+365)
  498. #define V4L2_CID_MPEG_VIDEO_H264_VUI_SAR_ENABLE (V4L2_CID_CODEC_BASE+366)
  499. #define V4L2_CID_MPEG_VIDEO_H264_VUI_SAR_IDC (V4L2_CID_CODEC_BASE+367)
  500. enum v4l2_mpeg_video_h264_vui_sar_idc {
  501. V4L2_MPEG_VIDEO_H264_VUI_SAR_IDC_UNSPECIFIED = 0,
  502. V4L2_MPEG_VIDEO_H264_VUI_SAR_IDC_1x1 = 1,
  503. V4L2_MPEG_VIDEO_H264_VUI_SAR_IDC_12x11 = 2,
  504. V4L2_MPEG_VIDEO_H264_VUI_SAR_IDC_10x11 = 3,
  505. V4L2_MPEG_VIDEO_H264_VUI_SAR_IDC_16x11 = 4,
  506. V4L2_MPEG_VIDEO_H264_VUI_SAR_IDC_40x33 = 5,
  507. V4L2_MPEG_VIDEO_H264_VUI_SAR_IDC_24x11 = 6,
  508. V4L2_MPEG_VIDEO_H264_VUI_SAR_IDC_20x11 = 7,
  509. V4L2_MPEG_VIDEO_H264_VUI_SAR_IDC_32x11 = 8,
  510. V4L2_MPEG_VIDEO_H264_VUI_SAR_IDC_80x33 = 9,
  511. V4L2_MPEG_VIDEO_H264_VUI_SAR_IDC_18x11 = 10,
  512. V4L2_MPEG_VIDEO_H264_VUI_SAR_IDC_15x11 = 11,
  513. V4L2_MPEG_VIDEO_H264_VUI_SAR_IDC_64x33 = 12,
  514. V4L2_MPEG_VIDEO_H264_VUI_SAR_IDC_160x99 = 13,
  515. V4L2_MPEG_VIDEO_H264_VUI_SAR_IDC_4x3 = 14,
  516. V4L2_MPEG_VIDEO_H264_VUI_SAR_IDC_3x2 = 15,
  517. V4L2_MPEG_VIDEO_H264_VUI_SAR_IDC_2x1 = 16,
  518. V4L2_MPEG_VIDEO_H264_VUI_SAR_IDC_EXTENDED = 17,
  519. };
  520. #define V4L2_CID_MPEG_VIDEO_H264_SEI_FRAME_PACKING (V4L2_CID_CODEC_BASE+368)
  521. #define V4L2_CID_MPEG_VIDEO_H264_SEI_FP_CURRENT_FRAME_0 (V4L2_CID_CODEC_BASE+369)
  522. #define V4L2_CID_MPEG_VIDEO_H264_SEI_FP_ARRANGEMENT_TYPE (V4L2_CID_CODEC_BASE+370)
  523. enum v4l2_mpeg_video_h264_sei_fp_arrangement_type {
  524. V4L2_MPEG_VIDEO_H264_SEI_FP_ARRANGEMENT_TYPE_CHECKERBOARD = 0,
  525. V4L2_MPEG_VIDEO_H264_SEI_FP_ARRANGEMENT_TYPE_COLUMN = 1,
  526. V4L2_MPEG_VIDEO_H264_SEI_FP_ARRANGEMENT_TYPE_ROW = 2,
  527. V4L2_MPEG_VIDEO_H264_SEI_FP_ARRANGEMENT_TYPE_SIDE_BY_SIDE = 3,
  528. V4L2_MPEG_VIDEO_H264_SEI_FP_ARRANGEMENT_TYPE_TOP_BOTTOM = 4,
  529. V4L2_MPEG_VIDEO_H264_SEI_FP_ARRANGEMENT_TYPE_TEMPORAL = 5,
  530. };
  531. #define V4L2_CID_MPEG_VIDEO_H264_FMO (V4L2_CID_CODEC_BASE+371)
  532. #define V4L2_CID_MPEG_VIDEO_H264_FMO_MAP_TYPE (V4L2_CID_CODEC_BASE+372)
  533. enum v4l2_mpeg_video_h264_fmo_map_type {
  534. V4L2_MPEG_VIDEO_H264_FMO_MAP_TYPE_INTERLEAVED_SLICES = 0,
  535. V4L2_MPEG_VIDEO_H264_FMO_MAP_TYPE_SCATTERED_SLICES = 1,
  536. V4L2_MPEG_VIDEO_H264_FMO_MAP_TYPE_FOREGROUND_WITH_LEFT_OVER = 2,
  537. V4L2_MPEG_VIDEO_H264_FMO_MAP_TYPE_BOX_OUT = 3,
  538. V4L2_MPEG_VIDEO_H264_FMO_MAP_TYPE_RASTER_SCAN = 4,
  539. V4L2_MPEG_VIDEO_H264_FMO_MAP_TYPE_WIPE_SCAN = 5,
  540. V4L2_MPEG_VIDEO_H264_FMO_MAP_TYPE_EXPLICIT = 6,
  541. };
  542. #define V4L2_CID_MPEG_VIDEO_H264_FMO_SLICE_GROUP (V4L2_CID_CODEC_BASE+373)
  543. #define V4L2_CID_MPEG_VIDEO_H264_FMO_CHANGE_DIRECTION (V4L2_CID_CODEC_BASE+374)
  544. enum v4l2_mpeg_video_h264_fmo_change_dir {
  545. V4L2_MPEG_VIDEO_H264_FMO_CHANGE_DIR_RIGHT = 0,
  546. V4L2_MPEG_VIDEO_H264_FMO_CHANGE_DIR_LEFT = 1,
  547. };
  548. #define V4L2_CID_MPEG_VIDEO_H264_FMO_CHANGE_RATE (V4L2_CID_CODEC_BASE+375)
  549. #define V4L2_CID_MPEG_VIDEO_H264_FMO_RUN_LENGTH (V4L2_CID_CODEC_BASE+376)
  550. #define V4L2_CID_MPEG_VIDEO_H264_ASO (V4L2_CID_CODEC_BASE+377)
  551. #define V4L2_CID_MPEG_VIDEO_H264_ASO_SLICE_ORDER (V4L2_CID_CODEC_BASE+378)
  552. #define V4L2_CID_MPEG_VIDEO_H264_HIERARCHICAL_CODING (V4L2_CID_CODEC_BASE+379)
  553. #define V4L2_CID_MPEG_VIDEO_H264_HIERARCHICAL_CODING_TYPE (V4L2_CID_CODEC_BASE+380)
  554. enum v4l2_mpeg_video_h264_hierarchical_coding_type {
  555. V4L2_MPEG_VIDEO_H264_HIERARCHICAL_CODING_B = 0,
  556. V4L2_MPEG_VIDEO_H264_HIERARCHICAL_CODING_P = 1,
  557. };
  558. #define V4L2_CID_MPEG_VIDEO_H264_HIERARCHICAL_CODING_LAYER (V4L2_CID_CODEC_BASE+381)
  559. #define V4L2_CID_MPEG_VIDEO_H264_HIERARCHICAL_CODING_LAYER_QP (V4L2_CID_CODEC_BASE+382)
  560. #define V4L2_CID_MPEG_VIDEO_H264_CONSTRAINED_INTRA_PREDICTION (V4L2_CID_CODEC_BASE+383)
  561. #define V4L2_CID_MPEG_VIDEO_H264_CHROMA_QP_INDEX_OFFSET (V4L2_CID_CODEC_BASE+384)
  562. #define V4L2_CID_MPEG_VIDEO_H264_I_FRAME_MIN_QP (V4L2_CID_CODEC_BASE+385)
  563. #define V4L2_CID_MPEG_VIDEO_H264_I_FRAME_MAX_QP (V4L2_CID_CODEC_BASE+386)
  564. #define V4L2_CID_MPEG_VIDEO_H264_P_FRAME_MIN_QP (V4L2_CID_CODEC_BASE+387)
  565. #define V4L2_CID_MPEG_VIDEO_H264_P_FRAME_MAX_QP (V4L2_CID_CODEC_BASE+388)
  566. #define V4L2_CID_MPEG_VIDEO_H264_B_FRAME_MIN_QP (V4L2_CID_CODEC_BASE+389)
  567. #define V4L2_CID_MPEG_VIDEO_H264_B_FRAME_MAX_QP (V4L2_CID_CODEC_BASE+390)
  568. #define V4L2_CID_MPEG_VIDEO_H264_HIER_CODING_L0_BR (V4L2_CID_CODEC_BASE+391)
  569. #define V4L2_CID_MPEG_VIDEO_H264_HIER_CODING_L1_BR (V4L2_CID_CODEC_BASE+392)
  570. #define V4L2_CID_MPEG_VIDEO_H264_HIER_CODING_L2_BR (V4L2_CID_CODEC_BASE+393)
  571. #define V4L2_CID_MPEG_VIDEO_H264_HIER_CODING_L3_BR (V4L2_CID_CODEC_BASE+394)
  572. #define V4L2_CID_MPEG_VIDEO_H264_HIER_CODING_L4_BR (V4L2_CID_CODEC_BASE+395)
  573. #define V4L2_CID_MPEG_VIDEO_H264_HIER_CODING_L5_BR (V4L2_CID_CODEC_BASE+396)
  574. #define V4L2_CID_MPEG_VIDEO_H264_HIER_CODING_L6_BR (V4L2_CID_CODEC_BASE+397)
  575. #define V4L2_CID_MPEG_VIDEO_MPEG4_I_FRAME_QP (V4L2_CID_CODEC_BASE+400)
  576. #define V4L2_CID_MPEG_VIDEO_MPEG4_P_FRAME_QP (V4L2_CID_CODEC_BASE+401)
  577. #define V4L2_CID_MPEG_VIDEO_MPEG4_B_FRAME_QP (V4L2_CID_CODEC_BASE+402)
  578. #define V4L2_CID_MPEG_VIDEO_MPEG4_MIN_QP (V4L2_CID_CODEC_BASE+403)
  579. #define V4L2_CID_MPEG_VIDEO_MPEG4_MAX_QP (V4L2_CID_CODEC_BASE+404)
  580. #define V4L2_CID_MPEG_VIDEO_MPEG4_LEVEL (V4L2_CID_CODEC_BASE+405)
  581. enum v4l2_mpeg_video_mpeg4_level {
  582. V4L2_MPEG_VIDEO_MPEG4_LEVEL_0 = 0,
  583. V4L2_MPEG_VIDEO_MPEG4_LEVEL_0B = 1,
  584. V4L2_MPEG_VIDEO_MPEG4_LEVEL_1 = 2,
  585. V4L2_MPEG_VIDEO_MPEG4_LEVEL_2 = 3,
  586. V4L2_MPEG_VIDEO_MPEG4_LEVEL_3 = 4,
  587. V4L2_MPEG_VIDEO_MPEG4_LEVEL_3B = 5,
  588. V4L2_MPEG_VIDEO_MPEG4_LEVEL_4 = 6,
  589. V4L2_MPEG_VIDEO_MPEG4_LEVEL_5 = 7,
  590. };
  591. #define V4L2_CID_MPEG_VIDEO_MPEG4_PROFILE (V4L2_CID_CODEC_BASE+406)
  592. enum v4l2_mpeg_video_mpeg4_profile {
  593. V4L2_MPEG_VIDEO_MPEG4_PROFILE_SIMPLE = 0,
  594. V4L2_MPEG_VIDEO_MPEG4_PROFILE_ADVANCED_SIMPLE = 1,
  595. V4L2_MPEG_VIDEO_MPEG4_PROFILE_CORE = 2,
  596. V4L2_MPEG_VIDEO_MPEG4_PROFILE_SIMPLE_SCALABLE = 3,
  597. V4L2_MPEG_VIDEO_MPEG4_PROFILE_ADVANCED_CODING_EFFICIENCY = 4,
  598. };
  599. #define V4L2_CID_MPEG_VIDEO_MPEG4_QPEL (V4L2_CID_CODEC_BASE+407)
  600. /* Control IDs for VP8 streams
  601. * Although VP8 is not part of MPEG we add these controls to the MPEG class
  602. * as that class is already handling other video compression standards
  603. */
  604. #define V4L2_CID_MPEG_VIDEO_VPX_NUM_PARTITIONS (V4L2_CID_CODEC_BASE+500)
  605. enum v4l2_vp8_num_partitions {
  606. V4L2_CID_MPEG_VIDEO_VPX_1_PARTITION = 0,
  607. V4L2_CID_MPEG_VIDEO_VPX_2_PARTITIONS = 1,
  608. V4L2_CID_MPEG_VIDEO_VPX_4_PARTITIONS = 2,
  609. V4L2_CID_MPEG_VIDEO_VPX_8_PARTITIONS = 3,
  610. };
  611. #define V4L2_CID_MPEG_VIDEO_VPX_IMD_DISABLE_4X4 (V4L2_CID_CODEC_BASE+501)
  612. #define V4L2_CID_MPEG_VIDEO_VPX_NUM_REF_FRAMES (V4L2_CID_CODEC_BASE+502)
  613. enum v4l2_vp8_num_ref_frames {
  614. V4L2_CID_MPEG_VIDEO_VPX_1_REF_FRAME = 0,
  615. V4L2_CID_MPEG_VIDEO_VPX_2_REF_FRAME = 1,
  616. V4L2_CID_MPEG_VIDEO_VPX_3_REF_FRAME = 2,
  617. };
  618. #define V4L2_CID_MPEG_VIDEO_VPX_FILTER_LEVEL (V4L2_CID_CODEC_BASE+503)
  619. #define V4L2_CID_MPEG_VIDEO_VPX_FILTER_SHARPNESS (V4L2_CID_CODEC_BASE+504)
  620. #define V4L2_CID_MPEG_VIDEO_VPX_GOLDEN_FRAME_REF_PERIOD (V4L2_CID_CODEC_BASE+505)
  621. #define V4L2_CID_MPEG_VIDEO_VPX_GOLDEN_FRAME_SEL (V4L2_CID_CODEC_BASE+506)
  622. enum v4l2_vp8_golden_frame_sel {
  623. V4L2_CID_MPEG_VIDEO_VPX_GOLDEN_FRAME_USE_PREV = 0,
  624. V4L2_CID_MPEG_VIDEO_VPX_GOLDEN_FRAME_USE_REF_PERIOD = 1,
  625. };
  626. #define V4L2_CID_MPEG_VIDEO_VPX_MIN_QP (V4L2_CID_CODEC_BASE+507)
  627. #define V4L2_CID_MPEG_VIDEO_VPX_MAX_QP (V4L2_CID_CODEC_BASE+508)
  628. #define V4L2_CID_MPEG_VIDEO_VPX_I_FRAME_QP (V4L2_CID_CODEC_BASE+509)
  629. #define V4L2_CID_MPEG_VIDEO_VPX_P_FRAME_QP (V4L2_CID_CODEC_BASE+510)
  630. #define V4L2_CID_MPEG_VIDEO_VP8_PROFILE (V4L2_CID_CODEC_BASE+511)
  631. enum v4l2_mpeg_video_vp8_profile {
  632. V4L2_MPEG_VIDEO_VP8_PROFILE_0 = 0,
  633. V4L2_MPEG_VIDEO_VP8_PROFILE_1 = 1,
  634. V4L2_MPEG_VIDEO_VP8_PROFILE_2 = 2,
  635. V4L2_MPEG_VIDEO_VP8_PROFILE_3 = 3,
  636. };
  637. /* Deprecated alias for compatibility reasons. */
  638. #define V4L2_CID_MPEG_VIDEO_VPX_PROFILE V4L2_CID_MPEG_VIDEO_VP8_PROFILE
  639. #define V4L2_CID_MPEG_VIDEO_VP9_PROFILE (V4L2_CID_CODEC_BASE+512)
  640. enum v4l2_mpeg_video_vp9_profile {
  641. V4L2_MPEG_VIDEO_VP9_PROFILE_0 = 0,
  642. V4L2_MPEG_VIDEO_VP9_PROFILE_1 = 1,
  643. V4L2_MPEG_VIDEO_VP9_PROFILE_2 = 2,
  644. V4L2_MPEG_VIDEO_VP9_PROFILE_3 = 3,
  645. };
  646. #define V4L2_CID_MPEG_VIDEO_VP9_LEVEL (V4L2_CID_CODEC_BASE+513)
  647. enum v4l2_mpeg_video_vp9_level {
  648. V4L2_MPEG_VIDEO_VP9_LEVEL_1_0 = 0,
  649. V4L2_MPEG_VIDEO_VP9_LEVEL_1_1 = 1,
  650. V4L2_MPEG_VIDEO_VP9_LEVEL_2_0 = 2,
  651. V4L2_MPEG_VIDEO_VP9_LEVEL_2_1 = 3,
  652. V4L2_MPEG_VIDEO_VP9_LEVEL_3_0 = 4,
  653. V4L2_MPEG_VIDEO_VP9_LEVEL_3_1 = 5,
  654. V4L2_MPEG_VIDEO_VP9_LEVEL_4_0 = 6,
  655. V4L2_MPEG_VIDEO_VP9_LEVEL_4_1 = 7,
  656. V4L2_MPEG_VIDEO_VP9_LEVEL_5_0 = 8,
  657. V4L2_MPEG_VIDEO_VP9_LEVEL_5_1 = 9,
  658. V4L2_MPEG_VIDEO_VP9_LEVEL_5_2 = 10,
  659. V4L2_MPEG_VIDEO_VP9_LEVEL_6_0 = 11,
  660. V4L2_MPEG_VIDEO_VP9_LEVEL_6_1 = 12,
  661. V4L2_MPEG_VIDEO_VP9_LEVEL_6_2 = 13,
  662. };
  663. /* CIDs for HEVC encoding. */
  664. #define V4L2_CID_MPEG_VIDEO_HEVC_MIN_QP (V4L2_CID_CODEC_BASE + 600)
  665. #define V4L2_CID_MPEG_VIDEO_HEVC_MAX_QP (V4L2_CID_CODEC_BASE + 601)
  666. #define V4L2_CID_MPEG_VIDEO_HEVC_I_FRAME_QP (V4L2_CID_CODEC_BASE + 602)
  667. #define V4L2_CID_MPEG_VIDEO_HEVC_P_FRAME_QP (V4L2_CID_CODEC_BASE + 603)
  668. #define V4L2_CID_MPEG_VIDEO_HEVC_B_FRAME_QP (V4L2_CID_CODEC_BASE + 604)
  669. #define V4L2_CID_MPEG_VIDEO_HEVC_HIER_QP (V4L2_CID_CODEC_BASE + 605)
  670. #define V4L2_CID_MPEG_VIDEO_HEVC_HIER_CODING_TYPE (V4L2_CID_CODEC_BASE + 606)
  671. enum v4l2_mpeg_video_hevc_hier_coding_type {
  672. V4L2_MPEG_VIDEO_HEVC_HIERARCHICAL_CODING_B = 0,
  673. V4L2_MPEG_VIDEO_HEVC_HIERARCHICAL_CODING_P = 1,
  674. };
  675. #define V4L2_CID_MPEG_VIDEO_HEVC_HIER_CODING_LAYER (V4L2_CID_CODEC_BASE + 607)
  676. #define V4L2_CID_MPEG_VIDEO_HEVC_HIER_CODING_L0_QP (V4L2_CID_CODEC_BASE + 608)
  677. #define V4L2_CID_MPEG_VIDEO_HEVC_HIER_CODING_L1_QP (V4L2_CID_CODEC_BASE + 609)
  678. #define V4L2_CID_MPEG_VIDEO_HEVC_HIER_CODING_L2_QP (V4L2_CID_CODEC_BASE + 610)
  679. #define V4L2_CID_MPEG_VIDEO_HEVC_HIER_CODING_L3_QP (V4L2_CID_CODEC_BASE + 611)
  680. #define V4L2_CID_MPEG_VIDEO_HEVC_HIER_CODING_L4_QP (V4L2_CID_CODEC_BASE + 612)
  681. #define V4L2_CID_MPEG_VIDEO_HEVC_HIER_CODING_L5_QP (V4L2_CID_CODEC_BASE + 613)
  682. #define V4L2_CID_MPEG_VIDEO_HEVC_HIER_CODING_L6_QP (V4L2_CID_CODEC_BASE + 614)
  683. #define V4L2_CID_MPEG_VIDEO_HEVC_PROFILE (V4L2_CID_CODEC_BASE + 615)
  684. enum v4l2_mpeg_video_hevc_profile {
  685. V4L2_MPEG_VIDEO_HEVC_PROFILE_MAIN = 0,
  686. V4L2_MPEG_VIDEO_HEVC_PROFILE_MAIN_STILL_PICTURE = 1,
  687. V4L2_MPEG_VIDEO_HEVC_PROFILE_MAIN_10 = 2,
  688. };
  689. #define V4L2_CID_MPEG_VIDEO_HEVC_LEVEL (V4L2_CID_CODEC_BASE + 616)
  690. enum v4l2_mpeg_video_hevc_level {
  691. V4L2_MPEG_VIDEO_HEVC_LEVEL_1 = 0,
  692. V4L2_MPEG_VIDEO_HEVC_LEVEL_2 = 1,
  693. V4L2_MPEG_VIDEO_HEVC_LEVEL_2_1 = 2,
  694. V4L2_MPEG_VIDEO_HEVC_LEVEL_3 = 3,
  695. V4L2_MPEG_VIDEO_HEVC_LEVEL_3_1 = 4,
  696. V4L2_MPEG_VIDEO_HEVC_LEVEL_4 = 5,
  697. V4L2_MPEG_VIDEO_HEVC_LEVEL_4_1 = 6,
  698. V4L2_MPEG_VIDEO_HEVC_LEVEL_5 = 7,
  699. V4L2_MPEG_VIDEO_HEVC_LEVEL_5_1 = 8,
  700. V4L2_MPEG_VIDEO_HEVC_LEVEL_5_2 = 9,
  701. V4L2_MPEG_VIDEO_HEVC_LEVEL_6 = 10,
  702. V4L2_MPEG_VIDEO_HEVC_LEVEL_6_1 = 11,
  703. V4L2_MPEG_VIDEO_HEVC_LEVEL_6_2 = 12,
  704. };
  705. #define V4L2_CID_MPEG_VIDEO_HEVC_FRAME_RATE_RESOLUTION (V4L2_CID_CODEC_BASE + 617)
  706. #define V4L2_CID_MPEG_VIDEO_HEVC_TIER (V4L2_CID_CODEC_BASE + 618)
  707. enum v4l2_mpeg_video_hevc_tier {
  708. V4L2_MPEG_VIDEO_HEVC_TIER_MAIN = 0,
  709. V4L2_MPEG_VIDEO_HEVC_TIER_HIGH = 1,
  710. };
  711. #define V4L2_CID_MPEG_VIDEO_HEVC_MAX_PARTITION_DEPTH (V4L2_CID_CODEC_BASE + 619)
  712. #define V4L2_CID_MPEG_VIDEO_HEVC_LOOP_FILTER_MODE (V4L2_CID_CODEC_BASE + 620)
  713. enum v4l2_cid_mpeg_video_hevc_loop_filter_mode {
  714. V4L2_MPEG_VIDEO_HEVC_LOOP_FILTER_MODE_DISABLED = 0,
  715. V4L2_MPEG_VIDEO_HEVC_LOOP_FILTER_MODE_ENABLED = 1,
  716. V4L2_MPEG_VIDEO_HEVC_LOOP_FILTER_MODE_DISABLED_AT_SLICE_BOUNDARY = 2,
  717. };
  718. #define V4L2_CID_MPEG_VIDEO_HEVC_LF_BETA_OFFSET_DIV2 (V4L2_CID_CODEC_BASE + 621)
  719. #define V4L2_CID_MPEG_VIDEO_HEVC_LF_TC_OFFSET_DIV2 (V4L2_CID_CODEC_BASE + 622)
  720. #define V4L2_CID_MPEG_VIDEO_HEVC_REFRESH_TYPE (V4L2_CID_CODEC_BASE + 623)
  721. enum v4l2_cid_mpeg_video_hevc_refresh_type {
  722. V4L2_MPEG_VIDEO_HEVC_REFRESH_NONE = 0,
  723. V4L2_MPEG_VIDEO_HEVC_REFRESH_CRA = 1,
  724. V4L2_MPEG_VIDEO_HEVC_REFRESH_IDR = 2,
  725. };
  726. #define V4L2_CID_MPEG_VIDEO_HEVC_REFRESH_PERIOD (V4L2_CID_CODEC_BASE + 624)
  727. #define V4L2_CID_MPEG_VIDEO_HEVC_LOSSLESS_CU (V4L2_CID_CODEC_BASE + 625)
  728. #define V4L2_CID_MPEG_VIDEO_HEVC_CONST_INTRA_PRED (V4L2_CID_CODEC_BASE + 626)
  729. #define V4L2_CID_MPEG_VIDEO_HEVC_WAVEFRONT (V4L2_CID_CODEC_BASE + 627)
  730. #define V4L2_CID_MPEG_VIDEO_HEVC_GENERAL_PB (V4L2_CID_CODEC_BASE + 628)
  731. #define V4L2_CID_MPEG_VIDEO_HEVC_TEMPORAL_ID (V4L2_CID_CODEC_BASE + 629)
  732. #define V4L2_CID_MPEG_VIDEO_HEVC_STRONG_SMOOTHING (V4L2_CID_CODEC_BASE + 630)
  733. #define V4L2_CID_MPEG_VIDEO_HEVC_MAX_NUM_MERGE_MV_MINUS1 (V4L2_CID_CODEC_BASE + 631)
  734. #define V4L2_CID_MPEG_VIDEO_HEVC_INTRA_PU_SPLIT (V4L2_CID_CODEC_BASE + 632)
  735. #define V4L2_CID_MPEG_VIDEO_HEVC_TMV_PREDICTION (V4L2_CID_CODEC_BASE + 633)
  736. #define V4L2_CID_MPEG_VIDEO_HEVC_WITHOUT_STARTCODE (V4L2_CID_CODEC_BASE + 634)
  737. #define V4L2_CID_MPEG_VIDEO_HEVC_SIZE_OF_LENGTH_FIELD (V4L2_CID_CODEC_BASE + 635)
  738. enum v4l2_cid_mpeg_video_hevc_size_of_length_field {
  739. V4L2_MPEG_VIDEO_HEVC_SIZE_0 = 0,
  740. V4L2_MPEG_VIDEO_HEVC_SIZE_1 = 1,
  741. V4L2_MPEG_VIDEO_HEVC_SIZE_2 = 2,
  742. V4L2_MPEG_VIDEO_HEVC_SIZE_4 = 3,
  743. };
  744. #define V4L2_CID_MPEG_VIDEO_HEVC_HIER_CODING_L0_BR (V4L2_CID_CODEC_BASE + 636)
  745. #define V4L2_CID_MPEG_VIDEO_HEVC_HIER_CODING_L1_BR (V4L2_CID_CODEC_BASE + 637)
  746. #define V4L2_CID_MPEG_VIDEO_HEVC_HIER_CODING_L2_BR (V4L2_CID_CODEC_BASE + 638)
  747. #define V4L2_CID_MPEG_VIDEO_HEVC_HIER_CODING_L3_BR (V4L2_CID_CODEC_BASE + 639)
  748. #define V4L2_CID_MPEG_VIDEO_HEVC_HIER_CODING_L4_BR (V4L2_CID_CODEC_BASE + 640)
  749. #define V4L2_CID_MPEG_VIDEO_HEVC_HIER_CODING_L5_BR (V4L2_CID_CODEC_BASE + 641)
  750. #define V4L2_CID_MPEG_VIDEO_HEVC_HIER_CODING_L6_BR (V4L2_CID_CODEC_BASE + 642)
  751. #define V4L2_CID_MPEG_VIDEO_REF_NUMBER_FOR_PFRAMES (V4L2_CID_CODEC_BASE + 643)
  752. #define V4L2_CID_MPEG_VIDEO_PREPEND_SPSPPS_TO_IDR (V4L2_CID_CODEC_BASE + 644)
  753. #define V4L2_CID_MPEG_VIDEO_CONSTANT_QUALITY (V4L2_CID_CODEC_BASE + 645)
  754. #define V4L2_CID_MPEG_VIDEO_FRAME_SKIP_MODE (V4L2_CID_CODEC_BASE + 646)
  755. enum v4l2_mpeg_video_frame_skip_mode {
  756. V4L2_MPEG_VIDEO_FRAME_SKIP_MODE_DISABLED = 0,
  757. V4L2_MPEG_VIDEO_FRAME_SKIP_MODE_LEVEL_LIMIT = 1,
  758. V4L2_MPEG_VIDEO_FRAME_SKIP_MODE_BUF_LIMIT = 2,
  759. };
  760. #define V4L2_CID_MPEG_VIDEO_HEVC_I_FRAME_MIN_QP (V4L2_CID_CODEC_BASE + 647)
  761. #define V4L2_CID_MPEG_VIDEO_HEVC_I_FRAME_MAX_QP (V4L2_CID_CODEC_BASE + 648)
  762. #define V4L2_CID_MPEG_VIDEO_HEVC_P_FRAME_MIN_QP (V4L2_CID_CODEC_BASE + 649)
  763. #define V4L2_CID_MPEG_VIDEO_HEVC_P_FRAME_MAX_QP (V4L2_CID_CODEC_BASE + 650)
  764. #define V4L2_CID_MPEG_VIDEO_HEVC_B_FRAME_MIN_QP (V4L2_CID_CODEC_BASE + 651)
  765. #define V4L2_CID_MPEG_VIDEO_HEVC_B_FRAME_MAX_QP (V4L2_CID_CODEC_BASE + 652)
  766. #define V4L2_CID_MPEG_VIDEO_DEC_DISPLAY_DELAY (V4L2_CID_CODEC_BASE + 653)
  767. #define V4L2_CID_MPEG_VIDEO_DEC_DISPLAY_DELAY_ENABLE (V4L2_CID_CODEC_BASE + 654)
  768. #define V4L2_CID_MPEG_VIDEO_AV1_PROFILE (V4L2_CID_CODEC_BASE + 655)
  769. /**
  770. * enum v4l2_mpeg_video_av1_profile - AV1 profiles
  771. *
  772. * @V4L2_MPEG_VIDEO_AV1_PROFILE_MAIN: compliant decoders must be able to decode
  773. * streams with seq_profile equal to 0.
  774. * @V4L2_MPEG_VIDEO_AV1_PROFILE_HIGH: compliant decoders must be able to decode
  775. * streams with seq_profile equal less than or equal to 1.
  776. * @V4L2_MPEG_VIDEO_AV1_PROFILE_PROFESSIONAL: compliant decoders must be able to
  777. * decode streams with seq_profile less than or equal to 2.
  778. *
  779. * Conveys the highest profile a decoder can work with.
  780. */
  781. enum v4l2_mpeg_video_av1_profile {
  782. V4L2_MPEG_VIDEO_AV1_PROFILE_MAIN = 0,
  783. V4L2_MPEG_VIDEO_AV1_PROFILE_HIGH = 1,
  784. V4L2_MPEG_VIDEO_AV1_PROFILE_PROFESSIONAL = 2,
  785. };
  786. #define V4L2_CID_MPEG_VIDEO_AV1_LEVEL (V4L2_CID_CODEC_BASE + 656)
  787. /**
  788. * enum v4l2_mpeg_video_av1_level - AV1 levels
  789. *
  790. * @V4L2_MPEG_VIDEO_AV1_LEVEL_2_0: Level 2.0.
  791. * @V4L2_MPEG_VIDEO_AV1_LEVEL_2_1: Level 2.1.
  792. * @V4L2_MPEG_VIDEO_AV1_LEVEL_2_2: Level 2.2.
  793. * @V4L2_MPEG_VIDEO_AV1_LEVEL_2_3: Level 2.3.
  794. * @V4L2_MPEG_VIDEO_AV1_LEVEL_3_0: Level 3.0.
  795. * @V4L2_MPEG_VIDEO_AV1_LEVEL_3_1: Level 3.1.
  796. * @V4L2_MPEG_VIDEO_AV1_LEVEL_3_2: Level 3.2.
  797. * @V4L2_MPEG_VIDEO_AV1_LEVEL_3_3: Level 3.3.
  798. * @V4L2_MPEG_VIDEO_AV1_LEVEL_4_0: Level 4.0.
  799. * @V4L2_MPEG_VIDEO_AV1_LEVEL_4_1: Level 4.1.
  800. * @V4L2_MPEG_VIDEO_AV1_LEVEL_4_2: Level 4.2.
  801. * @V4L2_MPEG_VIDEO_AV1_LEVEL_4_3: Level 4.3.
  802. * @V4L2_MPEG_VIDEO_AV1_LEVEL_5_0: Level 5.0.
  803. * @V4L2_MPEG_VIDEO_AV1_LEVEL_5_1: Level 5.1.
  804. * @V4L2_MPEG_VIDEO_AV1_LEVEL_5_2: Level 5.2.
  805. * @V4L2_MPEG_VIDEO_AV1_LEVEL_5_3: Level 5.3.
  806. * @V4L2_MPEG_VIDEO_AV1_LEVEL_6_0: Level 6.0.
  807. * @V4L2_MPEG_VIDEO_AV1_LEVEL_6_1: Level 6.1.
  808. * @V4L2_MPEG_VIDEO_AV1_LEVEL_6_2: Level 6.2.
  809. * @V4L2_MPEG_VIDEO_AV1_LEVEL_6_3: Level 6.3.
  810. * @V4L2_MPEG_VIDEO_AV1_LEVEL_7_0: Level 7.0.
  811. * @V4L2_MPEG_VIDEO_AV1_LEVEL_7_1: Level 7.1.
  812. * @V4L2_MPEG_VIDEO_AV1_LEVEL_7_2: Level 7.2.
  813. * @V4L2_MPEG_VIDEO_AV1_LEVEL_7_3: Level 7.3.
  814. *
  815. * Conveys the highest level a decoder can work with.
  816. */
  817. enum v4l2_mpeg_video_av1_level {
  818. V4L2_MPEG_VIDEO_AV1_LEVEL_2_0 = 0,
  819. V4L2_MPEG_VIDEO_AV1_LEVEL_2_1 = 1,
  820. V4L2_MPEG_VIDEO_AV1_LEVEL_2_2 = 2,
  821. V4L2_MPEG_VIDEO_AV1_LEVEL_2_3 = 3,
  822. V4L2_MPEG_VIDEO_AV1_LEVEL_3_0 = 4,
  823. V4L2_MPEG_VIDEO_AV1_LEVEL_3_1 = 5,
  824. V4L2_MPEG_VIDEO_AV1_LEVEL_3_2 = 6,
  825. V4L2_MPEG_VIDEO_AV1_LEVEL_3_3 = 7,
  826. V4L2_MPEG_VIDEO_AV1_LEVEL_4_0 = 8,
  827. V4L2_MPEG_VIDEO_AV1_LEVEL_4_1 = 9,
  828. V4L2_MPEG_VIDEO_AV1_LEVEL_4_2 = 10,
  829. V4L2_MPEG_VIDEO_AV1_LEVEL_4_3 = 11,
  830. V4L2_MPEG_VIDEO_AV1_LEVEL_5_0 = 12,
  831. V4L2_MPEG_VIDEO_AV1_LEVEL_5_1 = 13,
  832. V4L2_MPEG_VIDEO_AV1_LEVEL_5_2 = 14,
  833. V4L2_MPEG_VIDEO_AV1_LEVEL_5_3 = 15,
  834. V4L2_MPEG_VIDEO_AV1_LEVEL_6_0 = 16,
  835. V4L2_MPEG_VIDEO_AV1_LEVEL_6_1 = 17,
  836. V4L2_MPEG_VIDEO_AV1_LEVEL_6_2 = 18,
  837. V4L2_MPEG_VIDEO_AV1_LEVEL_6_3 = 19,
  838. V4L2_MPEG_VIDEO_AV1_LEVEL_7_0 = 20,
  839. V4L2_MPEG_VIDEO_AV1_LEVEL_7_1 = 21,
  840. V4L2_MPEG_VIDEO_AV1_LEVEL_7_2 = 22,
  841. V4L2_MPEG_VIDEO_AV1_LEVEL_7_3 = 23
  842. };
  843. #define V4L2_CID_MPEG_VIDEO_AVERAGE_QP (V4L2_CID_CODEC_BASE + 657)
  844. /* MPEG-class control IDs specific to the CX2341x driver as defined by V4L2 */
  845. #define V4L2_CID_CODEC_CX2341X_BASE (V4L2_CTRL_CLASS_CODEC | 0x1000)
  846. #define V4L2_CID_MPEG_CX2341X_VIDEO_SPATIAL_FILTER_MODE (V4L2_CID_CODEC_CX2341X_BASE+0)
  847. enum v4l2_mpeg_cx2341x_video_spatial_filter_mode {
  848. V4L2_MPEG_CX2341X_VIDEO_SPATIAL_FILTER_MODE_MANUAL = 0,
  849. V4L2_MPEG_CX2341X_VIDEO_SPATIAL_FILTER_MODE_AUTO = 1,
  850. };
  851. #define V4L2_CID_MPEG_CX2341X_VIDEO_SPATIAL_FILTER (V4L2_CID_CODEC_CX2341X_BASE+1)
  852. #define V4L2_CID_MPEG_CX2341X_VIDEO_LUMA_SPATIAL_FILTER_TYPE (V4L2_CID_CODEC_CX2341X_BASE+2)
  853. enum v4l2_mpeg_cx2341x_video_luma_spatial_filter_type {
  854. V4L2_MPEG_CX2341X_VIDEO_LUMA_SPATIAL_FILTER_TYPE_OFF = 0,
  855. V4L2_MPEG_CX2341X_VIDEO_LUMA_SPATIAL_FILTER_TYPE_1D_HOR = 1,
  856. V4L2_MPEG_CX2341X_VIDEO_LUMA_SPATIAL_FILTER_TYPE_1D_VERT = 2,
  857. V4L2_MPEG_CX2341X_VIDEO_LUMA_SPATIAL_FILTER_TYPE_2D_HV_SEPARABLE = 3,
  858. V4L2_MPEG_CX2341X_VIDEO_LUMA_SPATIAL_FILTER_TYPE_2D_SYM_NON_SEPARABLE = 4,
  859. };
  860. #define V4L2_CID_MPEG_CX2341X_VIDEO_CHROMA_SPATIAL_FILTER_TYPE (V4L2_CID_CODEC_CX2341X_BASE+3)
  861. enum v4l2_mpeg_cx2341x_video_chroma_spatial_filter_type {
  862. V4L2_MPEG_CX2341X_VIDEO_CHROMA_SPATIAL_FILTER_TYPE_OFF = 0,
  863. V4L2_MPEG_CX2341X_VIDEO_CHROMA_SPATIAL_FILTER_TYPE_1D_HOR = 1,
  864. };
  865. #define V4L2_CID_MPEG_CX2341X_VIDEO_TEMPORAL_FILTER_MODE (V4L2_CID_CODEC_CX2341X_BASE+4)
  866. enum v4l2_mpeg_cx2341x_video_temporal_filter_mode {
  867. V4L2_MPEG_CX2341X_VIDEO_TEMPORAL_FILTER_MODE_MANUAL = 0,
  868. V4L2_MPEG_CX2341X_VIDEO_TEMPORAL_FILTER_MODE_AUTO = 1,
  869. };
  870. #define V4L2_CID_MPEG_CX2341X_VIDEO_TEMPORAL_FILTER (V4L2_CID_CODEC_CX2341X_BASE+5)
  871. #define V4L2_CID_MPEG_CX2341X_VIDEO_MEDIAN_FILTER_TYPE (V4L2_CID_CODEC_CX2341X_BASE+6)
  872. enum v4l2_mpeg_cx2341x_video_median_filter_type {
  873. V4L2_MPEG_CX2341X_VIDEO_MEDIAN_FILTER_TYPE_OFF = 0,
  874. V4L2_MPEG_CX2341X_VIDEO_MEDIAN_FILTER_TYPE_HOR = 1,
  875. V4L2_MPEG_CX2341X_VIDEO_MEDIAN_FILTER_TYPE_VERT = 2,
  876. V4L2_MPEG_CX2341X_VIDEO_MEDIAN_FILTER_TYPE_HOR_VERT = 3,
  877. V4L2_MPEG_CX2341X_VIDEO_MEDIAN_FILTER_TYPE_DIAG = 4,
  878. };
  879. #define V4L2_CID_MPEG_CX2341X_VIDEO_LUMA_MEDIAN_FILTER_BOTTOM (V4L2_CID_CODEC_CX2341X_BASE+7)
  880. #define V4L2_CID_MPEG_CX2341X_VIDEO_LUMA_MEDIAN_FILTER_TOP (V4L2_CID_CODEC_CX2341X_BASE+8)
  881. #define V4L2_CID_MPEG_CX2341X_VIDEO_CHROMA_MEDIAN_FILTER_BOTTOM (V4L2_CID_CODEC_CX2341X_BASE+9)
  882. #define V4L2_CID_MPEG_CX2341X_VIDEO_CHROMA_MEDIAN_FILTER_TOP (V4L2_CID_CODEC_CX2341X_BASE+10)
  883. #define V4L2_CID_MPEG_CX2341X_STREAM_INSERT_NAV_PACKETS (V4L2_CID_CODEC_CX2341X_BASE+11)
  884. /* MPEG-class control IDs specific to the Samsung MFC 5.1 driver as defined by V4L2 */
  885. #define V4L2_CID_CODEC_MFC51_BASE (V4L2_CTRL_CLASS_CODEC | 0x1100)
  886. #define V4L2_CID_MPEG_MFC51_VIDEO_DECODER_H264_DISPLAY_DELAY (V4L2_CID_CODEC_MFC51_BASE+0)
  887. #define V4L2_CID_MPEG_MFC51_VIDEO_DECODER_H264_DISPLAY_DELAY_ENABLE (V4L2_CID_CODEC_MFC51_BASE+1)
  888. #define V4L2_CID_MPEG_MFC51_VIDEO_FRAME_SKIP_MODE (V4L2_CID_CODEC_MFC51_BASE+2)
  889. enum v4l2_mpeg_mfc51_video_frame_skip_mode {
  890. V4L2_MPEG_MFC51_VIDEO_FRAME_SKIP_MODE_DISABLED = 0,
  891. V4L2_MPEG_MFC51_VIDEO_FRAME_SKIP_MODE_LEVEL_LIMIT = 1,
  892. V4L2_MPEG_MFC51_VIDEO_FRAME_SKIP_MODE_BUF_LIMIT = 2,
  893. };
  894. #define V4L2_CID_MPEG_MFC51_VIDEO_FORCE_FRAME_TYPE (V4L2_CID_CODEC_MFC51_BASE+3)
  895. enum v4l2_mpeg_mfc51_video_force_frame_type {
  896. V4L2_MPEG_MFC51_VIDEO_FORCE_FRAME_TYPE_DISABLED = 0,
  897. V4L2_MPEG_MFC51_VIDEO_FORCE_FRAME_TYPE_I_FRAME = 1,
  898. V4L2_MPEG_MFC51_VIDEO_FORCE_FRAME_TYPE_NOT_CODED = 2,
  899. };
  900. #define V4L2_CID_MPEG_MFC51_VIDEO_PADDING (V4L2_CID_CODEC_MFC51_BASE+4)
  901. #define V4L2_CID_MPEG_MFC51_VIDEO_PADDING_YUV (V4L2_CID_CODEC_MFC51_BASE+5)
  902. #define V4L2_CID_MPEG_MFC51_VIDEO_RC_FIXED_TARGET_BIT (V4L2_CID_CODEC_MFC51_BASE+6)
  903. #define V4L2_CID_MPEG_MFC51_VIDEO_RC_REACTION_COEFF (V4L2_CID_CODEC_MFC51_BASE+7)
  904. #define V4L2_CID_MPEG_MFC51_VIDEO_H264_ADAPTIVE_RC_ACTIVITY (V4L2_CID_CODEC_MFC51_BASE+50)
  905. #define V4L2_CID_MPEG_MFC51_VIDEO_H264_ADAPTIVE_RC_DARK (V4L2_CID_CODEC_MFC51_BASE+51)
  906. #define V4L2_CID_MPEG_MFC51_VIDEO_H264_ADAPTIVE_RC_SMOOTH (V4L2_CID_CODEC_MFC51_BASE+52)
  907. #define V4L2_CID_MPEG_MFC51_VIDEO_H264_ADAPTIVE_RC_STATIC (V4L2_CID_CODEC_MFC51_BASE+53)
  908. #define V4L2_CID_MPEG_MFC51_VIDEO_H264_NUM_REF_PIC_FOR_P (V4L2_CID_CODEC_MFC51_BASE+54)
  909. /* Camera class control IDs */
  910. #define V4L2_CID_CAMERA_CLASS_BASE (V4L2_CTRL_CLASS_CAMERA | 0x900)
  911. #define V4L2_CID_CAMERA_CLASS (V4L2_CTRL_CLASS_CAMERA | 1)
  912. #define V4L2_CID_EXPOSURE_AUTO (V4L2_CID_CAMERA_CLASS_BASE+1)
  913. enum v4l2_exposure_auto_type {
  914. V4L2_EXPOSURE_AUTO = 0,
  915. V4L2_EXPOSURE_MANUAL = 1,
  916. V4L2_EXPOSURE_SHUTTER_PRIORITY = 2,
  917. V4L2_EXPOSURE_APERTURE_PRIORITY = 3
  918. };
  919. #define V4L2_CID_EXPOSURE_ABSOLUTE (V4L2_CID_CAMERA_CLASS_BASE+2)
  920. #define V4L2_CID_EXPOSURE_AUTO_PRIORITY (V4L2_CID_CAMERA_CLASS_BASE+3)
  921. #define V4L2_CID_PAN_RELATIVE (V4L2_CID_CAMERA_CLASS_BASE+4)
  922. #define V4L2_CID_TILT_RELATIVE (V4L2_CID_CAMERA_CLASS_BASE+5)
  923. #define V4L2_CID_PAN_RESET (V4L2_CID_CAMERA_CLASS_BASE+6)
  924. #define V4L2_CID_TILT_RESET (V4L2_CID_CAMERA_CLASS_BASE+7)
  925. #define V4L2_CID_PAN_ABSOLUTE (V4L2_CID_CAMERA_CLASS_BASE+8)
  926. #define V4L2_CID_TILT_ABSOLUTE (V4L2_CID_CAMERA_CLASS_BASE+9)
  927. #define V4L2_CID_FOCUS_ABSOLUTE (V4L2_CID_CAMERA_CLASS_BASE+10)
  928. #define V4L2_CID_FOCUS_RELATIVE (V4L2_CID_CAMERA_CLASS_BASE+11)
  929. #define V4L2_CID_FOCUS_AUTO (V4L2_CID_CAMERA_CLASS_BASE+12)
  930. #define V4L2_CID_ZOOM_ABSOLUTE (V4L2_CID_CAMERA_CLASS_BASE+13)
  931. #define V4L2_CID_ZOOM_RELATIVE (V4L2_CID_CAMERA_CLASS_BASE+14)
  932. #define V4L2_CID_ZOOM_CONTINUOUS (V4L2_CID_CAMERA_CLASS_BASE+15)
  933. #define V4L2_CID_PRIVACY (V4L2_CID_CAMERA_CLASS_BASE+16)
  934. #define V4L2_CID_IRIS_ABSOLUTE (V4L2_CID_CAMERA_CLASS_BASE+17)
  935. #define V4L2_CID_IRIS_RELATIVE (V4L2_CID_CAMERA_CLASS_BASE+18)
  936. #define V4L2_CID_AUTO_EXPOSURE_BIAS (V4L2_CID_CAMERA_CLASS_BASE+19)
  937. #define V4L2_CID_AUTO_N_PRESET_WHITE_BALANCE (V4L2_CID_CAMERA_CLASS_BASE+20)
  938. enum v4l2_auto_n_preset_white_balance {
  939. V4L2_WHITE_BALANCE_MANUAL = 0,
  940. V4L2_WHITE_BALANCE_AUTO = 1,
  941. V4L2_WHITE_BALANCE_INCANDESCENT = 2,
  942. V4L2_WHITE_BALANCE_FLUORESCENT = 3,
  943. V4L2_WHITE_BALANCE_FLUORESCENT_H = 4,
  944. V4L2_WHITE_BALANCE_HORIZON = 5,
  945. V4L2_WHITE_BALANCE_DAYLIGHT = 6,
  946. V4L2_WHITE_BALANCE_FLASH = 7,
  947. V4L2_WHITE_BALANCE_CLOUDY = 8,
  948. V4L2_WHITE_BALANCE_SHADE = 9,
  949. };
  950. #define V4L2_CID_WIDE_DYNAMIC_RANGE (V4L2_CID_CAMERA_CLASS_BASE+21)
  951. #define V4L2_CID_IMAGE_STABILIZATION (V4L2_CID_CAMERA_CLASS_BASE+22)
  952. #define V4L2_CID_ISO_SENSITIVITY (V4L2_CID_CAMERA_CLASS_BASE+23)
  953. #define V4L2_CID_ISO_SENSITIVITY_AUTO (V4L2_CID_CAMERA_CLASS_BASE+24)
  954. enum v4l2_iso_sensitivity_auto_type {
  955. V4L2_ISO_SENSITIVITY_MANUAL = 0,
  956. V4L2_ISO_SENSITIVITY_AUTO = 1,
  957. };
  958. #define V4L2_CID_EXPOSURE_METERING (V4L2_CID_CAMERA_CLASS_BASE+25)
  959. enum v4l2_exposure_metering {
  960. V4L2_EXPOSURE_METERING_AVERAGE = 0,
  961. V4L2_EXPOSURE_METERING_CENTER_WEIGHTED = 1,
  962. V4L2_EXPOSURE_METERING_SPOT = 2,
  963. V4L2_EXPOSURE_METERING_MATRIX = 3,
  964. };
  965. #define V4L2_CID_SCENE_MODE (V4L2_CID_CAMERA_CLASS_BASE+26)
  966. enum v4l2_scene_mode {
  967. V4L2_SCENE_MODE_NONE = 0,
  968. V4L2_SCENE_MODE_BACKLIGHT = 1,
  969. V4L2_SCENE_MODE_BEACH_SNOW = 2,
  970. V4L2_SCENE_MODE_CANDLE_LIGHT = 3,
  971. V4L2_SCENE_MODE_DAWN_DUSK = 4,
  972. V4L2_SCENE_MODE_FALL_COLORS = 5,
  973. V4L2_SCENE_MODE_FIREWORKS = 6,
  974. V4L2_SCENE_MODE_LANDSCAPE = 7,
  975. V4L2_SCENE_MODE_NIGHT = 8,
  976. V4L2_SCENE_MODE_PARTY_INDOOR = 9,
  977. V4L2_SCENE_MODE_PORTRAIT = 10,
  978. V4L2_SCENE_MODE_SPORTS = 11,
  979. V4L2_SCENE_MODE_SUNSET = 12,
  980. V4L2_SCENE_MODE_TEXT = 13,
  981. };
  982. #define V4L2_CID_3A_LOCK (V4L2_CID_CAMERA_CLASS_BASE+27)
  983. #define V4L2_LOCK_EXPOSURE (1 << 0)
  984. #define V4L2_LOCK_WHITE_BALANCE (1 << 1)
  985. #define V4L2_LOCK_FOCUS (1 << 2)
  986. #define V4L2_CID_AUTO_FOCUS_START (V4L2_CID_CAMERA_CLASS_BASE+28)
  987. #define V4L2_CID_AUTO_FOCUS_STOP (V4L2_CID_CAMERA_CLASS_BASE+29)
  988. #define V4L2_CID_AUTO_FOCUS_STATUS (V4L2_CID_CAMERA_CLASS_BASE+30)
  989. #define V4L2_AUTO_FOCUS_STATUS_IDLE (0 << 0)
  990. #define V4L2_AUTO_FOCUS_STATUS_BUSY (1 << 0)
  991. #define V4L2_AUTO_FOCUS_STATUS_REACHED (1 << 1)
  992. #define V4L2_AUTO_FOCUS_STATUS_FAILED (1 << 2)
  993. #define V4L2_CID_AUTO_FOCUS_RANGE (V4L2_CID_CAMERA_CLASS_BASE+31)
  994. enum v4l2_auto_focus_range {
  995. V4L2_AUTO_FOCUS_RANGE_AUTO = 0,
  996. V4L2_AUTO_FOCUS_RANGE_NORMAL = 1,
  997. V4L2_AUTO_FOCUS_RANGE_MACRO = 2,
  998. V4L2_AUTO_FOCUS_RANGE_INFINITY = 3,
  999. };
  1000. #define V4L2_CID_PAN_SPEED (V4L2_CID_CAMERA_CLASS_BASE+32)
  1001. #define V4L2_CID_TILT_SPEED (V4L2_CID_CAMERA_CLASS_BASE+33)
  1002. #define V4L2_CID_CAMERA_ORIENTATION (V4L2_CID_CAMERA_CLASS_BASE+34)
  1003. #define V4L2_CAMERA_ORIENTATION_FRONT 0
  1004. #define V4L2_CAMERA_ORIENTATION_BACK 1
  1005. #define V4L2_CAMERA_ORIENTATION_EXTERNAL 2
  1006. #define V4L2_CID_CAMERA_SENSOR_ROTATION (V4L2_CID_CAMERA_CLASS_BASE+35)
  1007. #define V4L2_CID_HDR_SENSOR_MODE (V4L2_CID_CAMERA_CLASS_BASE+36)
  1008. /* FM Modulator class control IDs */
  1009. #define V4L2_CID_FM_TX_CLASS_BASE (V4L2_CTRL_CLASS_FM_TX | 0x900)
  1010. #define V4L2_CID_FM_TX_CLASS (V4L2_CTRL_CLASS_FM_TX | 1)
  1011. #define V4L2_CID_RDS_TX_DEVIATION (V4L2_CID_FM_TX_CLASS_BASE + 1)
  1012. #define V4L2_CID_RDS_TX_PI (V4L2_CID_FM_TX_CLASS_BASE + 2)
  1013. #define V4L2_CID_RDS_TX_PTY (V4L2_CID_FM_TX_CLASS_BASE + 3)
  1014. #define V4L2_CID_RDS_TX_PS_NAME (V4L2_CID_FM_TX_CLASS_BASE + 5)
  1015. #define V4L2_CID_RDS_TX_RADIO_TEXT (V4L2_CID_FM_TX_CLASS_BASE + 6)
  1016. #define V4L2_CID_RDS_TX_MONO_STEREO (V4L2_CID_FM_TX_CLASS_BASE + 7)
  1017. #define V4L2_CID_RDS_TX_ARTIFICIAL_HEAD (V4L2_CID_FM_TX_CLASS_BASE + 8)
  1018. #define V4L2_CID_RDS_TX_COMPRESSED (V4L2_CID_FM_TX_CLASS_BASE + 9)
  1019. #define V4L2_CID_RDS_TX_DYNAMIC_PTY (V4L2_CID_FM_TX_CLASS_BASE + 10)
  1020. #define V4L2_CID_RDS_TX_TRAFFIC_ANNOUNCEMENT (V4L2_CID_FM_TX_CLASS_BASE + 11)
  1021. #define V4L2_CID_RDS_TX_TRAFFIC_PROGRAM (V4L2_CID_FM_TX_CLASS_BASE + 12)
  1022. #define V4L2_CID_RDS_TX_MUSIC_SPEECH (V4L2_CID_FM_TX_CLASS_BASE + 13)
  1023. #define V4L2_CID_RDS_TX_ALT_FREQS_ENABLE (V4L2_CID_FM_TX_CLASS_BASE + 14)
  1024. #define V4L2_CID_RDS_TX_ALT_FREQS (V4L2_CID_FM_TX_CLASS_BASE + 15)
  1025. #define V4L2_CID_AUDIO_LIMITER_ENABLED (V4L2_CID_FM_TX_CLASS_BASE + 64)
  1026. #define V4L2_CID_AUDIO_LIMITER_RELEASE_TIME (V4L2_CID_FM_TX_CLASS_BASE + 65)
  1027. #define V4L2_CID_AUDIO_LIMITER_DEVIATION (V4L2_CID_FM_TX_CLASS_BASE + 66)
  1028. #define V4L2_CID_AUDIO_COMPRESSION_ENABLED (V4L2_CID_FM_TX_CLASS_BASE + 80)
  1029. #define V4L2_CID_AUDIO_COMPRESSION_GAIN (V4L2_CID_FM_TX_CLASS_BASE + 81)
  1030. #define V4L2_CID_AUDIO_COMPRESSION_THRESHOLD (V4L2_CID_FM_TX_CLASS_BASE + 82)
  1031. #define V4L2_CID_AUDIO_COMPRESSION_ATTACK_TIME (V4L2_CID_FM_TX_CLASS_BASE + 83)
  1032. #define V4L2_CID_AUDIO_COMPRESSION_RELEASE_TIME (V4L2_CID_FM_TX_CLASS_BASE + 84)
  1033. #define V4L2_CID_PILOT_TONE_ENABLED (V4L2_CID_FM_TX_CLASS_BASE + 96)
  1034. #define V4L2_CID_PILOT_TONE_DEVIATION (V4L2_CID_FM_TX_CLASS_BASE + 97)
  1035. #define V4L2_CID_PILOT_TONE_FREQUENCY (V4L2_CID_FM_TX_CLASS_BASE + 98)
  1036. #define V4L2_CID_TUNE_PREEMPHASIS (V4L2_CID_FM_TX_CLASS_BASE + 112)
  1037. enum v4l2_preemphasis {
  1038. V4L2_PREEMPHASIS_DISABLED = 0,
  1039. V4L2_PREEMPHASIS_50_uS = 1,
  1040. V4L2_PREEMPHASIS_75_uS = 2,
  1041. };
  1042. #define V4L2_CID_TUNE_POWER_LEVEL (V4L2_CID_FM_TX_CLASS_BASE + 113)
  1043. #define V4L2_CID_TUNE_ANTENNA_CAPACITOR (V4L2_CID_FM_TX_CLASS_BASE + 114)
  1044. /* Flash and privacy (indicator) light controls */
  1045. #define V4L2_CID_FLASH_CLASS_BASE (V4L2_CTRL_CLASS_FLASH | 0x900)
  1046. #define V4L2_CID_FLASH_CLASS (V4L2_CTRL_CLASS_FLASH | 1)
  1047. #define V4L2_CID_FLASH_LED_MODE (V4L2_CID_FLASH_CLASS_BASE + 1)
  1048. enum v4l2_flash_led_mode {
  1049. V4L2_FLASH_LED_MODE_NONE,
  1050. V4L2_FLASH_LED_MODE_FLASH,
  1051. V4L2_FLASH_LED_MODE_TORCH,
  1052. };
  1053. #define V4L2_CID_FLASH_STROBE_SOURCE (V4L2_CID_FLASH_CLASS_BASE + 2)
  1054. enum v4l2_flash_strobe_source {
  1055. V4L2_FLASH_STROBE_SOURCE_SOFTWARE,
  1056. V4L2_FLASH_STROBE_SOURCE_EXTERNAL,
  1057. };
  1058. #define V4L2_CID_FLASH_STROBE (V4L2_CID_FLASH_CLASS_BASE + 3)
  1059. #define V4L2_CID_FLASH_STROBE_STOP (V4L2_CID_FLASH_CLASS_BASE + 4)
  1060. #define V4L2_CID_FLASH_STROBE_STATUS (V4L2_CID_FLASH_CLASS_BASE + 5)
  1061. #define V4L2_CID_FLASH_TIMEOUT (V4L2_CID_FLASH_CLASS_BASE + 6)
  1062. #define V4L2_CID_FLASH_INTENSITY (V4L2_CID_FLASH_CLASS_BASE + 7)
  1063. #define V4L2_CID_FLASH_TORCH_INTENSITY (V4L2_CID_FLASH_CLASS_BASE + 8)
  1064. #define V4L2_CID_FLASH_INDICATOR_INTENSITY (V4L2_CID_FLASH_CLASS_BASE + 9)
  1065. #define V4L2_CID_FLASH_FAULT (V4L2_CID_FLASH_CLASS_BASE + 10)
  1066. #define V4L2_FLASH_FAULT_OVER_VOLTAGE (1 << 0)
  1067. #define V4L2_FLASH_FAULT_TIMEOUT (1 << 1)
  1068. #define V4L2_FLASH_FAULT_OVER_TEMPERATURE (1 << 2)
  1069. #define V4L2_FLASH_FAULT_SHORT_CIRCUIT (1 << 3)
  1070. #define V4L2_FLASH_FAULT_OVER_CURRENT (1 << 4)
  1071. #define V4L2_FLASH_FAULT_INDICATOR (1 << 5)
  1072. #define V4L2_FLASH_FAULT_UNDER_VOLTAGE (1 << 6)
  1073. #define V4L2_FLASH_FAULT_INPUT_VOLTAGE (1 << 7)
  1074. #define V4L2_FLASH_FAULT_LED_OVER_TEMPERATURE (1 << 8)
  1075. #define V4L2_CID_FLASH_CHARGE (V4L2_CID_FLASH_CLASS_BASE + 11)
  1076. #define V4L2_CID_FLASH_READY (V4L2_CID_FLASH_CLASS_BASE + 12)
  1077. /* JPEG-class control IDs */
  1078. #define V4L2_CID_JPEG_CLASS_BASE (V4L2_CTRL_CLASS_JPEG | 0x900)
  1079. #define V4L2_CID_JPEG_CLASS (V4L2_CTRL_CLASS_JPEG | 1)
  1080. #define V4L2_CID_JPEG_CHROMA_SUBSAMPLING (V4L2_CID_JPEG_CLASS_BASE + 1)
  1081. enum v4l2_jpeg_chroma_subsampling {
  1082. V4L2_JPEG_CHROMA_SUBSAMPLING_444 = 0,
  1083. V4L2_JPEG_CHROMA_SUBSAMPLING_422 = 1,
  1084. V4L2_JPEG_CHROMA_SUBSAMPLING_420 = 2,
  1085. V4L2_JPEG_CHROMA_SUBSAMPLING_411 = 3,
  1086. V4L2_JPEG_CHROMA_SUBSAMPLING_410 = 4,
  1087. V4L2_JPEG_CHROMA_SUBSAMPLING_GRAY = 5,
  1088. };
  1089. #define V4L2_CID_JPEG_RESTART_INTERVAL (V4L2_CID_JPEG_CLASS_BASE + 2)
  1090. #define V4L2_CID_JPEG_COMPRESSION_QUALITY (V4L2_CID_JPEG_CLASS_BASE + 3)
  1091. #define V4L2_CID_JPEG_ACTIVE_MARKER (V4L2_CID_JPEG_CLASS_BASE + 4)
  1092. #define V4L2_JPEG_ACTIVE_MARKER_APP0 (1 << 0)
  1093. #define V4L2_JPEG_ACTIVE_MARKER_APP1 (1 << 1)
  1094. #define V4L2_JPEG_ACTIVE_MARKER_COM (1 << 16)
  1095. #define V4L2_JPEG_ACTIVE_MARKER_DQT (1 << 17)
  1096. #define V4L2_JPEG_ACTIVE_MARKER_DHT (1 << 18)
  1097. /* Image source controls */
  1098. #define V4L2_CID_IMAGE_SOURCE_CLASS_BASE (V4L2_CTRL_CLASS_IMAGE_SOURCE | 0x900)
  1099. #define V4L2_CID_IMAGE_SOURCE_CLASS (V4L2_CTRL_CLASS_IMAGE_SOURCE | 1)
  1100. #define V4L2_CID_VBLANK (V4L2_CID_IMAGE_SOURCE_CLASS_BASE + 1)
  1101. #define V4L2_CID_HBLANK (V4L2_CID_IMAGE_SOURCE_CLASS_BASE + 2)
  1102. #define V4L2_CID_ANALOGUE_GAIN (V4L2_CID_IMAGE_SOURCE_CLASS_BASE + 3)
  1103. #define V4L2_CID_TEST_PATTERN_RED (V4L2_CID_IMAGE_SOURCE_CLASS_BASE + 4)
  1104. #define V4L2_CID_TEST_PATTERN_GREENR (V4L2_CID_IMAGE_SOURCE_CLASS_BASE + 5)
  1105. #define V4L2_CID_TEST_PATTERN_BLUE (V4L2_CID_IMAGE_SOURCE_CLASS_BASE + 6)
  1106. #define V4L2_CID_TEST_PATTERN_GREENB (V4L2_CID_IMAGE_SOURCE_CLASS_BASE + 7)
  1107. #define V4L2_CID_UNIT_CELL_SIZE (V4L2_CID_IMAGE_SOURCE_CLASS_BASE + 8)
  1108. #define V4L2_CID_NOTIFY_GAINS (V4L2_CID_IMAGE_SOURCE_CLASS_BASE + 9)
  1109. /* Image processing controls */
  1110. #define V4L2_CID_IMAGE_PROC_CLASS_BASE (V4L2_CTRL_CLASS_IMAGE_PROC | 0x900)
  1111. #define V4L2_CID_IMAGE_PROC_CLASS (V4L2_CTRL_CLASS_IMAGE_PROC | 1)
  1112. #define V4L2_CID_LINK_FREQ (V4L2_CID_IMAGE_PROC_CLASS_BASE + 1)
  1113. #define V4L2_CID_PIXEL_RATE (V4L2_CID_IMAGE_PROC_CLASS_BASE + 2)
  1114. #define V4L2_CID_TEST_PATTERN (V4L2_CID_IMAGE_PROC_CLASS_BASE + 3)
  1115. #define V4L2_CID_DEINTERLACING_MODE (V4L2_CID_IMAGE_PROC_CLASS_BASE + 4)
  1116. #define V4L2_CID_DIGITAL_GAIN (V4L2_CID_IMAGE_PROC_CLASS_BASE + 5)
  1117. /* DV-class control IDs defined by V4L2 */
  1118. #define V4L2_CID_DV_CLASS_BASE (V4L2_CTRL_CLASS_DV | 0x900)
  1119. #define V4L2_CID_DV_CLASS (V4L2_CTRL_CLASS_DV | 1)
  1120. #define V4L2_CID_DV_TX_HOTPLUG (V4L2_CID_DV_CLASS_BASE + 1)
  1121. #define V4L2_CID_DV_TX_RXSENSE (V4L2_CID_DV_CLASS_BASE + 2)
  1122. #define V4L2_CID_DV_TX_EDID_PRESENT (V4L2_CID_DV_CLASS_BASE + 3)
  1123. #define V4L2_CID_DV_TX_MODE (V4L2_CID_DV_CLASS_BASE + 4)
  1124. enum v4l2_dv_tx_mode {
  1125. V4L2_DV_TX_MODE_DVI_D = 0,
  1126. V4L2_DV_TX_MODE_HDMI = 1,
  1127. };
  1128. #define V4L2_CID_DV_TX_RGB_RANGE (V4L2_CID_DV_CLASS_BASE + 5)
  1129. enum v4l2_dv_rgb_range {
  1130. V4L2_DV_RGB_RANGE_AUTO = 0,
  1131. V4L2_DV_RGB_RANGE_LIMITED = 1,
  1132. V4L2_DV_RGB_RANGE_FULL = 2,
  1133. };
  1134. #define V4L2_CID_DV_TX_IT_CONTENT_TYPE (V4L2_CID_DV_CLASS_BASE + 6)
  1135. enum v4l2_dv_it_content_type {
  1136. V4L2_DV_IT_CONTENT_TYPE_GRAPHICS = 0,
  1137. V4L2_DV_IT_CONTENT_TYPE_PHOTO = 1,
  1138. V4L2_DV_IT_CONTENT_TYPE_CINEMA = 2,
  1139. V4L2_DV_IT_CONTENT_TYPE_GAME = 3,
  1140. V4L2_DV_IT_CONTENT_TYPE_NO_ITC = 4,
  1141. };
  1142. #define V4L2_CID_DV_RX_POWER_PRESENT (V4L2_CID_DV_CLASS_BASE + 100)
  1143. #define V4L2_CID_DV_RX_RGB_RANGE (V4L2_CID_DV_CLASS_BASE + 101)
  1144. #define V4L2_CID_DV_RX_IT_CONTENT_TYPE (V4L2_CID_DV_CLASS_BASE + 102)
  1145. #define V4L2_CID_FM_RX_CLASS_BASE (V4L2_CTRL_CLASS_FM_RX | 0x900)
  1146. #define V4L2_CID_FM_RX_CLASS (V4L2_CTRL_CLASS_FM_RX | 1)
  1147. #define V4L2_CID_TUNE_DEEMPHASIS (V4L2_CID_FM_RX_CLASS_BASE + 1)
  1148. enum v4l2_deemphasis {
  1149. V4L2_DEEMPHASIS_DISABLED = V4L2_PREEMPHASIS_DISABLED,
  1150. V4L2_DEEMPHASIS_50_uS = V4L2_PREEMPHASIS_50_uS,
  1151. V4L2_DEEMPHASIS_75_uS = V4L2_PREEMPHASIS_75_uS,
  1152. };
  1153. #define V4L2_CID_RDS_RECEPTION (V4L2_CID_FM_RX_CLASS_BASE + 2)
  1154. #define V4L2_CID_RDS_RX_PTY (V4L2_CID_FM_RX_CLASS_BASE + 3)
  1155. #define V4L2_CID_RDS_RX_PS_NAME (V4L2_CID_FM_RX_CLASS_BASE + 4)
  1156. #define V4L2_CID_RDS_RX_RADIO_TEXT (V4L2_CID_FM_RX_CLASS_BASE + 5)
  1157. #define V4L2_CID_RDS_RX_TRAFFIC_ANNOUNCEMENT (V4L2_CID_FM_RX_CLASS_BASE + 6)
  1158. #define V4L2_CID_RDS_RX_TRAFFIC_PROGRAM (V4L2_CID_FM_RX_CLASS_BASE + 7)
  1159. #define V4L2_CID_RDS_RX_MUSIC_SPEECH (V4L2_CID_FM_RX_CLASS_BASE + 8)
  1160. #define V4L2_CID_RF_TUNER_CLASS_BASE (V4L2_CTRL_CLASS_RF_TUNER | 0x900)
  1161. #define V4L2_CID_RF_TUNER_CLASS (V4L2_CTRL_CLASS_RF_TUNER | 1)
  1162. #define V4L2_CID_RF_TUNER_BANDWIDTH_AUTO (V4L2_CID_RF_TUNER_CLASS_BASE + 11)
  1163. #define V4L2_CID_RF_TUNER_BANDWIDTH (V4L2_CID_RF_TUNER_CLASS_BASE + 12)
  1164. #define V4L2_CID_RF_TUNER_RF_GAIN (V4L2_CID_RF_TUNER_CLASS_BASE + 32)
  1165. #define V4L2_CID_RF_TUNER_LNA_GAIN_AUTO (V4L2_CID_RF_TUNER_CLASS_BASE + 41)
  1166. #define V4L2_CID_RF_TUNER_LNA_GAIN (V4L2_CID_RF_TUNER_CLASS_BASE + 42)
  1167. #define V4L2_CID_RF_TUNER_MIXER_GAIN_AUTO (V4L2_CID_RF_TUNER_CLASS_BASE + 51)
  1168. #define V4L2_CID_RF_TUNER_MIXER_GAIN (V4L2_CID_RF_TUNER_CLASS_BASE + 52)
  1169. #define V4L2_CID_RF_TUNER_IF_GAIN_AUTO (V4L2_CID_RF_TUNER_CLASS_BASE + 61)
  1170. #define V4L2_CID_RF_TUNER_IF_GAIN (V4L2_CID_RF_TUNER_CLASS_BASE + 62)
  1171. #define V4L2_CID_RF_TUNER_PLL_LOCK (V4L2_CID_RF_TUNER_CLASS_BASE + 91)
  1172. /* Detection-class control IDs defined by V4L2 */
  1173. #define V4L2_CID_DETECT_CLASS_BASE (V4L2_CTRL_CLASS_DETECT | 0x900)
  1174. #define V4L2_CID_DETECT_CLASS (V4L2_CTRL_CLASS_DETECT | 1)
  1175. #define V4L2_CID_DETECT_MD_MODE (V4L2_CID_DETECT_CLASS_BASE + 1)
  1176. enum v4l2_detect_md_mode {
  1177. V4L2_DETECT_MD_MODE_DISABLED = 0,
  1178. V4L2_DETECT_MD_MODE_GLOBAL = 1,
  1179. V4L2_DETECT_MD_MODE_THRESHOLD_GRID = 2,
  1180. V4L2_DETECT_MD_MODE_REGION_GRID = 3,
  1181. };
  1182. #define V4L2_CID_DETECT_MD_GLOBAL_THRESHOLD (V4L2_CID_DETECT_CLASS_BASE + 2)
  1183. #define V4L2_CID_DETECT_MD_THRESHOLD_GRID (V4L2_CID_DETECT_CLASS_BASE + 3)
  1184. #define V4L2_CID_DETECT_MD_REGION_GRID (V4L2_CID_DETECT_CLASS_BASE + 4)
  1185. /* Stateless CODECs controls */
  1186. #define V4L2_CID_CODEC_STATELESS_BASE (V4L2_CTRL_CLASS_CODEC_STATELESS | 0x900)
  1187. #define V4L2_CID_CODEC_STATELESS_CLASS (V4L2_CTRL_CLASS_CODEC_STATELESS | 1)
  1188. #define V4L2_CID_STATELESS_H264_DECODE_MODE (V4L2_CID_CODEC_STATELESS_BASE + 0)
  1189. /**
  1190. * enum v4l2_stateless_h264_decode_mode - Decoding mode
  1191. *
  1192. * @V4L2_STATELESS_H264_DECODE_MODE_SLICE_BASED: indicates that decoding
  1193. * is performed one slice at a time. In this mode,
  1194. * V4L2_CID_STATELESS_H264_SLICE_PARAMS must contain the parsed slice
  1195. * parameters and the OUTPUT buffer must contain a single slice.
  1196. * V4L2_BUF_CAP_SUPPORTS_M2M_HOLD_CAPTURE_BUF feature is used
  1197. * in order to support multislice frames.
  1198. * @V4L2_STATELESS_H264_DECODE_MODE_FRAME_BASED: indicates that
  1199. * decoding is performed per frame. The OUTPUT buffer must contain
  1200. * all slices and also both fields. This mode is typically supported
  1201. * by device drivers that are able to parse the slice(s) header(s)
  1202. * in hardware. When this mode is selected,
  1203. * V4L2_CID_STATELESS_H264_SLICE_PARAMS is not used.
  1204. */
  1205. enum v4l2_stateless_h264_decode_mode {
  1206. V4L2_STATELESS_H264_DECODE_MODE_SLICE_BASED,
  1207. V4L2_STATELESS_H264_DECODE_MODE_FRAME_BASED,
  1208. };
  1209. #define V4L2_CID_STATELESS_H264_START_CODE (V4L2_CID_CODEC_STATELESS_BASE + 1)
  1210. /**
  1211. * enum v4l2_stateless_h264_start_code - Start code
  1212. *
  1213. * @V4L2_STATELESS_H264_START_CODE_NONE: slices are passed
  1214. * to the driver without any start code.
  1215. * @V4L2_STATELESS_H264_START_CODE_ANNEX_B: slices are passed
  1216. * to the driver with an Annex B start code prefix
  1217. * (legal start codes can be 3-bytes 0x000001 or 4-bytes 0x00000001).
  1218. * This mode is typically supported by device drivers that parse
  1219. * the start code in hardware.
  1220. */
  1221. enum v4l2_stateless_h264_start_code {
  1222. V4L2_STATELESS_H264_START_CODE_NONE,
  1223. V4L2_STATELESS_H264_START_CODE_ANNEX_B,
  1224. };
  1225. #define V4L2_H264_SPS_CONSTRAINT_SET0_FLAG 0x01
  1226. #define V4L2_H264_SPS_CONSTRAINT_SET1_FLAG 0x02
  1227. #define V4L2_H264_SPS_CONSTRAINT_SET2_FLAG 0x04
  1228. #define V4L2_H264_SPS_CONSTRAINT_SET3_FLAG 0x08
  1229. #define V4L2_H264_SPS_CONSTRAINT_SET4_FLAG 0x10
  1230. #define V4L2_H264_SPS_CONSTRAINT_SET5_FLAG 0x20
  1231. #define V4L2_H264_SPS_FLAG_SEPARATE_COLOUR_PLANE 0x01
  1232. #define V4L2_H264_SPS_FLAG_QPPRIME_Y_ZERO_TRANSFORM_BYPASS 0x02
  1233. #define V4L2_H264_SPS_FLAG_DELTA_PIC_ORDER_ALWAYS_ZERO 0x04
  1234. #define V4L2_H264_SPS_FLAG_GAPS_IN_FRAME_NUM_VALUE_ALLOWED 0x08
  1235. #define V4L2_H264_SPS_FLAG_FRAME_MBS_ONLY 0x10
  1236. #define V4L2_H264_SPS_FLAG_MB_ADAPTIVE_FRAME_FIELD 0x20
  1237. #define V4L2_H264_SPS_FLAG_DIRECT_8X8_INFERENCE 0x40
  1238. #define V4L2_H264_SPS_HAS_CHROMA_FORMAT(sps) \
  1239. ((sps)->profile_idc == 100 || (sps)->profile_idc == 110 || \
  1240. (sps)->profile_idc == 122 || (sps)->profile_idc == 244 || \
  1241. (sps)->profile_idc == 44 || (sps)->profile_idc == 83 || \
  1242. (sps)->profile_idc == 86 || (sps)->profile_idc == 118 || \
  1243. (sps)->profile_idc == 128 || (sps)->profile_idc == 138 || \
  1244. (sps)->profile_idc == 139 || (sps)->profile_idc == 134 || \
  1245. (sps)->profile_idc == 135)
  1246. #define V4L2_CID_STATELESS_H264_SPS (V4L2_CID_CODEC_STATELESS_BASE + 2)
  1247. /**
  1248. * struct v4l2_ctrl_h264_sps - H264 sequence parameter set
  1249. *
  1250. * All the members on this sequence parameter set structure match the
  1251. * sequence parameter set syntax as specified by the H264 specification.
  1252. *
  1253. * @profile_idc: see H264 specification.
  1254. * @constraint_set_flags: see H264 specification.
  1255. * @level_idc: see H264 specification.
  1256. * @seq_parameter_set_id: see H264 specification.
  1257. * @chroma_format_idc: see H264 specification.
  1258. * @bit_depth_luma_minus8: see H264 specification.
  1259. * @bit_depth_chroma_minus8: see H264 specification.
  1260. * @log2_max_frame_num_minus4: see H264 specification.
  1261. * @pic_order_cnt_type: see H264 specification.
  1262. * @log2_max_pic_order_cnt_lsb_minus4: see H264 specification.
  1263. * @max_num_ref_frames: see H264 specification.
  1264. * @num_ref_frames_in_pic_order_cnt_cycle: see H264 specification.
  1265. * @offset_for_ref_frame: see H264 specification.
  1266. * @offset_for_non_ref_pic: see H264 specification.
  1267. * @offset_for_top_to_bottom_field: see H264 specification.
  1268. * @pic_width_in_mbs_minus1: see H264 specification.
  1269. * @pic_height_in_map_units_minus1: see H264 specification.
  1270. * @flags: see V4L2_H264_SPS_FLAG_{}.
  1271. */
  1272. struct v4l2_ctrl_h264_sps {
  1273. __u8 profile_idc;
  1274. __u8 constraint_set_flags;
  1275. __u8 level_idc;
  1276. __u8 seq_parameter_set_id;
  1277. __u8 chroma_format_idc;
  1278. __u8 bit_depth_luma_minus8;
  1279. __u8 bit_depth_chroma_minus8;
  1280. __u8 log2_max_frame_num_minus4;
  1281. __u8 pic_order_cnt_type;
  1282. __u8 log2_max_pic_order_cnt_lsb_minus4;
  1283. __u8 max_num_ref_frames;
  1284. __u8 num_ref_frames_in_pic_order_cnt_cycle;
  1285. __s32 offset_for_ref_frame[255];
  1286. __s32 offset_for_non_ref_pic;
  1287. __s32 offset_for_top_to_bottom_field;
  1288. __u16 pic_width_in_mbs_minus1;
  1289. __u16 pic_height_in_map_units_minus1;
  1290. __u32 flags;
  1291. };
  1292. #define V4L2_H264_PPS_FLAG_ENTROPY_CODING_MODE 0x0001
  1293. #define V4L2_H264_PPS_FLAG_BOTTOM_FIELD_PIC_ORDER_IN_FRAME_PRESENT 0x0002
  1294. #define V4L2_H264_PPS_FLAG_WEIGHTED_PRED 0x0004
  1295. #define V4L2_H264_PPS_FLAG_DEBLOCKING_FILTER_CONTROL_PRESENT 0x0008
  1296. #define V4L2_H264_PPS_FLAG_CONSTRAINED_INTRA_PRED 0x0010
  1297. #define V4L2_H264_PPS_FLAG_REDUNDANT_PIC_CNT_PRESENT 0x0020
  1298. #define V4L2_H264_PPS_FLAG_TRANSFORM_8X8_MODE 0x0040
  1299. #define V4L2_H264_PPS_FLAG_SCALING_MATRIX_PRESENT 0x0080
  1300. #define V4L2_CID_STATELESS_H264_PPS (V4L2_CID_CODEC_STATELESS_BASE + 3)
  1301. /**
  1302. * struct v4l2_ctrl_h264_pps - H264 picture parameter set
  1303. *
  1304. * Except where noted, all the members on this picture parameter set
  1305. * structure match the picture parameter set syntax as specified
  1306. * by the H264 specification.
  1307. *
  1308. * In particular, V4L2_H264_PPS_FLAG_SCALING_MATRIX_PRESENT flag
  1309. * has a specific meaning. This flag should be set if a non-flat
  1310. * scaling matrix applies to the picture. In this case, applications
  1311. * are expected to use V4L2_CID_STATELESS_H264_SCALING_MATRIX,
  1312. * to pass the values of the non-flat matrices.
  1313. *
  1314. * @pic_parameter_set_id: see H264 specification.
  1315. * @seq_parameter_set_id: see H264 specification.
  1316. * @num_slice_groups_minus1: see H264 specification.
  1317. * @num_ref_idx_l0_default_active_minus1: see H264 specification.
  1318. * @num_ref_idx_l1_default_active_minus1: see H264 specification.
  1319. * @weighted_bipred_idc: see H264 specification.
  1320. * @pic_init_qp_minus26: see H264 specification.
  1321. * @pic_init_qs_minus26: see H264 specification.
  1322. * @chroma_qp_index_offset: see H264 specification.
  1323. * @second_chroma_qp_index_offset: see H264 specification.
  1324. * @flags: see V4L2_H264_PPS_FLAG_{}.
  1325. */
  1326. struct v4l2_ctrl_h264_pps {
  1327. __u8 pic_parameter_set_id;
  1328. __u8 seq_parameter_set_id;
  1329. __u8 num_slice_groups_minus1;
  1330. __u8 num_ref_idx_l0_default_active_minus1;
  1331. __u8 num_ref_idx_l1_default_active_minus1;
  1332. __u8 weighted_bipred_idc;
  1333. __s8 pic_init_qp_minus26;
  1334. __s8 pic_init_qs_minus26;
  1335. __s8 chroma_qp_index_offset;
  1336. __s8 second_chroma_qp_index_offset;
  1337. __u16 flags;
  1338. };
  1339. #define V4L2_CID_STATELESS_H264_SCALING_MATRIX (V4L2_CID_CODEC_STATELESS_BASE + 4)
  1340. /**
  1341. * struct v4l2_ctrl_h264_scaling_matrix - H264 scaling matrices
  1342. *
  1343. * @scaling_list_4x4: scaling matrix after applying the inverse
  1344. * scanning process. Expected list order is Intra Y, Intra Cb,
  1345. * Intra Cr, Inter Y, Inter Cb, Inter Cr. The values on each
  1346. * scaling list are expected in raster scan order.
  1347. * @scaling_list_8x8: scaling matrix after applying the inverse
  1348. * scanning process. Expected list order is Intra Y, Inter Y,
  1349. * Intra Cb, Inter Cb, Intra Cr, Inter Cr. The values on each
  1350. * scaling list are expected in raster scan order.
  1351. *
  1352. * Note that the list order is different for the 4x4 and 8x8
  1353. * matrices as per the H264 specification, see table 7-2 "Assignment
  1354. * of mnemonic names to scaling list indices and specification of
  1355. * fall-back rule".
  1356. */
  1357. struct v4l2_ctrl_h264_scaling_matrix {
  1358. __u8 scaling_list_4x4[6][16];
  1359. __u8 scaling_list_8x8[6][64];
  1360. };
  1361. struct v4l2_h264_weight_factors {
  1362. __s16 luma_weight[32];
  1363. __s16 luma_offset[32];
  1364. __s16 chroma_weight[32][2];
  1365. __s16 chroma_offset[32][2];
  1366. };
  1367. #define V4L2_H264_CTRL_PRED_WEIGHTS_REQUIRED(pps, slice) \
  1368. ((((pps)->flags & V4L2_H264_PPS_FLAG_WEIGHTED_PRED) && \
  1369. ((slice)->slice_type == V4L2_H264_SLICE_TYPE_P || \
  1370. (slice)->slice_type == V4L2_H264_SLICE_TYPE_SP)) || \
  1371. ((pps)->weighted_bipred_idc == 1 && \
  1372. (slice)->slice_type == V4L2_H264_SLICE_TYPE_B))
  1373. #define V4L2_CID_STATELESS_H264_PRED_WEIGHTS (V4L2_CID_CODEC_STATELESS_BASE + 5)
  1374. /**
  1375. * struct v4l2_ctrl_h264_pred_weights - Prediction weight table
  1376. *
  1377. * Prediction weight table, which matches the syntax specified
  1378. * by the H264 specification.
  1379. *
  1380. * @luma_log2_weight_denom: see H264 specification.
  1381. * @chroma_log2_weight_denom: see H264 specification.
  1382. * @weight_factors: luma and chroma weight factors.
  1383. */
  1384. struct v4l2_ctrl_h264_pred_weights {
  1385. __u16 luma_log2_weight_denom;
  1386. __u16 chroma_log2_weight_denom;
  1387. struct v4l2_h264_weight_factors weight_factors[2];
  1388. };
  1389. #define V4L2_H264_SLICE_TYPE_P 0
  1390. #define V4L2_H264_SLICE_TYPE_B 1
  1391. #define V4L2_H264_SLICE_TYPE_I 2
  1392. #define V4L2_H264_SLICE_TYPE_SP 3
  1393. #define V4L2_H264_SLICE_TYPE_SI 4
  1394. #define V4L2_H264_SLICE_FLAG_DIRECT_SPATIAL_MV_PRED 0x01
  1395. #define V4L2_H264_SLICE_FLAG_SP_FOR_SWITCH 0x02
  1396. #define V4L2_H264_TOP_FIELD_REF 0x1
  1397. #define V4L2_H264_BOTTOM_FIELD_REF 0x2
  1398. #define V4L2_H264_FRAME_REF 0x3
  1399. /**
  1400. * struct v4l2_h264_reference - H264 picture reference
  1401. *
  1402. * @fields: indicates how the picture is referenced.
  1403. * Valid values are V4L2_H264_{}_REF.
  1404. * @index: index into v4l2_ctrl_h264_decode_params.dpb[].
  1405. */
  1406. struct v4l2_h264_reference {
  1407. __u8 fields;
  1408. __u8 index;
  1409. };
  1410. /*
  1411. * Maximum DPB size, as specified by section 'A.3.1 Level limits
  1412. * common to the Baseline, Main, and Extended profiles'.
  1413. */
  1414. #define V4L2_H264_NUM_DPB_ENTRIES 16
  1415. #define V4L2_H264_REF_LIST_LEN (2 * V4L2_H264_NUM_DPB_ENTRIES)
  1416. #define V4L2_CID_STATELESS_H264_SLICE_PARAMS (V4L2_CID_CODEC_STATELESS_BASE + 6)
  1417. /**
  1418. * struct v4l2_ctrl_h264_slice_params - H264 slice parameters
  1419. *
  1420. * This structure holds the H264 syntax elements that are specified
  1421. * as non-invariant for the slices in a given frame.
  1422. *
  1423. * Slice invariant syntax elements are contained in struct
  1424. * v4l2_ctrl_h264_decode_params. This is done to reduce the API surface
  1425. * on frame-based decoders, where slice header parsing is done by the
  1426. * hardware.
  1427. *
  1428. * Slice invariant syntax elements are specified in specification section
  1429. * "7.4.3 Slice header semantics".
  1430. *
  1431. * Except where noted, the members on this struct match the slice header syntax.
  1432. *
  1433. * @header_bit_size: offset in bits to slice_data() from the beginning of this slice.
  1434. * @first_mb_in_slice: see H264 specification.
  1435. * @slice_type: see H264 specification.
  1436. * @colour_plane_id: see H264 specification.
  1437. * @redundant_pic_cnt: see H264 specification.
  1438. * @cabac_init_idc: see H264 specification.
  1439. * @slice_qp_delta: see H264 specification.
  1440. * @slice_qs_delta: see H264 specification.
  1441. * @disable_deblocking_filter_idc: see H264 specification.
  1442. * @slice_alpha_c0_offset_div2: see H264 specification.
  1443. * @slice_beta_offset_div2: see H264 specification.
  1444. * @num_ref_idx_l0_active_minus1: see H264 specification.
  1445. * @num_ref_idx_l1_active_minus1: see H264 specification.
  1446. * @reserved: padding field. Should be zeroed by applications.
  1447. * @ref_pic_list0: reference picture list 0 after applying the per-slice modifications.
  1448. * @ref_pic_list1: reference picture list 1 after applying the per-slice modifications.
  1449. * @flags: see V4L2_H264_SLICE_FLAG_{}.
  1450. */
  1451. struct v4l2_ctrl_h264_slice_params {
  1452. __u32 header_bit_size;
  1453. __u32 first_mb_in_slice;
  1454. __u8 slice_type;
  1455. __u8 colour_plane_id;
  1456. __u8 redundant_pic_cnt;
  1457. __u8 cabac_init_idc;
  1458. __s8 slice_qp_delta;
  1459. __s8 slice_qs_delta;
  1460. __u8 disable_deblocking_filter_idc;
  1461. __s8 slice_alpha_c0_offset_div2;
  1462. __s8 slice_beta_offset_div2;
  1463. __u8 num_ref_idx_l0_active_minus1;
  1464. __u8 num_ref_idx_l1_active_minus1;
  1465. __u8 reserved;
  1466. struct v4l2_h264_reference ref_pic_list0[V4L2_H264_REF_LIST_LEN];
  1467. struct v4l2_h264_reference ref_pic_list1[V4L2_H264_REF_LIST_LEN];
  1468. __u32 flags;
  1469. };
  1470. #define V4L2_H264_DPB_ENTRY_FLAG_VALID 0x01
  1471. #define V4L2_H264_DPB_ENTRY_FLAG_ACTIVE 0x02
  1472. #define V4L2_H264_DPB_ENTRY_FLAG_LONG_TERM 0x04
  1473. #define V4L2_H264_DPB_ENTRY_FLAG_FIELD 0x08
  1474. /**
  1475. * struct v4l2_h264_dpb_entry - H264 decoded picture buffer entry
  1476. *
  1477. * @reference_ts: timestamp of the V4L2 capture buffer to use as reference.
  1478. * The timestamp refers to the timestamp field in struct v4l2_buffer.
  1479. * Use v4l2_timeval_to_ns() to convert the struct timeval to a __u64.
  1480. * @pic_num: matches PicNum variable assigned during the reference
  1481. * picture lists construction process.
  1482. * @frame_num: frame identifier which matches frame_num syntax element.
  1483. * @fields: indicates how the DPB entry is referenced. Valid values are
  1484. * V4L2_H264_{}_REF.
  1485. * @reserved: padding field. Should be zeroed by applications.
  1486. * @top_field_order_cnt: matches TopFieldOrderCnt picture value.
  1487. * @bottom_field_order_cnt: matches BottomFieldOrderCnt picture value.
  1488. * Note that picture field is indicated by v4l2_buffer.field.
  1489. * @flags: see V4L2_H264_DPB_ENTRY_FLAG_{}.
  1490. */
  1491. struct v4l2_h264_dpb_entry {
  1492. __u64 reference_ts;
  1493. __u32 pic_num;
  1494. __u16 frame_num;
  1495. __u8 fields;
  1496. __u8 reserved[5];
  1497. __s32 top_field_order_cnt;
  1498. __s32 bottom_field_order_cnt;
  1499. __u32 flags;
  1500. };
  1501. #define V4L2_H264_DECODE_PARAM_FLAG_IDR_PIC 0x01
  1502. #define V4L2_H264_DECODE_PARAM_FLAG_FIELD_PIC 0x02
  1503. #define V4L2_H264_DECODE_PARAM_FLAG_BOTTOM_FIELD 0x04
  1504. #define V4L2_H264_DECODE_PARAM_FLAG_PFRAME 0x08
  1505. #define V4L2_H264_DECODE_PARAM_FLAG_BFRAME 0x10
  1506. #define V4L2_CID_STATELESS_H264_DECODE_PARAMS (V4L2_CID_CODEC_STATELESS_BASE + 7)
  1507. /**
  1508. * struct v4l2_ctrl_h264_decode_params - H264 decoding parameters
  1509. *
  1510. * @dpb: decoded picture buffer.
  1511. * @nal_ref_idc: slice header syntax element.
  1512. * @frame_num: slice header syntax element.
  1513. * @top_field_order_cnt: matches TopFieldOrderCnt picture value.
  1514. * @bottom_field_order_cnt: matches BottomFieldOrderCnt picture value.
  1515. * Note that picture field is indicated by v4l2_buffer.field.
  1516. * @idr_pic_id: slice header syntax element.
  1517. * @pic_order_cnt_lsb: slice header syntax element.
  1518. * @delta_pic_order_cnt_bottom: slice header syntax element.
  1519. * @delta_pic_order_cnt0: slice header syntax element.
  1520. * @delta_pic_order_cnt1: slice header syntax element.
  1521. * @dec_ref_pic_marking_bit_size: size in bits of dec_ref_pic_marking()
  1522. * syntax element.
  1523. * @pic_order_cnt_bit_size: size in bits of pic order count syntax.
  1524. * @slice_group_change_cycle: slice header syntax element.
  1525. * @reserved: padding field. Should be zeroed by applications.
  1526. * @flags: see V4L2_H264_DECODE_PARAM_FLAG_{}.
  1527. */
  1528. struct v4l2_ctrl_h264_decode_params {
  1529. struct v4l2_h264_dpb_entry dpb[V4L2_H264_NUM_DPB_ENTRIES];
  1530. __u16 nal_ref_idc;
  1531. __u16 frame_num;
  1532. __s32 top_field_order_cnt;
  1533. __s32 bottom_field_order_cnt;
  1534. __u16 idr_pic_id;
  1535. __u16 pic_order_cnt_lsb;
  1536. __s32 delta_pic_order_cnt_bottom;
  1537. __s32 delta_pic_order_cnt0;
  1538. __s32 delta_pic_order_cnt1;
  1539. __u32 dec_ref_pic_marking_bit_size;
  1540. __u32 pic_order_cnt_bit_size;
  1541. __u32 slice_group_change_cycle;
  1542. __u32 reserved;
  1543. __u32 flags;
  1544. };
  1545. /* Stateless FWHT control, used by the vicodec driver */
  1546. /* Current FWHT version */
  1547. #define V4L2_FWHT_VERSION 3
  1548. /* Set if this is an interlaced format */
  1549. #define V4L2_FWHT_FL_IS_INTERLACED _BITUL(0)
  1550. /* Set if this is a bottom-first (NTSC) interlaced format */
  1551. #define V4L2_FWHT_FL_IS_BOTTOM_FIRST _BITUL(1)
  1552. /* Set if each 'frame' contains just one field */
  1553. #define V4L2_FWHT_FL_IS_ALTERNATE _BITUL(2)
  1554. /*
  1555. * If V4L2_FWHT_FL_IS_ALTERNATE was set, then this is set if this
  1556. * 'frame' is the bottom field, else it is the top field.
  1557. */
  1558. #define V4L2_FWHT_FL_IS_BOTTOM_FIELD _BITUL(3)
  1559. /* Set if the Y' plane is uncompressed */
  1560. #define V4L2_FWHT_FL_LUMA_IS_UNCOMPRESSED _BITUL(4)
  1561. /* Set if the Cb plane is uncompressed */
  1562. #define V4L2_FWHT_FL_CB_IS_UNCOMPRESSED _BITUL(5)
  1563. /* Set if the Cr plane is uncompressed */
  1564. #define V4L2_FWHT_FL_CR_IS_UNCOMPRESSED _BITUL(6)
  1565. /* Set if the chroma plane is full height, if cleared it is half height */
  1566. #define V4L2_FWHT_FL_CHROMA_FULL_HEIGHT _BITUL(7)
  1567. /* Set if the chroma plane is full width, if cleared it is half width */
  1568. #define V4L2_FWHT_FL_CHROMA_FULL_WIDTH _BITUL(8)
  1569. /* Set if the alpha plane is uncompressed */
  1570. #define V4L2_FWHT_FL_ALPHA_IS_UNCOMPRESSED _BITUL(9)
  1571. /* Set if this is an I Frame */
  1572. #define V4L2_FWHT_FL_I_FRAME _BITUL(10)
  1573. /* A 4-values flag - the number of components - 1 */
  1574. #define V4L2_FWHT_FL_COMPONENTS_NUM_MSK GENMASK(18, 16)
  1575. #define V4L2_FWHT_FL_COMPONENTS_NUM_OFFSET 16
  1576. /* A 4-values flag - the pixel encoding type */
  1577. #define V4L2_FWHT_FL_PIXENC_MSK GENMASK(20, 19)
  1578. #define V4L2_FWHT_FL_PIXENC_OFFSET 19
  1579. #define V4L2_FWHT_FL_PIXENC_YUV (1 << V4L2_FWHT_FL_PIXENC_OFFSET)
  1580. #define V4L2_FWHT_FL_PIXENC_RGB (2 << V4L2_FWHT_FL_PIXENC_OFFSET)
  1581. #define V4L2_FWHT_FL_PIXENC_HSV (3 << V4L2_FWHT_FL_PIXENC_OFFSET)
  1582. #define V4L2_CID_STATELESS_FWHT_PARAMS (V4L2_CID_CODEC_STATELESS_BASE + 100)
  1583. /**
  1584. * struct v4l2_ctrl_fwht_params - FWHT parameters
  1585. *
  1586. * @backward_ref_ts: timestamp of the V4L2 capture buffer to use as reference.
  1587. * The timestamp refers to the timestamp field in struct v4l2_buffer.
  1588. * Use v4l2_timeval_to_ns() to convert the struct timeval to a __u64.
  1589. * @version: must be V4L2_FWHT_VERSION.
  1590. * @width: width of frame.
  1591. * @height: height of frame.
  1592. * @flags: FWHT flags (see V4L2_FWHT_FL_*).
  1593. * @colorspace: the colorspace (enum v4l2_colorspace).
  1594. * @xfer_func: the transfer function (enum v4l2_xfer_func).
  1595. * @ycbcr_enc: the Y'CbCr encoding (enum v4l2_ycbcr_encoding).
  1596. * @quantization: the quantization (enum v4l2_quantization).
  1597. */
  1598. struct v4l2_ctrl_fwht_params {
  1599. __u64 backward_ref_ts;
  1600. __u32 version;
  1601. __u32 width;
  1602. __u32 height;
  1603. __u32 flags;
  1604. __u32 colorspace;
  1605. __u32 xfer_func;
  1606. __u32 ycbcr_enc;
  1607. __u32 quantization;
  1608. };
  1609. /* Stateless VP8 control */
  1610. #define V4L2_VP8_SEGMENT_FLAG_ENABLED 0x01
  1611. #define V4L2_VP8_SEGMENT_FLAG_UPDATE_MAP 0x02
  1612. #define V4L2_VP8_SEGMENT_FLAG_UPDATE_FEATURE_DATA 0x04
  1613. #define V4L2_VP8_SEGMENT_FLAG_DELTA_VALUE_MODE 0x08
  1614. /**
  1615. * struct v4l2_vp8_segment - VP8 segment-based adjustments parameters
  1616. *
  1617. * @quant_update: update values for the segment quantizer.
  1618. * @lf_update: update values for the loop filter level.
  1619. * @segment_probs: branch probabilities of the segment_id decoding tree.
  1620. * @padding: padding field. Should be zeroed by applications.
  1621. * @flags: see V4L2_VP8_SEGMENT_FLAG_{}.
  1622. *
  1623. * This structure contains segment-based adjustments related parameters.
  1624. * See the 'update_segmentation()' part of the frame header syntax,
  1625. * and section '9.3. Segment-Based Adjustments' of the VP8 specification
  1626. * for more details.
  1627. */
  1628. struct v4l2_vp8_segment {
  1629. __s8 quant_update[4];
  1630. __s8 lf_update[4];
  1631. __u8 segment_probs[3];
  1632. __u8 padding;
  1633. __u32 flags;
  1634. };
  1635. #define V4L2_VP8_LF_ADJ_ENABLE 0x01
  1636. #define V4L2_VP8_LF_DELTA_UPDATE 0x02
  1637. #define V4L2_VP8_LF_FILTER_TYPE_SIMPLE 0x04
  1638. /**
  1639. * struct v4l2_vp8_loop_filter - VP8 loop filter parameters
  1640. *
  1641. * @ref_frm_delta: Reference frame signed delta values.
  1642. * @mb_mode_delta: MB prediction mode signed delta values.
  1643. * @sharpness_level: matches sharpness_level syntax element.
  1644. * @level: matches loop_filter_level syntax element.
  1645. * @padding: padding field. Should be zeroed by applications.
  1646. * @flags: see V4L2_VP8_LF_{}.
  1647. *
  1648. * This structure contains loop filter related parameters.
  1649. * See the 'mb_lf_adjustments()' part of the frame header syntax,
  1650. * and section '9.4. Loop Filter Type and Levels' of the VP8 specification
  1651. * for more details.
  1652. */
  1653. struct v4l2_vp8_loop_filter {
  1654. __s8 ref_frm_delta[4];
  1655. __s8 mb_mode_delta[4];
  1656. __u8 sharpness_level;
  1657. __u8 level;
  1658. __u16 padding;
  1659. __u32 flags;
  1660. };
  1661. /**
  1662. * struct v4l2_vp8_quantization - VP8 quantizattion indices
  1663. *
  1664. * @y_ac_qi: luma AC coefficient table index.
  1665. * @y_dc_delta: luma DC delta vaue.
  1666. * @y2_dc_delta: y2 block DC delta value.
  1667. * @y2_ac_delta: y2 block AC delta value.
  1668. * @uv_dc_delta: chroma DC delta value.
  1669. * @uv_ac_delta: chroma AC delta value.
  1670. * @padding: padding field. Should be zeroed by applications.
  1671. *
  1672. * This structure contains the quantization indices present
  1673. * in 'quant_indices()' part of the frame header syntax.
  1674. * See section '9.6. Dequantization Indices' of the VP8 specification
  1675. * for more details.
  1676. */
  1677. struct v4l2_vp8_quantization {
  1678. __u8 y_ac_qi;
  1679. __s8 y_dc_delta;
  1680. __s8 y2_dc_delta;
  1681. __s8 y2_ac_delta;
  1682. __s8 uv_dc_delta;
  1683. __s8 uv_ac_delta;
  1684. __u16 padding;
  1685. };
  1686. #define V4L2_VP8_COEFF_PROB_CNT 11
  1687. #define V4L2_VP8_MV_PROB_CNT 19
  1688. /**
  1689. * struct v4l2_vp8_entropy - VP8 update probabilities
  1690. *
  1691. * @coeff_probs: coefficient probability update values.
  1692. * @y_mode_probs: luma intra-prediction probabilities.
  1693. * @uv_mode_probs: chroma intra-prediction probabilities.
  1694. * @mv_probs: mv decoding probability.
  1695. * @padding: padding field. Should be zeroed by applications.
  1696. *
  1697. * This structure contains the update probabilities present in
  1698. * 'token_prob_update()' and 'mv_prob_update()' part of the frame header.
  1699. * See section '17.2. Probability Updates' of the VP8 specification
  1700. * for more details.
  1701. */
  1702. struct v4l2_vp8_entropy {
  1703. __u8 coeff_probs[4][8][3][V4L2_VP8_COEFF_PROB_CNT];
  1704. __u8 y_mode_probs[4];
  1705. __u8 uv_mode_probs[3];
  1706. __u8 mv_probs[2][V4L2_VP8_MV_PROB_CNT];
  1707. __u8 padding[3];
  1708. };
  1709. /**
  1710. * struct v4l2_vp8_entropy_coder_state - VP8 boolean coder state
  1711. *
  1712. * @range: coder state value for "Range"
  1713. * @value: coder state value for "Value"
  1714. * @bit_count: number of bits left in range "Value".
  1715. * @padding: padding field. Should be zeroed by applications.
  1716. *
  1717. * This structure contains the state for the boolean coder, as
  1718. * explained in section '7. Boolean Entropy Decoder' of the VP8 specification.
  1719. */
  1720. struct v4l2_vp8_entropy_coder_state {
  1721. __u8 range;
  1722. __u8 value;
  1723. __u8 bit_count;
  1724. __u8 padding;
  1725. };
  1726. #define V4L2_VP8_FRAME_FLAG_KEY_FRAME 0x01
  1727. #define V4L2_VP8_FRAME_FLAG_EXPERIMENTAL 0x02
  1728. #define V4L2_VP8_FRAME_FLAG_SHOW_FRAME 0x04
  1729. #define V4L2_VP8_FRAME_FLAG_MB_NO_SKIP_COEFF 0x08
  1730. #define V4L2_VP8_FRAME_FLAG_SIGN_BIAS_GOLDEN 0x10
  1731. #define V4L2_VP8_FRAME_FLAG_SIGN_BIAS_ALT 0x20
  1732. #define V4L2_VP8_FRAME_IS_KEY_FRAME(hdr) \
  1733. (!!((hdr)->flags & V4L2_VP8_FRAME_FLAG_KEY_FRAME))
  1734. #define V4L2_CID_STATELESS_VP8_FRAME (V4L2_CID_CODEC_STATELESS_BASE + 200)
  1735. /**
  1736. * struct v4l2_ctrl_vp8_frame - VP8 frame parameters
  1737. *
  1738. * @segment: segmentation parameters. See &v4l2_vp8_segment for more details
  1739. * @lf: loop filter parameters. See &v4l2_vp8_loop_filter for more details
  1740. * @quant: quantization parameters. See &v4l2_vp8_quantization for more details
  1741. * @entropy: update probabilities. See &v4l2_vp8_entropy for more details
  1742. * @coder_state: boolean coder state. See &v4l2_vp8_entropy_coder_state for more details
  1743. * @width: frame width.
  1744. * @height: frame height.
  1745. * @horizontal_scale: horizontal scaling factor.
  1746. * @vertical_scale: vertical scaling factor.
  1747. * @version: bitstream version.
  1748. * @prob_skip_false: frame header syntax element.
  1749. * @prob_intra: frame header syntax element.
  1750. * @prob_last: frame header syntax element.
  1751. * @prob_gf: frame header syntax element.
  1752. * @num_dct_parts: number of DCT coefficients partitions.
  1753. * @first_part_size: size of the first partition, i.e. the control partition.
  1754. * @first_part_header_bits: size in bits of the first partition header portion.
  1755. * @dct_part_sizes: DCT coefficients sizes.
  1756. * @last_frame_ts: "last" reference buffer timestamp.
  1757. * The timestamp refers to the timestamp field in struct v4l2_buffer.
  1758. * Use v4l2_timeval_to_ns() to convert the struct timeval to a __u64.
  1759. * @golden_frame_ts: "golden" reference buffer timestamp.
  1760. * @alt_frame_ts: "alt" reference buffer timestamp.
  1761. * @flags: see V4L2_VP8_FRAME_FLAG_{}.
  1762. */
  1763. struct v4l2_ctrl_vp8_frame {
  1764. struct v4l2_vp8_segment segment;
  1765. struct v4l2_vp8_loop_filter lf;
  1766. struct v4l2_vp8_quantization quant;
  1767. struct v4l2_vp8_entropy entropy;
  1768. struct v4l2_vp8_entropy_coder_state coder_state;
  1769. __u16 width;
  1770. __u16 height;
  1771. __u8 horizontal_scale;
  1772. __u8 vertical_scale;
  1773. __u8 version;
  1774. __u8 prob_skip_false;
  1775. __u8 prob_intra;
  1776. __u8 prob_last;
  1777. __u8 prob_gf;
  1778. __u8 num_dct_parts;
  1779. __u32 first_part_size;
  1780. __u32 first_part_header_bits;
  1781. __u32 dct_part_sizes[8];
  1782. __u64 last_frame_ts;
  1783. __u64 golden_frame_ts;
  1784. __u64 alt_frame_ts;
  1785. __u64 flags;
  1786. };
  1787. /* Stateless MPEG-2 controls */
  1788. #define V4L2_MPEG2_SEQ_FLAG_PROGRESSIVE 0x01
  1789. #define V4L2_CID_STATELESS_MPEG2_SEQUENCE (V4L2_CID_CODEC_STATELESS_BASE+220)
  1790. /**
  1791. * struct v4l2_ctrl_mpeg2_sequence - MPEG-2 sequence header
  1792. *
  1793. * All the members on this structure match the sequence header and sequence
  1794. * extension syntaxes as specified by the MPEG-2 specification.
  1795. *
  1796. * Fields horizontal_size, vertical_size and vbv_buffer_size are a
  1797. * combination of respective _value and extension syntax elements,
  1798. * as described in section 6.3.3 "Sequence header".
  1799. *
  1800. * @horizontal_size: combination of elements horizontal_size_value and
  1801. * horizontal_size_extension.
  1802. * @vertical_size: combination of elements vertical_size_value and
  1803. * vertical_size_extension.
  1804. * @vbv_buffer_size: combination of elements vbv_buffer_size_value and
  1805. * vbv_buffer_size_extension.
  1806. * @profile_and_level_indication: see MPEG-2 specification.
  1807. * @chroma_format: see MPEG-2 specification.
  1808. * @flags: see V4L2_MPEG2_SEQ_FLAG_{}.
  1809. */
  1810. struct v4l2_ctrl_mpeg2_sequence {
  1811. __u16 horizontal_size;
  1812. __u16 vertical_size;
  1813. __u32 vbv_buffer_size;
  1814. __u16 profile_and_level_indication;
  1815. __u8 chroma_format;
  1816. __u8 flags;
  1817. };
  1818. #define V4L2_MPEG2_PIC_CODING_TYPE_I 1
  1819. #define V4L2_MPEG2_PIC_CODING_TYPE_P 2
  1820. #define V4L2_MPEG2_PIC_CODING_TYPE_B 3
  1821. #define V4L2_MPEG2_PIC_CODING_TYPE_D 4
  1822. #define V4L2_MPEG2_PIC_TOP_FIELD 0x1
  1823. #define V4L2_MPEG2_PIC_BOTTOM_FIELD 0x2
  1824. #define V4L2_MPEG2_PIC_FRAME 0x3
  1825. #define V4L2_MPEG2_PIC_FLAG_TOP_FIELD_FIRST 0x0001
  1826. #define V4L2_MPEG2_PIC_FLAG_FRAME_PRED_DCT 0x0002
  1827. #define V4L2_MPEG2_PIC_FLAG_CONCEALMENT_MV 0x0004
  1828. #define V4L2_MPEG2_PIC_FLAG_Q_SCALE_TYPE 0x0008
  1829. #define V4L2_MPEG2_PIC_FLAG_INTRA_VLC 0x0010
  1830. #define V4L2_MPEG2_PIC_FLAG_ALT_SCAN 0x0020
  1831. #define V4L2_MPEG2_PIC_FLAG_REPEAT_FIRST 0x0040
  1832. #define V4L2_MPEG2_PIC_FLAG_PROGRESSIVE 0x0080
  1833. #define V4L2_CID_STATELESS_MPEG2_PICTURE (V4L2_CID_CODEC_STATELESS_BASE+221)
  1834. /**
  1835. * struct v4l2_ctrl_mpeg2_picture - MPEG-2 picture header
  1836. *
  1837. * All the members on this structure match the picture header and picture
  1838. * coding extension syntaxes as specified by the MPEG-2 specification.
  1839. *
  1840. * @backward_ref_ts: timestamp of the V4L2 capture buffer to use as
  1841. * reference for backward prediction.
  1842. * @forward_ref_ts: timestamp of the V4L2 capture buffer to use as
  1843. * reference for forward prediction. These timestamp refers to the
  1844. * timestamp field in struct v4l2_buffer. Use v4l2_timeval_to_ns()
  1845. * to convert the struct timeval to a __u64.
  1846. * @flags: see V4L2_MPEG2_PIC_FLAG_{}.
  1847. * @f_code: see MPEG-2 specification.
  1848. * @picture_coding_type: see MPEG-2 specification.
  1849. * @picture_structure: see V4L2_MPEG2_PIC_{}_FIELD.
  1850. * @intra_dc_precision: see MPEG-2 specification.
  1851. * @reserved: padding field. Should be zeroed by applications.
  1852. */
  1853. struct v4l2_ctrl_mpeg2_picture {
  1854. __u64 backward_ref_ts;
  1855. __u64 forward_ref_ts;
  1856. __u32 flags;
  1857. __u8 f_code[2][2];
  1858. __u8 picture_coding_type;
  1859. __u8 picture_structure;
  1860. __u8 intra_dc_precision;
  1861. __u8 reserved[5];
  1862. };
  1863. #define V4L2_CID_STATELESS_MPEG2_QUANTISATION (V4L2_CID_CODEC_STATELESS_BASE+222)
  1864. /**
  1865. * struct v4l2_ctrl_mpeg2_quantisation - MPEG-2 quantisation
  1866. *
  1867. * Quantisation matrices as specified by section 6.3.7
  1868. * "Quant matrix extension".
  1869. *
  1870. * @intra_quantiser_matrix: The quantisation matrix coefficients
  1871. * for intra-coded frames, in zigzag scanning order. It is relevant
  1872. * for both luma and chroma components, although it can be superseded
  1873. * by the chroma-specific matrix for non-4:2:0 YUV formats.
  1874. * @non_intra_quantiser_matrix: The quantisation matrix coefficients
  1875. * for non-intra-coded frames, in zigzag scanning order. It is relevant
  1876. * for both luma and chroma components, although it can be superseded
  1877. * by the chroma-specific matrix for non-4:2:0 YUV formats.
  1878. * @chroma_intra_quantiser_matrix: The quantisation matrix coefficients
  1879. * for the chominance component of intra-coded frames, in zigzag scanning
  1880. * order. Only relevant for 4:2:2 and 4:4:4 YUV formats.
  1881. * @chroma_non_intra_quantiser_matrix: The quantisation matrix coefficients
  1882. * for the chrominance component of non-intra-coded frames, in zigzag scanning
  1883. * order. Only relevant for 4:2:2 and 4:4:4 YUV formats.
  1884. */
  1885. struct v4l2_ctrl_mpeg2_quantisation {
  1886. __u8 intra_quantiser_matrix[64];
  1887. __u8 non_intra_quantiser_matrix[64];
  1888. __u8 chroma_intra_quantiser_matrix[64];
  1889. __u8 chroma_non_intra_quantiser_matrix[64];
  1890. };
  1891. #define V4L2_CID_STATELESS_HEVC_SPS (V4L2_CID_CODEC_STATELESS_BASE + 400)
  1892. #define V4L2_CID_STATELESS_HEVC_PPS (V4L2_CID_CODEC_STATELESS_BASE + 401)
  1893. #define V4L2_CID_STATELESS_HEVC_SLICE_PARAMS (V4L2_CID_CODEC_STATELESS_BASE + 402)
  1894. #define V4L2_CID_STATELESS_HEVC_SCALING_MATRIX (V4L2_CID_CODEC_STATELESS_BASE + 403)
  1895. #define V4L2_CID_STATELESS_HEVC_DECODE_PARAMS (V4L2_CID_CODEC_STATELESS_BASE + 404)
  1896. #define V4L2_CID_STATELESS_HEVC_DECODE_MODE (V4L2_CID_CODEC_STATELESS_BASE + 405)
  1897. #define V4L2_CID_STATELESS_HEVC_START_CODE (V4L2_CID_CODEC_STATELESS_BASE + 406)
  1898. #define V4L2_CID_STATELESS_HEVC_ENTRY_POINT_OFFSETS (V4L2_CID_CODEC_STATELESS_BASE + 407)
  1899. enum v4l2_stateless_hevc_decode_mode {
  1900. V4L2_STATELESS_HEVC_DECODE_MODE_SLICE_BASED,
  1901. V4L2_STATELESS_HEVC_DECODE_MODE_FRAME_BASED,
  1902. };
  1903. enum v4l2_stateless_hevc_start_code {
  1904. V4L2_STATELESS_HEVC_START_CODE_NONE,
  1905. V4L2_STATELESS_HEVC_START_CODE_ANNEX_B,
  1906. };
  1907. #define V4L2_HEVC_SLICE_TYPE_B 0
  1908. #define V4L2_HEVC_SLICE_TYPE_P 1
  1909. #define V4L2_HEVC_SLICE_TYPE_I 2
  1910. #define V4L2_HEVC_SPS_FLAG_SEPARATE_COLOUR_PLANE (1ULL << 0)
  1911. #define V4L2_HEVC_SPS_FLAG_SCALING_LIST_ENABLED (1ULL << 1)
  1912. #define V4L2_HEVC_SPS_FLAG_AMP_ENABLED (1ULL << 2)
  1913. #define V4L2_HEVC_SPS_FLAG_SAMPLE_ADAPTIVE_OFFSET (1ULL << 3)
  1914. #define V4L2_HEVC_SPS_FLAG_PCM_ENABLED (1ULL << 4)
  1915. #define V4L2_HEVC_SPS_FLAG_PCM_LOOP_FILTER_DISABLED (1ULL << 5)
  1916. #define V4L2_HEVC_SPS_FLAG_LONG_TERM_REF_PICS_PRESENT (1ULL << 6)
  1917. #define V4L2_HEVC_SPS_FLAG_SPS_TEMPORAL_MVP_ENABLED (1ULL << 7)
  1918. #define V4L2_HEVC_SPS_FLAG_STRONG_INTRA_SMOOTHING_ENABLED (1ULL << 8)
  1919. /**
  1920. * struct v4l2_ctrl_hevc_sps - ITU-T Rec. H.265: Sequence parameter set
  1921. *
  1922. * @video_parameter_set_id: specifies the value of the
  1923. * vps_video_parameter_set_id of the active VPS
  1924. * @seq_parameter_set_id: provides an identifier for the SPS for
  1925. * reference by other syntax elements
  1926. * @pic_width_in_luma_samples: specifies the width of each decoded picture
  1927. * in units of luma samples
  1928. * @pic_height_in_luma_samples: specifies the height of each decoded picture
  1929. * in units of luma samples
  1930. * @bit_depth_luma_minus8: this value plus 8specifies the bit depth of the
  1931. * samples of the luma array
  1932. * @bit_depth_chroma_minus8: this value plus 8 specifies the bit depth of the
  1933. * samples of the chroma arrays
  1934. * @log2_max_pic_order_cnt_lsb_minus4: this value plus 4 specifies the value of
  1935. * the variable MaxPicOrderCntLsb
  1936. * @sps_max_dec_pic_buffering_minus1: this value plus 1 specifies the maximum
  1937. * required size of the decoded picture
  1938. * buffer for the codec video sequence
  1939. * @sps_max_num_reorder_pics: indicates the maximum allowed number of pictures
  1940. * @sps_max_latency_increase_plus1: not equal to 0 is used to compute the
  1941. * value of SpsMaxLatencyPictures array
  1942. * @log2_min_luma_coding_block_size_minus3: plus 3 specifies the minimum
  1943. * luma coding block size
  1944. * @log2_diff_max_min_luma_coding_block_size: specifies the difference between
  1945. * the maximum and minimum luma
  1946. * coding block size
  1947. * @log2_min_luma_transform_block_size_minus2: plus 2 specifies the minimum luma
  1948. * transform block size
  1949. * @log2_diff_max_min_luma_transform_block_size: specifies the difference between
  1950. * the maximum and minimum luma
  1951. * transform block size
  1952. * @max_transform_hierarchy_depth_inter: specifies the maximum hierarchy
  1953. * depth for transform units of
  1954. * coding units coded in inter
  1955. * prediction mode
  1956. * @max_transform_hierarchy_depth_intra: specifies the maximum hierarchy
  1957. * depth for transform units of
  1958. * coding units coded in intra
  1959. * prediction mode
  1960. * @pcm_sample_bit_depth_luma_minus1: this value plus 1 specifies the number of
  1961. * bits used to represent each of PCM sample
  1962. * values of the luma component
  1963. * @pcm_sample_bit_depth_chroma_minus1: this value plus 1 specifies the number
  1964. * of bits used to represent each of PCM
  1965. * sample values of the chroma components
  1966. * @log2_min_pcm_luma_coding_block_size_minus3: this value plus 3 specifies the
  1967. * minimum size of coding blocks
  1968. * @log2_diff_max_min_pcm_luma_coding_block_size: specifies the difference between
  1969. * the maximum and minimum size of
  1970. * coding blocks
  1971. * @num_short_term_ref_pic_sets: specifies the number of st_ref_pic_set()
  1972. * syntax structures included in the SPS
  1973. * @num_long_term_ref_pics_sps: specifies the number of candidate long-term
  1974. * reference pictures that are specified in the SPS
  1975. * @chroma_format_idc: specifies the chroma sampling
  1976. * @sps_max_sub_layers_minus1: this value plus 1 specifies the maximum number
  1977. * of temporal sub-layers
  1978. * @reserved: padding field. Should be zeroed by applications.
  1979. * @flags: see V4L2_HEVC_SPS_FLAG_{}
  1980. */
  1981. struct v4l2_ctrl_hevc_sps {
  1982. __u8 video_parameter_set_id;
  1983. __u8 seq_parameter_set_id;
  1984. __u16 pic_width_in_luma_samples;
  1985. __u16 pic_height_in_luma_samples;
  1986. __u8 bit_depth_luma_minus8;
  1987. __u8 bit_depth_chroma_minus8;
  1988. __u8 log2_max_pic_order_cnt_lsb_minus4;
  1989. __u8 sps_max_dec_pic_buffering_minus1;
  1990. __u8 sps_max_num_reorder_pics;
  1991. __u8 sps_max_latency_increase_plus1;
  1992. __u8 log2_min_luma_coding_block_size_minus3;
  1993. __u8 log2_diff_max_min_luma_coding_block_size;
  1994. __u8 log2_min_luma_transform_block_size_minus2;
  1995. __u8 log2_diff_max_min_luma_transform_block_size;
  1996. __u8 max_transform_hierarchy_depth_inter;
  1997. __u8 max_transform_hierarchy_depth_intra;
  1998. __u8 pcm_sample_bit_depth_luma_minus1;
  1999. __u8 pcm_sample_bit_depth_chroma_minus1;
  2000. __u8 log2_min_pcm_luma_coding_block_size_minus3;
  2001. __u8 log2_diff_max_min_pcm_luma_coding_block_size;
  2002. __u8 num_short_term_ref_pic_sets;
  2003. __u8 num_long_term_ref_pics_sps;
  2004. __u8 chroma_format_idc;
  2005. __u8 sps_max_sub_layers_minus1;
  2006. __u8 reserved[6];
  2007. __u64 flags;
  2008. };
  2009. #define V4L2_HEVC_PPS_FLAG_DEPENDENT_SLICE_SEGMENT_ENABLED (1ULL << 0)
  2010. #define V4L2_HEVC_PPS_FLAG_OUTPUT_FLAG_PRESENT (1ULL << 1)
  2011. #define V4L2_HEVC_PPS_FLAG_SIGN_DATA_HIDING_ENABLED (1ULL << 2)
  2012. #define V4L2_HEVC_PPS_FLAG_CABAC_INIT_PRESENT (1ULL << 3)
  2013. #define V4L2_HEVC_PPS_FLAG_CONSTRAINED_INTRA_PRED (1ULL << 4)
  2014. #define V4L2_HEVC_PPS_FLAG_TRANSFORM_SKIP_ENABLED (1ULL << 5)
  2015. #define V4L2_HEVC_PPS_FLAG_CU_QP_DELTA_ENABLED (1ULL << 6)
  2016. #define V4L2_HEVC_PPS_FLAG_PPS_SLICE_CHROMA_QP_OFFSETS_PRESENT (1ULL << 7)
  2017. #define V4L2_HEVC_PPS_FLAG_WEIGHTED_PRED (1ULL << 8)
  2018. #define V4L2_HEVC_PPS_FLAG_WEIGHTED_BIPRED (1ULL << 9)
  2019. #define V4L2_HEVC_PPS_FLAG_TRANSQUANT_BYPASS_ENABLED (1ULL << 10)
  2020. #define V4L2_HEVC_PPS_FLAG_TILES_ENABLED (1ULL << 11)
  2021. #define V4L2_HEVC_PPS_FLAG_ENTROPY_CODING_SYNC_ENABLED (1ULL << 12)
  2022. #define V4L2_HEVC_PPS_FLAG_LOOP_FILTER_ACROSS_TILES_ENABLED (1ULL << 13)
  2023. #define V4L2_HEVC_PPS_FLAG_PPS_LOOP_FILTER_ACROSS_SLICES_ENABLED (1ULL << 14)
  2024. #define V4L2_HEVC_PPS_FLAG_DEBLOCKING_FILTER_OVERRIDE_ENABLED (1ULL << 15)
  2025. #define V4L2_HEVC_PPS_FLAG_PPS_DISABLE_DEBLOCKING_FILTER (1ULL << 16)
  2026. #define V4L2_HEVC_PPS_FLAG_LISTS_MODIFICATION_PRESENT (1ULL << 17)
  2027. #define V4L2_HEVC_PPS_FLAG_SLICE_SEGMENT_HEADER_EXTENSION_PRESENT (1ULL << 18)
  2028. #define V4L2_HEVC_PPS_FLAG_DEBLOCKING_FILTER_CONTROL_PRESENT (1ULL << 19)
  2029. #define V4L2_HEVC_PPS_FLAG_UNIFORM_SPACING (1ULL << 20)
  2030. /**
  2031. * struct v4l2_ctrl_hevc_pps - ITU-T Rec. H.265: Picture parameter set
  2032. *
  2033. * @pic_parameter_set_id: identifies the PPS for reference by other
  2034. * syntax elements
  2035. * @num_extra_slice_header_bits: specifies the number of extra slice header
  2036. * bits that are present in the slice header RBSP
  2037. * for coded pictures referring to the PPS.
  2038. * @num_ref_idx_l0_default_active_minus1: this value plus 1 specifies the
  2039. * inferred value of num_ref_idx_l0_active_minus1
  2040. * @num_ref_idx_l1_default_active_minus1: this value plus 1 specifies the
  2041. * inferred value of num_ref_idx_l1_active_minus1
  2042. * @init_qp_minus26: this value plus 26 specifies the initial value of SliceQp Y for
  2043. * each slice referring to the PPS
  2044. * @diff_cu_qp_delta_depth: specifies the difference between the luma coding
  2045. * tree block size and the minimum luma coding block
  2046. * size of coding units that convey cu_qp_delta_abs
  2047. * and cu_qp_delta_sign_flag
  2048. * @pps_cb_qp_offset: specify the offsets to the luma quantization parameter Cb
  2049. * @pps_cr_qp_offset: specify the offsets to the luma quantization parameter Cr
  2050. * @num_tile_columns_minus1: this value plus 1 specifies the number of tile columns
  2051. * partitioning the picture
  2052. * @num_tile_rows_minus1: this value plus 1 specifies the number of tile rows partitioning
  2053. * the picture
  2054. * @column_width_minus1: this value plus 1 specifies the width of the each tile column in
  2055. * units of coding tree blocks
  2056. * @row_height_minus1: this value plus 1 specifies the height of the each tile row in
  2057. * units of coding tree blocks
  2058. * @pps_beta_offset_div2: specify the default deblocking parameter offsets for
  2059. * beta divided by 2
  2060. * @pps_tc_offset_div2: specify the default deblocking parameter offsets for tC
  2061. * divided by 2
  2062. * @log2_parallel_merge_level_minus2: this value plus 2 specifies the value of
  2063. * the variable Log2ParMrgLevel
  2064. * @reserved: padding field. Should be zeroed by applications.
  2065. * @flags: see V4L2_HEVC_PPS_FLAG_{}
  2066. */
  2067. struct v4l2_ctrl_hevc_pps {
  2068. __u8 pic_parameter_set_id;
  2069. __u8 num_extra_slice_header_bits;
  2070. __u8 num_ref_idx_l0_default_active_minus1;
  2071. __u8 num_ref_idx_l1_default_active_minus1;
  2072. __s8 init_qp_minus26;
  2073. __u8 diff_cu_qp_delta_depth;
  2074. __s8 pps_cb_qp_offset;
  2075. __s8 pps_cr_qp_offset;
  2076. __u8 num_tile_columns_minus1;
  2077. __u8 num_tile_rows_minus1;
  2078. __u8 column_width_minus1[20];
  2079. __u8 row_height_minus1[22];
  2080. __s8 pps_beta_offset_div2;
  2081. __s8 pps_tc_offset_div2;
  2082. __u8 log2_parallel_merge_level_minus2;
  2083. __u8 reserved;
  2084. __u64 flags;
  2085. };
  2086. #define V4L2_HEVC_DPB_ENTRY_LONG_TERM_REFERENCE 0x01
  2087. #define V4L2_HEVC_SEI_PIC_STRUCT_FRAME 0
  2088. #define V4L2_HEVC_SEI_PIC_STRUCT_TOP_FIELD 1
  2089. #define V4L2_HEVC_SEI_PIC_STRUCT_BOTTOM_FIELD 2
  2090. #define V4L2_HEVC_SEI_PIC_STRUCT_TOP_BOTTOM 3
  2091. #define V4L2_HEVC_SEI_PIC_STRUCT_BOTTOM_TOP 4
  2092. #define V4L2_HEVC_SEI_PIC_STRUCT_TOP_BOTTOM_TOP 5
  2093. #define V4L2_HEVC_SEI_PIC_STRUCT_BOTTOM_TOP_BOTTOM 6
  2094. #define V4L2_HEVC_SEI_PIC_STRUCT_FRAME_DOUBLING 7
  2095. #define V4L2_HEVC_SEI_PIC_STRUCT_FRAME_TRIPLING 8
  2096. #define V4L2_HEVC_SEI_PIC_STRUCT_TOP_PAIRED_PREVIOUS_BOTTOM 9
  2097. #define V4L2_HEVC_SEI_PIC_STRUCT_BOTTOM_PAIRED_PREVIOUS_TOP 10
  2098. #define V4L2_HEVC_SEI_PIC_STRUCT_TOP_PAIRED_NEXT_BOTTOM 11
  2099. #define V4L2_HEVC_SEI_PIC_STRUCT_BOTTOM_PAIRED_NEXT_TOP 12
  2100. #define V4L2_HEVC_DPB_ENTRIES_NUM_MAX 16
  2101. /**
  2102. * struct v4l2_hevc_dpb_entry - HEVC decoded picture buffer entry
  2103. *
  2104. * @timestamp: timestamp of the V4L2 capture buffer to use as reference.
  2105. * @flags: long term flag for the reference frame
  2106. * @field_pic: whether the reference is a field picture or a frame.
  2107. * @reserved: padding field. Should be zeroed by applications.
  2108. * @pic_order_cnt_val: the picture order count of the current picture.
  2109. */
  2110. struct v4l2_hevc_dpb_entry {
  2111. __u64 timestamp;
  2112. __u8 flags;
  2113. __u8 field_pic;
  2114. __u16 reserved;
  2115. __s32 pic_order_cnt_val;
  2116. };
  2117. /**
  2118. * struct v4l2_hevc_pred_weight_table - HEVC weighted prediction parameters
  2119. *
  2120. * @delta_luma_weight_l0: the difference of the weighting factor applied
  2121. * to the luma prediction value for list 0
  2122. * @luma_offset_l0: the additive offset applied to the luma prediction value
  2123. * for list 0
  2124. * @delta_chroma_weight_l0: the difference of the weighting factor applied
  2125. * to the chroma prediction values for list 0
  2126. * @chroma_offset_l0: the difference of the additive offset applied to
  2127. * the chroma prediction values for list 0
  2128. * @delta_luma_weight_l1: the difference of the weighting factor applied
  2129. * to the luma prediction value for list 1
  2130. * @luma_offset_l1: the additive offset applied to the luma prediction value
  2131. * for list 1
  2132. * @delta_chroma_weight_l1: the difference of the weighting factor applied
  2133. * to the chroma prediction values for list 1
  2134. * @chroma_offset_l1: the difference of the additive offset applied to
  2135. * the chroma prediction values for list 1
  2136. * @luma_log2_weight_denom: the base 2 logarithm of the denominator for
  2137. * all luma weighting factors
  2138. * @delta_chroma_log2_weight_denom: the difference of the base 2 logarithm
  2139. * of the denominator for all chroma
  2140. * weighting factors
  2141. */
  2142. struct v4l2_hevc_pred_weight_table {
  2143. __s8 delta_luma_weight_l0[V4L2_HEVC_DPB_ENTRIES_NUM_MAX];
  2144. __s8 luma_offset_l0[V4L2_HEVC_DPB_ENTRIES_NUM_MAX];
  2145. __s8 delta_chroma_weight_l0[V4L2_HEVC_DPB_ENTRIES_NUM_MAX][2];
  2146. __s8 chroma_offset_l0[V4L2_HEVC_DPB_ENTRIES_NUM_MAX][2];
  2147. __s8 delta_luma_weight_l1[V4L2_HEVC_DPB_ENTRIES_NUM_MAX];
  2148. __s8 luma_offset_l1[V4L2_HEVC_DPB_ENTRIES_NUM_MAX];
  2149. __s8 delta_chroma_weight_l1[V4L2_HEVC_DPB_ENTRIES_NUM_MAX][2];
  2150. __s8 chroma_offset_l1[V4L2_HEVC_DPB_ENTRIES_NUM_MAX][2];
  2151. __u8 luma_log2_weight_denom;
  2152. __s8 delta_chroma_log2_weight_denom;
  2153. };
  2154. #define V4L2_HEVC_SLICE_PARAMS_FLAG_SLICE_SAO_LUMA (1ULL << 0)
  2155. #define V4L2_HEVC_SLICE_PARAMS_FLAG_SLICE_SAO_CHROMA (1ULL << 1)
  2156. #define V4L2_HEVC_SLICE_PARAMS_FLAG_SLICE_TEMPORAL_MVP_ENABLED (1ULL << 2)
  2157. #define V4L2_HEVC_SLICE_PARAMS_FLAG_MVD_L1_ZERO (1ULL << 3)
  2158. #define V4L2_HEVC_SLICE_PARAMS_FLAG_CABAC_INIT (1ULL << 4)
  2159. #define V4L2_HEVC_SLICE_PARAMS_FLAG_COLLOCATED_FROM_L0 (1ULL << 5)
  2160. #define V4L2_HEVC_SLICE_PARAMS_FLAG_USE_INTEGER_MV (1ULL << 6)
  2161. #define V4L2_HEVC_SLICE_PARAMS_FLAG_SLICE_DEBLOCKING_FILTER_DISABLED (1ULL << 7)
  2162. #define V4L2_HEVC_SLICE_PARAMS_FLAG_SLICE_LOOP_FILTER_ACROSS_SLICES_ENABLED (1ULL << 8)
  2163. #define V4L2_HEVC_SLICE_PARAMS_FLAG_DEPENDENT_SLICE_SEGMENT (1ULL << 9)
  2164. /**
  2165. * struct v4l2_ctrl_hevc_slice_params - HEVC slice parameters
  2166. *
  2167. * This control is a dynamically sized 1-dimensional array,
  2168. * V4L2_CTRL_FLAG_DYNAMIC_ARRAY flag must be set when using it.
  2169. *
  2170. * @bit_size: size (in bits) of the current slice data
  2171. * @data_byte_offset: offset (in bytes) to the video data in the current slice data
  2172. * @num_entry_point_offsets: specifies the number of entry point offset syntax
  2173. * elements in the slice header.
  2174. * @nal_unit_type: specifies the coding type of the slice (B, P or I)
  2175. * @nuh_temporal_id_plus1: minus 1 specifies a temporal identifier for the NAL unit
  2176. * @slice_type: see V4L2_HEVC_SLICE_TYPE_{}
  2177. * @colour_plane_id: specifies the colour plane associated with the current slice
  2178. * @slice_pic_order_cnt: specifies the picture order count
  2179. * @num_ref_idx_l0_active_minus1: this value plus 1 specifies the maximum
  2180. * reference index for reference picture list 0
  2181. * that may be used to decode the slice
  2182. * @num_ref_idx_l1_active_minus1: this value plus 1 specifies the maximum
  2183. * reference index for reference picture list 1
  2184. * that may be used to decode the slice
  2185. * @collocated_ref_idx: specifies the reference index of the collocated picture used
  2186. * for temporal motion vector prediction
  2187. * @five_minus_max_num_merge_cand: specifies the maximum number of merging
  2188. * motion vector prediction candidates supported in
  2189. * the slice subtracted from 5
  2190. * @slice_qp_delta: specifies the initial value of QpY to be used for the coding
  2191. * blocks in the slice
  2192. * @slice_cb_qp_offset: specifies a difference to be added to the value of pps_cb_qp_offset
  2193. * @slice_cr_qp_offset: specifies a difference to be added to the value of pps_cr_qp_offset
  2194. * @slice_act_y_qp_offset: screen content extension parameters
  2195. * @slice_act_cb_qp_offset: screen content extension parameters
  2196. * @slice_act_cr_qp_offset: screen content extension parameters
  2197. * @slice_beta_offset_div2: specify the deblocking parameter offsets for beta divided by 2
  2198. * @slice_tc_offset_div2: specify the deblocking parameter offsets for tC divided by 2
  2199. * @pic_struct: indicates whether a picture should be displayed as a frame or as one or
  2200. * more fields
  2201. * @reserved0: padding field. Should be zeroed by applications.
  2202. * @slice_segment_addr: specifies the address of the first coding tree block in
  2203. * the slice segment
  2204. * @ref_idx_l0: the list of L0 reference elements as indices in the DPB
  2205. * @ref_idx_l1: the list of L1 reference elements as indices in the DPB
  2206. * @short_term_ref_pic_set_size: specifies the size of short-term reference
  2207. * pictures set included in the SPS
  2208. * @long_term_ref_pic_set_size: specifies the size of long-term reference
  2209. * pictures set include in the SPS
  2210. * @pred_weight_table: the prediction weight coefficients for inter-picture
  2211. * prediction
  2212. * @reserved1: padding field. Should be zeroed by applications.
  2213. * @flags: see V4L2_HEVC_SLICE_PARAMS_FLAG_{}
  2214. */
  2215. struct v4l2_ctrl_hevc_slice_params {
  2216. __u32 bit_size;
  2217. __u32 data_byte_offset;
  2218. __u32 num_entry_point_offsets;
  2219. /* ISO/IEC 23008-2, ITU-T Rec. H.265: NAL unit header */
  2220. __u8 nal_unit_type;
  2221. __u8 nuh_temporal_id_plus1;
  2222. /* ISO/IEC 23008-2, ITU-T Rec. H.265: General slice segment header */
  2223. __u8 slice_type;
  2224. __u8 colour_plane_id;
  2225. __s32 slice_pic_order_cnt;
  2226. __u8 num_ref_idx_l0_active_minus1;
  2227. __u8 num_ref_idx_l1_active_minus1;
  2228. __u8 collocated_ref_idx;
  2229. __u8 five_minus_max_num_merge_cand;
  2230. __s8 slice_qp_delta;
  2231. __s8 slice_cb_qp_offset;
  2232. __s8 slice_cr_qp_offset;
  2233. __s8 slice_act_y_qp_offset;
  2234. __s8 slice_act_cb_qp_offset;
  2235. __s8 slice_act_cr_qp_offset;
  2236. __s8 slice_beta_offset_div2;
  2237. __s8 slice_tc_offset_div2;
  2238. /* ISO/IEC 23008-2, ITU-T Rec. H.265: Picture timing SEI message */
  2239. __u8 pic_struct;
  2240. __u8 reserved0[3];
  2241. /* ISO/IEC 23008-2, ITU-T Rec. H.265: General slice segment header */
  2242. __u32 slice_segment_addr;
  2243. __u8 ref_idx_l0[V4L2_HEVC_DPB_ENTRIES_NUM_MAX];
  2244. __u8 ref_idx_l1[V4L2_HEVC_DPB_ENTRIES_NUM_MAX];
  2245. __u16 short_term_ref_pic_set_size;
  2246. __u16 long_term_ref_pic_set_size;
  2247. /* ISO/IEC 23008-2, ITU-T Rec. H.265: Weighted prediction parameter */
  2248. struct v4l2_hevc_pred_weight_table pred_weight_table;
  2249. __u8 reserved1[2];
  2250. __u64 flags;
  2251. };
  2252. #define V4L2_HEVC_DECODE_PARAM_FLAG_IRAP_PIC 0x1
  2253. #define V4L2_HEVC_DECODE_PARAM_FLAG_IDR_PIC 0x2
  2254. #define V4L2_HEVC_DECODE_PARAM_FLAG_NO_OUTPUT_OF_PRIOR 0x4
  2255. /**
  2256. * struct v4l2_ctrl_hevc_decode_params - HEVC decode parameters
  2257. *
  2258. * @pic_order_cnt_val: picture order count
  2259. * @short_term_ref_pic_set_size: specifies the size of short-term reference
  2260. * pictures set included in the SPS of the first slice
  2261. * @long_term_ref_pic_set_size: specifies the size of long-term reference
  2262. * pictures set include in the SPS of the first slice
  2263. * @num_active_dpb_entries: the number of entries in dpb
  2264. * @num_poc_st_curr_before: the number of reference pictures in the short-term
  2265. * set that come before the current frame
  2266. * @num_poc_st_curr_after: the number of reference pictures in the short-term
  2267. * set that come after the current frame
  2268. * @num_poc_lt_curr: the number of reference pictures in the long-term set
  2269. * @poc_st_curr_before: provides the index of the short term before references
  2270. * in DPB array
  2271. * @poc_st_curr_after: provides the index of the short term after references
  2272. * in DPB array
  2273. * @poc_lt_curr: provides the index of the long term references in DPB array
  2274. * @num_delta_pocs_of_ref_rps_idx: same as the derived value NumDeltaPocs[RefRpsIdx],
  2275. * can be used to parse the RPS data in slice headers
  2276. * instead of skipping it with @short_term_ref_pic_set_size.
  2277. * @reserved: padding field. Should be zeroed by applications.
  2278. * @dpb: the decoded picture buffer, for meta-data about reference frames
  2279. * @flags: see V4L2_HEVC_DECODE_PARAM_FLAG_{}
  2280. */
  2281. struct v4l2_ctrl_hevc_decode_params {
  2282. __s32 pic_order_cnt_val;
  2283. __u16 short_term_ref_pic_set_size;
  2284. __u16 long_term_ref_pic_set_size;
  2285. __u8 num_active_dpb_entries;
  2286. __u8 num_poc_st_curr_before;
  2287. __u8 num_poc_st_curr_after;
  2288. __u8 num_poc_lt_curr;
  2289. __u8 poc_st_curr_before[V4L2_HEVC_DPB_ENTRIES_NUM_MAX];
  2290. __u8 poc_st_curr_after[V4L2_HEVC_DPB_ENTRIES_NUM_MAX];
  2291. __u8 poc_lt_curr[V4L2_HEVC_DPB_ENTRIES_NUM_MAX];
  2292. __u8 num_delta_pocs_of_ref_rps_idx;
  2293. __u8 reserved[3];
  2294. struct v4l2_hevc_dpb_entry dpb[V4L2_HEVC_DPB_ENTRIES_NUM_MAX];
  2295. __u64 flags;
  2296. };
  2297. /**
  2298. * struct v4l2_ctrl_hevc_scaling_matrix - HEVC scaling lists parameters
  2299. *
  2300. * @scaling_list_4x4: scaling list is used for the scaling process for
  2301. * transform coefficients. The values on each scaling
  2302. * list are expected in raster scan order
  2303. * @scaling_list_8x8: scaling list is used for the scaling process for
  2304. * transform coefficients. The values on each scaling
  2305. * list are expected in raster scan order
  2306. * @scaling_list_16x16: scaling list is used for the scaling process for
  2307. * transform coefficients. The values on each scaling
  2308. * list are expected in raster scan order
  2309. * @scaling_list_32x32: scaling list is used for the scaling process for
  2310. * transform coefficients. The values on each scaling
  2311. * list are expected in raster scan order
  2312. * @scaling_list_dc_coef_16x16: scaling list is used for the scaling process
  2313. * for transform coefficients. The values on each
  2314. * scaling list are expected in raster scan order.
  2315. * @scaling_list_dc_coef_32x32: scaling list is used for the scaling process
  2316. * for transform coefficients. The values on each
  2317. * scaling list are expected in raster scan order.
  2318. */
  2319. struct v4l2_ctrl_hevc_scaling_matrix {
  2320. __u8 scaling_list_4x4[6][16];
  2321. __u8 scaling_list_8x8[6][64];
  2322. __u8 scaling_list_16x16[6][64];
  2323. __u8 scaling_list_32x32[2][64];
  2324. __u8 scaling_list_dc_coef_16x16[6];
  2325. __u8 scaling_list_dc_coef_32x32[2];
  2326. };
  2327. #define V4L2_CID_COLORIMETRY_CLASS_BASE (V4L2_CTRL_CLASS_COLORIMETRY | 0x900)
  2328. #define V4L2_CID_COLORIMETRY_CLASS (V4L2_CTRL_CLASS_COLORIMETRY | 1)
  2329. #define V4L2_CID_COLORIMETRY_HDR10_CLL_INFO (V4L2_CID_COLORIMETRY_CLASS_BASE + 0)
  2330. struct v4l2_ctrl_hdr10_cll_info {
  2331. __u16 max_content_light_level;
  2332. __u16 max_pic_average_light_level;
  2333. };
  2334. #define V4L2_CID_COLORIMETRY_HDR10_MASTERING_DISPLAY (V4L2_CID_COLORIMETRY_CLASS_BASE + 1)
  2335. #define V4L2_HDR10_MASTERING_PRIMARIES_X_LOW 5
  2336. #define V4L2_HDR10_MASTERING_PRIMARIES_X_HIGH 37000
  2337. #define V4L2_HDR10_MASTERING_PRIMARIES_Y_LOW 5
  2338. #define V4L2_HDR10_MASTERING_PRIMARIES_Y_HIGH 42000
  2339. #define V4L2_HDR10_MASTERING_WHITE_POINT_X_LOW 5
  2340. #define V4L2_HDR10_MASTERING_WHITE_POINT_X_HIGH 37000
  2341. #define V4L2_HDR10_MASTERING_WHITE_POINT_Y_LOW 5
  2342. #define V4L2_HDR10_MASTERING_WHITE_POINT_Y_HIGH 42000
  2343. #define V4L2_HDR10_MASTERING_MAX_LUMA_LOW 50000
  2344. #define V4L2_HDR10_MASTERING_MAX_LUMA_HIGH 100000000
  2345. #define V4L2_HDR10_MASTERING_MIN_LUMA_LOW 1
  2346. #define V4L2_HDR10_MASTERING_MIN_LUMA_HIGH 50000
  2347. struct v4l2_ctrl_hdr10_mastering_display {
  2348. __u16 display_primaries_x[3];
  2349. __u16 display_primaries_y[3];
  2350. __u16 white_point_x;
  2351. __u16 white_point_y;
  2352. __u32 max_display_mastering_luminance;
  2353. __u32 min_display_mastering_luminance;
  2354. };
  2355. /* Stateless VP9 controls */
  2356. #define V4L2_VP9_LOOP_FILTER_FLAG_DELTA_ENABLED 0x1
  2357. #define V4L2_VP9_LOOP_FILTER_FLAG_DELTA_UPDATE 0x2
  2358. /**
  2359. * struct v4l2_vp9_loop_filter - VP9 loop filter parameters
  2360. *
  2361. * @ref_deltas: contains the adjustment needed for the filter level based on the
  2362. * chosen reference frame. If this syntax element is not present in the bitstream,
  2363. * users should pass its last value.
  2364. * @mode_deltas: contains the adjustment needed for the filter level based on the
  2365. * chosen mode. If this syntax element is not present in the bitstream, users should
  2366. * pass its last value.
  2367. * @level: indicates the loop filter strength.
  2368. * @sharpness: indicates the sharpness level.
  2369. * @flags: combination of V4L2_VP9_LOOP_FILTER_FLAG_{} flags.
  2370. * @reserved: padding field. Should be zeroed by applications.
  2371. *
  2372. * This structure contains all loop filter related parameters. See sections
  2373. * '7.2.8 Loop filter semantics' of the VP9 specification for more details.
  2374. */
  2375. struct v4l2_vp9_loop_filter {
  2376. __s8 ref_deltas[4];
  2377. __s8 mode_deltas[2];
  2378. __u8 level;
  2379. __u8 sharpness;
  2380. __u8 flags;
  2381. __u8 reserved[7];
  2382. };
  2383. /**
  2384. * struct v4l2_vp9_quantization - VP9 quantization parameters
  2385. *
  2386. * @base_q_idx: indicates the base frame qindex.
  2387. * @delta_q_y_dc: indicates the Y DC quantizer relative to base_q_idx.
  2388. * @delta_q_uv_dc: indicates the UV DC quantizer relative to base_q_idx.
  2389. * @delta_q_uv_ac: indicates the UV AC quantizer relative to base_q_idx.
  2390. * @reserved: padding field. Should be zeroed by applications.
  2391. *
  2392. * Encodes the quantization parameters. See section '7.2.9 Quantization params
  2393. * syntax' of the VP9 specification for more details.
  2394. */
  2395. struct v4l2_vp9_quantization {
  2396. __u8 base_q_idx;
  2397. __s8 delta_q_y_dc;
  2398. __s8 delta_q_uv_dc;
  2399. __s8 delta_q_uv_ac;
  2400. __u8 reserved[4];
  2401. };
  2402. #define V4L2_VP9_SEGMENTATION_FLAG_ENABLED 0x01
  2403. #define V4L2_VP9_SEGMENTATION_FLAG_UPDATE_MAP 0x02
  2404. #define V4L2_VP9_SEGMENTATION_FLAG_TEMPORAL_UPDATE 0x04
  2405. #define V4L2_VP9_SEGMENTATION_FLAG_UPDATE_DATA 0x08
  2406. #define V4L2_VP9_SEGMENTATION_FLAG_ABS_OR_DELTA_UPDATE 0x10
  2407. #define V4L2_VP9_SEG_LVL_ALT_Q 0
  2408. #define V4L2_VP9_SEG_LVL_ALT_L 1
  2409. #define V4L2_VP9_SEG_LVL_REF_FRAME 2
  2410. #define V4L2_VP9_SEG_LVL_SKIP 3
  2411. #define V4L2_VP9_SEG_LVL_MAX 4
  2412. #define V4L2_VP9_SEGMENT_FEATURE_ENABLED(id) (1 << (id))
  2413. #define V4L2_VP9_SEGMENT_FEATURE_ENABLED_MASK 0xf
  2414. /**
  2415. * struct v4l2_vp9_segmentation - VP9 segmentation parameters
  2416. *
  2417. * @feature_data: data attached to each feature. Data entry is only valid if
  2418. * the feature is enabled. The array shall be indexed with segment number as
  2419. * the first dimension (0..7) and one of V4L2_VP9_SEG_{} as the second dimension.
  2420. * @feature_enabled: bitmask defining which features are enabled in each segment.
  2421. * The value for each segment is a combination of V4L2_VP9_SEGMENT_FEATURE_ENABLED(id)
  2422. * values where id is one of V4L2_VP9_SEG_LVL_{}.
  2423. * @tree_probs: specifies the probability values to be used when decoding a
  2424. * Segment-ID. See '5.15. Segmentation map' section of the VP9 specification
  2425. * for more details.
  2426. * @pred_probs: specifies the probability values to be used when decoding a
  2427. * Predicted-Segment-ID. See '6.4.14. Get segment id syntax' section of :ref:`vp9`
  2428. * for more details.
  2429. * @flags: combination of V4L2_VP9_SEGMENTATION_FLAG_{} flags.
  2430. * @reserved: padding field. Should be zeroed by applications.
  2431. *
  2432. * Encodes the quantization parameters. See section '7.2.10 Segmentation params syntax' of
  2433. * the VP9 specification for more details.
  2434. */
  2435. struct v4l2_vp9_segmentation {
  2436. __s16 feature_data[8][4];
  2437. __u8 feature_enabled[8];
  2438. __u8 tree_probs[7];
  2439. __u8 pred_probs[3];
  2440. __u8 flags;
  2441. __u8 reserved[5];
  2442. };
  2443. #define V4L2_VP9_FRAME_FLAG_KEY_FRAME 0x001
  2444. #define V4L2_VP9_FRAME_FLAG_SHOW_FRAME 0x002
  2445. #define V4L2_VP9_FRAME_FLAG_ERROR_RESILIENT 0x004
  2446. #define V4L2_VP9_FRAME_FLAG_INTRA_ONLY 0x008
  2447. #define V4L2_VP9_FRAME_FLAG_ALLOW_HIGH_PREC_MV 0x010
  2448. #define V4L2_VP9_FRAME_FLAG_REFRESH_FRAME_CTX 0x020
  2449. #define V4L2_VP9_FRAME_FLAG_PARALLEL_DEC_MODE 0x040
  2450. #define V4L2_VP9_FRAME_FLAG_X_SUBSAMPLING 0x080
  2451. #define V4L2_VP9_FRAME_FLAG_Y_SUBSAMPLING 0x100
  2452. #define V4L2_VP9_FRAME_FLAG_COLOR_RANGE_FULL_SWING 0x200
  2453. #define V4L2_VP9_SIGN_BIAS_LAST 0x1
  2454. #define V4L2_VP9_SIGN_BIAS_GOLDEN 0x2
  2455. #define V4L2_VP9_SIGN_BIAS_ALT 0x4
  2456. #define V4L2_VP9_RESET_FRAME_CTX_NONE 0
  2457. #define V4L2_VP9_RESET_FRAME_CTX_SPEC 1
  2458. #define V4L2_VP9_RESET_FRAME_CTX_ALL 2
  2459. #define V4L2_VP9_INTERP_FILTER_EIGHTTAP 0
  2460. #define V4L2_VP9_INTERP_FILTER_EIGHTTAP_SMOOTH 1
  2461. #define V4L2_VP9_INTERP_FILTER_EIGHTTAP_SHARP 2
  2462. #define V4L2_VP9_INTERP_FILTER_BILINEAR 3
  2463. #define V4L2_VP9_INTERP_FILTER_SWITCHABLE 4
  2464. #define V4L2_VP9_REFERENCE_MODE_SINGLE_REFERENCE 0
  2465. #define V4L2_VP9_REFERENCE_MODE_COMPOUND_REFERENCE 1
  2466. #define V4L2_VP9_REFERENCE_MODE_SELECT 2
  2467. #define V4L2_VP9_PROFILE_MAX 3
  2468. #define V4L2_CID_STATELESS_VP9_FRAME (V4L2_CID_CODEC_STATELESS_BASE + 300)
  2469. /**
  2470. * struct v4l2_ctrl_vp9_frame - VP9 frame decoding control
  2471. *
  2472. * @lf: loop filter parameters. See &v4l2_vp9_loop_filter for more details.
  2473. * @quant: quantization parameters. See &v4l2_vp9_quantization for more details.
  2474. * @seg: segmentation parameters. See &v4l2_vp9_segmentation for more details.
  2475. * @flags: combination of V4L2_VP9_FRAME_FLAG_{} flags.
  2476. * @compressed_header_size: compressed header size in bytes.
  2477. * @uncompressed_header_size: uncompressed header size in bytes.
  2478. * @frame_width_minus_1: add 1 to it and you'll get the frame width expressed in pixels.
  2479. * @frame_height_minus_1: add 1 to it and you'll get the frame height expressed in pixels.
  2480. * @render_width_minus_1: add 1 to it and you'll get the expected render width expressed in
  2481. * pixels. This is not used during the decoding process but might be used by HW scalers
  2482. * to prepare a frame that's ready for scanout.
  2483. * @render_height_minus_1: add 1 to it and you'll get the expected render height expressed in
  2484. * pixels. This is not used during the decoding process but might be used by HW scalers
  2485. * to prepare a frame that's ready for scanout.
  2486. * @last_frame_ts: "last" reference buffer timestamp.
  2487. * The timestamp refers to the timestamp field in struct v4l2_buffer.
  2488. * Use v4l2_timeval_to_ns() to convert the struct timeval to a __u64.
  2489. * @golden_frame_ts: "golden" reference buffer timestamp.
  2490. * The timestamp refers to the timestamp field in struct v4l2_buffer.
  2491. * Use v4l2_timeval_to_ns() to convert the struct timeval to a __u64.
  2492. * @alt_frame_ts: "alt" reference buffer timestamp.
  2493. * The timestamp refers to the timestamp field in struct v4l2_buffer.
  2494. * Use v4l2_timeval_to_ns() to convert the struct timeval to a __u64.
  2495. * @ref_frame_sign_bias: a bitfield specifying whether the sign bias is set for a given
  2496. * reference frame. Either of V4L2_VP9_SIGN_BIAS_{}.
  2497. * @reset_frame_context: specifies whether the frame context should be reset to default values.
  2498. * Either of V4L2_VP9_RESET_FRAME_CTX_{}.
  2499. * @frame_context_idx: frame context that should be used/updated.
  2500. * @profile: VP9 profile. Can be 0, 1, 2 or 3.
  2501. * @bit_depth: bits per components. Can be 8, 10 or 12. Note that not all profiles support
  2502. * 10 and/or 12 bits depths.
  2503. * @interpolation_filter: specifies the filter selection used for performing inter prediction.
  2504. * Set to one of V4L2_VP9_INTERP_FILTER_{}.
  2505. * @tile_cols_log2: specifies the base 2 logarithm of the width of each tile (where the width
  2506. * is measured in units of 8x8 blocks). Shall be less than or equal to 6.
  2507. * @tile_rows_log2: specifies the base 2 logarithm of the height of each tile (where the height
  2508. * is measured in units of 8x8 blocks).
  2509. * @reference_mode: specifies the type of inter prediction to be used.
  2510. * Set to one of V4L2_VP9_REFERENCE_MODE_{}.
  2511. * @reserved: padding field. Should be zeroed by applications.
  2512. */
  2513. struct v4l2_ctrl_vp9_frame {
  2514. struct v4l2_vp9_loop_filter lf;
  2515. struct v4l2_vp9_quantization quant;
  2516. struct v4l2_vp9_segmentation seg;
  2517. __u32 flags;
  2518. __u16 compressed_header_size;
  2519. __u16 uncompressed_header_size;
  2520. __u16 frame_width_minus_1;
  2521. __u16 frame_height_minus_1;
  2522. __u16 render_width_minus_1;
  2523. __u16 render_height_minus_1;
  2524. __u64 last_frame_ts;
  2525. __u64 golden_frame_ts;
  2526. __u64 alt_frame_ts;
  2527. __u8 ref_frame_sign_bias;
  2528. __u8 reset_frame_context;
  2529. __u8 frame_context_idx;
  2530. __u8 profile;
  2531. __u8 bit_depth;
  2532. __u8 interpolation_filter;
  2533. __u8 tile_cols_log2;
  2534. __u8 tile_rows_log2;
  2535. __u8 reference_mode;
  2536. __u8 reserved[7];
  2537. };
  2538. #define V4L2_VP9_NUM_FRAME_CTX 4
  2539. /**
  2540. * struct v4l2_vp9_mv_probs - VP9 Motion vector probability updates
  2541. * @joint: motion vector joint probability updates.
  2542. * @sign: motion vector sign probability updates.
  2543. * @classes: motion vector class probability updates.
  2544. * @class0_bit: motion vector class0 bit probability updates.
  2545. * @bits: motion vector bits probability updates.
  2546. * @class0_fr: motion vector class0 fractional bit probability updates.
  2547. * @fr: motion vector fractional bit probability updates.
  2548. * @class0_hp: motion vector class0 high precision fractional bit probability updates.
  2549. * @hp: motion vector high precision fractional bit probability updates.
  2550. *
  2551. * This structure contains new values of motion vector probabilities.
  2552. * A value of zero in an array element means there is no update of the relevant probability.
  2553. * See `struct v4l2_vp9_prob_updates` for details.
  2554. */
  2555. struct v4l2_vp9_mv_probs {
  2556. __u8 joint[3];
  2557. __u8 sign[2];
  2558. __u8 classes[2][10];
  2559. __u8 class0_bit[2];
  2560. __u8 bits[2][10];
  2561. __u8 class0_fr[2][2][3];
  2562. __u8 fr[2][3];
  2563. __u8 class0_hp[2];
  2564. __u8 hp[2];
  2565. };
  2566. #define V4L2_CID_STATELESS_VP9_COMPRESSED_HDR (V4L2_CID_CODEC_STATELESS_BASE + 301)
  2567. #define V4L2_VP9_TX_MODE_ONLY_4X4 0
  2568. #define V4L2_VP9_TX_MODE_ALLOW_8X8 1
  2569. #define V4L2_VP9_TX_MODE_ALLOW_16X16 2
  2570. #define V4L2_VP9_TX_MODE_ALLOW_32X32 3
  2571. #define V4L2_VP9_TX_MODE_SELECT 4
  2572. /**
  2573. * struct v4l2_ctrl_vp9_compressed_hdr - VP9 probability updates control
  2574. * @tx_mode: specifies the TX mode. Set to one of V4L2_VP9_TX_MODE_{}.
  2575. * @tx8: TX 8x8 probability updates.
  2576. * @tx16: TX 16x16 probability updates.
  2577. * @tx32: TX 32x32 probability updates.
  2578. * @coef: coefficient probability updates.
  2579. * @skip: skip probability updates.
  2580. * @inter_mode: inter mode probability updates.
  2581. * @interp_filter: interpolation filter probability updates.
  2582. * @is_inter: is inter-block probability updates.
  2583. * @comp_mode: compound prediction mode probability updates.
  2584. * @single_ref: single ref probability updates.
  2585. * @comp_ref: compound ref probability updates.
  2586. * @y_mode: Y prediction mode probability updates.
  2587. * @uv_mode: UV prediction mode probability updates.
  2588. * @partition: partition probability updates.
  2589. * @mv: motion vector probability updates.
  2590. *
  2591. * This structure holds the probabilities update as parsed in the compressed
  2592. * header (Spec 6.3). These values represent the value of probability update after
  2593. * being translated with inv_map_table[] (see 6.3.5). A value of zero in an array element
  2594. * means that there is no update of the relevant probability.
  2595. *
  2596. * This control is optional and needs to be used when dealing with the hardware which is
  2597. * not capable of parsing the compressed header itself. Only drivers which need it will
  2598. * implement it.
  2599. */
  2600. struct v4l2_ctrl_vp9_compressed_hdr {
  2601. __u8 tx_mode;
  2602. __u8 tx8[2][1];
  2603. __u8 tx16[2][2];
  2604. __u8 tx32[2][3];
  2605. __u8 coef[4][2][2][6][6][3];
  2606. __u8 skip[3];
  2607. __u8 inter_mode[7][3];
  2608. __u8 interp_filter[4][2];
  2609. __u8 is_inter[4];
  2610. __u8 comp_mode[5];
  2611. __u8 single_ref[5][2];
  2612. __u8 comp_ref[5];
  2613. __u8 y_mode[4][9];
  2614. __u8 uv_mode[10][9];
  2615. __u8 partition[16][3];
  2616. struct v4l2_vp9_mv_probs mv;
  2617. };
  2618. /* Stateless AV1 controls */
  2619. #define V4L2_AV1_TOTAL_REFS_PER_FRAME 8
  2620. #define V4L2_AV1_CDEF_MAX 8
  2621. #define V4L2_AV1_NUM_PLANES_MAX 3 /* 1 if monochrome, 3 otherwise */
  2622. #define V4L2_AV1_MAX_SEGMENTS 8
  2623. #define V4L2_AV1_MAX_OPERATING_POINTS (1 << 5) /* 5 bits to encode */
  2624. #define V4L2_AV1_REFS_PER_FRAME 7
  2625. #define V4L2_AV1_MAX_NUM_Y_POINTS (1 << 4) /* 4 bits to encode */
  2626. #define V4L2_AV1_MAX_NUM_CB_POINTS (1 << 4) /* 4 bits to encode */
  2627. #define V4L2_AV1_MAX_NUM_CR_POINTS (1 << 4) /* 4 bits to encode */
  2628. #define V4L2_AV1_AR_COEFFS_SIZE 25 /* (2 * 3 * (3 + 1)) + 1 */
  2629. #define V4L2_AV1_MAX_NUM_PLANES 3
  2630. #define V4L2_AV1_MAX_TILE_COLS 64
  2631. #define V4L2_AV1_MAX_TILE_ROWS 64
  2632. #define V4L2_AV1_MAX_TILE_COUNT 512
  2633. #define V4L2_AV1_SEQUENCE_FLAG_STILL_PICTURE 0x00000001
  2634. #define V4L2_AV1_SEQUENCE_FLAG_USE_128X128_SUPERBLOCK 0x00000002
  2635. #define V4L2_AV1_SEQUENCE_FLAG_ENABLE_FILTER_INTRA 0x00000004
  2636. #define V4L2_AV1_SEQUENCE_FLAG_ENABLE_INTRA_EDGE_FILTER 0x00000008
  2637. #define V4L2_AV1_SEQUENCE_FLAG_ENABLE_INTERINTRA_COMPOUND 0x00000010
  2638. #define V4L2_AV1_SEQUENCE_FLAG_ENABLE_MASKED_COMPOUND 0x00000020
  2639. #define V4L2_AV1_SEQUENCE_FLAG_ENABLE_WARPED_MOTION 0x00000040
  2640. #define V4L2_AV1_SEQUENCE_FLAG_ENABLE_DUAL_FILTER 0x00000080
  2641. #define V4L2_AV1_SEQUENCE_FLAG_ENABLE_ORDER_HINT 0x00000100
  2642. #define V4L2_AV1_SEQUENCE_FLAG_ENABLE_JNT_COMP 0x00000200
  2643. #define V4L2_AV1_SEQUENCE_FLAG_ENABLE_REF_FRAME_MVS 0x00000400
  2644. #define V4L2_AV1_SEQUENCE_FLAG_ENABLE_SUPERRES 0x00000800
  2645. #define V4L2_AV1_SEQUENCE_FLAG_ENABLE_CDEF 0x00001000
  2646. #define V4L2_AV1_SEQUENCE_FLAG_ENABLE_RESTORATION 0x00002000
  2647. #define V4L2_AV1_SEQUENCE_FLAG_MONO_CHROME 0x00004000
  2648. #define V4L2_AV1_SEQUENCE_FLAG_COLOR_RANGE 0x00008000
  2649. #define V4L2_AV1_SEQUENCE_FLAG_SUBSAMPLING_X 0x00010000
  2650. #define V4L2_AV1_SEQUENCE_FLAG_SUBSAMPLING_Y 0x00020000
  2651. #define V4L2_AV1_SEQUENCE_FLAG_FILM_GRAIN_PARAMS_PRESENT 0x00040000
  2652. #define V4L2_AV1_SEQUENCE_FLAG_SEPARATE_UV_DELTA_Q 0x00080000
  2653. #define V4L2_CID_STATELESS_AV1_SEQUENCE (V4L2_CID_CODEC_STATELESS_BASE + 500)
  2654. /**
  2655. * struct v4l2_ctrl_av1_sequence - AV1 Sequence
  2656. *
  2657. * Represents an AV1 Sequence OBU. See section 5.5 "Sequence header OBU syntax"
  2658. * for more details.
  2659. *
  2660. * @flags: See V4L2_AV1_SEQUENCE_FLAG_{}.
  2661. * @seq_profile: specifies the features that can be used in the coded video
  2662. * sequence.
  2663. * @order_hint_bits: specifies the number of bits used for the order_hint field
  2664. * at each frame.
  2665. * @bit_depth: the bitdepth to use for the sequence as described in section
  2666. * 5.5.2 "Color config syntax".
  2667. * @reserved: padding field. Should be zeroed by applications.
  2668. * @max_frame_width_minus_1: specifies the maximum frame width minus 1 for the
  2669. * frames represented by this sequence header.
  2670. * @max_frame_height_minus_1: specifies the maximum frame height minus 1 for the
  2671. * frames represented by this sequence header.
  2672. */
  2673. struct v4l2_ctrl_av1_sequence {
  2674. __u32 flags;
  2675. __u8 seq_profile;
  2676. __u8 order_hint_bits;
  2677. __u8 bit_depth;
  2678. __u8 reserved;
  2679. __u16 max_frame_width_minus_1;
  2680. __u16 max_frame_height_minus_1;
  2681. };
  2682. #define V4L2_CID_STATELESS_AV1_TILE_GROUP_ENTRY (V4L2_CID_CODEC_STATELESS_BASE + 501)
  2683. /**
  2684. * struct v4l2_ctrl_av1_tile_group_entry - AV1 Tile Group entry
  2685. *
  2686. * Represents a single AV1 tile inside an AV1 Tile Group. Note that MiRowStart,
  2687. * MiRowEnd, MiColStart and MiColEnd can be retrieved from struct
  2688. * v4l2_av1_tile_info in struct v4l2_ctrl_av1_frame using tile_row and
  2689. * tile_col. See section 6.10.1 "General tile group OBU semantics" for more
  2690. * details.
  2691. *
  2692. * @tile_offset: offset from the OBU data, i.e. where the coded tile data
  2693. * actually starts.
  2694. * @tile_size: specifies the size in bytes of the coded tile. Equivalent to
  2695. * "TileSize" in the AV1 Specification.
  2696. * @tile_row: specifies the row of the current tile. Equivalent to "TileRow" in
  2697. * the AV1 Specification.
  2698. * @tile_col: specifies the col of the current tile. Equivalent to "TileCol" in
  2699. * the AV1 Specification.
  2700. */
  2701. struct v4l2_ctrl_av1_tile_group_entry {
  2702. __u32 tile_offset;
  2703. __u32 tile_size;
  2704. __u32 tile_row;
  2705. __u32 tile_col;
  2706. };
  2707. /**
  2708. * enum v4l2_av1_warp_model - AV1 Warp Model as described in section 3
  2709. * "Symbols and abbreviated terms" of the AV1 Specification.
  2710. *
  2711. * @V4L2_AV1_WARP_MODEL_IDENTITY: Warp model is just an identity transform.
  2712. * @V4L2_AV1_WARP_MODEL_TRANSLATION: Warp model is a pure translation.
  2713. * @V4L2_AV1_WARP_MODEL_ROTZOOM: Warp model is a rotation + symmetric zoom +
  2714. * translation.
  2715. * @V4L2_AV1_WARP_MODEL_AFFINE: Warp model is a general affine transform.
  2716. */
  2717. enum v4l2_av1_warp_model {
  2718. V4L2_AV1_WARP_MODEL_IDENTITY = 0,
  2719. V4L2_AV1_WARP_MODEL_TRANSLATION = 1,
  2720. V4L2_AV1_WARP_MODEL_ROTZOOM = 2,
  2721. V4L2_AV1_WARP_MODEL_AFFINE = 3,
  2722. };
  2723. /**
  2724. * enum v4l2_av1_reference_frame - AV1 reference frames
  2725. *
  2726. * @V4L2_AV1_REF_INTRA_FRAME: Intra Frame Reference
  2727. * @V4L2_AV1_REF_LAST_FRAME: Last Reference Frame
  2728. * @V4L2_AV1_REF_LAST2_FRAME: Last2 Reference Frame
  2729. * @V4L2_AV1_REF_LAST3_FRAME: Last3 Reference Frame
  2730. * @V4L2_AV1_REF_GOLDEN_FRAME: Golden Reference Frame
  2731. * @V4L2_AV1_REF_BWDREF_FRAME: BWD Reference Frame
  2732. * @V4L2_AV1_REF_ALTREF2_FRAME: Alternative2 Reference Frame
  2733. * @V4L2_AV1_REF_ALTREF_FRAME: Alternative Reference Frame
  2734. */
  2735. enum v4l2_av1_reference_frame {
  2736. V4L2_AV1_REF_INTRA_FRAME = 0,
  2737. V4L2_AV1_REF_LAST_FRAME = 1,
  2738. V4L2_AV1_REF_LAST2_FRAME = 2,
  2739. V4L2_AV1_REF_LAST3_FRAME = 3,
  2740. V4L2_AV1_REF_GOLDEN_FRAME = 4,
  2741. V4L2_AV1_REF_BWDREF_FRAME = 5,
  2742. V4L2_AV1_REF_ALTREF2_FRAME = 6,
  2743. V4L2_AV1_REF_ALTREF_FRAME = 7,
  2744. };
  2745. #define V4L2_AV1_GLOBAL_MOTION_IS_INVALID(ref) (1 << (ref))
  2746. #define V4L2_AV1_GLOBAL_MOTION_FLAG_IS_GLOBAL 0x1
  2747. #define V4L2_AV1_GLOBAL_MOTION_FLAG_IS_ROT_ZOOM 0x2
  2748. #define V4L2_AV1_GLOBAL_MOTION_FLAG_IS_TRANSLATION 0x4
  2749. /**
  2750. * struct v4l2_av1_global_motion - AV1 Global Motion parameters as described in
  2751. * section 6.8.17 "Global motion params semantics" of the AV1 specification.
  2752. *
  2753. * @flags: A bitfield containing the flags per reference frame. See
  2754. * V4L2_AV1_GLOBAL_MOTION_FLAG_{}
  2755. * @type: The type of global motion transform used.
  2756. * @params: this field has the same meaning as "gm_params" in the AV1
  2757. * specification.
  2758. * @invalid: bitfield indicating whether the global motion params are invalid
  2759. * for a given reference frame. See section 7.11.3.6 Setup shear process and
  2760. * the variable "warpValid". Use V4L2_AV1_GLOBAL_MOTION_IS_INVALID(ref) to
  2761. * create a suitable mask.
  2762. * @reserved: padding field. Should be zeroed by applications.
  2763. */
  2764. struct v4l2_av1_global_motion {
  2765. __u8 flags[V4L2_AV1_TOTAL_REFS_PER_FRAME];
  2766. enum v4l2_av1_warp_model type[V4L2_AV1_TOTAL_REFS_PER_FRAME];
  2767. __s32 params[V4L2_AV1_TOTAL_REFS_PER_FRAME][6];
  2768. __u8 invalid;
  2769. __u8 reserved[3];
  2770. };
  2771. /**
  2772. * enum v4l2_av1_frame_restoration_type - AV1 Frame Restoration Type
  2773. * @V4L2_AV1_FRAME_RESTORE_NONE: no filtering is applied.
  2774. * @V4L2_AV1_FRAME_RESTORE_WIENER: Wiener filter process is invoked.
  2775. * @V4L2_AV1_FRAME_RESTORE_SGRPROJ: self guided filter process is invoked.
  2776. * @V4L2_AV1_FRAME_RESTORE_SWITCHABLE: restoration filter is swichtable.
  2777. */
  2778. enum v4l2_av1_frame_restoration_type {
  2779. V4L2_AV1_FRAME_RESTORE_NONE = 0,
  2780. V4L2_AV1_FRAME_RESTORE_WIENER = 1,
  2781. V4L2_AV1_FRAME_RESTORE_SGRPROJ = 2,
  2782. V4L2_AV1_FRAME_RESTORE_SWITCHABLE = 3,
  2783. };
  2784. #define V4L2_AV1_LOOP_RESTORATION_FLAG_USES_LR 0x1
  2785. #define V4L2_AV1_LOOP_RESTORATION_FLAG_USES_CHROMA_LR 0x2
  2786. /**
  2787. * struct v4l2_av1_loop_restoration - AV1 Loop Restauration as described in
  2788. * section 6.10.15 "Loop restoration params semantics" of the AV1 specification.
  2789. *
  2790. * @flags: See V4L2_AV1_LOOP_RESTORATION_FLAG_{}.
  2791. * @lr_unit_shift: specifies if the luma restoration size should be halved.
  2792. * @lr_uv_shift: specifies if the chroma size should be half the luma size.
  2793. * @reserved: padding field. Should be zeroed by applications.
  2794. * @frame_restoration_type: specifies the type of restoration used for each
  2795. * plane. See enum v4l2_av1_frame_restoration_type.
  2796. * @loop_restoration_size: specifies the size of loop restoration units in units
  2797. * of samples in the current plane.
  2798. */
  2799. struct v4l2_av1_loop_restoration {
  2800. __u8 flags;
  2801. __u8 lr_unit_shift;
  2802. __u8 lr_uv_shift;
  2803. __u8 reserved;
  2804. enum v4l2_av1_frame_restoration_type frame_restoration_type[V4L2_AV1_NUM_PLANES_MAX];
  2805. __u32 loop_restoration_size[V4L2_AV1_MAX_NUM_PLANES];
  2806. };
  2807. /**
  2808. * struct v4l2_av1_cdef - AV1 CDEF params semantics as described in section
  2809. * 6.10.14 "CDEF params semantics" of the AV1 specification
  2810. *
  2811. * @damping_minus_3: controls the amount of damping in the deringing filter.
  2812. * @bits: specifies the number of bits needed to specify which CDEF filter to
  2813. * apply.
  2814. * @y_pri_strength: specifies the strength of the primary filter.
  2815. * @y_sec_strength: specifies the strength of the secondary filter.
  2816. * @uv_pri_strength: specifies the strength of the primary filter.
  2817. * @uv_sec_strength: specifies the strength of the secondary filter.
  2818. */
  2819. struct v4l2_av1_cdef {
  2820. __u8 damping_minus_3;
  2821. __u8 bits;
  2822. __u8 y_pri_strength[V4L2_AV1_CDEF_MAX];
  2823. __u8 y_sec_strength[V4L2_AV1_CDEF_MAX];
  2824. __u8 uv_pri_strength[V4L2_AV1_CDEF_MAX];
  2825. __u8 uv_sec_strength[V4L2_AV1_CDEF_MAX];
  2826. };
  2827. #define V4L2_AV1_SEGMENTATION_FLAG_ENABLED 0x1
  2828. #define V4L2_AV1_SEGMENTATION_FLAG_UPDATE_MAP 0x2
  2829. #define V4L2_AV1_SEGMENTATION_FLAG_TEMPORAL_UPDATE 0x4
  2830. #define V4L2_AV1_SEGMENTATION_FLAG_UPDATE_DATA 0x8
  2831. #define V4L2_AV1_SEGMENTATION_FLAG_SEG_ID_PRE_SKIP 0x10
  2832. /**
  2833. * enum v4l2_av1_segment_feature - AV1 segment features as described in section
  2834. * 3 "Symbols and abbreviated terms" of the AV1 specification.
  2835. *
  2836. * @V4L2_AV1_SEG_LVL_ALT_Q: Index for quantizer segment feature.
  2837. * @V4L2_AV1_SEG_LVL_ALT_LF_Y_V: Index for vertical luma loop filter segment
  2838. * feature.
  2839. * @V4L2_AV1_SEG_LVL_REF_FRAME: Index for reference frame segment feature.
  2840. * @V4L2_AV1_SEG_LVL_REF_SKIP: Index for skip segment feature.
  2841. * @V4L2_AV1_SEG_LVL_REF_GLOBALMV: Index for global mv feature.
  2842. * @V4L2_AV1_SEG_LVL_MAX: Number of segment features.
  2843. */
  2844. enum v4l2_av1_segment_feature {
  2845. V4L2_AV1_SEG_LVL_ALT_Q = 0,
  2846. V4L2_AV1_SEG_LVL_ALT_LF_Y_V = 1,
  2847. V4L2_AV1_SEG_LVL_REF_FRAME = 5,
  2848. V4L2_AV1_SEG_LVL_REF_SKIP = 6,
  2849. V4L2_AV1_SEG_LVL_REF_GLOBALMV = 7,
  2850. V4L2_AV1_SEG_LVL_MAX = 8
  2851. };
  2852. #define V4L2_AV1_SEGMENT_FEATURE_ENABLED(id) (1 << (id))
  2853. /**
  2854. * struct v4l2_av1_segmentation - AV1 Segmentation params as defined in section
  2855. * 6.8.13 "Segmentation params semantics" of the AV1 specification.
  2856. *
  2857. * @flags: see V4L2_AV1_SEGMENTATION_FLAG_{}.
  2858. * @last_active_seg_id: indicates the highest numbered segment id that has some
  2859. * enabled feature. This is used when decoding the segment id to only decode
  2860. * choices corresponding to used segments.
  2861. * @feature_enabled: bitmask defining which features are enabled in each
  2862. * segment. Use V4L2_AV1_SEGMENT_FEATURE_ENABLED to build a suitable mask.
  2863. * @feature_data: data attached to each feature. Data entry is only valid if the
  2864. * feature is enabled
  2865. */
  2866. struct v4l2_av1_segmentation {
  2867. __u8 flags;
  2868. __u8 last_active_seg_id;
  2869. __u8 feature_enabled[V4L2_AV1_MAX_SEGMENTS];
  2870. __s16 feature_data[V4L2_AV1_MAX_SEGMENTS][V4L2_AV1_SEG_LVL_MAX];
  2871. };
  2872. #define V4L2_AV1_LOOP_FILTER_FLAG_DELTA_ENABLED 0x1
  2873. #define V4L2_AV1_LOOP_FILTER_FLAG_DELTA_UPDATE 0x2
  2874. #define V4L2_AV1_LOOP_FILTER_FLAG_DELTA_LF_PRESENT 0x4
  2875. #define V4L2_AV1_LOOP_FILTER_FLAG_DELTA_LF_MULTI 0x8
  2876. /**
  2877. * struct v4l2_av1_loop_filter - AV1 Loop filter params as defined in section
  2878. * 6.8.10 "Loop filter semantics" and 6.8.16 "Loop filter delta parameters
  2879. * semantics" of the AV1 specification.
  2880. *
  2881. * @flags: see V4L2_AV1_LOOP_FILTER_FLAG_{}
  2882. * @level: an array containing loop filter strength values. Different loop
  2883. * filter strength values from the array are used depending on the image plane
  2884. * being filtered, and the edge direction (vertical or horizontal) being
  2885. * filtered.
  2886. * @sharpness: indicates the sharpness level. The loop_filter_level and
  2887. * loop_filter_sharpness together determine when a block edge is filtered, and
  2888. * by how much the filtering can change the sample values. The loop filter
  2889. * process is described in section 7.14 of the AV1 specification.
  2890. * @ref_deltas: contains the adjustment needed for the filter level based on the
  2891. * chosen reference frame. If this syntax element is not present, it maintains
  2892. * its previous value.
  2893. * @mode_deltas: contains the adjustment needed for the filter level based on
  2894. * the chosen mode. If this syntax element is not present, it maintains its
  2895. * previous value.
  2896. * @delta_lf_res: specifies the left shift which should be applied to decoded
  2897. * loop filter delta values.
  2898. */
  2899. struct v4l2_av1_loop_filter {
  2900. __u8 flags;
  2901. __u8 level[4];
  2902. __u8 sharpness;
  2903. __s8 ref_deltas[V4L2_AV1_TOTAL_REFS_PER_FRAME];
  2904. __s8 mode_deltas[2];
  2905. __u8 delta_lf_res;
  2906. };
  2907. #define V4L2_AV1_QUANTIZATION_FLAG_DIFF_UV_DELTA 0x1
  2908. #define V4L2_AV1_QUANTIZATION_FLAG_USING_QMATRIX 0x2
  2909. #define V4L2_AV1_QUANTIZATION_FLAG_DELTA_Q_PRESENT 0x4
  2910. /**
  2911. * struct v4l2_av1_quantization - AV1 Quantization params as defined in section
  2912. * 6.8.11 "Quantization params semantics" of the AV1 specification.
  2913. *
  2914. * @flags: see V4L2_AV1_QUANTIZATION_FLAG_{}
  2915. * @base_q_idx: indicates the base frame qindex. This is used for Y AC
  2916. * coefficients and as the base value for the other quantizers.
  2917. * @delta_q_y_dc: indicates the Y DC quantizer relative to base_q_idx.
  2918. * @delta_q_u_dc: indicates the U DC quantizer relative to base_q_idx.
  2919. * @delta_q_u_ac: indicates the U AC quantizer relative to base_q_idx.
  2920. * @delta_q_v_dc: indicates the V DC quantizer relative to base_q_idx.
  2921. * @delta_q_v_ac: indicates the V AC quantizer relative to base_q_idx.
  2922. * @qm_y: specifies the level in the quantizer matrix that should be used for
  2923. * luma plane decoding.
  2924. * @qm_u: specifies the level in the quantizer matrix that should be used for
  2925. * chroma U plane decoding.
  2926. * @qm_v: specifies the level in the quantizer matrix that should be used for
  2927. * chroma V plane decoding.
  2928. * @delta_q_res: specifies the left shift which should be applied to decoded
  2929. * quantizer index delta values.
  2930. */
  2931. struct v4l2_av1_quantization {
  2932. __u8 flags;
  2933. __u8 base_q_idx;
  2934. __s8 delta_q_y_dc;
  2935. __s8 delta_q_u_dc;
  2936. __s8 delta_q_u_ac;
  2937. __s8 delta_q_v_dc;
  2938. __s8 delta_q_v_ac;
  2939. __u8 qm_y;
  2940. __u8 qm_u;
  2941. __u8 qm_v;
  2942. __u8 delta_q_res;
  2943. };
  2944. #define V4L2_AV1_TILE_INFO_FLAG_UNIFORM_TILE_SPACING 0x1
  2945. /**
  2946. * struct v4l2_av1_tile_info - AV1 Tile info as defined in section 6.8.14 "Tile
  2947. * info semantics" of the AV1 specification.
  2948. *
  2949. * @flags: see V4L2_AV1_TILE_INFO_FLAG_{}
  2950. * @context_update_tile_id: specifies which tile to use for the CDF update.
  2951. * @tile_rows: specifies the number of tiles down the frame.
  2952. * @tile_cols: specifies the number of tiles across the frame.
  2953. * @mi_col_starts: an array specifying the start column (in units of 4x4 luma
  2954. * samples) for each tile across the image.
  2955. * @mi_row_starts: an array specifying the start row (in units of 4x4 luma
  2956. * samples) for each tile down the image.
  2957. * @width_in_sbs_minus_1: specifies the width of a tile minus 1 in units of
  2958. * superblocks.
  2959. * @height_in_sbs_minus_1: specifies the height of a tile minus 1 in units of
  2960. * superblocks.
  2961. * @tile_size_bytes: specifies the number of bytes needed to code each tile
  2962. * size.
  2963. * @reserved: padding field. Should be zeroed by applications.
  2964. */
  2965. struct v4l2_av1_tile_info {
  2966. __u8 flags;
  2967. __u8 context_update_tile_id;
  2968. __u8 tile_cols;
  2969. __u8 tile_rows;
  2970. __u32 mi_col_starts[V4L2_AV1_MAX_TILE_COLS + 1];
  2971. __u32 mi_row_starts[V4L2_AV1_MAX_TILE_ROWS + 1];
  2972. __u32 width_in_sbs_minus_1[V4L2_AV1_MAX_TILE_COLS];
  2973. __u32 height_in_sbs_minus_1[V4L2_AV1_MAX_TILE_ROWS];
  2974. __u8 tile_size_bytes;
  2975. __u8 reserved[3];
  2976. };
  2977. /**
  2978. * enum v4l2_av1_frame_type - AV1 Frame Type
  2979. *
  2980. * @V4L2_AV1_KEY_FRAME: Key frame
  2981. * @V4L2_AV1_INTER_FRAME: Inter frame
  2982. * @V4L2_AV1_INTRA_ONLY_FRAME: Intra-only frame
  2983. * @V4L2_AV1_SWITCH_FRAME: Switch frame
  2984. */
  2985. enum v4l2_av1_frame_type {
  2986. V4L2_AV1_KEY_FRAME = 0,
  2987. V4L2_AV1_INTER_FRAME = 1,
  2988. V4L2_AV1_INTRA_ONLY_FRAME = 2,
  2989. V4L2_AV1_SWITCH_FRAME = 3
  2990. };
  2991. /**
  2992. * enum v4l2_av1_interpolation_filter - AV1 interpolation filter types
  2993. *
  2994. * @V4L2_AV1_INTERPOLATION_FILTER_EIGHTTAP: eight tap filter
  2995. * @V4L2_AV1_INTERPOLATION_FILTER_EIGHTTAP_SMOOTH: eight tap smooth filter
  2996. * @V4L2_AV1_INTERPOLATION_FILTER_EIGHTTAP_SHARP: eight tap sharp filter
  2997. * @V4L2_AV1_INTERPOLATION_FILTER_BILINEAR: bilinear filter
  2998. * @V4L2_AV1_INTERPOLATION_FILTER_SWITCHABLE: filter selection is signaled at
  2999. * the block level
  3000. *
  3001. * See section 6.8.9 "Interpolation filter semantics" of the AV1 specification
  3002. * for more details.
  3003. */
  3004. enum v4l2_av1_interpolation_filter {
  3005. V4L2_AV1_INTERPOLATION_FILTER_EIGHTTAP = 0,
  3006. V4L2_AV1_INTERPOLATION_FILTER_EIGHTTAP_SMOOTH = 1,
  3007. V4L2_AV1_INTERPOLATION_FILTER_EIGHTTAP_SHARP = 2,
  3008. V4L2_AV1_INTERPOLATION_FILTER_BILINEAR = 3,
  3009. V4L2_AV1_INTERPOLATION_FILTER_SWITCHABLE = 4,
  3010. };
  3011. /**
  3012. * enum v4l2_av1_tx_mode - AV1 Tx mode as described in section 6.8.21 "TX mode
  3013. * semantics" of the AV1 specification.
  3014. * @V4L2_AV1_TX_MODE_ONLY_4X4: the inverse transform will use only 4x4
  3015. * transforms
  3016. * @V4L2_AV1_TX_MODE_LARGEST: the inverse transform will use the largest
  3017. * transform size that fits inside the block
  3018. * @V4L2_AV1_TX_MODE_SELECT: the choice of transform size is specified
  3019. * explicitly for each block.
  3020. */
  3021. enum v4l2_av1_tx_mode {
  3022. V4L2_AV1_TX_MODE_ONLY_4X4 = 0,
  3023. V4L2_AV1_TX_MODE_LARGEST = 1,
  3024. V4L2_AV1_TX_MODE_SELECT = 2
  3025. };
  3026. #define V4L2_AV1_FRAME_FLAG_SHOW_FRAME 0x00000001
  3027. #define V4L2_AV1_FRAME_FLAG_SHOWABLE_FRAME 0x00000002
  3028. #define V4L2_AV1_FRAME_FLAG_ERROR_RESILIENT_MODE 0x00000004
  3029. #define V4L2_AV1_FRAME_FLAG_DISABLE_CDF_UPDATE 0x00000008
  3030. #define V4L2_AV1_FRAME_FLAG_ALLOW_SCREEN_CONTENT_TOOLS 0x00000010
  3031. #define V4L2_AV1_FRAME_FLAG_FORCE_INTEGER_MV 0x00000020
  3032. #define V4L2_AV1_FRAME_FLAG_ALLOW_INTRABC 0x00000040
  3033. #define V4L2_AV1_FRAME_FLAG_USE_SUPERRES 0x00000080
  3034. #define V4L2_AV1_FRAME_FLAG_ALLOW_HIGH_PRECISION_MV 0x00000100
  3035. #define V4L2_AV1_FRAME_FLAG_IS_MOTION_MODE_SWITCHABLE 0x00000200
  3036. #define V4L2_AV1_FRAME_FLAG_USE_REF_FRAME_MVS 0x00000400
  3037. #define V4L2_AV1_FRAME_FLAG_DISABLE_FRAME_END_UPDATE_CDF 0x00000800
  3038. #define V4L2_AV1_FRAME_FLAG_ALLOW_WARPED_MOTION 0x00001000
  3039. #define V4L2_AV1_FRAME_FLAG_REFERENCE_SELECT 0x00002000
  3040. #define V4L2_AV1_FRAME_FLAG_REDUCED_TX_SET 0x00004000
  3041. #define V4L2_AV1_FRAME_FLAG_SKIP_MODE_ALLOWED 0x00008000
  3042. #define V4L2_AV1_FRAME_FLAG_SKIP_MODE_PRESENT 0x00010000
  3043. #define V4L2_AV1_FRAME_FLAG_FRAME_SIZE_OVERRIDE 0x00020000
  3044. #define V4L2_AV1_FRAME_FLAG_BUFFER_REMOVAL_TIME_PRESENT 0x00040000
  3045. #define V4L2_AV1_FRAME_FLAG_FRAME_REFS_SHORT_SIGNALING 0x00080000
  3046. #define V4L2_CID_STATELESS_AV1_FRAME (V4L2_CID_CODEC_STATELESS_BASE + 502)
  3047. /**
  3048. * struct v4l2_ctrl_av1_frame - Represents an AV1 Frame Header OBU.
  3049. *
  3050. * @tile_info: tile info
  3051. * @quantization: quantization params
  3052. * @segmentation: segmentation params
  3053. * @superres_denom: the denominator for the upscaling ratio.
  3054. * @loop_filter: loop filter params
  3055. * @cdef: cdef params
  3056. * @skip_mode_frame: specifies the frames to use for compound prediction when
  3057. * skip_mode is equal to 1.
  3058. * @primary_ref_frame: specifies which reference frame contains the CDF values
  3059. * and other state that should be loaded at the start of the frame.
  3060. * @loop_restoration: loop restoration params
  3061. * @global_motion: global motion params
  3062. * @flags: see V4L2_AV1_FRAME_FLAG_{}
  3063. * @frame_type: specifies the AV1 frame type
  3064. * @order_hint: specifies OrderHintBits least significant bits of the expected
  3065. * output order for this frame.
  3066. * @upscaled_width: the upscaled width.
  3067. * @interpolation_filter: specifies the filter selection used for performing
  3068. * inter prediction.
  3069. * @tx_mode: specifies how the transform size is determined.
  3070. * @frame_width_minus_1: add 1 to get the frame's width.
  3071. * @frame_height_minus_1: add 1 to get the frame's height
  3072. * @render_width_minus_1: add 1 to get the render width of the frame in luma
  3073. * samples.
  3074. * @render_height_minus_1: add 1 to get the render height of the frame in luma
  3075. * samples.
  3076. * @current_frame_id: specifies the frame id number for the current frame. Frame
  3077. * id numbers are additional information that do not affect the decoding
  3078. * process, but provide decoders with a way of detecting missing reference
  3079. * frames so that appropriate action can be taken.
  3080. * @buffer_removal_time: specifies the frame removal time in units of DecCT clock
  3081. * ticks counted from the removal time of the last random access point for
  3082. * operating point opNum.
  3083. * @reserved: padding field. Should be zeroed by applications.
  3084. * @order_hints: specifies the expected output order hint for each reference
  3085. * frame. This field corresponds to the OrderHints variable from the
  3086. * specification (section 5.9.2 "Uncompressed header syntax"). As such, this is
  3087. * only used for non-intra frames and ignored otherwise. order_hints[0] is
  3088. * always ignored.
  3089. * @reference_frame_ts: the V4L2 timestamp of the reference frame slots.
  3090. * @ref_frame_idx: used to index into @reference_frame_ts when decoding
  3091. * inter-frames. The meaning of this array is the same as in the specification.
  3092. * The timestamp refers to the timestamp field in struct v4l2_buffer. Use
  3093. * v4l2_timeval_to_ns() to convert the struct timeval to a __u64.
  3094. * @refresh_frame_flags: contains a bitmask that specifies which reference frame
  3095. * slots will be updated with the current frame after it is decoded.
  3096. */
  3097. struct v4l2_ctrl_av1_frame {
  3098. struct v4l2_av1_tile_info tile_info;
  3099. struct v4l2_av1_quantization quantization;
  3100. __u8 superres_denom;
  3101. struct v4l2_av1_segmentation segmentation;
  3102. struct v4l2_av1_loop_filter loop_filter;
  3103. struct v4l2_av1_cdef cdef;
  3104. __u8 skip_mode_frame[2];
  3105. __u8 primary_ref_frame;
  3106. struct v4l2_av1_loop_restoration loop_restoration;
  3107. struct v4l2_av1_global_motion global_motion;
  3108. __u32 flags;
  3109. enum v4l2_av1_frame_type frame_type;
  3110. __u32 order_hint;
  3111. __u32 upscaled_width;
  3112. enum v4l2_av1_interpolation_filter interpolation_filter;
  3113. enum v4l2_av1_tx_mode tx_mode;
  3114. __u32 frame_width_minus_1;
  3115. __u32 frame_height_minus_1;
  3116. __u16 render_width_minus_1;
  3117. __u16 render_height_minus_1;
  3118. __u32 current_frame_id;
  3119. __u32 buffer_removal_time[V4L2_AV1_MAX_OPERATING_POINTS];
  3120. __u8 reserved[4];
  3121. __u32 order_hints[V4L2_AV1_TOTAL_REFS_PER_FRAME];
  3122. __u64 reference_frame_ts[V4L2_AV1_TOTAL_REFS_PER_FRAME];
  3123. __s8 ref_frame_idx[V4L2_AV1_REFS_PER_FRAME];
  3124. __u8 refresh_frame_flags;
  3125. };
  3126. #define V4L2_AV1_FILM_GRAIN_FLAG_APPLY_GRAIN 0x1
  3127. #define V4L2_AV1_FILM_GRAIN_FLAG_UPDATE_GRAIN 0x2
  3128. #define V4L2_AV1_FILM_GRAIN_FLAG_CHROMA_SCALING_FROM_LUMA 0x4
  3129. #define V4L2_AV1_FILM_GRAIN_FLAG_OVERLAP 0x8
  3130. #define V4L2_AV1_FILM_GRAIN_FLAG_CLIP_TO_RESTRICTED_RANGE 0x10
  3131. #define V4L2_CID_STATELESS_AV1_FILM_GRAIN (V4L2_CID_CODEC_STATELESS_BASE + 505)
  3132. /**
  3133. * struct v4l2_ctrl_av1_film_grain - AV1 Film Grain parameters.
  3134. *
  3135. * Film grain parameters as specified by section 6.8.20 of the AV1 Specification.
  3136. *
  3137. * @flags: see V4L2_AV1_FILM_GRAIN_{}.
  3138. * @cr_mult: represents a multiplier for the cr component used in derivation of
  3139. * the input index to the cr component scaling function.
  3140. * @grain_seed: specifies the starting value for the pseudo-random numbers used
  3141. * during film grain synthesis.
  3142. * @film_grain_params_ref_idx: indicates which reference frame contains the
  3143. * film grain parameters to be used for this frame.
  3144. * @num_y_points: specifies the number of points for the piece-wise linear
  3145. * scaling function of the luma component.
  3146. * @point_y_value: represents the x (luma value) coordinate for the i-th point
  3147. * of the piecewise linear scaling function for luma component. The values are
  3148. * signaled on the scale of 0..255. In case of 10 bit video, these values
  3149. * correspond to luma values divided by 4. In case of 12 bit video, these values
  3150. * correspond to luma values divided by 16.
  3151. * @point_y_scaling: represents the scaling (output) value for the i-th point
  3152. * of the piecewise linear scaling function for luma component.
  3153. * @num_cb_points: specifies the number of points for the piece-wise linear
  3154. * scaling function of the cb component.
  3155. * @point_cb_value: represents the x coordinate for the i-th point of the
  3156. * piece-wise linear scaling function for cb component. The values are signaled
  3157. * on the scale of 0..255.
  3158. * @point_cb_scaling: represents the scaling (output) value for the i-th point
  3159. * of the piecewise linear scaling function for cb component.
  3160. * @num_cr_points: specifies represents the number of points for the piece-wise
  3161. * linear scaling function of the cr component.
  3162. * @point_cr_value: represents the x coordinate for the i-th point of the
  3163. * piece-wise linear scaling function for cr component. The values are signaled
  3164. * on the scale of 0..255.
  3165. * @point_cr_scaling: represents the scaling (output) value for the i-th point
  3166. * of the piecewise linear scaling function for cr component.
  3167. * @grain_scaling_minus_8: represents the shift – 8 applied to the values of the
  3168. * chroma component. The grain_scaling_minus_8 can take values of 0..3 and
  3169. * determines the range and quantization step of the standard deviation of film
  3170. * grain.
  3171. * @ar_coeff_lag: specifies the number of auto-regressive coefficients for luma
  3172. * and chroma.
  3173. * @ar_coeffs_y_plus_128: specifies auto-regressive coefficients used for the Y
  3174. * plane.
  3175. * @ar_coeffs_cb_plus_128: specifies auto-regressive coefficients used for the U
  3176. * plane.
  3177. * @ar_coeffs_cr_plus_128: specifies auto-regressive coefficients used for the V
  3178. * plane.
  3179. * @ar_coeff_shift_minus_6: specifies the range of the auto-regressive
  3180. * coefficients. Values of 0, 1, 2, and 3 correspond to the ranges for
  3181. * auto-regressive coefficients of [-2, 2), [-1, 1), [-0.5, 0.5) and [-0.25,
  3182. * 0.25) respectively.
  3183. * @grain_scale_shift: specifies how much the Gaussian random numbers should be
  3184. * scaled down during the grain synthesis process.
  3185. * @cb_mult: represents a multiplier for the cb component used in derivation of
  3186. * the input index to the cb component scaling function.
  3187. * @cb_luma_mult: represents a multiplier for the average luma component used in
  3188. * derivation of the input index to the cb component scaling function.
  3189. * @cr_luma_mult: represents a multiplier for the average luma component used in
  3190. * derivation of the input index to the cr component scaling function.
  3191. * @cb_offset: represents an offset used in derivation of the input index to the
  3192. * cb component scaling function.
  3193. * @cr_offset: represents an offset used in derivation of the input index to the
  3194. * cr component scaling function.
  3195. * @reserved: padding field. Should be zeroed by applications.
  3196. */
  3197. struct v4l2_ctrl_av1_film_grain {
  3198. __u8 flags;
  3199. __u8 cr_mult;
  3200. __u16 grain_seed;
  3201. __u8 film_grain_params_ref_idx;
  3202. __u8 num_y_points;
  3203. __u8 point_y_value[V4L2_AV1_MAX_NUM_Y_POINTS];
  3204. __u8 point_y_scaling[V4L2_AV1_MAX_NUM_Y_POINTS];
  3205. __u8 num_cb_points;
  3206. __u8 point_cb_value[V4L2_AV1_MAX_NUM_CB_POINTS];
  3207. __u8 point_cb_scaling[V4L2_AV1_MAX_NUM_CB_POINTS];
  3208. __u8 num_cr_points;
  3209. __u8 point_cr_value[V4L2_AV1_MAX_NUM_CR_POINTS];
  3210. __u8 point_cr_scaling[V4L2_AV1_MAX_NUM_CR_POINTS];
  3211. __u8 grain_scaling_minus_8;
  3212. __u8 ar_coeff_lag;
  3213. __u8 ar_coeffs_y_plus_128[V4L2_AV1_AR_COEFFS_SIZE];
  3214. __u8 ar_coeffs_cb_plus_128[V4L2_AV1_AR_COEFFS_SIZE];
  3215. __u8 ar_coeffs_cr_plus_128[V4L2_AV1_AR_COEFFS_SIZE];
  3216. __u8 ar_coeff_shift_minus_6;
  3217. __u8 grain_scale_shift;
  3218. __u8 cb_mult;
  3219. __u8 cb_luma_mult;
  3220. __u8 cr_luma_mult;
  3221. __u16 cb_offset;
  3222. __u16 cr_offset;
  3223. __u8 reserved[4];
  3224. };
  3225. /* MPEG-compression definitions kept for backwards compatibility */
  3226. #define V4L2_CTRL_CLASS_MPEG V4L2_CTRL_CLASS_CODEC
  3227. #define V4L2_CID_MPEG_CLASS V4L2_CID_CODEC_CLASS
  3228. #define V4L2_CID_MPEG_BASE V4L2_CID_CODEC_BASE
  3229. #define V4L2_CID_MPEG_CX2341X_BASE V4L2_CID_CODEC_CX2341X_BASE
  3230. #define V4L2_CID_MPEG_MFC51_BASE V4L2_CID_CODEC_MFC51_BASE
  3231. #endif