xref: /linux/include/uapi/linux/v4l2-controls.h (revision fe33c0fbed75dd464747c0faaedf94c7d8eb4101)
1e2be04c7SGreg Kroah-Hartman /* SPDX-License-Identifier: ((GPL-2.0+ WITH Linux-syscall-note) OR BSD-3-Clause) */
2607ca46eSDavid Howells /*
3607ca46eSDavid Howells  *  Video for Linux Two controls header file
4607ca46eSDavid Howells  *
5607ca46eSDavid Howells  *  Copyright (C) 1999-2012 the contributors
6607ca46eSDavid Howells  *
7607ca46eSDavid Howells  *  The contents of this header was split off from videodev2.h. All control
8607ca46eSDavid Howells  *  definitions should be added to this header, which is included by
9607ca46eSDavid Howells  *  videodev2.h.
10607ca46eSDavid Howells  */
11607ca46eSDavid Howells 
12607ca46eSDavid Howells #ifndef __LINUX_V4L2_CONTROLS_H
13607ca46eSDavid Howells #define __LINUX_V4L2_CONTROLS_H
14607ca46eSDavid Howells 
15ce67eacaSJoe Richey #include <linux/const.h>
16df18bfd3SArnd Bergmann #include <linux/types.h>
17df18bfd3SArnd Bergmann 
18607ca46eSDavid Howells /* Control classes */
19607ca46eSDavid Howells #define V4L2_CTRL_CLASS_USER		0x00980000	/* Old-style 'user' controls */
2035aaa6e6SEzequiel Garcia #define V4L2_CTRL_CLASS_CODEC		0x00990000	/* Stateful codec controls */
21607ca46eSDavid Howells #define V4L2_CTRL_CLASS_CAMERA		0x009a0000	/* Camera class controls */
225a1d3e9fSHans Verkuil #define V4L2_CTRL_CLASS_FM_TX		0x009b0000	/* FM Modulator controls */
23607ca46eSDavid Howells #define V4L2_CTRL_CLASS_FLASH		0x009c0000	/* Camera flash controls */
24607ca46eSDavid Howells #define V4L2_CTRL_CLASS_JPEG		0x009d0000	/* JPEG-compression controls */
25607ca46eSDavid Howells #define V4L2_CTRL_CLASS_IMAGE_SOURCE	0x009e0000	/* Image source controls */
26607ca46eSDavid Howells #define V4L2_CTRL_CLASS_IMAGE_PROC	0x009f0000	/* Image processing controls */
27607ca46eSDavid Howells #define V4L2_CTRL_CLASS_DV		0x00a00000	/* Digital Video controls */
285a1d3e9fSHans Verkuil #define V4L2_CTRL_CLASS_FM_RX		0x00a10000	/* FM Receiver controls */
2980807fadSAntti Palosaari #define V4L2_CTRL_CLASS_RF_TUNER	0x00a20000	/* RF tuner controls */
30a77b4fc0SHans Verkuil #define V4L2_CTRL_CLASS_DETECT		0x00a30000	/* Detection controls */
31008d2bd6SEzequiel Garcia #define V4L2_CTRL_CLASS_CODEC_STATELESS 0x00a40000	/* Stateless codecs controls */
32f31b9ffdSStanimir Varbanov #define V4L2_CTRL_CLASS_COLORIMETRY	0x00a50000	/* Colorimetry controls */
33607ca46eSDavid Howells 
34607ca46eSDavid Howells /* User-class control IDs */
35607ca46eSDavid Howells 
36607ca46eSDavid Howells #define V4L2_CID_BASE			(V4L2_CTRL_CLASS_USER | 0x900)
37607ca46eSDavid Howells #define V4L2_CID_USER_BASE		V4L2_CID_BASE
38607ca46eSDavid Howells #define V4L2_CID_USER_CLASS		(V4L2_CTRL_CLASS_USER | 1)
39607ca46eSDavid Howells #define V4L2_CID_BRIGHTNESS		(V4L2_CID_BASE+0)
40607ca46eSDavid Howells #define V4L2_CID_CONTRAST		(V4L2_CID_BASE+1)
41607ca46eSDavid Howells #define V4L2_CID_SATURATION		(V4L2_CID_BASE+2)
42607ca46eSDavid Howells #define V4L2_CID_HUE			(V4L2_CID_BASE+3)
43607ca46eSDavid Howells #define V4L2_CID_AUDIO_VOLUME		(V4L2_CID_BASE+5)
44607ca46eSDavid Howells #define V4L2_CID_AUDIO_BALANCE		(V4L2_CID_BASE+6)
45607ca46eSDavid Howells #define V4L2_CID_AUDIO_BASS		(V4L2_CID_BASE+7)
46607ca46eSDavid Howells #define V4L2_CID_AUDIO_TREBLE		(V4L2_CID_BASE+8)
47607ca46eSDavid Howells #define V4L2_CID_AUDIO_MUTE		(V4L2_CID_BASE+9)
48607ca46eSDavid Howells #define V4L2_CID_AUDIO_LOUDNESS		(V4L2_CID_BASE+10)
49607ca46eSDavid Howells #define V4L2_CID_BLACK_LEVEL		(V4L2_CID_BASE+11) /* Deprecated */
50607ca46eSDavid Howells #define V4L2_CID_AUTO_WHITE_BALANCE	(V4L2_CID_BASE+12)
51607ca46eSDavid Howells #define V4L2_CID_DO_WHITE_BALANCE	(V4L2_CID_BASE+13)
52607ca46eSDavid Howells #define V4L2_CID_RED_BALANCE		(V4L2_CID_BASE+14)
53607ca46eSDavid Howells #define V4L2_CID_BLUE_BALANCE		(V4L2_CID_BASE+15)
54607ca46eSDavid Howells #define V4L2_CID_GAMMA			(V4L2_CID_BASE+16)
55607ca46eSDavid Howells #define V4L2_CID_WHITENESS		(V4L2_CID_GAMMA) /* Deprecated */
56607ca46eSDavid Howells #define V4L2_CID_EXPOSURE		(V4L2_CID_BASE+17)
57607ca46eSDavid Howells #define V4L2_CID_AUTOGAIN		(V4L2_CID_BASE+18)
58607ca46eSDavid Howells #define V4L2_CID_GAIN			(V4L2_CID_BASE+19)
59607ca46eSDavid Howells #define V4L2_CID_HFLIP			(V4L2_CID_BASE+20)
60607ca46eSDavid Howells #define V4L2_CID_VFLIP			(V4L2_CID_BASE+21)
61607ca46eSDavid Howells 
62607ca46eSDavid Howells #define V4L2_CID_POWER_LINE_FREQUENCY	(V4L2_CID_BASE+24)
63607ca46eSDavid Howells enum v4l2_power_line_frequency {
64607ca46eSDavid Howells 	V4L2_CID_POWER_LINE_FREQUENCY_DISABLED	= 0,
65607ca46eSDavid Howells 	V4L2_CID_POWER_LINE_FREQUENCY_50HZ	= 1,
66607ca46eSDavid Howells 	V4L2_CID_POWER_LINE_FREQUENCY_60HZ	= 2,
67607ca46eSDavid Howells 	V4L2_CID_POWER_LINE_FREQUENCY_AUTO	= 3,
68607ca46eSDavid Howells };
69607ca46eSDavid Howells #define V4L2_CID_HUE_AUTO			(V4L2_CID_BASE+25)
70607ca46eSDavid Howells #define V4L2_CID_WHITE_BALANCE_TEMPERATURE	(V4L2_CID_BASE+26)
71607ca46eSDavid Howells #define V4L2_CID_SHARPNESS			(V4L2_CID_BASE+27)
72607ca46eSDavid Howells #define V4L2_CID_BACKLIGHT_COMPENSATION		(V4L2_CID_BASE+28)
73607ca46eSDavid Howells #define V4L2_CID_CHROMA_AGC                     (V4L2_CID_BASE+29)
74607ca46eSDavid Howells #define V4L2_CID_COLOR_KILLER                   (V4L2_CID_BASE+30)
75607ca46eSDavid Howells #define V4L2_CID_COLORFX			(V4L2_CID_BASE+31)
76607ca46eSDavid Howells enum v4l2_colorfx {
77607ca46eSDavid Howells 	V4L2_COLORFX_NONE			= 0,
78607ca46eSDavid Howells 	V4L2_COLORFX_BW				= 1,
79607ca46eSDavid Howells 	V4L2_COLORFX_SEPIA			= 2,
80607ca46eSDavid Howells 	V4L2_COLORFX_NEGATIVE			= 3,
81607ca46eSDavid Howells 	V4L2_COLORFX_EMBOSS			= 4,
82607ca46eSDavid Howells 	V4L2_COLORFX_SKETCH			= 5,
83607ca46eSDavid Howells 	V4L2_COLORFX_SKY_BLUE			= 6,
84607ca46eSDavid Howells 	V4L2_COLORFX_GRASS_GREEN		= 7,
85607ca46eSDavid Howells 	V4L2_COLORFX_SKIN_WHITEN		= 8,
86607ca46eSDavid Howells 	V4L2_COLORFX_VIVID			= 9,
87607ca46eSDavid Howells 	V4L2_COLORFX_AQUA			= 10,
88607ca46eSDavid Howells 	V4L2_COLORFX_ART_FREEZE			= 11,
89607ca46eSDavid Howells 	V4L2_COLORFX_SILHOUETTE			= 12,
90607ca46eSDavid Howells 	V4L2_COLORFX_SOLARIZATION		= 13,
91607ca46eSDavid Howells 	V4L2_COLORFX_ANTIQUE			= 14,
92607ca46eSDavid Howells 	V4L2_COLORFX_SET_CBCR			= 15,
93ef9f18a9SDillon Min 	V4L2_COLORFX_SET_RGB			= 16,
94607ca46eSDavid Howells };
95607ca46eSDavid Howells #define V4L2_CID_AUTOBRIGHTNESS			(V4L2_CID_BASE+32)
96607ca46eSDavid Howells #define V4L2_CID_BAND_STOP_FILTER		(V4L2_CID_BASE+33)
97607ca46eSDavid Howells 
98607ca46eSDavid Howells #define V4L2_CID_ROTATE				(V4L2_CID_BASE+34)
99607ca46eSDavid Howells #define V4L2_CID_BG_COLOR			(V4L2_CID_BASE+35)
100607ca46eSDavid Howells 
101607ca46eSDavid Howells #define V4L2_CID_CHROMA_GAIN                    (V4L2_CID_BASE+36)
102607ca46eSDavid Howells 
103607ca46eSDavid Howells #define V4L2_CID_ILLUMINATORS_1			(V4L2_CID_BASE+37)
104607ca46eSDavid Howells #define V4L2_CID_ILLUMINATORS_2			(V4L2_CID_BASE+38)
105607ca46eSDavid Howells 
106607ca46eSDavid Howells #define V4L2_CID_MIN_BUFFERS_FOR_CAPTURE	(V4L2_CID_BASE+39)
107607ca46eSDavid Howells #define V4L2_CID_MIN_BUFFERS_FOR_OUTPUT		(V4L2_CID_BASE+40)
108607ca46eSDavid Howells 
109607ca46eSDavid Howells #define V4L2_CID_ALPHA_COMPONENT		(V4L2_CID_BASE+41)
110607ca46eSDavid Howells #define V4L2_CID_COLORFX_CBCR			(V4L2_CID_BASE+42)
111ef9f18a9SDillon Min #define V4L2_CID_COLORFX_RGB			(V4L2_CID_BASE+43)
112607ca46eSDavid Howells 
113607ca46eSDavid Howells /* last CID + 1 */
114ef9f18a9SDillon Min #define V4L2_CID_LASTP1                         (V4L2_CID_BASE+44)
115607ca46eSDavid Howells 
116ed986d1fSHans Verkuil /* USER-class private control IDs */
117ed986d1fSHans Verkuil 
118ba47652bSHans Verkuil #ifndef __KERNEL__
119ba47652bSHans Verkuil /*
120ba47652bSHans Verkuil  * The base for the meye driver controls. This driver was removed, but
121ba47652bSHans Verkuil  * we keep this define in case any software still uses it.
122ba47652bSHans Verkuil  */
123ed986d1fSHans Verkuil #define V4L2_CID_USER_MEYE_BASE			(V4L2_CID_USER_BASE + 0x1000)
124ba47652bSHans Verkuil #endif
125607ca46eSDavid Howells 
12601df530cSHans Verkuil /* The base for the bttv driver controls.
12701df530cSHans Verkuil  * We reserve 32 controls for this driver. */
12801df530cSHans Verkuil #define V4L2_CID_USER_BTTV_BASE			(V4L2_CID_USER_BASE + 0x1010)
12901df530cSHans Verkuil 
13001df530cSHans Verkuil 
131192f1e78SHans Verkuil /* The base for the s2255 driver controls.
1322cb5972dSHans Verkuil  * We reserve 16 controls for this driver. */
1332cb5972dSHans Verkuil #define V4L2_CID_USER_S2255_BASE		(V4L2_CID_USER_BASE + 0x1030)
134192f1e78SHans Verkuil 
135d647f0b7SMauro Carvalho Chehab /*
136d647f0b7SMauro Carvalho Chehab  * The base for the si476x driver controls. See include/media/drv-intf/si476x.h
137d647f0b7SMauro Carvalho Chehab  * for the list of controls. Total of 16 controls is reserved for this driver
138d647f0b7SMauro Carvalho Chehab  */
1392cb5972dSHans Verkuil #define V4L2_CID_USER_SI476X_BASE		(V4L2_CID_USER_BASE + 0x1040)
14033a80fc2SAndrey Smirnov 
14145719127SArchit Taneja /* The base for the TI VPE driver controls. Total of 16 controls is reserved for
14245719127SArchit Taneja  * this driver */
14345719127SArchit Taneja #define V4L2_CID_USER_TI_VPE_BASE		(V4L2_CID_USER_BASE + 0x1050)
14445719127SArchit Taneja 
145718bde1aSHans Verkuil /* The base for the saa7134 driver controls.
146718bde1aSHans Verkuil  * We reserve 16 controls for this driver. */
147718bde1aSHans Verkuil #define V4L2_CID_USER_SAA7134_BASE		(V4L2_CID_USER_BASE + 0x1060)
148718bde1aSHans Verkuil 
14908b717c2SLars-Peter Clausen /* The base for the adv7180 driver controls.
15008b717c2SLars-Peter Clausen  * We reserve 16 controls for this driver. */
15108b717c2SLars-Peter Clausen #define V4L2_CID_USER_ADV7180_BASE		(V4L2_CID_USER_BASE + 0x1070)
15208b717c2SLars-Peter Clausen 
153d32d9864SMats Randgaard /* The base for the tc358743 driver controls.
154d32d9864SMats Randgaard  * We reserve 16 controls for this driver. */
155d32d9864SMats Randgaard #define V4L2_CID_USER_TC358743_BASE		(V4L2_CID_USER_BASE + 0x1080)
156d32d9864SMats Randgaard 
1578d67ae25SRamesh Shanmugasundaram /* The base for the max217x driver controls.
1588d67ae25SRamesh Shanmugasundaram  * We reserve 32 controls for this driver
1598d67ae25SRamesh Shanmugasundaram  */
1608d67ae25SRamesh Shanmugasundaram #define V4L2_CID_USER_MAX217X_BASE		(V4L2_CID_USER_BASE + 0x1090)
1618d67ae25SRamesh Shanmugasundaram 
162e1302912SSteve Longerbeam /* The base for the imx driver controls.
163e1302912SSteve Longerbeam  * We reserve 16 controls for this driver. */
164421860b9SSteve Longerbeam #define V4L2_CID_USER_IMX_BASE			(V4L2_CID_USER_BASE + 0x10b0)
165e1302912SSteve Longerbeam 
1664e52889fSEugen Hristev /*
1674e52889fSEugen Hristev  * The base for the atmel isc driver controls.
1684e52889fSEugen Hristev  * We reserve 32 controls for this driver.
1694e52889fSEugen Hristev  */
1704e52889fSEugen Hristev #define V4L2_CID_USER_ATMEL_ISC_BASE		(V4L2_CID_USER_BASE + 0x10c0)
1714e52889fSEugen Hristev 
172b2d3bef1SEzequiel Garcia /*
173b2d3bef1SEzequiel Garcia  * The base for the CODA driver controls.
174b2d3bef1SEzequiel Garcia  * We reserve 16 controls for this driver.
175b2d3bef1SEzequiel Garcia  */
176b2d3bef1SEzequiel Garcia #define V4L2_CID_USER_CODA_BASE			(V4L2_CID_USER_BASE + 0x10e0)
177cd9f145dSSakari Ailus /*
178cd9f145dSSakari Ailus  * The base for MIPI CCS driver controls.
179cd9f145dSSakari Ailus  * We reserve 128 controls for this driver.
180cd9f145dSSakari Ailus  */
181cd9f145dSSakari Ailus #define V4L2_CID_USER_CCS_BASE			(V4L2_CID_USER_BASE + 0x10f0)
1827aea2c0bSMichael Tretter /*
1837aea2c0bSMichael Tretter  * The base for Allegro driver controls.
1847aea2c0bSMichael Tretter  * We reserve 16 controls for this driver.
1857aea2c0bSMichael Tretter  */
1867aea2c0bSMichael Tretter #define V4L2_CID_USER_ALLEGRO_BASE		(V4L2_CID_USER_BASE + 0x1170)
187b2d3bef1SEzequiel Garcia 
18851ef2be5SMarek Vasut /*
18951ef2be5SMarek Vasut  * The base for the isl7998x driver controls.
19051ef2be5SMarek Vasut  * We reserve 16 controls for this driver.
19151ef2be5SMarek Vasut  */
19251ef2be5SMarek Vasut #define V4L2_CID_USER_ISL7998X_BASE		(V4L2_CID_USER_BASE + 0x1180)
19351ef2be5SMarek Vasut 
194a41c4088SXavier Roumegue /*
195a41c4088SXavier Roumegue  * The base for DW100 driver controls.
196a41c4088SXavier Roumegue  * We reserve 16 controls for this driver.
197a41c4088SXavier Roumegue  */
198a41c4088SXavier Roumegue #define V4L2_CID_USER_DW100_BASE		(V4L2_CID_USER_BASE + 0x1190)
199a41c4088SXavier Roumegue 
200867d3b27SJammy Huang /*
201867d3b27SJammy Huang  * The base for Aspeed driver controls.
202867d3b27SJammy Huang  * We reserve 16 controls for this driver.
203867d3b27SJammy Huang  */
204867d3b27SJammy Huang #define V4L2_CID_USER_ASPEED_BASE		(V4L2_CID_USER_BASE + 0x11a0)
205867d3b27SJammy Huang 
2062817154cSMarvin Lin /*
2072817154cSMarvin Lin  * The base for Nuvoton NPCM driver controls.
2082817154cSMarvin Lin  * We reserve 16 controls for this driver.
2092817154cSMarvin Lin  */
2102817154cSMarvin Lin #define V4L2_CID_USER_NPCM_BASE			(V4L2_CID_USER_BASE + 0x11b0)
2112817154cSMarvin Lin 
212*0d9e32a8SLaurent Pinchart /*
213*0d9e32a8SLaurent Pinchart  * The base for THine THP7312 driver controls.
214*0d9e32a8SLaurent Pinchart  * We reserve 32 controls for this driver.
215*0d9e32a8SLaurent Pinchart  */
216*0d9e32a8SLaurent Pinchart #define V4L2_CID_USER_THP7312_BASE		(V4L2_CID_USER_BASE + 0x11c0)
217*0d9e32a8SLaurent Pinchart 
218607ca46eSDavid Howells /* MPEG-class control IDs */
219bc9028e1SArun Kumar K /* The MPEG controls are applicable to all codec controls
220bc9028e1SArun Kumar K  * and the 'MPEG' part of the define is historical */
221607ca46eSDavid Howells 
22235aaa6e6SEzequiel Garcia #define V4L2_CID_CODEC_BASE			(V4L2_CTRL_CLASS_CODEC | 0x900)
22335aaa6e6SEzequiel Garcia #define V4L2_CID_CODEC_CLASS			(V4L2_CTRL_CLASS_CODEC | 1)
224607ca46eSDavid Howells 
225607ca46eSDavid Howells /*  MPEG streams, specific to multiplexed streams */
22635aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_STREAM_TYPE		(V4L2_CID_CODEC_BASE+0)
227607ca46eSDavid Howells enum v4l2_mpeg_stream_type {
228607ca46eSDavid Howells 	V4L2_MPEG_STREAM_TYPE_MPEG2_PS   = 0, /* MPEG-2 program stream */
229607ca46eSDavid Howells 	V4L2_MPEG_STREAM_TYPE_MPEG2_TS   = 1, /* MPEG-2 transport stream */
230607ca46eSDavid Howells 	V4L2_MPEG_STREAM_TYPE_MPEG1_SS   = 2, /* MPEG-1 system stream */
231607ca46eSDavid Howells 	V4L2_MPEG_STREAM_TYPE_MPEG2_DVD  = 3, /* MPEG-2 DVD-compatible stream */
232607ca46eSDavid Howells 	V4L2_MPEG_STREAM_TYPE_MPEG1_VCD  = 4, /* MPEG-1 VCD-compatible stream */
233607ca46eSDavid Howells 	V4L2_MPEG_STREAM_TYPE_MPEG2_SVCD = 5, /* MPEG-2 SVCD-compatible stream */
234607ca46eSDavid Howells };
23535aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_STREAM_PID_PMT		(V4L2_CID_CODEC_BASE+1)
23635aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_STREAM_PID_AUDIO		(V4L2_CID_CODEC_BASE+2)
23735aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_STREAM_PID_VIDEO		(V4L2_CID_CODEC_BASE+3)
23835aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_STREAM_PID_PCR		(V4L2_CID_CODEC_BASE+4)
23935aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_STREAM_PES_ID_AUDIO	(V4L2_CID_CODEC_BASE+5)
24035aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_STREAM_PES_ID_VIDEO	(V4L2_CID_CODEC_BASE+6)
24135aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_STREAM_VBI_FMT		(V4L2_CID_CODEC_BASE+7)
242607ca46eSDavid Howells enum v4l2_mpeg_stream_vbi_fmt {
243607ca46eSDavid Howells 	V4L2_MPEG_STREAM_VBI_FMT_NONE = 0,  /* No VBI in the MPEG stream */
244607ca46eSDavid Howells 	V4L2_MPEG_STREAM_VBI_FMT_IVTV = 1,  /* VBI in private packets, IVTV format */
245607ca46eSDavid Howells };
246607ca46eSDavid Howells 
247607ca46eSDavid Howells /*  MPEG audio controls specific to multiplexed streams  */
24835aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_AUDIO_SAMPLING_FREQ	(V4L2_CID_CODEC_BASE+100)
249607ca46eSDavid Howells enum v4l2_mpeg_audio_sampling_freq {
250607ca46eSDavid Howells 	V4L2_MPEG_AUDIO_SAMPLING_FREQ_44100 = 0,
251607ca46eSDavid Howells 	V4L2_MPEG_AUDIO_SAMPLING_FREQ_48000 = 1,
252607ca46eSDavid Howells 	V4L2_MPEG_AUDIO_SAMPLING_FREQ_32000 = 2,
253607ca46eSDavid Howells };
25435aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_AUDIO_ENCODING		(V4L2_CID_CODEC_BASE+101)
255607ca46eSDavid Howells enum v4l2_mpeg_audio_encoding {
256607ca46eSDavid Howells 	V4L2_MPEG_AUDIO_ENCODING_LAYER_1 = 0,
257607ca46eSDavid Howells 	V4L2_MPEG_AUDIO_ENCODING_LAYER_2 = 1,
258607ca46eSDavid Howells 	V4L2_MPEG_AUDIO_ENCODING_LAYER_3 = 2,
259607ca46eSDavid Howells 	V4L2_MPEG_AUDIO_ENCODING_AAC     = 3,
260607ca46eSDavid Howells 	V4L2_MPEG_AUDIO_ENCODING_AC3     = 4,
261607ca46eSDavid Howells };
26235aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_AUDIO_L1_BITRATE		(V4L2_CID_CODEC_BASE+102)
263607ca46eSDavid Howells enum v4l2_mpeg_audio_l1_bitrate {
264607ca46eSDavid Howells 	V4L2_MPEG_AUDIO_L1_BITRATE_32K  = 0,
265607ca46eSDavid Howells 	V4L2_MPEG_AUDIO_L1_BITRATE_64K  = 1,
266607ca46eSDavid Howells 	V4L2_MPEG_AUDIO_L1_BITRATE_96K  = 2,
267607ca46eSDavid Howells 	V4L2_MPEG_AUDIO_L1_BITRATE_128K = 3,
268607ca46eSDavid Howells 	V4L2_MPEG_AUDIO_L1_BITRATE_160K = 4,
269607ca46eSDavid Howells 	V4L2_MPEG_AUDIO_L1_BITRATE_192K = 5,
270607ca46eSDavid Howells 	V4L2_MPEG_AUDIO_L1_BITRATE_224K = 6,
271607ca46eSDavid Howells 	V4L2_MPEG_AUDIO_L1_BITRATE_256K = 7,
272607ca46eSDavid Howells 	V4L2_MPEG_AUDIO_L1_BITRATE_288K = 8,
273607ca46eSDavid Howells 	V4L2_MPEG_AUDIO_L1_BITRATE_320K = 9,
274607ca46eSDavid Howells 	V4L2_MPEG_AUDIO_L1_BITRATE_352K = 10,
275607ca46eSDavid Howells 	V4L2_MPEG_AUDIO_L1_BITRATE_384K = 11,
276607ca46eSDavid Howells 	V4L2_MPEG_AUDIO_L1_BITRATE_416K = 12,
277607ca46eSDavid Howells 	V4L2_MPEG_AUDIO_L1_BITRATE_448K = 13,
278607ca46eSDavid Howells };
27935aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_AUDIO_L2_BITRATE		(V4L2_CID_CODEC_BASE+103)
280607ca46eSDavid Howells enum v4l2_mpeg_audio_l2_bitrate {
281607ca46eSDavid Howells 	V4L2_MPEG_AUDIO_L2_BITRATE_32K  = 0,
282607ca46eSDavid Howells 	V4L2_MPEG_AUDIO_L2_BITRATE_48K  = 1,
283607ca46eSDavid Howells 	V4L2_MPEG_AUDIO_L2_BITRATE_56K  = 2,
284607ca46eSDavid Howells 	V4L2_MPEG_AUDIO_L2_BITRATE_64K  = 3,
285607ca46eSDavid Howells 	V4L2_MPEG_AUDIO_L2_BITRATE_80K  = 4,
286607ca46eSDavid Howells 	V4L2_MPEG_AUDIO_L2_BITRATE_96K  = 5,
287607ca46eSDavid Howells 	V4L2_MPEG_AUDIO_L2_BITRATE_112K = 6,
288607ca46eSDavid Howells 	V4L2_MPEG_AUDIO_L2_BITRATE_128K = 7,
289607ca46eSDavid Howells 	V4L2_MPEG_AUDIO_L2_BITRATE_160K = 8,
290607ca46eSDavid Howells 	V4L2_MPEG_AUDIO_L2_BITRATE_192K = 9,
291607ca46eSDavid Howells 	V4L2_MPEG_AUDIO_L2_BITRATE_224K = 10,
292607ca46eSDavid Howells 	V4L2_MPEG_AUDIO_L2_BITRATE_256K = 11,
293607ca46eSDavid Howells 	V4L2_MPEG_AUDIO_L2_BITRATE_320K = 12,
294607ca46eSDavid Howells 	V4L2_MPEG_AUDIO_L2_BITRATE_384K = 13,
295607ca46eSDavid Howells };
29635aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_AUDIO_L3_BITRATE		(V4L2_CID_CODEC_BASE+104)
297607ca46eSDavid Howells enum v4l2_mpeg_audio_l3_bitrate {
298607ca46eSDavid Howells 	V4L2_MPEG_AUDIO_L3_BITRATE_32K  = 0,
299607ca46eSDavid Howells 	V4L2_MPEG_AUDIO_L3_BITRATE_40K  = 1,
300607ca46eSDavid Howells 	V4L2_MPEG_AUDIO_L3_BITRATE_48K  = 2,
301607ca46eSDavid Howells 	V4L2_MPEG_AUDIO_L3_BITRATE_56K  = 3,
302607ca46eSDavid Howells 	V4L2_MPEG_AUDIO_L3_BITRATE_64K  = 4,
303607ca46eSDavid Howells 	V4L2_MPEG_AUDIO_L3_BITRATE_80K  = 5,
304607ca46eSDavid Howells 	V4L2_MPEG_AUDIO_L3_BITRATE_96K  = 6,
305607ca46eSDavid Howells 	V4L2_MPEG_AUDIO_L3_BITRATE_112K = 7,
306607ca46eSDavid Howells 	V4L2_MPEG_AUDIO_L3_BITRATE_128K = 8,
307607ca46eSDavid Howells 	V4L2_MPEG_AUDIO_L3_BITRATE_160K = 9,
308607ca46eSDavid Howells 	V4L2_MPEG_AUDIO_L3_BITRATE_192K = 10,
309607ca46eSDavid Howells 	V4L2_MPEG_AUDIO_L3_BITRATE_224K = 11,
310607ca46eSDavid Howells 	V4L2_MPEG_AUDIO_L3_BITRATE_256K = 12,
311607ca46eSDavid Howells 	V4L2_MPEG_AUDIO_L3_BITRATE_320K = 13,
312607ca46eSDavid Howells };
31335aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_AUDIO_MODE		(V4L2_CID_CODEC_BASE+105)
314607ca46eSDavid Howells enum v4l2_mpeg_audio_mode {
315607ca46eSDavid Howells 	V4L2_MPEG_AUDIO_MODE_STEREO       = 0,
316607ca46eSDavid Howells 	V4L2_MPEG_AUDIO_MODE_JOINT_STEREO = 1,
317607ca46eSDavid Howells 	V4L2_MPEG_AUDIO_MODE_DUAL         = 2,
318607ca46eSDavid Howells 	V4L2_MPEG_AUDIO_MODE_MONO         = 3,
319607ca46eSDavid Howells };
32035aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_AUDIO_MODE_EXTENSION	(V4L2_CID_CODEC_BASE+106)
321607ca46eSDavid Howells enum v4l2_mpeg_audio_mode_extension {
322607ca46eSDavid Howells 	V4L2_MPEG_AUDIO_MODE_EXTENSION_BOUND_4  = 0,
323607ca46eSDavid Howells 	V4L2_MPEG_AUDIO_MODE_EXTENSION_BOUND_8  = 1,
324607ca46eSDavid Howells 	V4L2_MPEG_AUDIO_MODE_EXTENSION_BOUND_12 = 2,
325607ca46eSDavid Howells 	V4L2_MPEG_AUDIO_MODE_EXTENSION_BOUND_16 = 3,
326607ca46eSDavid Howells };
32735aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_AUDIO_EMPHASIS		(V4L2_CID_CODEC_BASE+107)
328607ca46eSDavid Howells enum v4l2_mpeg_audio_emphasis {
329607ca46eSDavid Howells 	V4L2_MPEG_AUDIO_EMPHASIS_NONE         = 0,
330607ca46eSDavid Howells 	V4L2_MPEG_AUDIO_EMPHASIS_50_DIV_15_uS = 1,
331607ca46eSDavid Howells 	V4L2_MPEG_AUDIO_EMPHASIS_CCITT_J17    = 2,
332607ca46eSDavid Howells };
33335aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_AUDIO_CRC			(V4L2_CID_CODEC_BASE+108)
334607ca46eSDavid Howells enum v4l2_mpeg_audio_crc {
335607ca46eSDavid Howells 	V4L2_MPEG_AUDIO_CRC_NONE  = 0,
336607ca46eSDavid Howells 	V4L2_MPEG_AUDIO_CRC_CRC16 = 1,
337607ca46eSDavid Howells };
33835aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_AUDIO_MUTE		(V4L2_CID_CODEC_BASE+109)
33935aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_AUDIO_AAC_BITRATE		(V4L2_CID_CODEC_BASE+110)
34035aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_AUDIO_AC3_BITRATE		(V4L2_CID_CODEC_BASE+111)
341607ca46eSDavid Howells enum v4l2_mpeg_audio_ac3_bitrate {
342607ca46eSDavid Howells 	V4L2_MPEG_AUDIO_AC3_BITRATE_32K  = 0,
343607ca46eSDavid Howells 	V4L2_MPEG_AUDIO_AC3_BITRATE_40K  = 1,
344607ca46eSDavid Howells 	V4L2_MPEG_AUDIO_AC3_BITRATE_48K  = 2,
345607ca46eSDavid Howells 	V4L2_MPEG_AUDIO_AC3_BITRATE_56K  = 3,
346607ca46eSDavid Howells 	V4L2_MPEG_AUDIO_AC3_BITRATE_64K  = 4,
347607ca46eSDavid Howells 	V4L2_MPEG_AUDIO_AC3_BITRATE_80K  = 5,
348607ca46eSDavid Howells 	V4L2_MPEG_AUDIO_AC3_BITRATE_96K  = 6,
349607ca46eSDavid Howells 	V4L2_MPEG_AUDIO_AC3_BITRATE_112K = 7,
350607ca46eSDavid Howells 	V4L2_MPEG_AUDIO_AC3_BITRATE_128K = 8,
351607ca46eSDavid Howells 	V4L2_MPEG_AUDIO_AC3_BITRATE_160K = 9,
352607ca46eSDavid Howells 	V4L2_MPEG_AUDIO_AC3_BITRATE_192K = 10,
353607ca46eSDavid Howells 	V4L2_MPEG_AUDIO_AC3_BITRATE_224K = 11,
354607ca46eSDavid Howells 	V4L2_MPEG_AUDIO_AC3_BITRATE_256K = 12,
355607ca46eSDavid Howells 	V4L2_MPEG_AUDIO_AC3_BITRATE_320K = 13,
356607ca46eSDavid Howells 	V4L2_MPEG_AUDIO_AC3_BITRATE_384K = 14,
357607ca46eSDavid Howells 	V4L2_MPEG_AUDIO_AC3_BITRATE_448K = 15,
358607ca46eSDavid Howells 	V4L2_MPEG_AUDIO_AC3_BITRATE_512K = 16,
359607ca46eSDavid Howells 	V4L2_MPEG_AUDIO_AC3_BITRATE_576K = 17,
360607ca46eSDavid Howells 	V4L2_MPEG_AUDIO_AC3_BITRATE_640K = 18,
361607ca46eSDavid Howells };
36235aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_AUDIO_DEC_PLAYBACK	(V4L2_CID_CODEC_BASE+112)
363607ca46eSDavid Howells enum v4l2_mpeg_audio_dec_playback {
364607ca46eSDavid Howells 	V4L2_MPEG_AUDIO_DEC_PLAYBACK_AUTO	    = 0,
365607ca46eSDavid Howells 	V4L2_MPEG_AUDIO_DEC_PLAYBACK_STEREO	    = 1,
366607ca46eSDavid Howells 	V4L2_MPEG_AUDIO_DEC_PLAYBACK_LEFT	    = 2,
367607ca46eSDavid Howells 	V4L2_MPEG_AUDIO_DEC_PLAYBACK_RIGHT	    = 3,
368607ca46eSDavid Howells 	V4L2_MPEG_AUDIO_DEC_PLAYBACK_MONO	    = 4,
369607ca46eSDavid Howells 	V4L2_MPEG_AUDIO_DEC_PLAYBACK_SWAPPED_STEREO = 5,
370607ca46eSDavid Howells };
37135aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_AUDIO_DEC_MULTILINGUAL_PLAYBACK (V4L2_CID_CODEC_BASE+113)
372607ca46eSDavid Howells 
373607ca46eSDavid Howells /*  MPEG video controls specific to multiplexed streams */
37435aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_ENCODING		(V4L2_CID_CODEC_BASE+200)
375607ca46eSDavid Howells enum v4l2_mpeg_video_encoding {
376607ca46eSDavid Howells 	V4L2_MPEG_VIDEO_ENCODING_MPEG_1     = 0,
377607ca46eSDavid Howells 	V4L2_MPEG_VIDEO_ENCODING_MPEG_2     = 1,
378607ca46eSDavid Howells 	V4L2_MPEG_VIDEO_ENCODING_MPEG_4_AVC = 2,
379607ca46eSDavid Howells };
38035aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_ASPECT		(V4L2_CID_CODEC_BASE+201)
381607ca46eSDavid Howells enum v4l2_mpeg_video_aspect {
382607ca46eSDavid Howells 	V4L2_MPEG_VIDEO_ASPECT_1x1     = 0,
383607ca46eSDavid Howells 	V4L2_MPEG_VIDEO_ASPECT_4x3     = 1,
384607ca46eSDavid Howells 	V4L2_MPEG_VIDEO_ASPECT_16x9    = 2,
385607ca46eSDavid Howells 	V4L2_MPEG_VIDEO_ASPECT_221x100 = 3,
386607ca46eSDavid Howells };
38735aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_B_FRAMES		(V4L2_CID_CODEC_BASE+202)
38835aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_GOP_SIZE		(V4L2_CID_CODEC_BASE+203)
38935aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_GOP_CLOSURE		(V4L2_CID_CODEC_BASE+204)
39035aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_PULLDOWN		(V4L2_CID_CODEC_BASE+205)
39135aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_BITRATE_MODE	(V4L2_CID_CODEC_BASE+206)
392607ca46eSDavid Howells enum v4l2_mpeg_video_bitrate_mode {
393607ca46eSDavid Howells 	V4L2_MPEG_VIDEO_BITRATE_MODE_VBR = 0,
394607ca46eSDavid Howells 	V4L2_MPEG_VIDEO_BITRATE_MODE_CBR = 1,
3954ad1b0d4SMaheshwar Ajja 	V4L2_MPEG_VIDEO_BITRATE_MODE_CQ  = 2,
396607ca46eSDavid Howells };
39735aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_BITRATE		(V4L2_CID_CODEC_BASE+207)
39835aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_BITRATE_PEAK	(V4L2_CID_CODEC_BASE+208)
39935aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_TEMPORAL_DECIMATION (V4L2_CID_CODEC_BASE+209)
40035aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_MUTE		(V4L2_CID_CODEC_BASE+210)
40135aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_MUTE_YUV		(V4L2_CID_CODEC_BASE+211)
40235aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_DECODER_SLICE_INTERFACE		(V4L2_CID_CODEC_BASE+212)
40335aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_DECODER_MPEG4_DEBLOCK_FILTER	(V4L2_CID_CODEC_BASE+213)
40435aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_CYCLIC_INTRA_REFRESH_MB		(V4L2_CID_CODEC_BASE+214)
40535aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_FRAME_RC_ENABLE			(V4L2_CID_CODEC_BASE+215)
40635aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_HEADER_MODE				(V4L2_CID_CODEC_BASE+216)
407607ca46eSDavid Howells enum v4l2_mpeg_video_header_mode {
408607ca46eSDavid Howells 	V4L2_MPEG_VIDEO_HEADER_MODE_SEPARATE			= 0,
409607ca46eSDavid Howells 	V4L2_MPEG_VIDEO_HEADER_MODE_JOINED_WITH_1ST_FRAME	= 1,
410607ca46eSDavid Howells 
411607ca46eSDavid Howells };
41235aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_MAX_REF_PIC			(V4L2_CID_CODEC_BASE+217)
41335aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_MB_RC_ENABLE		(V4L2_CID_CODEC_BASE+218)
41435aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_MULTI_SLICE_MAX_BYTES	(V4L2_CID_CODEC_BASE+219)
41535aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_MULTI_SLICE_MAX_MB		(V4L2_CID_CODEC_BASE+220)
41635aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_MULTI_SLICE_MODE		(V4L2_CID_CODEC_BASE+221)
417607ca46eSDavid Howells enum v4l2_mpeg_video_multi_slice_mode {
418607ca46eSDavid Howells 	V4L2_MPEG_VIDEO_MULTI_SLICE_MODE_SINGLE		= 0,
4194914425eSHans Verkuil 	V4L2_MPEG_VIDEO_MULTI_SLICE_MODE_MAX_MB		= 1,
4204914425eSHans Verkuil 	V4L2_MPEG_VIDEO_MULTI_SLICE_MODE_MAX_BYTES	= 2,
4214914425eSHans Verkuil #ifndef __KERNEL__
4224914425eSHans Verkuil 	/* Kept for backwards compatibility reasons. Stupid typo... */
423607ca46eSDavid Howells 	V4L2_MPEG_VIDEO_MULTI_SICE_MODE_MAX_MB		= 1,
424607ca46eSDavid Howells 	V4L2_MPEG_VIDEO_MULTI_SICE_MODE_MAX_BYTES	= 2,
4254914425eSHans Verkuil #endif
426607ca46eSDavid Howells };
42735aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_VBV_SIZE			(V4L2_CID_CODEC_BASE+222)
42835aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_DEC_PTS			(V4L2_CID_CODEC_BASE+223)
42935aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_DEC_FRAME			(V4L2_CID_CODEC_BASE+224)
43035aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_VBV_DELAY			(V4L2_CID_CODEC_BASE+225)
43135aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_REPEAT_SEQ_HEADER		(V4L2_CID_CODEC_BASE+226)
43235aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_MV_H_SEARCH_RANGE		(V4L2_CID_CODEC_BASE+227)
43335aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_MV_V_SEARCH_RANGE		(V4L2_CID_CODEC_BASE+228)
43435aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_FORCE_KEY_FRAME		(V4L2_CID_CODEC_BASE+229)
4356bde70daSDikshita Agarwal #define V4L2_CID_MPEG_VIDEO_BASELAYER_PRIORITY_ID	(V4L2_CID_CODEC_BASE+230)
436f2bf1bcbSStanimir Varbanov #define V4L2_CID_MPEG_VIDEO_AU_DELIMITER		(V4L2_CID_CODEC_BASE+231)
437f15c54cfSDikshita Agarwal #define V4L2_CID_MPEG_VIDEO_LTR_COUNT			(V4L2_CID_CODEC_BASE+232)
438f15c54cfSDikshita Agarwal #define V4L2_CID_MPEG_VIDEO_FRAME_LTR_INDEX		(V4L2_CID_CODEC_BASE+233)
439f15c54cfSDikshita Agarwal #define V4L2_CID_MPEG_VIDEO_USE_LTR_FRAMES		(V4L2_CID_CODEC_BASE+234)
440b52051a4SStanimir Varbanov #define V4L2_CID_MPEG_VIDEO_DEC_CONCEAL_COLOR		(V4L2_CID_CODEC_BASE+235)
4419d5adeecSStanimir Varbanov #define V4L2_CID_MPEG_VIDEO_INTRA_REFRESH_PERIOD	(V4L2_CID_CODEC_BASE+236)
442fcbc4acfSDikshita Agarwal #define V4L2_CID_MPEG_VIDEO_INTRA_REFRESH_PERIOD_TYPE	(V4L2_CID_CODEC_BASE+237)
443fcbc4acfSDikshita Agarwal enum v4l2_mpeg_video_intra_refresh_period_type {
444fcbc4acfSDikshita Agarwal 	V4L2_CID_MPEG_VIDEO_INTRA_REFRESH_PERIOD_TYPE_RANDOM	= 0,
445fcbc4acfSDikshita Agarwal 	V4L2_CID_MPEG_VIDEO_INTRA_REFRESH_PERIOD_TYPE_CYCLIC	= 1,
446fcbc4acfSDikshita Agarwal };
447607ca46eSDavid Howells 
4485902bca9SPhilipp Zabel /* CIDs for the MPEG-2 Part 2 (H.262) codec */
44935aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_MPEG2_LEVEL			(V4L2_CID_CODEC_BASE+270)
4505902bca9SPhilipp Zabel enum v4l2_mpeg_video_mpeg2_level {
4515902bca9SPhilipp Zabel 	V4L2_MPEG_VIDEO_MPEG2_LEVEL_LOW		= 0,
4525902bca9SPhilipp Zabel 	V4L2_MPEG_VIDEO_MPEG2_LEVEL_MAIN	= 1,
4535902bca9SPhilipp Zabel 	V4L2_MPEG_VIDEO_MPEG2_LEVEL_HIGH_1440	= 2,
4545902bca9SPhilipp Zabel 	V4L2_MPEG_VIDEO_MPEG2_LEVEL_HIGH	= 3,
4555902bca9SPhilipp Zabel };
45635aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_MPEG2_PROFILE		(V4L2_CID_CODEC_BASE+271)
4575902bca9SPhilipp Zabel enum v4l2_mpeg_video_mpeg2_profile {
4585902bca9SPhilipp Zabel 	V4L2_MPEG_VIDEO_MPEG2_PROFILE_SIMPLE				= 0,
4595902bca9SPhilipp Zabel 	V4L2_MPEG_VIDEO_MPEG2_PROFILE_MAIN				= 1,
4605902bca9SPhilipp Zabel 	V4L2_MPEG_VIDEO_MPEG2_PROFILE_SNR_SCALABLE			= 2,
4615902bca9SPhilipp Zabel 	V4L2_MPEG_VIDEO_MPEG2_PROFILE_SPATIALLY_SCALABLE		= 3,
4625902bca9SPhilipp Zabel 	V4L2_MPEG_VIDEO_MPEG2_PROFILE_HIGH				= 4,
4635902bca9SPhilipp Zabel 	V4L2_MPEG_VIDEO_MPEG2_PROFILE_MULTIVIEW				= 5,
4645902bca9SPhilipp Zabel };
4655902bca9SPhilipp Zabel 
4662495f39cSDafna Hirschfeld /* CIDs for the FWHT codec as used by the vicodec driver. */
46735aaa6e6SEzequiel Garcia #define V4L2_CID_FWHT_I_FRAME_QP             (V4L2_CID_CODEC_BASE + 290)
46835aaa6e6SEzequiel Garcia #define V4L2_CID_FWHT_P_FRAME_QP             (V4L2_CID_CODEC_BASE + 291)
4692495f39cSDafna Hirschfeld 
47035aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_H263_I_FRAME_QP		(V4L2_CID_CODEC_BASE+300)
47135aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_H263_P_FRAME_QP		(V4L2_CID_CODEC_BASE+301)
47235aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_H263_B_FRAME_QP		(V4L2_CID_CODEC_BASE+302)
47335aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_H263_MIN_QP			(V4L2_CID_CODEC_BASE+303)
47435aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_H263_MAX_QP			(V4L2_CID_CODEC_BASE+304)
47535aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_H264_I_FRAME_QP		(V4L2_CID_CODEC_BASE+350)
47635aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_H264_P_FRAME_QP		(V4L2_CID_CODEC_BASE+351)
47735aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_H264_B_FRAME_QP		(V4L2_CID_CODEC_BASE+352)
47835aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_H264_MIN_QP			(V4L2_CID_CODEC_BASE+353)
47935aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_H264_MAX_QP			(V4L2_CID_CODEC_BASE+354)
48035aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_H264_8X8_TRANSFORM		(V4L2_CID_CODEC_BASE+355)
48135aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_H264_CPB_SIZE		(V4L2_CID_CODEC_BASE+356)
48235aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_H264_ENTROPY_MODE		(V4L2_CID_CODEC_BASE+357)
483607ca46eSDavid Howells enum v4l2_mpeg_video_h264_entropy_mode {
484607ca46eSDavid Howells 	V4L2_MPEG_VIDEO_H264_ENTROPY_MODE_CAVLC	= 0,
485607ca46eSDavid Howells 	V4L2_MPEG_VIDEO_H264_ENTROPY_MODE_CABAC	= 1,
486607ca46eSDavid Howells };
48735aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_H264_I_PERIOD		(V4L2_CID_CODEC_BASE+358)
48835aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_H264_LEVEL			(V4L2_CID_CODEC_BASE+359)
489607ca46eSDavid Howells enum v4l2_mpeg_video_h264_level {
490607ca46eSDavid Howells 	V4L2_MPEG_VIDEO_H264_LEVEL_1_0	= 0,
491607ca46eSDavid Howells 	V4L2_MPEG_VIDEO_H264_LEVEL_1B	= 1,
492607ca46eSDavid Howells 	V4L2_MPEG_VIDEO_H264_LEVEL_1_1	= 2,
493607ca46eSDavid Howells 	V4L2_MPEG_VIDEO_H264_LEVEL_1_2	= 3,
494607ca46eSDavid Howells 	V4L2_MPEG_VIDEO_H264_LEVEL_1_3	= 4,
495607ca46eSDavid Howells 	V4L2_MPEG_VIDEO_H264_LEVEL_2_0	= 5,
496607ca46eSDavid Howells 	V4L2_MPEG_VIDEO_H264_LEVEL_2_1	= 6,
497607ca46eSDavid Howells 	V4L2_MPEG_VIDEO_H264_LEVEL_2_2	= 7,
498607ca46eSDavid Howells 	V4L2_MPEG_VIDEO_H264_LEVEL_3_0	= 8,
499607ca46eSDavid Howells 	V4L2_MPEG_VIDEO_H264_LEVEL_3_1	= 9,
500607ca46eSDavid Howells 	V4L2_MPEG_VIDEO_H264_LEVEL_3_2	= 10,
501607ca46eSDavid Howells 	V4L2_MPEG_VIDEO_H264_LEVEL_4_0	= 11,
502607ca46eSDavid Howells 	V4L2_MPEG_VIDEO_H264_LEVEL_4_1	= 12,
503607ca46eSDavid Howells 	V4L2_MPEG_VIDEO_H264_LEVEL_4_2	= 13,
504607ca46eSDavid Howells 	V4L2_MPEG_VIDEO_H264_LEVEL_5_0	= 14,
505607ca46eSDavid Howells 	V4L2_MPEG_VIDEO_H264_LEVEL_5_1	= 15,
5061ca3cb46SMaheshwar Ajja 	V4L2_MPEG_VIDEO_H264_LEVEL_5_2	= 16,
5071ca3cb46SMaheshwar Ajja 	V4L2_MPEG_VIDEO_H264_LEVEL_6_0	= 17,
5081ca3cb46SMaheshwar Ajja 	V4L2_MPEG_VIDEO_H264_LEVEL_6_1	= 18,
5091ca3cb46SMaheshwar Ajja 	V4L2_MPEG_VIDEO_H264_LEVEL_6_2	= 19,
510607ca46eSDavid Howells };
51135aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_H264_LOOP_FILTER_ALPHA	(V4L2_CID_CODEC_BASE+360)
51235aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_H264_LOOP_FILTER_BETA	(V4L2_CID_CODEC_BASE+361)
51335aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_H264_LOOP_FILTER_MODE	(V4L2_CID_CODEC_BASE+362)
514607ca46eSDavid Howells enum v4l2_mpeg_video_h264_loop_filter_mode {
515607ca46eSDavid Howells 	V4L2_MPEG_VIDEO_H264_LOOP_FILTER_MODE_ENABLED				= 0,
516607ca46eSDavid Howells 	V4L2_MPEG_VIDEO_H264_LOOP_FILTER_MODE_DISABLED				= 1,
517607ca46eSDavid Howells 	V4L2_MPEG_VIDEO_H264_LOOP_FILTER_MODE_DISABLED_AT_SLICE_BOUNDARY	= 2,
518607ca46eSDavid Howells };
51935aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_H264_PROFILE		(V4L2_CID_CODEC_BASE+363)
520607ca46eSDavid Howells enum v4l2_mpeg_video_h264_profile {
521607ca46eSDavid Howells 	V4L2_MPEG_VIDEO_H264_PROFILE_BASELINE			= 0,
522607ca46eSDavid Howells 	V4L2_MPEG_VIDEO_H264_PROFILE_CONSTRAINED_BASELINE	= 1,
523607ca46eSDavid Howells 	V4L2_MPEG_VIDEO_H264_PROFILE_MAIN			= 2,
524607ca46eSDavid Howells 	V4L2_MPEG_VIDEO_H264_PROFILE_EXTENDED			= 3,
525607ca46eSDavid Howells 	V4L2_MPEG_VIDEO_H264_PROFILE_HIGH			= 4,
526607ca46eSDavid Howells 	V4L2_MPEG_VIDEO_H264_PROFILE_HIGH_10			= 5,
527607ca46eSDavid Howells 	V4L2_MPEG_VIDEO_H264_PROFILE_HIGH_422			= 6,
528607ca46eSDavid Howells 	V4L2_MPEG_VIDEO_H264_PROFILE_HIGH_444_PREDICTIVE	= 7,
529607ca46eSDavid Howells 	V4L2_MPEG_VIDEO_H264_PROFILE_HIGH_10_INTRA		= 8,
530607ca46eSDavid Howells 	V4L2_MPEG_VIDEO_H264_PROFILE_HIGH_422_INTRA		= 9,
531607ca46eSDavid Howells 	V4L2_MPEG_VIDEO_H264_PROFILE_HIGH_444_INTRA		= 10,
532607ca46eSDavid Howells 	V4L2_MPEG_VIDEO_H264_PROFILE_CAVLC_444_INTRA		= 11,
533607ca46eSDavid Howells 	V4L2_MPEG_VIDEO_H264_PROFILE_SCALABLE_BASELINE		= 12,
534607ca46eSDavid Howells 	V4L2_MPEG_VIDEO_H264_PROFILE_SCALABLE_HIGH		= 13,
535607ca46eSDavid Howells 	V4L2_MPEG_VIDEO_H264_PROFILE_SCALABLE_HIGH_INTRA	= 14,
536607ca46eSDavid Howells 	V4L2_MPEG_VIDEO_H264_PROFILE_STEREO_HIGH		= 15,
537607ca46eSDavid Howells 	V4L2_MPEG_VIDEO_H264_PROFILE_MULTIVIEW_HIGH		= 16,
5381ca3cb46SMaheshwar Ajja 	V4L2_MPEG_VIDEO_H264_PROFILE_CONSTRAINED_HIGH		= 17,
539607ca46eSDavid Howells };
54035aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_H264_VUI_EXT_SAR_HEIGHT	(V4L2_CID_CODEC_BASE+364)
54135aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_H264_VUI_EXT_SAR_WIDTH	(V4L2_CID_CODEC_BASE+365)
54235aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_H264_VUI_SAR_ENABLE		(V4L2_CID_CODEC_BASE+366)
54335aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_H264_VUI_SAR_IDC		(V4L2_CID_CODEC_BASE+367)
544607ca46eSDavid Howells enum v4l2_mpeg_video_h264_vui_sar_idc {
545607ca46eSDavid Howells 	V4L2_MPEG_VIDEO_H264_VUI_SAR_IDC_UNSPECIFIED	= 0,
546607ca46eSDavid Howells 	V4L2_MPEG_VIDEO_H264_VUI_SAR_IDC_1x1		= 1,
547607ca46eSDavid Howells 	V4L2_MPEG_VIDEO_H264_VUI_SAR_IDC_12x11		= 2,
548607ca46eSDavid Howells 	V4L2_MPEG_VIDEO_H264_VUI_SAR_IDC_10x11		= 3,
549607ca46eSDavid Howells 	V4L2_MPEG_VIDEO_H264_VUI_SAR_IDC_16x11		= 4,
550607ca46eSDavid Howells 	V4L2_MPEG_VIDEO_H264_VUI_SAR_IDC_40x33		= 5,
551607ca46eSDavid Howells 	V4L2_MPEG_VIDEO_H264_VUI_SAR_IDC_24x11		= 6,
552607ca46eSDavid Howells 	V4L2_MPEG_VIDEO_H264_VUI_SAR_IDC_20x11		= 7,
553607ca46eSDavid Howells 	V4L2_MPEG_VIDEO_H264_VUI_SAR_IDC_32x11		= 8,
554607ca46eSDavid Howells 	V4L2_MPEG_VIDEO_H264_VUI_SAR_IDC_80x33		= 9,
555607ca46eSDavid Howells 	V4L2_MPEG_VIDEO_H264_VUI_SAR_IDC_18x11		= 10,
556607ca46eSDavid Howells 	V4L2_MPEG_VIDEO_H264_VUI_SAR_IDC_15x11		= 11,
557607ca46eSDavid Howells 	V4L2_MPEG_VIDEO_H264_VUI_SAR_IDC_64x33		= 12,
558607ca46eSDavid Howells 	V4L2_MPEG_VIDEO_H264_VUI_SAR_IDC_160x99		= 13,
559607ca46eSDavid Howells 	V4L2_MPEG_VIDEO_H264_VUI_SAR_IDC_4x3		= 14,
560607ca46eSDavid Howells 	V4L2_MPEG_VIDEO_H264_VUI_SAR_IDC_3x2		= 15,
561607ca46eSDavid Howells 	V4L2_MPEG_VIDEO_H264_VUI_SAR_IDC_2x1		= 16,
562607ca46eSDavid Howells 	V4L2_MPEG_VIDEO_H264_VUI_SAR_IDC_EXTENDED	= 17,
563607ca46eSDavid Howells };
56435aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_H264_SEI_FRAME_PACKING		(V4L2_CID_CODEC_BASE+368)
56535aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_H264_SEI_FP_CURRENT_FRAME_0		(V4L2_CID_CODEC_BASE+369)
56635aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_H264_SEI_FP_ARRANGEMENT_TYPE	(V4L2_CID_CODEC_BASE+370)
567607ca46eSDavid Howells enum v4l2_mpeg_video_h264_sei_fp_arrangement_type {
568607ca46eSDavid Howells 	V4L2_MPEG_VIDEO_H264_SEI_FP_ARRANGEMENT_TYPE_CHECKERBOARD	= 0,
569607ca46eSDavid Howells 	V4L2_MPEG_VIDEO_H264_SEI_FP_ARRANGEMENT_TYPE_COLUMN		= 1,
570607ca46eSDavid Howells 	V4L2_MPEG_VIDEO_H264_SEI_FP_ARRANGEMENT_TYPE_ROW		= 2,
571607ca46eSDavid Howells 	V4L2_MPEG_VIDEO_H264_SEI_FP_ARRANGEMENT_TYPE_SIDE_BY_SIDE	= 3,
572607ca46eSDavid Howells 	V4L2_MPEG_VIDEO_H264_SEI_FP_ARRANGEMENT_TYPE_TOP_BOTTOM		= 4,
573607ca46eSDavid Howells 	V4L2_MPEG_VIDEO_H264_SEI_FP_ARRANGEMENT_TYPE_TEMPORAL		= 5,
574607ca46eSDavid Howells };
57535aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_H264_FMO			(V4L2_CID_CODEC_BASE+371)
57635aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_H264_FMO_MAP_TYPE		(V4L2_CID_CODEC_BASE+372)
577607ca46eSDavid Howells enum v4l2_mpeg_video_h264_fmo_map_type {
578607ca46eSDavid Howells 	V4L2_MPEG_VIDEO_H264_FMO_MAP_TYPE_INTERLEAVED_SLICES		= 0,
579607ca46eSDavid Howells 	V4L2_MPEG_VIDEO_H264_FMO_MAP_TYPE_SCATTERED_SLICES		= 1,
580607ca46eSDavid Howells 	V4L2_MPEG_VIDEO_H264_FMO_MAP_TYPE_FOREGROUND_WITH_LEFT_OVER	= 2,
581607ca46eSDavid Howells 	V4L2_MPEG_VIDEO_H264_FMO_MAP_TYPE_BOX_OUT			= 3,
582607ca46eSDavid Howells 	V4L2_MPEG_VIDEO_H264_FMO_MAP_TYPE_RASTER_SCAN			= 4,
583607ca46eSDavid Howells 	V4L2_MPEG_VIDEO_H264_FMO_MAP_TYPE_WIPE_SCAN			= 5,
584607ca46eSDavid Howells 	V4L2_MPEG_VIDEO_H264_FMO_MAP_TYPE_EXPLICIT			= 6,
585607ca46eSDavid Howells };
58635aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_H264_FMO_SLICE_GROUP	(V4L2_CID_CODEC_BASE+373)
58735aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_H264_FMO_CHANGE_DIRECTION	(V4L2_CID_CODEC_BASE+374)
588607ca46eSDavid Howells enum v4l2_mpeg_video_h264_fmo_change_dir {
589607ca46eSDavid Howells 	V4L2_MPEG_VIDEO_H264_FMO_CHANGE_DIR_RIGHT	= 0,
590607ca46eSDavid Howells 	V4L2_MPEG_VIDEO_H264_FMO_CHANGE_DIR_LEFT	= 1,
591607ca46eSDavid Howells };
59235aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_H264_FMO_CHANGE_RATE	(V4L2_CID_CODEC_BASE+375)
59335aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_H264_FMO_RUN_LENGTH		(V4L2_CID_CODEC_BASE+376)
59435aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_H264_ASO			(V4L2_CID_CODEC_BASE+377)
59535aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_H264_ASO_SLICE_ORDER	(V4L2_CID_CODEC_BASE+378)
59635aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_H264_HIERARCHICAL_CODING		(V4L2_CID_CODEC_BASE+379)
59735aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_H264_HIERARCHICAL_CODING_TYPE	(V4L2_CID_CODEC_BASE+380)
598607ca46eSDavid Howells enum v4l2_mpeg_video_h264_hierarchical_coding_type {
599607ca46eSDavid Howells 	V4L2_MPEG_VIDEO_H264_HIERARCHICAL_CODING_B	= 0,
600607ca46eSDavid Howells 	V4L2_MPEG_VIDEO_H264_HIERARCHICAL_CODING_P	= 1,
601607ca46eSDavid Howells };
60235aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_H264_HIERARCHICAL_CODING_LAYER	(V4L2_CID_CODEC_BASE+381)
60335aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_H264_HIERARCHICAL_CODING_LAYER_QP	(V4L2_CID_CODEC_BASE+382)
60435aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_H264_CONSTRAINED_INTRA_PREDICTION	(V4L2_CID_CODEC_BASE+383)
60535aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_H264_CHROMA_QP_INDEX_OFFSET		(V4L2_CID_CODEC_BASE+384)
60635aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_H264_I_FRAME_MIN_QP	(V4L2_CID_CODEC_BASE+385)
60735aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_H264_I_FRAME_MAX_QP	(V4L2_CID_CODEC_BASE+386)
60835aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_H264_P_FRAME_MIN_QP	(V4L2_CID_CODEC_BASE+387)
60935aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_H264_P_FRAME_MAX_QP	(V4L2_CID_CODEC_BASE+388)
61099d0cbe4SDikshita Agarwal #define V4L2_CID_MPEG_VIDEO_H264_B_FRAME_MIN_QP	(V4L2_CID_CODEC_BASE+389)
61199d0cbe4SDikshita Agarwal #define V4L2_CID_MPEG_VIDEO_H264_B_FRAME_MAX_QP	(V4L2_CID_CODEC_BASE+390)
6124ca134eeSDikshita Agarwal #define V4L2_CID_MPEG_VIDEO_H264_HIER_CODING_L0_BR	(V4L2_CID_CODEC_BASE+391)
6134ca134eeSDikshita Agarwal #define V4L2_CID_MPEG_VIDEO_H264_HIER_CODING_L1_BR	(V4L2_CID_CODEC_BASE+392)
6144ca134eeSDikshita Agarwal #define V4L2_CID_MPEG_VIDEO_H264_HIER_CODING_L2_BR	(V4L2_CID_CODEC_BASE+393)
6154ca134eeSDikshita Agarwal #define V4L2_CID_MPEG_VIDEO_H264_HIER_CODING_L3_BR	(V4L2_CID_CODEC_BASE+394)
6164ca134eeSDikshita Agarwal #define V4L2_CID_MPEG_VIDEO_H264_HIER_CODING_L4_BR	(V4L2_CID_CODEC_BASE+395)
6174ca134eeSDikshita Agarwal #define V4L2_CID_MPEG_VIDEO_H264_HIER_CODING_L5_BR	(V4L2_CID_CODEC_BASE+396)
6184ca134eeSDikshita Agarwal #define V4L2_CID_MPEG_VIDEO_H264_HIER_CODING_L6_BR	(V4L2_CID_CODEC_BASE+397)
61935aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_MPEG4_I_FRAME_QP	(V4L2_CID_CODEC_BASE+400)
62035aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_MPEG4_P_FRAME_QP	(V4L2_CID_CODEC_BASE+401)
62135aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_MPEG4_B_FRAME_QP	(V4L2_CID_CODEC_BASE+402)
62235aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_MPEG4_MIN_QP	(V4L2_CID_CODEC_BASE+403)
62335aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_MPEG4_MAX_QP	(V4L2_CID_CODEC_BASE+404)
62435aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_MPEG4_LEVEL		(V4L2_CID_CODEC_BASE+405)
625607ca46eSDavid Howells enum v4l2_mpeg_video_mpeg4_level {
626607ca46eSDavid Howells 	V4L2_MPEG_VIDEO_MPEG4_LEVEL_0	= 0,
627607ca46eSDavid Howells 	V4L2_MPEG_VIDEO_MPEG4_LEVEL_0B	= 1,
628607ca46eSDavid Howells 	V4L2_MPEG_VIDEO_MPEG4_LEVEL_1	= 2,
629607ca46eSDavid Howells 	V4L2_MPEG_VIDEO_MPEG4_LEVEL_2	= 3,
630607ca46eSDavid Howells 	V4L2_MPEG_VIDEO_MPEG4_LEVEL_3	= 4,
631607ca46eSDavid Howells 	V4L2_MPEG_VIDEO_MPEG4_LEVEL_3B	= 5,
632607ca46eSDavid Howells 	V4L2_MPEG_VIDEO_MPEG4_LEVEL_4	= 6,
633607ca46eSDavid Howells 	V4L2_MPEG_VIDEO_MPEG4_LEVEL_5	= 7,
634607ca46eSDavid Howells };
63535aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_MPEG4_PROFILE	(V4L2_CID_CODEC_BASE+406)
636607ca46eSDavid Howells enum v4l2_mpeg_video_mpeg4_profile {
637607ca46eSDavid Howells 	V4L2_MPEG_VIDEO_MPEG4_PROFILE_SIMPLE				= 0,
638607ca46eSDavid Howells 	V4L2_MPEG_VIDEO_MPEG4_PROFILE_ADVANCED_SIMPLE			= 1,
639607ca46eSDavid Howells 	V4L2_MPEG_VIDEO_MPEG4_PROFILE_CORE				= 2,
640607ca46eSDavid Howells 	V4L2_MPEG_VIDEO_MPEG4_PROFILE_SIMPLE_SCALABLE			= 3,
641607ca46eSDavid Howells 	V4L2_MPEG_VIDEO_MPEG4_PROFILE_ADVANCED_CODING_EFFICIENCY	= 4,
642607ca46eSDavid Howells };
64335aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_MPEG4_QPEL		(V4L2_CID_CODEC_BASE+407)
644607ca46eSDavid Howells 
645bc9028e1SArun Kumar K /*  Control IDs for VP8 streams
646bc9028e1SArun Kumar K  *  Although VP8 is not part of MPEG we add these controls to the MPEG class
647bc9028e1SArun Kumar K  *  as that class is already handling other video compression standards
648bc9028e1SArun Kumar K  */
64935aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_VPX_NUM_PARTITIONS		(V4L2_CID_CODEC_BASE+500)
650bc9028e1SArun Kumar K enum v4l2_vp8_num_partitions {
651bc9028e1SArun Kumar K 	V4L2_CID_MPEG_VIDEO_VPX_1_PARTITION	= 0,
652bc9028e1SArun Kumar K 	V4L2_CID_MPEG_VIDEO_VPX_2_PARTITIONS	= 1,
653bc9028e1SArun Kumar K 	V4L2_CID_MPEG_VIDEO_VPX_4_PARTITIONS	= 2,
654bc9028e1SArun Kumar K 	V4L2_CID_MPEG_VIDEO_VPX_8_PARTITIONS	= 3,
655bc9028e1SArun Kumar K };
65635aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_VPX_IMD_DISABLE_4X4		(V4L2_CID_CODEC_BASE+501)
65735aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_VPX_NUM_REF_FRAMES		(V4L2_CID_CODEC_BASE+502)
658bc9028e1SArun Kumar K enum v4l2_vp8_num_ref_frames {
659bc9028e1SArun Kumar K 	V4L2_CID_MPEG_VIDEO_VPX_1_REF_FRAME	= 0,
660bc9028e1SArun Kumar K 	V4L2_CID_MPEG_VIDEO_VPX_2_REF_FRAME	= 1,
661bc9028e1SArun Kumar K 	V4L2_CID_MPEG_VIDEO_VPX_3_REF_FRAME	= 2,
662bc9028e1SArun Kumar K };
66335aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_VPX_FILTER_LEVEL		(V4L2_CID_CODEC_BASE+503)
66435aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_VPX_FILTER_SHARPNESS	(V4L2_CID_CODEC_BASE+504)
66535aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_VPX_GOLDEN_FRAME_REF_PERIOD	(V4L2_CID_CODEC_BASE+505)
66635aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_VPX_GOLDEN_FRAME_SEL	(V4L2_CID_CODEC_BASE+506)
667bc9028e1SArun Kumar K enum v4l2_vp8_golden_frame_sel {
668bc9028e1SArun Kumar K 	V4L2_CID_MPEG_VIDEO_VPX_GOLDEN_FRAME_USE_PREV		= 0,
669bc9028e1SArun Kumar K 	V4L2_CID_MPEG_VIDEO_VPX_GOLDEN_FRAME_USE_REF_PERIOD	= 1,
670bc9028e1SArun Kumar K };
67135aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_VPX_MIN_QP			(V4L2_CID_CODEC_BASE+507)
67235aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_VPX_MAX_QP			(V4L2_CID_CODEC_BASE+508)
67335aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_VPX_I_FRAME_QP		(V4L2_CID_CODEC_BASE+509)
67435aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_VPX_P_FRAME_QP		(V4L2_CID_CODEC_BASE+510)
6755520b946SKeiichi Watanabe 
67635aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_VP8_PROFILE			(V4L2_CID_CODEC_BASE+511)
6775520b946SKeiichi Watanabe enum v4l2_mpeg_video_vp8_profile {
6785520b946SKeiichi Watanabe 	V4L2_MPEG_VIDEO_VP8_PROFILE_0				= 0,
6795520b946SKeiichi Watanabe 	V4L2_MPEG_VIDEO_VP8_PROFILE_1				= 1,
6805520b946SKeiichi Watanabe 	V4L2_MPEG_VIDEO_VP8_PROFILE_2				= 2,
6815520b946SKeiichi Watanabe 	V4L2_MPEG_VIDEO_VP8_PROFILE_3				= 3,
6825520b946SKeiichi Watanabe };
6835520b946SKeiichi Watanabe /* Deprecated alias for compatibility reasons. */
6845520b946SKeiichi Watanabe #define V4L2_CID_MPEG_VIDEO_VPX_PROFILE	V4L2_CID_MPEG_VIDEO_VP8_PROFILE
68535aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_VP9_PROFILE			(V4L2_CID_CODEC_BASE+512)
6862a75364dSKeiichi Watanabe enum v4l2_mpeg_video_vp9_profile {
6872a75364dSKeiichi Watanabe 	V4L2_MPEG_VIDEO_VP9_PROFILE_0				= 0,
6882a75364dSKeiichi Watanabe 	V4L2_MPEG_VIDEO_VP9_PROFILE_1				= 1,
6892a75364dSKeiichi Watanabe 	V4L2_MPEG_VIDEO_VP9_PROFILE_2				= 2,
6902a75364dSKeiichi Watanabe 	V4L2_MPEG_VIDEO_VP9_PROFILE_3				= 3,
6912a75364dSKeiichi Watanabe };
69235aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_VP9_LEVEL			(V4L2_CID_CODEC_BASE+513)
6935823833cSStanimir Varbanov enum v4l2_mpeg_video_vp9_level {
6945823833cSStanimir Varbanov 	V4L2_MPEG_VIDEO_VP9_LEVEL_1_0	= 0,
6955823833cSStanimir Varbanov 	V4L2_MPEG_VIDEO_VP9_LEVEL_1_1	= 1,
6965823833cSStanimir Varbanov 	V4L2_MPEG_VIDEO_VP9_LEVEL_2_0	= 2,
6975823833cSStanimir Varbanov 	V4L2_MPEG_VIDEO_VP9_LEVEL_2_1	= 3,
6985823833cSStanimir Varbanov 	V4L2_MPEG_VIDEO_VP9_LEVEL_3_0	= 4,
6995823833cSStanimir Varbanov 	V4L2_MPEG_VIDEO_VP9_LEVEL_3_1	= 5,
7005823833cSStanimir Varbanov 	V4L2_MPEG_VIDEO_VP9_LEVEL_4_0	= 6,
7015823833cSStanimir Varbanov 	V4L2_MPEG_VIDEO_VP9_LEVEL_4_1	= 7,
7025823833cSStanimir Varbanov 	V4L2_MPEG_VIDEO_VP9_LEVEL_5_0	= 8,
7035823833cSStanimir Varbanov 	V4L2_MPEG_VIDEO_VP9_LEVEL_5_1	= 9,
7045823833cSStanimir Varbanov 	V4L2_MPEG_VIDEO_VP9_LEVEL_5_2	= 10,
7055823833cSStanimir Varbanov 	V4L2_MPEG_VIDEO_VP9_LEVEL_6_0	= 11,
7065823833cSStanimir Varbanov 	V4L2_MPEG_VIDEO_VP9_LEVEL_6_1	= 12,
7075823833cSStanimir Varbanov 	V4L2_MPEG_VIDEO_VP9_LEVEL_6_2	= 13,
7085823833cSStanimir Varbanov };
709bc9028e1SArun Kumar K 
7102c02837bSSmitha T Murthy /* CIDs for HEVC encoding. */
7112c02837bSSmitha T Murthy 
71235aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_HEVC_MIN_QP		(V4L2_CID_CODEC_BASE + 600)
71335aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_HEVC_MAX_QP		(V4L2_CID_CODEC_BASE + 601)
71435aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_HEVC_I_FRAME_QP	(V4L2_CID_CODEC_BASE + 602)
71535aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_HEVC_P_FRAME_QP	(V4L2_CID_CODEC_BASE + 603)
71635aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_HEVC_B_FRAME_QP	(V4L2_CID_CODEC_BASE + 604)
71735aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_HEVC_HIER_QP	(V4L2_CID_CODEC_BASE + 605)
71835aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_HEVC_HIER_CODING_TYPE (V4L2_CID_CODEC_BASE + 606)
7192c02837bSSmitha T Murthy enum v4l2_mpeg_video_hevc_hier_coding_type {
7202c02837bSSmitha T Murthy 	V4L2_MPEG_VIDEO_HEVC_HIERARCHICAL_CODING_B	= 0,
7212c02837bSSmitha T Murthy 	V4L2_MPEG_VIDEO_HEVC_HIERARCHICAL_CODING_P	= 1,
7222c02837bSSmitha T Murthy };
72335aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_HEVC_HIER_CODING_LAYER	(V4L2_CID_CODEC_BASE + 607)
72435aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_HEVC_HIER_CODING_L0_QP	(V4L2_CID_CODEC_BASE + 608)
72535aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_HEVC_HIER_CODING_L1_QP	(V4L2_CID_CODEC_BASE + 609)
72635aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_HEVC_HIER_CODING_L2_QP	(V4L2_CID_CODEC_BASE + 610)
72735aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_HEVC_HIER_CODING_L3_QP	(V4L2_CID_CODEC_BASE + 611)
72835aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_HEVC_HIER_CODING_L4_QP	(V4L2_CID_CODEC_BASE + 612)
72935aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_HEVC_HIER_CODING_L5_QP	(V4L2_CID_CODEC_BASE + 613)
73035aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_HEVC_HIER_CODING_L6_QP	(V4L2_CID_CODEC_BASE + 614)
73135aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_HEVC_PROFILE	(V4L2_CID_CODEC_BASE + 615)
7322c02837bSSmitha T Murthy enum v4l2_mpeg_video_hevc_profile {
7332c02837bSSmitha T Murthy 	V4L2_MPEG_VIDEO_HEVC_PROFILE_MAIN = 0,
7342c02837bSSmitha T Murthy 	V4L2_MPEG_VIDEO_HEVC_PROFILE_MAIN_STILL_PICTURE = 1,
7352c02837bSSmitha T Murthy 	V4L2_MPEG_VIDEO_HEVC_PROFILE_MAIN_10 = 2,
7362c02837bSSmitha T Murthy };
73735aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_HEVC_LEVEL		(V4L2_CID_CODEC_BASE + 616)
7382c02837bSSmitha T Murthy enum v4l2_mpeg_video_hevc_level {
7392c02837bSSmitha T Murthy 	V4L2_MPEG_VIDEO_HEVC_LEVEL_1	= 0,
7402c02837bSSmitha T Murthy 	V4L2_MPEG_VIDEO_HEVC_LEVEL_2	= 1,
7412c02837bSSmitha T Murthy 	V4L2_MPEG_VIDEO_HEVC_LEVEL_2_1	= 2,
7422c02837bSSmitha T Murthy 	V4L2_MPEG_VIDEO_HEVC_LEVEL_3	= 3,
7432c02837bSSmitha T Murthy 	V4L2_MPEG_VIDEO_HEVC_LEVEL_3_1	= 4,
7442c02837bSSmitha T Murthy 	V4L2_MPEG_VIDEO_HEVC_LEVEL_4	= 5,
7452c02837bSSmitha T Murthy 	V4L2_MPEG_VIDEO_HEVC_LEVEL_4_1	= 6,
7462c02837bSSmitha T Murthy 	V4L2_MPEG_VIDEO_HEVC_LEVEL_5	= 7,
7472c02837bSSmitha T Murthy 	V4L2_MPEG_VIDEO_HEVC_LEVEL_5_1	= 8,
7482c02837bSSmitha T Murthy 	V4L2_MPEG_VIDEO_HEVC_LEVEL_5_2	= 9,
7492c02837bSSmitha T Murthy 	V4L2_MPEG_VIDEO_HEVC_LEVEL_6	= 10,
7502c02837bSSmitha T Murthy 	V4L2_MPEG_VIDEO_HEVC_LEVEL_6_1	= 11,
7512c02837bSSmitha T Murthy 	V4L2_MPEG_VIDEO_HEVC_LEVEL_6_2	= 12,
7522c02837bSSmitha T Murthy };
75335aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_HEVC_FRAME_RATE_RESOLUTION	(V4L2_CID_CODEC_BASE + 617)
75435aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_HEVC_TIER			(V4L2_CID_CODEC_BASE + 618)
7552c02837bSSmitha T Murthy enum v4l2_mpeg_video_hevc_tier {
7562c02837bSSmitha T Murthy 	V4L2_MPEG_VIDEO_HEVC_TIER_MAIN = 0,
7572c02837bSSmitha T Murthy 	V4L2_MPEG_VIDEO_HEVC_TIER_HIGH = 1,
7582c02837bSSmitha T Murthy };
75935aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_HEVC_MAX_PARTITION_DEPTH	(V4L2_CID_CODEC_BASE + 619)
76035aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_HEVC_LOOP_FILTER_MODE	(V4L2_CID_CODEC_BASE + 620)
7612c02837bSSmitha T Murthy enum v4l2_cid_mpeg_video_hevc_loop_filter_mode {
7622c02837bSSmitha T Murthy 	V4L2_MPEG_VIDEO_HEVC_LOOP_FILTER_MODE_DISABLED			 = 0,
7632c02837bSSmitha T Murthy 	V4L2_MPEG_VIDEO_HEVC_LOOP_FILTER_MODE_ENABLED			 = 1,
7642c02837bSSmitha T Murthy 	V4L2_MPEG_VIDEO_HEVC_LOOP_FILTER_MODE_DISABLED_AT_SLICE_BOUNDARY = 2,
7652c02837bSSmitha T Murthy };
76635aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_HEVC_LF_BETA_OFFSET_DIV2	(V4L2_CID_CODEC_BASE + 621)
76735aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_HEVC_LF_TC_OFFSET_DIV2	(V4L2_CID_CODEC_BASE + 622)
76835aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_HEVC_REFRESH_TYPE		(V4L2_CID_CODEC_BASE + 623)
7692c02837bSSmitha T Murthy enum v4l2_cid_mpeg_video_hevc_refresh_type {
7702c02837bSSmitha T Murthy 	V4L2_MPEG_VIDEO_HEVC_REFRESH_NONE		= 0,
7712c02837bSSmitha T Murthy 	V4L2_MPEG_VIDEO_HEVC_REFRESH_CRA		= 1,
7722c02837bSSmitha T Murthy 	V4L2_MPEG_VIDEO_HEVC_REFRESH_IDR		= 2,
7732c02837bSSmitha T Murthy };
77435aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_HEVC_REFRESH_PERIOD		(V4L2_CID_CODEC_BASE + 624)
77535aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_HEVC_LOSSLESS_CU		(V4L2_CID_CODEC_BASE + 625)
77635aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_HEVC_CONST_INTRA_PRED	(V4L2_CID_CODEC_BASE + 626)
77735aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_HEVC_WAVEFRONT		(V4L2_CID_CODEC_BASE + 627)
77835aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_HEVC_GENERAL_PB		(V4L2_CID_CODEC_BASE + 628)
77935aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_HEVC_TEMPORAL_ID		(V4L2_CID_CODEC_BASE + 629)
78035aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_HEVC_STRONG_SMOOTHING	(V4L2_CID_CODEC_BASE + 630)
78135aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_HEVC_MAX_NUM_MERGE_MV_MINUS1	(V4L2_CID_CODEC_BASE + 631)
78235aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_HEVC_INTRA_PU_SPLIT		(V4L2_CID_CODEC_BASE + 632)
78335aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_HEVC_TMV_PREDICTION		(V4L2_CID_CODEC_BASE + 633)
78435aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_HEVC_WITHOUT_STARTCODE	(V4L2_CID_CODEC_BASE + 634)
78535aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_HEVC_SIZE_OF_LENGTH_FIELD	(V4L2_CID_CODEC_BASE + 635)
7862c02837bSSmitha T Murthy enum v4l2_cid_mpeg_video_hevc_size_of_length_field {
7872c02837bSSmitha T Murthy 	V4L2_MPEG_VIDEO_HEVC_SIZE_0		= 0,
7882c02837bSSmitha T Murthy 	V4L2_MPEG_VIDEO_HEVC_SIZE_1		= 1,
7892c02837bSSmitha T Murthy 	V4L2_MPEG_VIDEO_HEVC_SIZE_2		= 2,
7902c02837bSSmitha T Murthy 	V4L2_MPEG_VIDEO_HEVC_SIZE_4		= 3,
7912c02837bSSmitha T Murthy };
79235aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_HEVC_HIER_CODING_L0_BR	(V4L2_CID_CODEC_BASE + 636)
79335aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_HEVC_HIER_CODING_L1_BR	(V4L2_CID_CODEC_BASE + 637)
79435aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_HEVC_HIER_CODING_L2_BR	(V4L2_CID_CODEC_BASE + 638)
79535aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_HEVC_HIER_CODING_L3_BR	(V4L2_CID_CODEC_BASE + 639)
79635aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_HEVC_HIER_CODING_L4_BR	(V4L2_CID_CODEC_BASE + 640)
79735aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_HEVC_HIER_CODING_L5_BR	(V4L2_CID_CODEC_BASE + 641)
79835aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_HEVC_HIER_CODING_L6_BR	(V4L2_CID_CODEC_BASE + 642)
79935aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_REF_NUMBER_FOR_PFRAMES	(V4L2_CID_CODEC_BASE + 643)
80035aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_PREPEND_SPSPPS_TO_IDR	(V4L2_CID_CODEC_BASE + 644)
80135aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_CONSTANT_QUALITY		(V4L2_CID_CODEC_BASE + 645)
80235aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_VIDEO_FRAME_SKIP_MODE		(V4L2_CID_CODEC_BASE + 646)
80344f5b2ffSStanimir Varbanov enum v4l2_mpeg_video_frame_skip_mode {
80444f5b2ffSStanimir Varbanov 	V4L2_MPEG_VIDEO_FRAME_SKIP_MODE_DISABLED	= 0,
80544f5b2ffSStanimir Varbanov 	V4L2_MPEG_VIDEO_FRAME_SKIP_MODE_LEVEL_LIMIT	= 1,
80644f5b2ffSStanimir Varbanov 	V4L2_MPEG_VIDEO_FRAME_SKIP_MODE_BUF_LIMIT	= 2,
80744f5b2ffSStanimir Varbanov };
8082c02837bSSmitha T Murthy 
80999d0cbe4SDikshita Agarwal #define V4L2_CID_MPEG_VIDEO_HEVC_I_FRAME_MIN_QP        (V4L2_CID_CODEC_BASE + 647)
81099d0cbe4SDikshita Agarwal #define V4L2_CID_MPEG_VIDEO_HEVC_I_FRAME_MAX_QP        (V4L2_CID_CODEC_BASE + 648)
81199d0cbe4SDikshita Agarwal #define V4L2_CID_MPEG_VIDEO_HEVC_P_FRAME_MIN_QP        (V4L2_CID_CODEC_BASE + 649)
81299d0cbe4SDikshita Agarwal #define V4L2_CID_MPEG_VIDEO_HEVC_P_FRAME_MAX_QP        (V4L2_CID_CODEC_BASE + 650)
81399d0cbe4SDikshita Agarwal #define V4L2_CID_MPEG_VIDEO_HEVC_B_FRAME_MIN_QP        (V4L2_CID_CODEC_BASE + 651)
81499d0cbe4SDikshita Agarwal #define V4L2_CID_MPEG_VIDEO_HEVC_B_FRAME_MAX_QP        (V4L2_CID_CODEC_BASE + 652)
81599d0cbe4SDikshita Agarwal 
8169f3d1056SStanimir Varbanov #define V4L2_CID_MPEG_VIDEO_DEC_DISPLAY_DELAY		(V4L2_CID_CODEC_BASE + 653)
8179f3d1056SStanimir Varbanov #define V4L2_CID_MPEG_VIDEO_DEC_DISPLAY_DELAY_ENABLE	(V4L2_CID_CODEC_BASE + 654)
8189f3d1056SStanimir Varbanov 
8199de30f57SDaniel Almeida #define V4L2_CID_MPEG_VIDEO_AV1_PROFILE (V4L2_CID_CODEC_BASE + 655)
8209de30f57SDaniel Almeida /**
8219de30f57SDaniel Almeida  * enum v4l2_mpeg_video_av1_profile - AV1 profiles
8229de30f57SDaniel Almeida  *
8239de30f57SDaniel Almeida  * @V4L2_MPEG_VIDEO_AV1_PROFILE_MAIN: compliant decoders must be able to decode
8249de30f57SDaniel Almeida  * streams with seq_profile equal to 0.
8259de30f57SDaniel Almeida  * @V4L2_MPEG_VIDEO_AV1_PROFILE_HIGH: compliant decoders must be able to decode
8269de30f57SDaniel Almeida  * streams with seq_profile equal less than or equal to 1.
8279de30f57SDaniel Almeida  * @V4L2_MPEG_VIDEO_AV1_PROFILE_PROFESSIONAL: compliant decoders must be able to
8289de30f57SDaniel Almeida  * decode streams with seq_profile less than or equal to 2.
8299de30f57SDaniel Almeida  *
8309de30f57SDaniel Almeida  * Conveys the highest profile a decoder can work with.
8319de30f57SDaniel Almeida  */
8329de30f57SDaniel Almeida enum v4l2_mpeg_video_av1_profile {
8339de30f57SDaniel Almeida 	V4L2_MPEG_VIDEO_AV1_PROFILE_MAIN = 0,
8349de30f57SDaniel Almeida 	V4L2_MPEG_VIDEO_AV1_PROFILE_HIGH = 1,
8359de30f57SDaniel Almeida 	V4L2_MPEG_VIDEO_AV1_PROFILE_PROFESSIONAL = 2,
8369de30f57SDaniel Almeida };
8379de30f57SDaniel Almeida 
8389de30f57SDaniel Almeida #define V4L2_CID_MPEG_VIDEO_AV1_LEVEL (V4L2_CID_CODEC_BASE + 656)
8399de30f57SDaniel Almeida /**
8409de30f57SDaniel Almeida  * enum v4l2_mpeg_video_av1_level - AV1 levels
8419de30f57SDaniel Almeida  *
8429de30f57SDaniel Almeida  * @V4L2_MPEG_VIDEO_AV1_LEVEL_2_0: Level 2.0.
8439de30f57SDaniel Almeida  * @V4L2_MPEG_VIDEO_AV1_LEVEL_2_1: Level 2.1.
8449de30f57SDaniel Almeida  * @V4L2_MPEG_VIDEO_AV1_LEVEL_2_2: Level 2.2.
8459de30f57SDaniel Almeida  * @V4L2_MPEG_VIDEO_AV1_LEVEL_2_3: Level 2.3.
8469de30f57SDaniel Almeida  * @V4L2_MPEG_VIDEO_AV1_LEVEL_3_0: Level 3.0.
8479de30f57SDaniel Almeida  * @V4L2_MPEG_VIDEO_AV1_LEVEL_3_1: Level 3.1.
8489de30f57SDaniel Almeida  * @V4L2_MPEG_VIDEO_AV1_LEVEL_3_2: Level 3.2.
8499de30f57SDaniel Almeida  * @V4L2_MPEG_VIDEO_AV1_LEVEL_3_3: Level 3.3.
8509de30f57SDaniel Almeida  * @V4L2_MPEG_VIDEO_AV1_LEVEL_4_0: Level 4.0.
8519de30f57SDaniel Almeida  * @V4L2_MPEG_VIDEO_AV1_LEVEL_4_1: Level 4.1.
8529de30f57SDaniel Almeida  * @V4L2_MPEG_VIDEO_AV1_LEVEL_4_2: Level 4.2.
8539de30f57SDaniel Almeida  * @V4L2_MPEG_VIDEO_AV1_LEVEL_4_3: Level 4.3.
8549de30f57SDaniel Almeida  * @V4L2_MPEG_VIDEO_AV1_LEVEL_5_0: Level 5.0.
8559de30f57SDaniel Almeida  * @V4L2_MPEG_VIDEO_AV1_LEVEL_5_1: Level 5.1.
8569de30f57SDaniel Almeida  * @V4L2_MPEG_VIDEO_AV1_LEVEL_5_2: Level 5.2.
8579de30f57SDaniel Almeida  * @V4L2_MPEG_VIDEO_AV1_LEVEL_5_3: Level 5.3.
8589de30f57SDaniel Almeida  * @V4L2_MPEG_VIDEO_AV1_LEVEL_6_0: Level 6.0.
8599de30f57SDaniel Almeida  * @V4L2_MPEG_VIDEO_AV1_LEVEL_6_1: Level 6.1.
8609de30f57SDaniel Almeida  * @V4L2_MPEG_VIDEO_AV1_LEVEL_6_2: Level 6.2.
8619de30f57SDaniel Almeida  * @V4L2_MPEG_VIDEO_AV1_LEVEL_6_3: Level 6.3.
8629de30f57SDaniel Almeida  * @V4L2_MPEG_VIDEO_AV1_LEVEL_7_0: Level 7.0.
8639de30f57SDaniel Almeida  * @V4L2_MPEG_VIDEO_AV1_LEVEL_7_1: Level 7.1.
8649de30f57SDaniel Almeida  * @V4L2_MPEG_VIDEO_AV1_LEVEL_7_2: Level 7.2.
8659de30f57SDaniel Almeida  * @V4L2_MPEG_VIDEO_AV1_LEVEL_7_3: Level 7.3.
8669de30f57SDaniel Almeida  *
8679de30f57SDaniel Almeida  * Conveys the highest level a decoder can work with.
8689de30f57SDaniel Almeida  */
8699de30f57SDaniel Almeida enum v4l2_mpeg_video_av1_level {
8709de30f57SDaniel Almeida 	V4L2_MPEG_VIDEO_AV1_LEVEL_2_0 = 0,
8719de30f57SDaniel Almeida 	V4L2_MPEG_VIDEO_AV1_LEVEL_2_1 = 1,
8729de30f57SDaniel Almeida 	V4L2_MPEG_VIDEO_AV1_LEVEL_2_2 = 2,
8739de30f57SDaniel Almeida 	V4L2_MPEG_VIDEO_AV1_LEVEL_2_3 = 3,
8749de30f57SDaniel Almeida 
8759de30f57SDaniel Almeida 	V4L2_MPEG_VIDEO_AV1_LEVEL_3_0 = 4,
8769de30f57SDaniel Almeida 	V4L2_MPEG_VIDEO_AV1_LEVEL_3_1 = 5,
8779de30f57SDaniel Almeida 	V4L2_MPEG_VIDEO_AV1_LEVEL_3_2 = 6,
8789de30f57SDaniel Almeida 	V4L2_MPEG_VIDEO_AV1_LEVEL_3_3 = 7,
8799de30f57SDaniel Almeida 
8809de30f57SDaniel Almeida 	V4L2_MPEG_VIDEO_AV1_LEVEL_4_0 = 8,
8819de30f57SDaniel Almeida 	V4L2_MPEG_VIDEO_AV1_LEVEL_4_1 = 9,
8829de30f57SDaniel Almeida 	V4L2_MPEG_VIDEO_AV1_LEVEL_4_2 = 10,
8839de30f57SDaniel Almeida 	V4L2_MPEG_VIDEO_AV1_LEVEL_4_3 = 11,
8849de30f57SDaniel Almeida 
8859de30f57SDaniel Almeida 	V4L2_MPEG_VIDEO_AV1_LEVEL_5_0 = 12,
8869de30f57SDaniel Almeida 	V4L2_MPEG_VIDEO_AV1_LEVEL_5_1 = 13,
8879de30f57SDaniel Almeida 	V4L2_MPEG_VIDEO_AV1_LEVEL_5_2 = 14,
8889de30f57SDaniel Almeida 	V4L2_MPEG_VIDEO_AV1_LEVEL_5_3 = 15,
8899de30f57SDaniel Almeida 
8909de30f57SDaniel Almeida 	V4L2_MPEG_VIDEO_AV1_LEVEL_6_0 = 16,
8919de30f57SDaniel Almeida 	V4L2_MPEG_VIDEO_AV1_LEVEL_6_1 = 17,
8929de30f57SDaniel Almeida 	V4L2_MPEG_VIDEO_AV1_LEVEL_6_2 = 18,
8939de30f57SDaniel Almeida 	V4L2_MPEG_VIDEO_AV1_LEVEL_6_3 = 19,
8949de30f57SDaniel Almeida 
8959de30f57SDaniel Almeida 	V4L2_MPEG_VIDEO_AV1_LEVEL_7_0 = 20,
8969de30f57SDaniel Almeida 	V4L2_MPEG_VIDEO_AV1_LEVEL_7_1 = 21,
8979de30f57SDaniel Almeida 	V4L2_MPEG_VIDEO_AV1_LEVEL_7_2 = 22,
8989de30f57SDaniel Almeida 	V4L2_MPEG_VIDEO_AV1_LEVEL_7_3 = 23
8999de30f57SDaniel Almeida };
9009de30f57SDaniel Almeida 
901607ca46eSDavid Howells /*  MPEG-class control IDs specific to the CX2341x driver as defined by V4L2 */
90235aaa6e6SEzequiel Garcia #define V4L2_CID_CODEC_CX2341X_BASE				(V4L2_CTRL_CLASS_CODEC | 0x1000)
90335aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_CX2341X_VIDEO_SPATIAL_FILTER_MODE		(V4L2_CID_CODEC_CX2341X_BASE+0)
904607ca46eSDavid Howells enum v4l2_mpeg_cx2341x_video_spatial_filter_mode {
905607ca46eSDavid Howells 	V4L2_MPEG_CX2341X_VIDEO_SPATIAL_FILTER_MODE_MANUAL = 0,
906607ca46eSDavid Howells 	V4L2_MPEG_CX2341X_VIDEO_SPATIAL_FILTER_MODE_AUTO   = 1,
907607ca46eSDavid Howells };
90835aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_CX2341X_VIDEO_SPATIAL_FILTER		(V4L2_CID_CODEC_CX2341X_BASE+1)
90935aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_CX2341X_VIDEO_LUMA_SPATIAL_FILTER_TYPE	(V4L2_CID_CODEC_CX2341X_BASE+2)
910607ca46eSDavid Howells enum v4l2_mpeg_cx2341x_video_luma_spatial_filter_type {
911607ca46eSDavid Howells 	V4L2_MPEG_CX2341X_VIDEO_LUMA_SPATIAL_FILTER_TYPE_OFF                  = 0,
912607ca46eSDavid Howells 	V4L2_MPEG_CX2341X_VIDEO_LUMA_SPATIAL_FILTER_TYPE_1D_HOR               = 1,
913607ca46eSDavid Howells 	V4L2_MPEG_CX2341X_VIDEO_LUMA_SPATIAL_FILTER_TYPE_1D_VERT              = 2,
914607ca46eSDavid Howells 	V4L2_MPEG_CX2341X_VIDEO_LUMA_SPATIAL_FILTER_TYPE_2D_HV_SEPARABLE      = 3,
915607ca46eSDavid Howells 	V4L2_MPEG_CX2341X_VIDEO_LUMA_SPATIAL_FILTER_TYPE_2D_SYM_NON_SEPARABLE = 4,
916607ca46eSDavid Howells };
91735aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_CX2341X_VIDEO_CHROMA_SPATIAL_FILTER_TYPE	(V4L2_CID_CODEC_CX2341X_BASE+3)
918607ca46eSDavid Howells enum v4l2_mpeg_cx2341x_video_chroma_spatial_filter_type {
919607ca46eSDavid Howells 	V4L2_MPEG_CX2341X_VIDEO_CHROMA_SPATIAL_FILTER_TYPE_OFF    = 0,
920607ca46eSDavid Howells 	V4L2_MPEG_CX2341X_VIDEO_CHROMA_SPATIAL_FILTER_TYPE_1D_HOR = 1,
921607ca46eSDavid Howells };
92235aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_CX2341X_VIDEO_TEMPORAL_FILTER_MODE	(V4L2_CID_CODEC_CX2341X_BASE+4)
923607ca46eSDavid Howells enum v4l2_mpeg_cx2341x_video_temporal_filter_mode {
924607ca46eSDavid Howells 	V4L2_MPEG_CX2341X_VIDEO_TEMPORAL_FILTER_MODE_MANUAL = 0,
925607ca46eSDavid Howells 	V4L2_MPEG_CX2341X_VIDEO_TEMPORAL_FILTER_MODE_AUTO   = 1,
926607ca46eSDavid Howells };
92735aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_CX2341X_VIDEO_TEMPORAL_FILTER		(V4L2_CID_CODEC_CX2341X_BASE+5)
92835aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_CX2341X_VIDEO_MEDIAN_FILTER_TYPE		(V4L2_CID_CODEC_CX2341X_BASE+6)
929607ca46eSDavid Howells enum v4l2_mpeg_cx2341x_video_median_filter_type {
930607ca46eSDavid Howells 	V4L2_MPEG_CX2341X_VIDEO_MEDIAN_FILTER_TYPE_OFF      = 0,
931607ca46eSDavid Howells 	V4L2_MPEG_CX2341X_VIDEO_MEDIAN_FILTER_TYPE_HOR      = 1,
932607ca46eSDavid Howells 	V4L2_MPEG_CX2341X_VIDEO_MEDIAN_FILTER_TYPE_VERT     = 2,
933607ca46eSDavid Howells 	V4L2_MPEG_CX2341X_VIDEO_MEDIAN_FILTER_TYPE_HOR_VERT = 3,
934607ca46eSDavid Howells 	V4L2_MPEG_CX2341X_VIDEO_MEDIAN_FILTER_TYPE_DIAG     = 4,
935607ca46eSDavid Howells };
93635aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_CX2341X_VIDEO_LUMA_MEDIAN_FILTER_BOTTOM	(V4L2_CID_CODEC_CX2341X_BASE+7)
93735aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_CX2341X_VIDEO_LUMA_MEDIAN_FILTER_TOP	(V4L2_CID_CODEC_CX2341X_BASE+8)
93835aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_CX2341X_VIDEO_CHROMA_MEDIAN_FILTER_BOTTOM	(V4L2_CID_CODEC_CX2341X_BASE+9)
93935aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_CX2341X_VIDEO_CHROMA_MEDIAN_FILTER_TOP	(V4L2_CID_CODEC_CX2341X_BASE+10)
94035aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_CX2341X_STREAM_INSERT_NAV_PACKETS		(V4L2_CID_CODEC_CX2341X_BASE+11)
941607ca46eSDavid Howells 
942607ca46eSDavid Howells /*  MPEG-class control IDs specific to the Samsung MFC 5.1 driver as defined by V4L2 */
94335aaa6e6SEzequiel Garcia #define V4L2_CID_CODEC_MFC51_BASE				(V4L2_CTRL_CLASS_CODEC | 0x1100)
944607ca46eSDavid Howells 
94535aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_MFC51_VIDEO_DECODER_H264_DISPLAY_DELAY		(V4L2_CID_CODEC_MFC51_BASE+0)
94635aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_MFC51_VIDEO_DECODER_H264_DISPLAY_DELAY_ENABLE	(V4L2_CID_CODEC_MFC51_BASE+1)
94735aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_MFC51_VIDEO_FRAME_SKIP_MODE			(V4L2_CID_CODEC_MFC51_BASE+2)
948607ca46eSDavid Howells enum v4l2_mpeg_mfc51_video_frame_skip_mode {
949607ca46eSDavid Howells 	V4L2_MPEG_MFC51_VIDEO_FRAME_SKIP_MODE_DISABLED		= 0,
950607ca46eSDavid Howells 	V4L2_MPEG_MFC51_VIDEO_FRAME_SKIP_MODE_LEVEL_LIMIT	= 1,
951607ca46eSDavid Howells 	V4L2_MPEG_MFC51_VIDEO_FRAME_SKIP_MODE_BUF_LIMIT		= 2,
952607ca46eSDavid Howells };
95335aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_MFC51_VIDEO_FORCE_FRAME_TYPE			(V4L2_CID_CODEC_MFC51_BASE+3)
954607ca46eSDavid Howells enum v4l2_mpeg_mfc51_video_force_frame_type {
955607ca46eSDavid Howells 	V4L2_MPEG_MFC51_VIDEO_FORCE_FRAME_TYPE_DISABLED		= 0,
956607ca46eSDavid Howells 	V4L2_MPEG_MFC51_VIDEO_FORCE_FRAME_TYPE_I_FRAME		= 1,
957607ca46eSDavid Howells 	V4L2_MPEG_MFC51_VIDEO_FORCE_FRAME_TYPE_NOT_CODED	= 2,
958607ca46eSDavid Howells };
95935aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_MFC51_VIDEO_PADDING				(V4L2_CID_CODEC_MFC51_BASE+4)
96035aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_MFC51_VIDEO_PADDING_YUV				(V4L2_CID_CODEC_MFC51_BASE+5)
96135aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_MFC51_VIDEO_RC_FIXED_TARGET_BIT			(V4L2_CID_CODEC_MFC51_BASE+6)
96235aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_MFC51_VIDEO_RC_REACTION_COEFF			(V4L2_CID_CODEC_MFC51_BASE+7)
96335aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_MFC51_VIDEO_H264_ADAPTIVE_RC_ACTIVITY		(V4L2_CID_CODEC_MFC51_BASE+50)
96435aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_MFC51_VIDEO_H264_ADAPTIVE_RC_DARK			(V4L2_CID_CODEC_MFC51_BASE+51)
96535aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_MFC51_VIDEO_H264_ADAPTIVE_RC_SMOOTH		(V4L2_CID_CODEC_MFC51_BASE+52)
96635aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_MFC51_VIDEO_H264_ADAPTIVE_RC_STATIC		(V4L2_CID_CODEC_MFC51_BASE+53)
96735aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_MFC51_VIDEO_H264_NUM_REF_PIC_FOR_P		(V4L2_CID_CODEC_MFC51_BASE+54)
968607ca46eSDavid Howells 
969607ca46eSDavid Howells /*  Camera class control IDs */
970607ca46eSDavid Howells 
971607ca46eSDavid Howells #define V4L2_CID_CAMERA_CLASS_BASE	(V4L2_CTRL_CLASS_CAMERA | 0x900)
972607ca46eSDavid Howells #define V4L2_CID_CAMERA_CLASS		(V4L2_CTRL_CLASS_CAMERA | 1)
973607ca46eSDavid Howells 
974607ca46eSDavid Howells #define V4L2_CID_EXPOSURE_AUTO			(V4L2_CID_CAMERA_CLASS_BASE+1)
975607ca46eSDavid Howells enum  v4l2_exposure_auto_type {
976607ca46eSDavid Howells 	V4L2_EXPOSURE_AUTO = 0,
977607ca46eSDavid Howells 	V4L2_EXPOSURE_MANUAL = 1,
978607ca46eSDavid Howells 	V4L2_EXPOSURE_SHUTTER_PRIORITY = 2,
979607ca46eSDavid Howells 	V4L2_EXPOSURE_APERTURE_PRIORITY = 3
980607ca46eSDavid Howells };
981607ca46eSDavid Howells #define V4L2_CID_EXPOSURE_ABSOLUTE		(V4L2_CID_CAMERA_CLASS_BASE+2)
982607ca46eSDavid Howells #define V4L2_CID_EXPOSURE_AUTO_PRIORITY		(V4L2_CID_CAMERA_CLASS_BASE+3)
983607ca46eSDavid Howells 
984607ca46eSDavid Howells #define V4L2_CID_PAN_RELATIVE			(V4L2_CID_CAMERA_CLASS_BASE+4)
985607ca46eSDavid Howells #define V4L2_CID_TILT_RELATIVE			(V4L2_CID_CAMERA_CLASS_BASE+5)
986607ca46eSDavid Howells #define V4L2_CID_PAN_RESET			(V4L2_CID_CAMERA_CLASS_BASE+6)
987607ca46eSDavid Howells #define V4L2_CID_TILT_RESET			(V4L2_CID_CAMERA_CLASS_BASE+7)
988607ca46eSDavid Howells 
989607ca46eSDavid Howells #define V4L2_CID_PAN_ABSOLUTE			(V4L2_CID_CAMERA_CLASS_BASE+8)
990607ca46eSDavid Howells #define V4L2_CID_TILT_ABSOLUTE			(V4L2_CID_CAMERA_CLASS_BASE+9)
991607ca46eSDavid Howells 
992607ca46eSDavid Howells #define V4L2_CID_FOCUS_ABSOLUTE			(V4L2_CID_CAMERA_CLASS_BASE+10)
993607ca46eSDavid Howells #define V4L2_CID_FOCUS_RELATIVE			(V4L2_CID_CAMERA_CLASS_BASE+11)
994607ca46eSDavid Howells #define V4L2_CID_FOCUS_AUTO			(V4L2_CID_CAMERA_CLASS_BASE+12)
995607ca46eSDavid Howells 
996607ca46eSDavid Howells #define V4L2_CID_ZOOM_ABSOLUTE			(V4L2_CID_CAMERA_CLASS_BASE+13)
997607ca46eSDavid Howells #define V4L2_CID_ZOOM_RELATIVE			(V4L2_CID_CAMERA_CLASS_BASE+14)
998607ca46eSDavid Howells #define V4L2_CID_ZOOM_CONTINUOUS		(V4L2_CID_CAMERA_CLASS_BASE+15)
999607ca46eSDavid Howells 
1000607ca46eSDavid Howells #define V4L2_CID_PRIVACY			(V4L2_CID_CAMERA_CLASS_BASE+16)
1001607ca46eSDavid Howells 
1002607ca46eSDavid Howells #define V4L2_CID_IRIS_ABSOLUTE			(V4L2_CID_CAMERA_CLASS_BASE+17)
1003607ca46eSDavid Howells #define V4L2_CID_IRIS_RELATIVE			(V4L2_CID_CAMERA_CLASS_BASE+18)
1004607ca46eSDavid Howells 
1005607ca46eSDavid Howells #define V4L2_CID_AUTO_EXPOSURE_BIAS		(V4L2_CID_CAMERA_CLASS_BASE+19)
1006607ca46eSDavid Howells 
1007607ca46eSDavid Howells #define V4L2_CID_AUTO_N_PRESET_WHITE_BALANCE	(V4L2_CID_CAMERA_CLASS_BASE+20)
1008607ca46eSDavid Howells enum v4l2_auto_n_preset_white_balance {
1009607ca46eSDavid Howells 	V4L2_WHITE_BALANCE_MANUAL		= 0,
1010607ca46eSDavid Howells 	V4L2_WHITE_BALANCE_AUTO			= 1,
1011607ca46eSDavid Howells 	V4L2_WHITE_BALANCE_INCANDESCENT		= 2,
1012607ca46eSDavid Howells 	V4L2_WHITE_BALANCE_FLUORESCENT		= 3,
1013607ca46eSDavid Howells 	V4L2_WHITE_BALANCE_FLUORESCENT_H	= 4,
1014607ca46eSDavid Howells 	V4L2_WHITE_BALANCE_HORIZON		= 5,
1015607ca46eSDavid Howells 	V4L2_WHITE_BALANCE_DAYLIGHT		= 6,
1016607ca46eSDavid Howells 	V4L2_WHITE_BALANCE_FLASH		= 7,
1017607ca46eSDavid Howells 	V4L2_WHITE_BALANCE_CLOUDY		= 8,
1018607ca46eSDavid Howells 	V4L2_WHITE_BALANCE_SHADE		= 9,
1019607ca46eSDavid Howells };
1020607ca46eSDavid Howells 
1021607ca46eSDavid Howells #define V4L2_CID_WIDE_DYNAMIC_RANGE		(V4L2_CID_CAMERA_CLASS_BASE+21)
1022607ca46eSDavid Howells #define V4L2_CID_IMAGE_STABILIZATION		(V4L2_CID_CAMERA_CLASS_BASE+22)
1023607ca46eSDavid Howells 
1024607ca46eSDavid Howells #define V4L2_CID_ISO_SENSITIVITY		(V4L2_CID_CAMERA_CLASS_BASE+23)
1025607ca46eSDavid Howells #define V4L2_CID_ISO_SENSITIVITY_AUTO		(V4L2_CID_CAMERA_CLASS_BASE+24)
1026607ca46eSDavid Howells enum v4l2_iso_sensitivity_auto_type {
1027607ca46eSDavid Howells 	V4L2_ISO_SENSITIVITY_MANUAL		= 0,
1028607ca46eSDavid Howells 	V4L2_ISO_SENSITIVITY_AUTO		= 1,
1029607ca46eSDavid Howells };
1030607ca46eSDavid Howells 
1031607ca46eSDavid Howells #define V4L2_CID_EXPOSURE_METERING		(V4L2_CID_CAMERA_CLASS_BASE+25)
1032607ca46eSDavid Howells enum v4l2_exposure_metering {
1033607ca46eSDavid Howells 	V4L2_EXPOSURE_METERING_AVERAGE		= 0,
1034607ca46eSDavid Howells 	V4L2_EXPOSURE_METERING_CENTER_WEIGHTED	= 1,
1035607ca46eSDavid Howells 	V4L2_EXPOSURE_METERING_SPOT		= 2,
1036fc39f46bSSylwester Nawrocki 	V4L2_EXPOSURE_METERING_MATRIX		= 3,
1037607ca46eSDavid Howells };
1038607ca46eSDavid Howells 
1039607ca46eSDavid Howells #define V4L2_CID_SCENE_MODE			(V4L2_CID_CAMERA_CLASS_BASE+26)
1040607ca46eSDavid Howells enum v4l2_scene_mode {
1041607ca46eSDavid Howells 	V4L2_SCENE_MODE_NONE			= 0,
1042607ca46eSDavid Howells 	V4L2_SCENE_MODE_BACKLIGHT		= 1,
1043607ca46eSDavid Howells 	V4L2_SCENE_MODE_BEACH_SNOW		= 2,
1044607ca46eSDavid Howells 	V4L2_SCENE_MODE_CANDLE_LIGHT		= 3,
1045607ca46eSDavid Howells 	V4L2_SCENE_MODE_DAWN_DUSK		= 4,
1046607ca46eSDavid Howells 	V4L2_SCENE_MODE_FALL_COLORS		= 5,
1047607ca46eSDavid Howells 	V4L2_SCENE_MODE_FIREWORKS		= 6,
1048607ca46eSDavid Howells 	V4L2_SCENE_MODE_LANDSCAPE		= 7,
1049607ca46eSDavid Howells 	V4L2_SCENE_MODE_NIGHT			= 8,
1050607ca46eSDavid Howells 	V4L2_SCENE_MODE_PARTY_INDOOR		= 9,
1051607ca46eSDavid Howells 	V4L2_SCENE_MODE_PORTRAIT		= 10,
1052607ca46eSDavid Howells 	V4L2_SCENE_MODE_SPORTS			= 11,
1053607ca46eSDavid Howells 	V4L2_SCENE_MODE_SUNSET			= 12,
1054607ca46eSDavid Howells 	V4L2_SCENE_MODE_TEXT			= 13,
1055607ca46eSDavid Howells };
1056607ca46eSDavid Howells 
1057607ca46eSDavid Howells #define V4L2_CID_3A_LOCK			(V4L2_CID_CAMERA_CLASS_BASE+27)
1058607ca46eSDavid Howells #define V4L2_LOCK_EXPOSURE			(1 << 0)
1059607ca46eSDavid Howells #define V4L2_LOCK_WHITE_BALANCE			(1 << 1)
1060607ca46eSDavid Howells #define V4L2_LOCK_FOCUS				(1 << 2)
1061607ca46eSDavid Howells 
1062607ca46eSDavid Howells #define V4L2_CID_AUTO_FOCUS_START		(V4L2_CID_CAMERA_CLASS_BASE+28)
1063607ca46eSDavid Howells #define V4L2_CID_AUTO_FOCUS_STOP		(V4L2_CID_CAMERA_CLASS_BASE+29)
1064607ca46eSDavid Howells #define V4L2_CID_AUTO_FOCUS_STATUS		(V4L2_CID_CAMERA_CLASS_BASE+30)
1065607ca46eSDavid Howells #define V4L2_AUTO_FOCUS_STATUS_IDLE		(0 << 0)
1066607ca46eSDavid Howells #define V4L2_AUTO_FOCUS_STATUS_BUSY		(1 << 0)
1067607ca46eSDavid Howells #define V4L2_AUTO_FOCUS_STATUS_REACHED		(1 << 1)
1068607ca46eSDavid Howells #define V4L2_AUTO_FOCUS_STATUS_FAILED		(1 << 2)
1069607ca46eSDavid Howells 
1070607ca46eSDavid Howells #define V4L2_CID_AUTO_FOCUS_RANGE		(V4L2_CID_CAMERA_CLASS_BASE+31)
1071607ca46eSDavid Howells enum v4l2_auto_focus_range {
1072607ca46eSDavid Howells 	V4L2_AUTO_FOCUS_RANGE_AUTO		= 0,
1073607ca46eSDavid Howells 	V4L2_AUTO_FOCUS_RANGE_NORMAL		= 1,
1074607ca46eSDavid Howells 	V4L2_AUTO_FOCUS_RANGE_MACRO		= 2,
1075607ca46eSDavid Howells 	V4L2_AUTO_FOCUS_RANGE_INFINITY		= 3,
1076607ca46eSDavid Howells };
1077607ca46eSDavid Howells 
1078e3d6eb1cSVincent Palatin #define V4L2_CID_PAN_SPEED			(V4L2_CID_CAMERA_CLASS_BASE+32)
1079e3d6eb1cSVincent Palatin #define V4L2_CID_TILT_SPEED			(V4L2_CID_CAMERA_CLASS_BASE+33)
1080607ca46eSDavid Howells 
1081926645d4SJacopo Mondi #define V4L2_CID_CAMERA_ORIENTATION		(V4L2_CID_CAMERA_CLASS_BASE+34)
1082926645d4SJacopo Mondi #define V4L2_CAMERA_ORIENTATION_FRONT		0
1083926645d4SJacopo Mondi #define V4L2_CAMERA_ORIENTATION_BACK		1
1084926645d4SJacopo Mondi #define V4L2_CAMERA_ORIENTATION_EXTERNAL	2
1085926645d4SJacopo Mondi 
1086926645d4SJacopo Mondi #define V4L2_CID_CAMERA_SENSOR_ROTATION		(V4L2_CID_CAMERA_CLASS_BASE+35)
1087926645d4SJacopo Mondi 
10887673f305SBenjamin Mugnier #define V4L2_CID_HDR_SENSOR_MODE		(V4L2_CID_CAMERA_CLASS_BASE+36)
10897673f305SBenjamin Mugnier 
1090607ca46eSDavid Howells /* FM Modulator class control IDs */
1091607ca46eSDavid Howells 
1092607ca46eSDavid Howells #define V4L2_CID_FM_TX_CLASS_BASE		(V4L2_CTRL_CLASS_FM_TX | 0x900)
1093607ca46eSDavid Howells #define V4L2_CID_FM_TX_CLASS			(V4L2_CTRL_CLASS_FM_TX | 1)
1094607ca46eSDavid Howells 
1095607ca46eSDavid Howells #define V4L2_CID_RDS_TX_DEVIATION		(V4L2_CID_FM_TX_CLASS_BASE + 1)
1096607ca46eSDavid Howells #define V4L2_CID_RDS_TX_PI			(V4L2_CID_FM_TX_CLASS_BASE + 2)
1097607ca46eSDavid Howells #define V4L2_CID_RDS_TX_PTY			(V4L2_CID_FM_TX_CLASS_BASE + 3)
1098607ca46eSDavid Howells #define V4L2_CID_RDS_TX_PS_NAME			(V4L2_CID_FM_TX_CLASS_BASE + 5)
1099607ca46eSDavid Howells #define V4L2_CID_RDS_TX_RADIO_TEXT		(V4L2_CID_FM_TX_CLASS_BASE + 6)
1100811c5081SHans Verkuil #define V4L2_CID_RDS_TX_MONO_STEREO		(V4L2_CID_FM_TX_CLASS_BASE + 7)
1101811c5081SHans Verkuil #define V4L2_CID_RDS_TX_ARTIFICIAL_HEAD		(V4L2_CID_FM_TX_CLASS_BASE + 8)
1102811c5081SHans Verkuil #define V4L2_CID_RDS_TX_COMPRESSED		(V4L2_CID_FM_TX_CLASS_BASE + 9)
1103811c5081SHans Verkuil #define V4L2_CID_RDS_TX_DYNAMIC_PTY		(V4L2_CID_FM_TX_CLASS_BASE + 10)
1104811c5081SHans Verkuil #define V4L2_CID_RDS_TX_TRAFFIC_ANNOUNCEMENT	(V4L2_CID_FM_TX_CLASS_BASE + 11)
1105811c5081SHans Verkuil #define V4L2_CID_RDS_TX_TRAFFIC_PROGRAM		(V4L2_CID_FM_TX_CLASS_BASE + 12)
1106811c5081SHans Verkuil #define V4L2_CID_RDS_TX_MUSIC_SPEECH		(V4L2_CID_FM_TX_CLASS_BASE + 13)
1107811c5081SHans Verkuil #define V4L2_CID_RDS_TX_ALT_FREQS_ENABLE	(V4L2_CID_FM_TX_CLASS_BASE + 14)
1108811c5081SHans Verkuil #define V4L2_CID_RDS_TX_ALT_FREQS		(V4L2_CID_FM_TX_CLASS_BASE + 15)
1109607ca46eSDavid Howells 
1110607ca46eSDavid Howells #define V4L2_CID_AUDIO_LIMITER_ENABLED		(V4L2_CID_FM_TX_CLASS_BASE + 64)
1111607ca46eSDavid Howells #define V4L2_CID_AUDIO_LIMITER_RELEASE_TIME	(V4L2_CID_FM_TX_CLASS_BASE + 65)
1112607ca46eSDavid Howells #define V4L2_CID_AUDIO_LIMITER_DEVIATION	(V4L2_CID_FM_TX_CLASS_BASE + 66)
1113607ca46eSDavid Howells 
1114607ca46eSDavid Howells #define V4L2_CID_AUDIO_COMPRESSION_ENABLED	(V4L2_CID_FM_TX_CLASS_BASE + 80)
1115607ca46eSDavid Howells #define V4L2_CID_AUDIO_COMPRESSION_GAIN		(V4L2_CID_FM_TX_CLASS_BASE + 81)
1116607ca46eSDavid Howells #define V4L2_CID_AUDIO_COMPRESSION_THRESHOLD	(V4L2_CID_FM_TX_CLASS_BASE + 82)
1117607ca46eSDavid Howells #define V4L2_CID_AUDIO_COMPRESSION_ATTACK_TIME	(V4L2_CID_FM_TX_CLASS_BASE + 83)
1118607ca46eSDavid Howells #define V4L2_CID_AUDIO_COMPRESSION_RELEASE_TIME	(V4L2_CID_FM_TX_CLASS_BASE + 84)
1119607ca46eSDavid Howells 
1120607ca46eSDavid Howells #define V4L2_CID_PILOT_TONE_ENABLED		(V4L2_CID_FM_TX_CLASS_BASE + 96)
1121607ca46eSDavid Howells #define V4L2_CID_PILOT_TONE_DEVIATION		(V4L2_CID_FM_TX_CLASS_BASE + 97)
1122607ca46eSDavid Howells #define V4L2_CID_PILOT_TONE_FREQUENCY		(V4L2_CID_FM_TX_CLASS_BASE + 98)
1123607ca46eSDavid Howells 
1124607ca46eSDavid Howells #define V4L2_CID_TUNE_PREEMPHASIS		(V4L2_CID_FM_TX_CLASS_BASE + 112)
1125607ca46eSDavid Howells enum v4l2_preemphasis {
1126607ca46eSDavid Howells 	V4L2_PREEMPHASIS_DISABLED	= 0,
1127607ca46eSDavid Howells 	V4L2_PREEMPHASIS_50_uS		= 1,
1128607ca46eSDavid Howells 	V4L2_PREEMPHASIS_75_uS		= 2,
1129607ca46eSDavid Howells };
1130607ca46eSDavid Howells #define V4L2_CID_TUNE_POWER_LEVEL		(V4L2_CID_FM_TX_CLASS_BASE + 113)
1131607ca46eSDavid Howells #define V4L2_CID_TUNE_ANTENNA_CAPACITOR		(V4L2_CID_FM_TX_CLASS_BASE + 114)
1132607ca46eSDavid Howells 
1133607ca46eSDavid Howells 
1134607ca46eSDavid Howells /* Flash and privacy (indicator) light controls */
1135607ca46eSDavid Howells 
1136607ca46eSDavid Howells #define V4L2_CID_FLASH_CLASS_BASE		(V4L2_CTRL_CLASS_FLASH | 0x900)
1137607ca46eSDavid Howells #define V4L2_CID_FLASH_CLASS			(V4L2_CTRL_CLASS_FLASH | 1)
1138607ca46eSDavid Howells 
1139607ca46eSDavid Howells #define V4L2_CID_FLASH_LED_MODE			(V4L2_CID_FLASH_CLASS_BASE + 1)
1140607ca46eSDavid Howells enum v4l2_flash_led_mode {
1141607ca46eSDavid Howells 	V4L2_FLASH_LED_MODE_NONE,
1142607ca46eSDavid Howells 	V4L2_FLASH_LED_MODE_FLASH,
1143607ca46eSDavid Howells 	V4L2_FLASH_LED_MODE_TORCH,
1144607ca46eSDavid Howells };
1145607ca46eSDavid Howells 
1146607ca46eSDavid Howells #define V4L2_CID_FLASH_STROBE_SOURCE		(V4L2_CID_FLASH_CLASS_BASE + 2)
1147607ca46eSDavid Howells enum v4l2_flash_strobe_source {
1148607ca46eSDavid Howells 	V4L2_FLASH_STROBE_SOURCE_SOFTWARE,
1149607ca46eSDavid Howells 	V4L2_FLASH_STROBE_SOURCE_EXTERNAL,
1150607ca46eSDavid Howells };
1151607ca46eSDavid Howells 
1152607ca46eSDavid Howells #define V4L2_CID_FLASH_STROBE			(V4L2_CID_FLASH_CLASS_BASE + 3)
1153607ca46eSDavid Howells #define V4L2_CID_FLASH_STROBE_STOP		(V4L2_CID_FLASH_CLASS_BASE + 4)
1154607ca46eSDavid Howells #define V4L2_CID_FLASH_STROBE_STATUS		(V4L2_CID_FLASH_CLASS_BASE + 5)
1155607ca46eSDavid Howells 
1156607ca46eSDavid Howells #define V4L2_CID_FLASH_TIMEOUT			(V4L2_CID_FLASH_CLASS_BASE + 6)
1157607ca46eSDavid Howells #define V4L2_CID_FLASH_INTENSITY		(V4L2_CID_FLASH_CLASS_BASE + 7)
1158607ca46eSDavid Howells #define V4L2_CID_FLASH_TORCH_INTENSITY		(V4L2_CID_FLASH_CLASS_BASE + 8)
1159607ca46eSDavid Howells #define V4L2_CID_FLASH_INDICATOR_INTENSITY	(V4L2_CID_FLASH_CLASS_BASE + 9)
1160607ca46eSDavid Howells 
1161607ca46eSDavid Howells #define V4L2_CID_FLASH_FAULT			(V4L2_CID_FLASH_CLASS_BASE + 10)
1162607ca46eSDavid Howells #define V4L2_FLASH_FAULT_OVER_VOLTAGE		(1 << 0)
1163607ca46eSDavid Howells #define V4L2_FLASH_FAULT_TIMEOUT		(1 << 1)
1164607ca46eSDavid Howells #define V4L2_FLASH_FAULT_OVER_TEMPERATURE	(1 << 2)
1165607ca46eSDavid Howells #define V4L2_FLASH_FAULT_SHORT_CIRCUIT		(1 << 3)
1166607ca46eSDavid Howells #define V4L2_FLASH_FAULT_OVER_CURRENT		(1 << 4)
1167607ca46eSDavid Howells #define V4L2_FLASH_FAULT_INDICATOR		(1 << 5)
1168935aa6b2SDaniel Jeong #define V4L2_FLASH_FAULT_UNDER_VOLTAGE		(1 << 6)
1169935aa6b2SDaniel Jeong #define V4L2_FLASH_FAULT_INPUT_VOLTAGE		(1 << 7)
1170935aa6b2SDaniel Jeong #define V4L2_FLASH_FAULT_LED_OVER_TEMPERATURE	(1 << 8)
1171607ca46eSDavid Howells 
1172607ca46eSDavid Howells #define V4L2_CID_FLASH_CHARGE			(V4L2_CID_FLASH_CLASS_BASE + 11)
1173607ca46eSDavid Howells #define V4L2_CID_FLASH_READY			(V4L2_CID_FLASH_CLASS_BASE + 12)
1174607ca46eSDavid Howells 
1175607ca46eSDavid Howells 
1176607ca46eSDavid Howells /* JPEG-class control IDs */
1177607ca46eSDavid Howells 
1178607ca46eSDavid Howells #define V4L2_CID_JPEG_CLASS_BASE		(V4L2_CTRL_CLASS_JPEG | 0x900)
1179607ca46eSDavid Howells #define V4L2_CID_JPEG_CLASS			(V4L2_CTRL_CLASS_JPEG | 1)
1180607ca46eSDavid Howells 
1181607ca46eSDavid Howells #define	V4L2_CID_JPEG_CHROMA_SUBSAMPLING	(V4L2_CID_JPEG_CLASS_BASE + 1)
1182607ca46eSDavid Howells enum v4l2_jpeg_chroma_subsampling {
1183607ca46eSDavid Howells 	V4L2_JPEG_CHROMA_SUBSAMPLING_444	= 0,
1184607ca46eSDavid Howells 	V4L2_JPEG_CHROMA_SUBSAMPLING_422	= 1,
1185607ca46eSDavid Howells 	V4L2_JPEG_CHROMA_SUBSAMPLING_420	= 2,
1186607ca46eSDavid Howells 	V4L2_JPEG_CHROMA_SUBSAMPLING_411	= 3,
1187607ca46eSDavid Howells 	V4L2_JPEG_CHROMA_SUBSAMPLING_410	= 4,
1188607ca46eSDavid Howells 	V4L2_JPEG_CHROMA_SUBSAMPLING_GRAY	= 5,
1189607ca46eSDavid Howells };
1190607ca46eSDavid Howells #define	V4L2_CID_JPEG_RESTART_INTERVAL		(V4L2_CID_JPEG_CLASS_BASE + 2)
1191607ca46eSDavid Howells #define	V4L2_CID_JPEG_COMPRESSION_QUALITY	(V4L2_CID_JPEG_CLASS_BASE + 3)
1192607ca46eSDavid Howells 
1193607ca46eSDavid Howells #define	V4L2_CID_JPEG_ACTIVE_MARKER		(V4L2_CID_JPEG_CLASS_BASE + 4)
1194607ca46eSDavid Howells #define	V4L2_JPEG_ACTIVE_MARKER_APP0		(1 << 0)
1195607ca46eSDavid Howells #define	V4L2_JPEG_ACTIVE_MARKER_APP1		(1 << 1)
1196607ca46eSDavid Howells #define	V4L2_JPEG_ACTIVE_MARKER_COM		(1 << 16)
1197607ca46eSDavid Howells #define	V4L2_JPEG_ACTIVE_MARKER_DQT		(1 << 17)
1198607ca46eSDavid Howells #define	V4L2_JPEG_ACTIVE_MARKER_DHT		(1 << 18)
1199607ca46eSDavid Howells 
120028718152SHans Verkuil 
1201607ca46eSDavid Howells /* Image source controls */
1202607ca46eSDavid Howells #define V4L2_CID_IMAGE_SOURCE_CLASS_BASE	(V4L2_CTRL_CLASS_IMAGE_SOURCE | 0x900)
1203607ca46eSDavid Howells #define V4L2_CID_IMAGE_SOURCE_CLASS		(V4L2_CTRL_CLASS_IMAGE_SOURCE | 1)
1204607ca46eSDavid Howells 
1205607ca46eSDavid Howells #define V4L2_CID_VBLANK				(V4L2_CID_IMAGE_SOURCE_CLASS_BASE + 1)
1206607ca46eSDavid Howells #define V4L2_CID_HBLANK				(V4L2_CID_IMAGE_SOURCE_CLASS_BASE + 2)
1207607ca46eSDavid Howells #define V4L2_CID_ANALOGUE_GAIN			(V4L2_CID_IMAGE_SOURCE_CLASS_BASE + 3)
12080fc87864SSakari Ailus #define V4L2_CID_TEST_PATTERN_RED		(V4L2_CID_IMAGE_SOURCE_CLASS_BASE + 4)
12090fc87864SSakari Ailus #define V4L2_CID_TEST_PATTERN_GREENR		(V4L2_CID_IMAGE_SOURCE_CLASS_BASE + 5)
12100fc87864SSakari Ailus #define V4L2_CID_TEST_PATTERN_BLUE		(V4L2_CID_IMAGE_SOURCE_CLASS_BASE + 6)
12110fc87864SSakari Ailus #define V4L2_CID_TEST_PATTERN_GREENB		(V4L2_CID_IMAGE_SOURCE_CLASS_BASE + 7)
121261fd036dSRicardo Ribalda Delgado #define V4L2_CID_UNIT_CELL_SIZE			(V4L2_CID_IMAGE_SOURCE_CLASS_BASE + 8)
1213a9c80593SDavid Plowman #define V4L2_CID_NOTIFY_GAINS			(V4L2_CID_IMAGE_SOURCE_CLASS_BASE + 9)
1214607ca46eSDavid Howells 
1215607ca46eSDavid Howells 
1216607ca46eSDavid Howells /* Image processing controls */
1217607ca46eSDavid Howells 
1218607ca46eSDavid Howells #define V4L2_CID_IMAGE_PROC_CLASS_BASE		(V4L2_CTRL_CLASS_IMAGE_PROC | 0x900)
1219607ca46eSDavid Howells #define V4L2_CID_IMAGE_PROC_CLASS		(V4L2_CTRL_CLASS_IMAGE_PROC | 1)
1220607ca46eSDavid Howells 
1221607ca46eSDavid Howells #define V4L2_CID_LINK_FREQ			(V4L2_CID_IMAGE_PROC_CLASS_BASE + 1)
1222607ca46eSDavid Howells #define V4L2_CID_PIXEL_RATE			(V4L2_CID_IMAGE_PROC_CLASS_BASE + 2)
1223607ca46eSDavid Howells #define V4L2_CID_TEST_PATTERN			(V4L2_CID_IMAGE_PROC_CLASS_BASE + 3)
1224446e4125SLaurent Pinchart #define V4L2_CID_DEINTERLACING_MODE		(V4L2_CID_IMAGE_PROC_CLASS_BASE + 4)
1225e72cb0e7SSakari Ailus #define V4L2_CID_DIGITAL_GAIN			(V4L2_CID_IMAGE_PROC_CLASS_BASE + 5)
122628718152SHans Verkuil 
122728718152SHans Verkuil /*  DV-class control IDs defined by V4L2 */
122828718152SHans Verkuil #define V4L2_CID_DV_CLASS_BASE			(V4L2_CTRL_CLASS_DV | 0x900)
122928718152SHans Verkuil #define V4L2_CID_DV_CLASS			(V4L2_CTRL_CLASS_DV | 1)
123028718152SHans Verkuil 
123128718152SHans Verkuil #define	V4L2_CID_DV_TX_HOTPLUG			(V4L2_CID_DV_CLASS_BASE + 1)
123228718152SHans Verkuil #define	V4L2_CID_DV_TX_RXSENSE			(V4L2_CID_DV_CLASS_BASE + 2)
123328718152SHans Verkuil #define	V4L2_CID_DV_TX_EDID_PRESENT		(V4L2_CID_DV_CLASS_BASE + 3)
123428718152SHans Verkuil #define	V4L2_CID_DV_TX_MODE			(V4L2_CID_DV_CLASS_BASE + 4)
123528718152SHans Verkuil enum v4l2_dv_tx_mode {
123628718152SHans Verkuil 	V4L2_DV_TX_MODE_DVI_D	= 0,
123728718152SHans Verkuil 	V4L2_DV_TX_MODE_HDMI	= 1,
123828718152SHans Verkuil };
123928718152SHans Verkuil #define V4L2_CID_DV_TX_RGB_RANGE		(V4L2_CID_DV_CLASS_BASE + 5)
124028718152SHans Verkuil enum v4l2_dv_rgb_range {
124128718152SHans Verkuil 	V4L2_DV_RGB_RANGE_AUTO	  = 0,
124228718152SHans Verkuil 	V4L2_DV_RGB_RANGE_LIMITED = 1,
124328718152SHans Verkuil 	V4L2_DV_RGB_RANGE_FULL	  = 2,
124428718152SHans Verkuil };
124528718152SHans Verkuil 
124645cc29afSHans Verkuil #define V4L2_CID_DV_TX_IT_CONTENT_TYPE		(V4L2_CID_DV_CLASS_BASE + 6)
124745cc29afSHans Verkuil enum v4l2_dv_it_content_type {
124845cc29afSHans Verkuil 	V4L2_DV_IT_CONTENT_TYPE_GRAPHICS  = 0,
124945cc29afSHans Verkuil 	V4L2_DV_IT_CONTENT_TYPE_PHOTO	  = 1,
125045cc29afSHans Verkuil 	V4L2_DV_IT_CONTENT_TYPE_CINEMA	  = 2,
125145cc29afSHans Verkuil 	V4L2_DV_IT_CONTENT_TYPE_GAME	  = 3,
125245cc29afSHans Verkuil 	V4L2_DV_IT_CONTENT_TYPE_NO_ITC	  = 4,
125345cc29afSHans Verkuil };
125445cc29afSHans Verkuil 
125528718152SHans Verkuil #define	V4L2_CID_DV_RX_POWER_PRESENT		(V4L2_CID_DV_CLASS_BASE + 100)
125628718152SHans Verkuil #define V4L2_CID_DV_RX_RGB_RANGE		(V4L2_CID_DV_CLASS_BASE + 101)
125745cc29afSHans Verkuil #define V4L2_CID_DV_RX_IT_CONTENT_TYPE		(V4L2_CID_DV_CLASS_BASE + 102)
125828718152SHans Verkuil 
1259aec330a8SAndrey Smirnov #define V4L2_CID_FM_RX_CLASS_BASE		(V4L2_CTRL_CLASS_FM_RX | 0x900)
1260aec330a8SAndrey Smirnov #define V4L2_CID_FM_RX_CLASS			(V4L2_CTRL_CLASS_FM_RX | 1)
1261aec330a8SAndrey Smirnov 
1262aec330a8SAndrey Smirnov #define V4L2_CID_TUNE_DEEMPHASIS		(V4L2_CID_FM_RX_CLASS_BASE + 1)
1263aec330a8SAndrey Smirnov enum v4l2_deemphasis {
1264aec330a8SAndrey Smirnov 	V4L2_DEEMPHASIS_DISABLED	= V4L2_PREEMPHASIS_DISABLED,
1265aec330a8SAndrey Smirnov 	V4L2_DEEMPHASIS_50_uS		= V4L2_PREEMPHASIS_50_uS,
1266aec330a8SAndrey Smirnov 	V4L2_DEEMPHASIS_75_uS		= V4L2_PREEMPHASIS_75_uS,
1267aec330a8SAndrey Smirnov };
1268aec330a8SAndrey Smirnov 
1269aec330a8SAndrey Smirnov #define V4L2_CID_RDS_RECEPTION			(V4L2_CID_FM_RX_CLASS_BASE + 2)
12709570a148SHans Verkuil #define V4L2_CID_RDS_RX_PTY			(V4L2_CID_FM_RX_CLASS_BASE + 3)
12719570a148SHans Verkuil #define V4L2_CID_RDS_RX_PS_NAME			(V4L2_CID_FM_RX_CLASS_BASE + 4)
12729570a148SHans Verkuil #define V4L2_CID_RDS_RX_RADIO_TEXT		(V4L2_CID_FM_RX_CLASS_BASE + 5)
12739570a148SHans Verkuil #define V4L2_CID_RDS_RX_TRAFFIC_ANNOUNCEMENT	(V4L2_CID_FM_RX_CLASS_BASE + 6)
12749570a148SHans Verkuil #define V4L2_CID_RDS_RX_TRAFFIC_PROGRAM		(V4L2_CID_FM_RX_CLASS_BASE + 7)
12759570a148SHans Verkuil #define V4L2_CID_RDS_RX_MUSIC_SPEECH		(V4L2_CID_FM_RX_CLASS_BASE + 8)
1276aec330a8SAndrey Smirnov 
127780807fadSAntti Palosaari #define V4L2_CID_RF_TUNER_CLASS_BASE		(V4L2_CTRL_CLASS_RF_TUNER | 0x900)
127880807fadSAntti Palosaari #define V4L2_CID_RF_TUNER_CLASS			(V4L2_CTRL_CLASS_RF_TUNER | 1)
127980807fadSAntti Palosaari 
1280835b87c7SAntti Palosaari #define V4L2_CID_RF_TUNER_BANDWIDTH_AUTO	(V4L2_CID_RF_TUNER_CLASS_BASE + 11)
1281835b87c7SAntti Palosaari #define V4L2_CID_RF_TUNER_BANDWIDTH		(V4L2_CID_RF_TUNER_CLASS_BASE + 12)
128241018cb8SAntti Palosaari #define V4L2_CID_RF_TUNER_RF_GAIN		(V4L2_CID_RF_TUNER_CLASS_BASE + 32)
1283835b87c7SAntti Palosaari #define V4L2_CID_RF_TUNER_LNA_GAIN_AUTO		(V4L2_CID_RF_TUNER_CLASS_BASE + 41)
1284835b87c7SAntti Palosaari #define V4L2_CID_RF_TUNER_LNA_GAIN		(V4L2_CID_RF_TUNER_CLASS_BASE + 42)
1285835b87c7SAntti Palosaari #define V4L2_CID_RF_TUNER_MIXER_GAIN_AUTO	(V4L2_CID_RF_TUNER_CLASS_BASE + 51)
1286835b87c7SAntti Palosaari #define V4L2_CID_RF_TUNER_MIXER_GAIN		(V4L2_CID_RF_TUNER_CLASS_BASE + 52)
1287835b87c7SAntti Palosaari #define V4L2_CID_RF_TUNER_IF_GAIN_AUTO		(V4L2_CID_RF_TUNER_CLASS_BASE + 61)
1288835b87c7SAntti Palosaari #define V4L2_CID_RF_TUNER_IF_GAIN		(V4L2_CID_RF_TUNER_CLASS_BASE + 62)
12899aa4357eSAntti Palosaari #define V4L2_CID_RF_TUNER_PLL_LOCK			(V4L2_CID_RF_TUNER_CLASS_BASE + 91)
129080807fadSAntti Palosaari 
1291a77b4fc0SHans Verkuil 
1292a77b4fc0SHans Verkuil /*  Detection-class control IDs defined by V4L2 */
1293a77b4fc0SHans Verkuil #define V4L2_CID_DETECT_CLASS_BASE		(V4L2_CTRL_CLASS_DETECT | 0x900)
1294a77b4fc0SHans Verkuil #define V4L2_CID_DETECT_CLASS			(V4L2_CTRL_CLASS_DETECT | 1)
1295a77b4fc0SHans Verkuil 
1296a77b4fc0SHans Verkuil #define V4L2_CID_DETECT_MD_MODE			(V4L2_CID_DETECT_CLASS_BASE + 1)
1297a77b4fc0SHans Verkuil enum v4l2_detect_md_mode {
1298a77b4fc0SHans Verkuil 	V4L2_DETECT_MD_MODE_DISABLED		= 0,
1299a77b4fc0SHans Verkuil 	V4L2_DETECT_MD_MODE_GLOBAL		= 1,
1300a77b4fc0SHans Verkuil 	V4L2_DETECT_MD_MODE_THRESHOLD_GRID	= 2,
1301a77b4fc0SHans Verkuil 	V4L2_DETECT_MD_MODE_REGION_GRID		= 3,
1302a77b4fc0SHans Verkuil };
1303a77b4fc0SHans Verkuil #define V4L2_CID_DETECT_MD_GLOBAL_THRESHOLD	(V4L2_CID_DETECT_CLASS_BASE + 2)
1304a77b4fc0SHans Verkuil #define V4L2_CID_DETECT_MD_THRESHOLD_GRID	(V4L2_CID_DETECT_CLASS_BASE + 3)
1305a77b4fc0SHans Verkuil #define V4L2_CID_DETECT_MD_REGION_GRID		(V4L2_CID_DETECT_CLASS_BASE + 4)
1306a77b4fc0SHans Verkuil 
1307008d2bd6SEzequiel Garcia 
1308008d2bd6SEzequiel Garcia /*  Stateless CODECs controls */
1309008d2bd6SEzequiel Garcia #define V4L2_CID_CODEC_STATELESS_BASE          (V4L2_CTRL_CLASS_CODEC_STATELESS | 0x900)
1310008d2bd6SEzequiel Garcia #define V4L2_CID_CODEC_STATELESS_CLASS         (V4L2_CTRL_CLASS_CODEC_STATELESS | 1)
1311008d2bd6SEzequiel Garcia 
131246a309d2SEzequiel Garcia #define V4L2_CID_STATELESS_H264_DECODE_MODE	(V4L2_CID_CODEC_STATELESS_BASE + 0)
131346a309d2SEzequiel Garcia /**
131446a309d2SEzequiel Garcia  * enum v4l2_stateless_h264_decode_mode - Decoding mode
131546a309d2SEzequiel Garcia  *
131646a309d2SEzequiel Garcia  * @V4L2_STATELESS_H264_DECODE_MODE_SLICE_BASED: indicates that decoding
131746a309d2SEzequiel Garcia  * is performed one slice at a time. In this mode,
131846a309d2SEzequiel Garcia  * V4L2_CID_STATELESS_H264_SLICE_PARAMS must contain the parsed slice
131946a309d2SEzequiel Garcia  * parameters and the OUTPUT buffer must contain a single slice.
132046a309d2SEzequiel Garcia  * V4L2_BUF_CAP_SUPPORTS_M2M_HOLD_CAPTURE_BUF feature is used
132146a309d2SEzequiel Garcia  * in order to support multislice frames.
132246a309d2SEzequiel Garcia  * @V4L2_STATELESS_H264_DECODE_MODE_FRAME_BASED: indicates that
132346a309d2SEzequiel Garcia  * decoding is performed per frame. The OUTPUT buffer must contain
132446a309d2SEzequiel Garcia  * all slices and also both fields. This mode is typically supported
132546a309d2SEzequiel Garcia  * by device drivers that are able to parse the slice(s) header(s)
132646a309d2SEzequiel Garcia  * in hardware. When this mode is selected,
132746a309d2SEzequiel Garcia  * V4L2_CID_STATELESS_H264_SLICE_PARAMS is not used.
132846a309d2SEzequiel Garcia  */
132946a309d2SEzequiel Garcia enum v4l2_stateless_h264_decode_mode {
133046a309d2SEzequiel Garcia 	V4L2_STATELESS_H264_DECODE_MODE_SLICE_BASED,
133146a309d2SEzequiel Garcia 	V4L2_STATELESS_H264_DECODE_MODE_FRAME_BASED,
133246a309d2SEzequiel Garcia };
133346a309d2SEzequiel Garcia 
133446a309d2SEzequiel Garcia #define V4L2_CID_STATELESS_H264_START_CODE	(V4L2_CID_CODEC_STATELESS_BASE + 1)
133546a309d2SEzequiel Garcia /**
133646a309d2SEzequiel Garcia  * enum v4l2_stateless_h264_start_code - Start code
133746a309d2SEzequiel Garcia  *
133846a309d2SEzequiel Garcia  * @V4L2_STATELESS_H264_START_CODE_NONE: slices are passed
133946a309d2SEzequiel Garcia  * to the driver without any start code.
134046a309d2SEzequiel Garcia  * @V4L2_STATELESS_H264_START_CODE_ANNEX_B: slices are passed
134146a309d2SEzequiel Garcia  * to the driver with an Annex B start code prefix
134246a309d2SEzequiel Garcia  * (legal start codes can be 3-bytes 0x000001 or 4-bytes 0x00000001).
134346a309d2SEzequiel Garcia  * This mode is typically supported by device drivers that parse
134446a309d2SEzequiel Garcia  * the start code in hardware.
134546a309d2SEzequiel Garcia  */
134646a309d2SEzequiel Garcia enum v4l2_stateless_h264_start_code {
134746a309d2SEzequiel Garcia 	V4L2_STATELESS_H264_START_CODE_NONE,
134846a309d2SEzequiel Garcia 	V4L2_STATELESS_H264_START_CODE_ANNEX_B,
134946a309d2SEzequiel Garcia };
135046a309d2SEzequiel Garcia 
135146a309d2SEzequiel Garcia #define V4L2_H264_SPS_CONSTRAINT_SET0_FLAG			0x01
135246a309d2SEzequiel Garcia #define V4L2_H264_SPS_CONSTRAINT_SET1_FLAG			0x02
135346a309d2SEzequiel Garcia #define V4L2_H264_SPS_CONSTRAINT_SET2_FLAG			0x04
135446a309d2SEzequiel Garcia #define V4L2_H264_SPS_CONSTRAINT_SET3_FLAG			0x08
135546a309d2SEzequiel Garcia #define V4L2_H264_SPS_CONSTRAINT_SET4_FLAG			0x10
135646a309d2SEzequiel Garcia #define V4L2_H264_SPS_CONSTRAINT_SET5_FLAG			0x20
135746a309d2SEzequiel Garcia 
135846a309d2SEzequiel Garcia #define V4L2_H264_SPS_FLAG_SEPARATE_COLOUR_PLANE		0x01
135946a309d2SEzequiel Garcia #define V4L2_H264_SPS_FLAG_QPPRIME_Y_ZERO_TRANSFORM_BYPASS	0x02
136046a309d2SEzequiel Garcia #define V4L2_H264_SPS_FLAG_DELTA_PIC_ORDER_ALWAYS_ZERO		0x04
136146a309d2SEzequiel Garcia #define V4L2_H264_SPS_FLAG_GAPS_IN_FRAME_NUM_VALUE_ALLOWED	0x08
136246a309d2SEzequiel Garcia #define V4L2_H264_SPS_FLAG_FRAME_MBS_ONLY			0x10
136346a309d2SEzequiel Garcia #define V4L2_H264_SPS_FLAG_MB_ADAPTIVE_FRAME_FIELD		0x20
136446a309d2SEzequiel Garcia #define V4L2_H264_SPS_FLAG_DIRECT_8X8_INFERENCE			0x40
136546a309d2SEzequiel Garcia 
136646a309d2SEzequiel Garcia #define V4L2_H264_SPS_HAS_CHROMA_FORMAT(sps) \
136746a309d2SEzequiel Garcia 	((sps)->profile_idc == 100 || (sps)->profile_idc == 110 || \
136846a309d2SEzequiel Garcia 	 (sps)->profile_idc == 122 || (sps)->profile_idc == 244 || \
136946a309d2SEzequiel Garcia 	 (sps)->profile_idc == 44  || (sps)->profile_idc == 83  || \
137046a309d2SEzequiel Garcia 	 (sps)->profile_idc == 86  || (sps)->profile_idc == 118 || \
137146a309d2SEzequiel Garcia 	 (sps)->profile_idc == 128 || (sps)->profile_idc == 138 || \
137246a309d2SEzequiel Garcia 	 (sps)->profile_idc == 139 || (sps)->profile_idc == 134 || \
137346a309d2SEzequiel Garcia 	 (sps)->profile_idc == 135)
137446a309d2SEzequiel Garcia 
137546a309d2SEzequiel Garcia #define V4L2_CID_STATELESS_H264_SPS		(V4L2_CID_CODEC_STATELESS_BASE + 2)
137646a309d2SEzequiel Garcia /**
137746a309d2SEzequiel Garcia  * struct v4l2_ctrl_h264_sps - H264 sequence parameter set
137846a309d2SEzequiel Garcia  *
137946a309d2SEzequiel Garcia  * All the members on this sequence parameter set structure match the
138046a309d2SEzequiel Garcia  * sequence parameter set syntax as specified by the H264 specification.
138146a309d2SEzequiel Garcia  *
138246a309d2SEzequiel Garcia  * @profile_idc: see H264 specification.
138346a309d2SEzequiel Garcia  * @constraint_set_flags: see H264 specification.
138446a309d2SEzequiel Garcia  * @level_idc: see H264 specification.
138546a309d2SEzequiel Garcia  * @seq_parameter_set_id: see H264 specification.
138646a309d2SEzequiel Garcia  * @chroma_format_idc: see H264 specification.
138746a309d2SEzequiel Garcia  * @bit_depth_luma_minus8: see H264 specification.
138846a309d2SEzequiel Garcia  * @bit_depth_chroma_minus8: see H264 specification.
138946a309d2SEzequiel Garcia  * @log2_max_frame_num_minus4: see H264 specification.
139046a309d2SEzequiel Garcia  * @pic_order_cnt_type: see H264 specification.
139146a309d2SEzequiel Garcia  * @log2_max_pic_order_cnt_lsb_minus4: see H264 specification.
139246a309d2SEzequiel Garcia  * @max_num_ref_frames: see H264 specification.
139346a309d2SEzequiel Garcia  * @num_ref_frames_in_pic_order_cnt_cycle: see H264 specification.
139446a309d2SEzequiel Garcia  * @offset_for_ref_frame: see H264 specification.
139546a309d2SEzequiel Garcia  * @offset_for_non_ref_pic: see H264 specification.
139646a309d2SEzequiel Garcia  * @offset_for_top_to_bottom_field: see H264 specification.
139746a309d2SEzequiel Garcia  * @pic_width_in_mbs_minus1: see H264 specification.
139846a309d2SEzequiel Garcia  * @pic_height_in_map_units_minus1: see H264 specification.
139946a309d2SEzequiel Garcia  * @flags: see V4L2_H264_SPS_FLAG_{}.
140046a309d2SEzequiel Garcia  */
140146a309d2SEzequiel Garcia struct v4l2_ctrl_h264_sps {
140246a309d2SEzequiel Garcia 	__u8 profile_idc;
140346a309d2SEzequiel Garcia 	__u8 constraint_set_flags;
140446a309d2SEzequiel Garcia 	__u8 level_idc;
140546a309d2SEzequiel Garcia 	__u8 seq_parameter_set_id;
140646a309d2SEzequiel Garcia 	__u8 chroma_format_idc;
140746a309d2SEzequiel Garcia 	__u8 bit_depth_luma_minus8;
140846a309d2SEzequiel Garcia 	__u8 bit_depth_chroma_minus8;
140946a309d2SEzequiel Garcia 	__u8 log2_max_frame_num_minus4;
141046a309d2SEzequiel Garcia 	__u8 pic_order_cnt_type;
141146a309d2SEzequiel Garcia 	__u8 log2_max_pic_order_cnt_lsb_minus4;
141246a309d2SEzequiel Garcia 	__u8 max_num_ref_frames;
141346a309d2SEzequiel Garcia 	__u8 num_ref_frames_in_pic_order_cnt_cycle;
141446a309d2SEzequiel Garcia 	__s32 offset_for_ref_frame[255];
141546a309d2SEzequiel Garcia 	__s32 offset_for_non_ref_pic;
141646a309d2SEzequiel Garcia 	__s32 offset_for_top_to_bottom_field;
141746a309d2SEzequiel Garcia 	__u16 pic_width_in_mbs_minus1;
141846a309d2SEzequiel Garcia 	__u16 pic_height_in_map_units_minus1;
141946a309d2SEzequiel Garcia 	__u32 flags;
142046a309d2SEzequiel Garcia };
142146a309d2SEzequiel Garcia 
142246a309d2SEzequiel Garcia #define V4L2_H264_PPS_FLAG_ENTROPY_CODING_MODE				0x0001
142346a309d2SEzequiel Garcia #define V4L2_H264_PPS_FLAG_BOTTOM_FIELD_PIC_ORDER_IN_FRAME_PRESENT	0x0002
142446a309d2SEzequiel Garcia #define V4L2_H264_PPS_FLAG_WEIGHTED_PRED				0x0004
142546a309d2SEzequiel Garcia #define V4L2_H264_PPS_FLAG_DEBLOCKING_FILTER_CONTROL_PRESENT		0x0008
142646a309d2SEzequiel Garcia #define V4L2_H264_PPS_FLAG_CONSTRAINED_INTRA_PRED			0x0010
142746a309d2SEzequiel Garcia #define V4L2_H264_PPS_FLAG_REDUNDANT_PIC_CNT_PRESENT			0x0020
142846a309d2SEzequiel Garcia #define V4L2_H264_PPS_FLAG_TRANSFORM_8X8_MODE				0x0040
142946a309d2SEzequiel Garcia #define V4L2_H264_PPS_FLAG_SCALING_MATRIX_PRESENT			0x0080
143046a309d2SEzequiel Garcia 
143146a309d2SEzequiel Garcia #define V4L2_CID_STATELESS_H264_PPS		(V4L2_CID_CODEC_STATELESS_BASE + 3)
143246a309d2SEzequiel Garcia /**
143346a309d2SEzequiel Garcia  * struct v4l2_ctrl_h264_pps - H264 picture parameter set
143446a309d2SEzequiel Garcia  *
143546a309d2SEzequiel Garcia  * Except where noted, all the members on this picture parameter set
1436bcbe55dcSAndrzej Pietrasiewicz  * structure match the picture parameter set syntax as specified
143746a309d2SEzequiel Garcia  * by the H264 specification.
143846a309d2SEzequiel Garcia  *
143946a309d2SEzequiel Garcia  * In particular, V4L2_H264_PPS_FLAG_SCALING_MATRIX_PRESENT flag
144046a309d2SEzequiel Garcia  * has a specific meaning. This flag should be set if a non-flat
144146a309d2SEzequiel Garcia  * scaling matrix applies to the picture. In this case, applications
144246a309d2SEzequiel Garcia  * are expected to use V4L2_CID_STATELESS_H264_SCALING_MATRIX,
144346a309d2SEzequiel Garcia  * to pass the values of the non-flat matrices.
144446a309d2SEzequiel Garcia  *
144546a309d2SEzequiel Garcia  * @pic_parameter_set_id: see H264 specification.
144646a309d2SEzequiel Garcia  * @seq_parameter_set_id: see H264 specification.
144746a309d2SEzequiel Garcia  * @num_slice_groups_minus1: see H264 specification.
144846a309d2SEzequiel Garcia  * @num_ref_idx_l0_default_active_minus1: see H264 specification.
144946a309d2SEzequiel Garcia  * @num_ref_idx_l1_default_active_minus1: see H264 specification.
145046a309d2SEzequiel Garcia  * @weighted_bipred_idc: see H264 specification.
145146a309d2SEzequiel Garcia  * @pic_init_qp_minus26: see H264 specification.
145246a309d2SEzequiel Garcia  * @pic_init_qs_minus26: see H264 specification.
145346a309d2SEzequiel Garcia  * @chroma_qp_index_offset: see H264 specification.
145446a309d2SEzequiel Garcia  * @second_chroma_qp_index_offset: see H264 specification.
145546a309d2SEzequiel Garcia  * @flags: see V4L2_H264_PPS_FLAG_{}.
145646a309d2SEzequiel Garcia  */
145746a309d2SEzequiel Garcia struct v4l2_ctrl_h264_pps {
145846a309d2SEzequiel Garcia 	__u8 pic_parameter_set_id;
145946a309d2SEzequiel Garcia 	__u8 seq_parameter_set_id;
146046a309d2SEzequiel Garcia 	__u8 num_slice_groups_minus1;
146146a309d2SEzequiel Garcia 	__u8 num_ref_idx_l0_default_active_minus1;
146246a309d2SEzequiel Garcia 	__u8 num_ref_idx_l1_default_active_minus1;
146346a309d2SEzequiel Garcia 	__u8 weighted_bipred_idc;
146446a309d2SEzequiel Garcia 	__s8 pic_init_qp_minus26;
146546a309d2SEzequiel Garcia 	__s8 pic_init_qs_minus26;
146646a309d2SEzequiel Garcia 	__s8 chroma_qp_index_offset;
146746a309d2SEzequiel Garcia 	__s8 second_chroma_qp_index_offset;
146846a309d2SEzequiel Garcia 	__u16 flags;
146946a309d2SEzequiel Garcia };
147046a309d2SEzequiel Garcia 
147146a309d2SEzequiel Garcia #define V4L2_CID_STATELESS_H264_SCALING_MATRIX	(V4L2_CID_CODEC_STATELESS_BASE + 4)
147246a309d2SEzequiel Garcia /**
147346a309d2SEzequiel Garcia  * struct v4l2_ctrl_h264_scaling_matrix - H264 scaling matrices
147446a309d2SEzequiel Garcia  *
147546a309d2SEzequiel Garcia  * @scaling_list_4x4: scaling matrix after applying the inverse
147646a309d2SEzequiel Garcia  * scanning process. Expected list order is Intra Y, Intra Cb,
147746a309d2SEzequiel Garcia  * Intra Cr, Inter Y, Inter Cb, Inter Cr. The values on each
147846a309d2SEzequiel Garcia  * scaling list are expected in raster scan order.
147946a309d2SEzequiel Garcia  * @scaling_list_8x8: scaling matrix after applying the inverse
148046a309d2SEzequiel Garcia  * scanning process. Expected list order is Intra Y, Inter Y,
148146a309d2SEzequiel Garcia  * Intra Cb, Inter Cb, Intra Cr, Inter Cr. The values on each
148246a309d2SEzequiel Garcia  * scaling list are expected in raster scan order.
148346a309d2SEzequiel Garcia  *
148446a309d2SEzequiel Garcia  * Note that the list order is different for the 4x4 and 8x8
148546a309d2SEzequiel Garcia  * matrices as per the H264 specification, see table 7-2 "Assignment
148646a309d2SEzequiel Garcia  * of mnemonic names to scaling list indices and specification of
148746a309d2SEzequiel Garcia  * fall-back rule".
148846a309d2SEzequiel Garcia  */
148946a309d2SEzequiel Garcia struct v4l2_ctrl_h264_scaling_matrix {
149046a309d2SEzequiel Garcia 	__u8 scaling_list_4x4[6][16];
149146a309d2SEzequiel Garcia 	__u8 scaling_list_8x8[6][64];
149246a309d2SEzequiel Garcia };
149346a309d2SEzequiel Garcia 
149446a309d2SEzequiel Garcia struct v4l2_h264_weight_factors {
149546a309d2SEzequiel Garcia 	__s16 luma_weight[32];
149646a309d2SEzequiel Garcia 	__s16 luma_offset[32];
149746a309d2SEzequiel Garcia 	__s16 chroma_weight[32][2];
149846a309d2SEzequiel Garcia 	__s16 chroma_offset[32][2];
149946a309d2SEzequiel Garcia };
150046a309d2SEzequiel Garcia 
150146a309d2SEzequiel Garcia #define V4L2_H264_CTRL_PRED_WEIGHTS_REQUIRED(pps, slice) \
150246a309d2SEzequiel Garcia 	((((pps)->flags & V4L2_H264_PPS_FLAG_WEIGHTED_PRED) && \
150346a309d2SEzequiel Garcia 	 ((slice)->slice_type == V4L2_H264_SLICE_TYPE_P || \
150446a309d2SEzequiel Garcia 	  (slice)->slice_type == V4L2_H264_SLICE_TYPE_SP)) || \
150546a309d2SEzequiel Garcia 	 ((pps)->weighted_bipred_idc == 1 && \
150646a309d2SEzequiel Garcia 	  (slice)->slice_type == V4L2_H264_SLICE_TYPE_B))
150746a309d2SEzequiel Garcia 
150846a309d2SEzequiel Garcia #define V4L2_CID_STATELESS_H264_PRED_WEIGHTS	(V4L2_CID_CODEC_STATELESS_BASE + 5)
150946a309d2SEzequiel Garcia /**
151046a309d2SEzequiel Garcia  * struct v4l2_ctrl_h264_pred_weights - Prediction weight table
151146a309d2SEzequiel Garcia  *
151246a309d2SEzequiel Garcia  * Prediction weight table, which matches the syntax specified
151346a309d2SEzequiel Garcia  * by the H264 specification.
151446a309d2SEzequiel Garcia  *
151546a309d2SEzequiel Garcia  * @luma_log2_weight_denom: see H264 specification.
151646a309d2SEzequiel Garcia  * @chroma_log2_weight_denom: see H264 specification.
151746a309d2SEzequiel Garcia  * @weight_factors: luma and chroma weight factors.
151846a309d2SEzequiel Garcia  */
151946a309d2SEzequiel Garcia struct v4l2_ctrl_h264_pred_weights {
152046a309d2SEzequiel Garcia 	__u16 luma_log2_weight_denom;
152146a309d2SEzequiel Garcia 	__u16 chroma_log2_weight_denom;
152246a309d2SEzequiel Garcia 	struct v4l2_h264_weight_factors weight_factors[2];
152346a309d2SEzequiel Garcia };
152446a309d2SEzequiel Garcia 
152546a309d2SEzequiel Garcia #define V4L2_H264_SLICE_TYPE_P				0
152646a309d2SEzequiel Garcia #define V4L2_H264_SLICE_TYPE_B				1
152746a309d2SEzequiel Garcia #define V4L2_H264_SLICE_TYPE_I				2
152846a309d2SEzequiel Garcia #define V4L2_H264_SLICE_TYPE_SP				3
152946a309d2SEzequiel Garcia #define V4L2_H264_SLICE_TYPE_SI				4
153046a309d2SEzequiel Garcia 
153146a309d2SEzequiel Garcia #define V4L2_H264_SLICE_FLAG_DIRECT_SPATIAL_MV_PRED	0x01
153246a309d2SEzequiel Garcia #define V4L2_H264_SLICE_FLAG_SP_FOR_SWITCH		0x02
153346a309d2SEzequiel Garcia 
153446a309d2SEzequiel Garcia #define V4L2_H264_TOP_FIELD_REF				0x1
153546a309d2SEzequiel Garcia #define V4L2_H264_BOTTOM_FIELD_REF			0x2
153646a309d2SEzequiel Garcia #define V4L2_H264_FRAME_REF				0x3
153746a309d2SEzequiel Garcia 
153846a309d2SEzequiel Garcia /**
153946a309d2SEzequiel Garcia  * struct v4l2_h264_reference - H264 picture reference
154046a309d2SEzequiel Garcia  *
154146a309d2SEzequiel Garcia  * @fields: indicates how the picture is referenced.
154246a309d2SEzequiel Garcia  * Valid values are V4L2_H264_{}_REF.
154346a309d2SEzequiel Garcia  * @index: index into v4l2_ctrl_h264_decode_params.dpb[].
154446a309d2SEzequiel Garcia  */
154546a309d2SEzequiel Garcia struct v4l2_h264_reference {
154646a309d2SEzequiel Garcia 	__u8 fields;
154746a309d2SEzequiel Garcia 	__u8 index;
154846a309d2SEzequiel Garcia };
154946a309d2SEzequiel Garcia 
155046a309d2SEzequiel Garcia /*
155146a309d2SEzequiel Garcia  * Maximum DPB size, as specified by section 'A.3.1 Level limits
155246a309d2SEzequiel Garcia  * common to the Baseline, Main, and Extended profiles'.
155346a309d2SEzequiel Garcia  */
155446a309d2SEzequiel Garcia #define V4L2_H264_NUM_DPB_ENTRIES 16
155546a309d2SEzequiel Garcia #define V4L2_H264_REF_LIST_LEN (2 * V4L2_H264_NUM_DPB_ENTRIES)
155646a309d2SEzequiel Garcia 
155746a309d2SEzequiel Garcia #define V4L2_CID_STATELESS_H264_SLICE_PARAMS	(V4L2_CID_CODEC_STATELESS_BASE + 6)
155846a309d2SEzequiel Garcia /**
155946a309d2SEzequiel Garcia  * struct v4l2_ctrl_h264_slice_params - H264 slice parameters
156046a309d2SEzequiel Garcia  *
156146a309d2SEzequiel Garcia  * This structure holds the H264 syntax elements that are specified
156246a309d2SEzequiel Garcia  * as non-invariant for the slices in a given frame.
156346a309d2SEzequiel Garcia  *
156446a309d2SEzequiel Garcia  * Slice invariant syntax elements are contained in struct
156546a309d2SEzequiel Garcia  * v4l2_ctrl_h264_decode_params. This is done to reduce the API surface
156646a309d2SEzequiel Garcia  * on frame-based decoders, where slice header parsing is done by the
156746a309d2SEzequiel Garcia  * hardware.
156846a309d2SEzequiel Garcia  *
156946a309d2SEzequiel Garcia  * Slice invariant syntax elements are specified in specification section
157046a309d2SEzequiel Garcia  * "7.4.3 Slice header semantics".
157146a309d2SEzequiel Garcia  *
157246a309d2SEzequiel Garcia  * Except where noted, the members on this struct match the slice header syntax.
157346a309d2SEzequiel Garcia  *
157446a309d2SEzequiel Garcia  * @header_bit_size: offset in bits to slice_data() from the beginning of this slice.
157546a309d2SEzequiel Garcia  * @first_mb_in_slice: see H264 specification.
157646a309d2SEzequiel Garcia  * @slice_type: see H264 specification.
157746a309d2SEzequiel Garcia  * @colour_plane_id: see H264 specification.
157846a309d2SEzequiel Garcia  * @redundant_pic_cnt: see H264 specification.
157946a309d2SEzequiel Garcia  * @cabac_init_idc: see H264 specification.
158046a309d2SEzequiel Garcia  * @slice_qp_delta: see H264 specification.
158146a309d2SEzequiel Garcia  * @slice_qs_delta: see H264 specification.
158246a309d2SEzequiel Garcia  * @disable_deblocking_filter_idc: see H264 specification.
158346a309d2SEzequiel Garcia  * @slice_alpha_c0_offset_div2: see H264 specification.
158446a309d2SEzequiel Garcia  * @slice_beta_offset_div2: see H264 specification.
158546a309d2SEzequiel Garcia  * @num_ref_idx_l0_active_minus1: see H264 specification.
158646a309d2SEzequiel Garcia  * @num_ref_idx_l1_active_minus1: see H264 specification.
158746a309d2SEzequiel Garcia  * @reserved: padding field. Should be zeroed by applications.
158846a309d2SEzequiel Garcia  * @ref_pic_list0: reference picture list 0 after applying the per-slice modifications.
158946a309d2SEzequiel Garcia  * @ref_pic_list1: reference picture list 1 after applying the per-slice modifications.
159046a309d2SEzequiel Garcia  * @flags: see V4L2_H264_SLICE_FLAG_{}.
159146a309d2SEzequiel Garcia  */
159246a309d2SEzequiel Garcia struct v4l2_ctrl_h264_slice_params {
159346a309d2SEzequiel Garcia 	__u32 header_bit_size;
159446a309d2SEzequiel Garcia 	__u32 first_mb_in_slice;
159546a309d2SEzequiel Garcia 	__u8 slice_type;
159646a309d2SEzequiel Garcia 	__u8 colour_plane_id;
159746a309d2SEzequiel Garcia 	__u8 redundant_pic_cnt;
159846a309d2SEzequiel Garcia 	__u8 cabac_init_idc;
159946a309d2SEzequiel Garcia 	__s8 slice_qp_delta;
160046a309d2SEzequiel Garcia 	__s8 slice_qs_delta;
160146a309d2SEzequiel Garcia 	__u8 disable_deblocking_filter_idc;
160246a309d2SEzequiel Garcia 	__s8 slice_alpha_c0_offset_div2;
160346a309d2SEzequiel Garcia 	__s8 slice_beta_offset_div2;
160446a309d2SEzequiel Garcia 	__u8 num_ref_idx_l0_active_minus1;
160546a309d2SEzequiel Garcia 	__u8 num_ref_idx_l1_active_minus1;
160646a309d2SEzequiel Garcia 
160746a309d2SEzequiel Garcia 	__u8 reserved;
160846a309d2SEzequiel Garcia 
160946a309d2SEzequiel Garcia 	struct v4l2_h264_reference ref_pic_list0[V4L2_H264_REF_LIST_LEN];
161046a309d2SEzequiel Garcia 	struct v4l2_h264_reference ref_pic_list1[V4L2_H264_REF_LIST_LEN];
161146a309d2SEzequiel Garcia 
161246a309d2SEzequiel Garcia 	__u32 flags;
161346a309d2SEzequiel Garcia };
161446a309d2SEzequiel Garcia 
161546a309d2SEzequiel Garcia #define V4L2_H264_DPB_ENTRY_FLAG_VALID		0x01
161646a309d2SEzequiel Garcia #define V4L2_H264_DPB_ENTRY_FLAG_ACTIVE		0x02
161746a309d2SEzequiel Garcia #define V4L2_H264_DPB_ENTRY_FLAG_LONG_TERM	0x04
161846a309d2SEzequiel Garcia #define V4L2_H264_DPB_ENTRY_FLAG_FIELD		0x08
161946a309d2SEzequiel Garcia 
162046a309d2SEzequiel Garcia /**
162146a309d2SEzequiel Garcia  * struct v4l2_h264_dpb_entry - H264 decoded picture buffer entry
162246a309d2SEzequiel Garcia  *
162346a309d2SEzequiel Garcia  * @reference_ts: timestamp of the V4L2 capture buffer to use as reference.
162446a309d2SEzequiel Garcia  * The timestamp refers to the timestamp field in struct v4l2_buffer.
162546a309d2SEzequiel Garcia  * Use v4l2_timeval_to_ns() to convert the struct timeval to a __u64.
162646a309d2SEzequiel Garcia  * @pic_num: matches PicNum variable assigned during the reference
162746a309d2SEzequiel Garcia  * picture lists construction process.
162846a309d2SEzequiel Garcia  * @frame_num: frame identifier which matches frame_num syntax element.
162946a309d2SEzequiel Garcia  * @fields: indicates how the DPB entry is referenced. Valid values are
163046a309d2SEzequiel Garcia  * V4L2_H264_{}_REF.
163146a309d2SEzequiel Garcia  * @reserved: padding field. Should be zeroed by applications.
163246a309d2SEzequiel Garcia  * @top_field_order_cnt: matches TopFieldOrderCnt picture value.
163346a309d2SEzequiel Garcia  * @bottom_field_order_cnt: matches BottomFieldOrderCnt picture value.
163446a309d2SEzequiel Garcia  * Note that picture field is indicated by v4l2_buffer.field.
163546a309d2SEzequiel Garcia  * @flags: see V4L2_H264_DPB_ENTRY_FLAG_{}.
163646a309d2SEzequiel Garcia  */
163746a309d2SEzequiel Garcia struct v4l2_h264_dpb_entry {
163846a309d2SEzequiel Garcia 	__u64 reference_ts;
163946a309d2SEzequiel Garcia 	__u32 pic_num;
164046a309d2SEzequiel Garcia 	__u16 frame_num;
164146a309d2SEzequiel Garcia 	__u8 fields;
164246a309d2SEzequiel Garcia 	__u8 reserved[5];
164346a309d2SEzequiel Garcia 	__s32 top_field_order_cnt;
164446a309d2SEzequiel Garcia 	__s32 bottom_field_order_cnt;
164546a309d2SEzequiel Garcia 	__u32 flags;
164646a309d2SEzequiel Garcia };
164746a309d2SEzequiel Garcia 
164846a309d2SEzequiel Garcia #define V4L2_H264_DECODE_PARAM_FLAG_IDR_PIC		0x01
164946a309d2SEzequiel Garcia #define V4L2_H264_DECODE_PARAM_FLAG_FIELD_PIC		0x02
165046a309d2SEzequiel Garcia #define V4L2_H264_DECODE_PARAM_FLAG_BOTTOM_FIELD	0x04
165196ba61eeSDmitry Osipenko #define V4L2_H264_DECODE_PARAM_FLAG_PFRAME		0x08
165296ba61eeSDmitry Osipenko #define V4L2_H264_DECODE_PARAM_FLAG_BFRAME		0x10
165346a309d2SEzequiel Garcia 
165446a309d2SEzequiel Garcia #define V4L2_CID_STATELESS_H264_DECODE_PARAMS	(V4L2_CID_CODEC_STATELESS_BASE + 7)
165546a309d2SEzequiel Garcia /**
165646a309d2SEzequiel Garcia  * struct v4l2_ctrl_h264_decode_params - H264 decoding parameters
165746a309d2SEzequiel Garcia  *
165846a309d2SEzequiel Garcia  * @dpb: decoded picture buffer.
165946a309d2SEzequiel Garcia  * @nal_ref_idc: slice header syntax element.
166046a309d2SEzequiel Garcia  * @frame_num: slice header syntax element.
166146a309d2SEzequiel Garcia  * @top_field_order_cnt: matches TopFieldOrderCnt picture value.
166246a309d2SEzequiel Garcia  * @bottom_field_order_cnt: matches BottomFieldOrderCnt picture value.
166346a309d2SEzequiel Garcia  * Note that picture field is indicated by v4l2_buffer.field.
166446a309d2SEzequiel Garcia  * @idr_pic_id: slice header syntax element.
166546a309d2SEzequiel Garcia  * @pic_order_cnt_lsb: slice header syntax element.
166646a309d2SEzequiel Garcia  * @delta_pic_order_cnt_bottom: slice header syntax element.
166746a309d2SEzequiel Garcia  * @delta_pic_order_cnt0: slice header syntax element.
166846a309d2SEzequiel Garcia  * @delta_pic_order_cnt1: slice header syntax element.
166946a309d2SEzequiel Garcia  * @dec_ref_pic_marking_bit_size: size in bits of dec_ref_pic_marking()
167046a309d2SEzequiel Garcia  * syntax element.
167146a309d2SEzequiel Garcia  * @pic_order_cnt_bit_size: size in bits of pic order count syntax.
167246a309d2SEzequiel Garcia  * @slice_group_change_cycle: slice header syntax element.
167346a309d2SEzequiel Garcia  * @reserved: padding field. Should be zeroed by applications.
167446a309d2SEzequiel Garcia  * @flags: see V4L2_H264_DECODE_PARAM_FLAG_{}.
167546a309d2SEzequiel Garcia  */
167646a309d2SEzequiel Garcia struct v4l2_ctrl_h264_decode_params {
167746a309d2SEzequiel Garcia 	struct v4l2_h264_dpb_entry dpb[V4L2_H264_NUM_DPB_ENTRIES];
167846a309d2SEzequiel Garcia 	__u16 nal_ref_idc;
167946a309d2SEzequiel Garcia 	__u16 frame_num;
168046a309d2SEzequiel Garcia 	__s32 top_field_order_cnt;
168146a309d2SEzequiel Garcia 	__s32 bottom_field_order_cnt;
168246a309d2SEzequiel Garcia 	__u16 idr_pic_id;
168346a309d2SEzequiel Garcia 	__u16 pic_order_cnt_lsb;
168446a309d2SEzequiel Garcia 	__s32 delta_pic_order_cnt_bottom;
168546a309d2SEzequiel Garcia 	__s32 delta_pic_order_cnt0;
168646a309d2SEzequiel Garcia 	__s32 delta_pic_order_cnt1;
168746a309d2SEzequiel Garcia 	__u32 dec_ref_pic_marking_bit_size;
168846a309d2SEzequiel Garcia 	__u32 pic_order_cnt_bit_size;
168946a309d2SEzequiel Garcia 	__u32 slice_group_change_cycle;
169046a309d2SEzequiel Garcia 
169146a309d2SEzequiel Garcia 	__u32 reserved;
169246a309d2SEzequiel Garcia 	__u32 flags;
169346a309d2SEzequiel Garcia };
169446a309d2SEzequiel Garcia 
1695008d2bd6SEzequiel Garcia 
1696206bc0f6SHans Verkuil /* Stateless FWHT control, used by the vicodec driver */
1697206bc0f6SHans Verkuil 
1698206bc0f6SHans Verkuil /* Current FWHT version */
1699206bc0f6SHans Verkuil #define V4L2_FWHT_VERSION			3
1700206bc0f6SHans Verkuil 
1701206bc0f6SHans Verkuil /* Set if this is an interlaced format */
1702ce67eacaSJoe Richey #define V4L2_FWHT_FL_IS_INTERLACED		_BITUL(0)
1703206bc0f6SHans Verkuil /* Set if this is a bottom-first (NTSC) interlaced format */
1704ce67eacaSJoe Richey #define V4L2_FWHT_FL_IS_BOTTOM_FIRST		_BITUL(1)
1705206bc0f6SHans Verkuil /* Set if each 'frame' contains just one field */
1706ce67eacaSJoe Richey #define V4L2_FWHT_FL_IS_ALTERNATE		_BITUL(2)
1707206bc0f6SHans Verkuil /*
1708206bc0f6SHans Verkuil  * If V4L2_FWHT_FL_IS_ALTERNATE was set, then this is set if this
1709206bc0f6SHans Verkuil  * 'frame' is the bottom field, else it is the top field.
1710206bc0f6SHans Verkuil  */
1711ce67eacaSJoe Richey #define V4L2_FWHT_FL_IS_BOTTOM_FIELD		_BITUL(3)
1712206bc0f6SHans Verkuil /* Set if the Y' plane is uncompressed */
1713ce67eacaSJoe Richey #define V4L2_FWHT_FL_LUMA_IS_UNCOMPRESSED	_BITUL(4)
1714206bc0f6SHans Verkuil /* Set if the Cb plane is uncompressed */
1715ce67eacaSJoe Richey #define V4L2_FWHT_FL_CB_IS_UNCOMPRESSED		_BITUL(5)
1716206bc0f6SHans Verkuil /* Set if the Cr plane is uncompressed */
1717ce67eacaSJoe Richey #define V4L2_FWHT_FL_CR_IS_UNCOMPRESSED		_BITUL(6)
1718206bc0f6SHans Verkuil /* Set if the chroma plane is full height, if cleared it is half height */
1719ce67eacaSJoe Richey #define V4L2_FWHT_FL_CHROMA_FULL_HEIGHT		_BITUL(7)
1720206bc0f6SHans Verkuil /* Set if the chroma plane is full width, if cleared it is half width */
1721ce67eacaSJoe Richey #define V4L2_FWHT_FL_CHROMA_FULL_WIDTH		_BITUL(8)
1722206bc0f6SHans Verkuil /* Set if the alpha plane is uncompressed */
1723ce67eacaSJoe Richey #define V4L2_FWHT_FL_ALPHA_IS_UNCOMPRESSED	_BITUL(9)
1724206bc0f6SHans Verkuil /* Set if this is an I Frame */
1725ce67eacaSJoe Richey #define V4L2_FWHT_FL_I_FRAME			_BITUL(10)
1726206bc0f6SHans Verkuil 
1727206bc0f6SHans Verkuil /* A 4-values flag - the number of components - 1 */
1728206bc0f6SHans Verkuil #define V4L2_FWHT_FL_COMPONENTS_NUM_MSK		GENMASK(18, 16)
1729206bc0f6SHans Verkuil #define V4L2_FWHT_FL_COMPONENTS_NUM_OFFSET	16
1730206bc0f6SHans Verkuil 
1731206bc0f6SHans Verkuil /* A 4-values flag - the pixel encoding type */
1732206bc0f6SHans Verkuil #define V4L2_FWHT_FL_PIXENC_MSK			GENMASK(20, 19)
1733206bc0f6SHans Verkuil #define V4L2_FWHT_FL_PIXENC_OFFSET		19
1734206bc0f6SHans Verkuil #define V4L2_FWHT_FL_PIXENC_YUV			(1 << V4L2_FWHT_FL_PIXENC_OFFSET)
1735206bc0f6SHans Verkuil #define V4L2_FWHT_FL_PIXENC_RGB			(2 << V4L2_FWHT_FL_PIXENC_OFFSET)
1736206bc0f6SHans Verkuil #define V4L2_FWHT_FL_PIXENC_HSV			(3 << V4L2_FWHT_FL_PIXENC_OFFSET)
1737206bc0f6SHans Verkuil 
1738206bc0f6SHans Verkuil #define V4L2_CID_STATELESS_FWHT_PARAMS		(V4L2_CID_CODEC_STATELESS_BASE + 100)
1739206bc0f6SHans Verkuil /**
1740206bc0f6SHans Verkuil  * struct v4l2_ctrl_fwht_params - FWHT parameters
1741206bc0f6SHans Verkuil  *
1742206bc0f6SHans Verkuil  * @backward_ref_ts: timestamp of the V4L2 capture buffer to use as reference.
1743206bc0f6SHans Verkuil  * The timestamp refers to the timestamp field in struct v4l2_buffer.
1744206bc0f6SHans Verkuil  * Use v4l2_timeval_to_ns() to convert the struct timeval to a __u64.
1745206bc0f6SHans Verkuil  * @version: must be V4L2_FWHT_VERSION.
1746206bc0f6SHans Verkuil  * @width: width of frame.
1747206bc0f6SHans Verkuil  * @height: height of frame.
1748206bc0f6SHans Verkuil  * @flags: FWHT flags (see V4L2_FWHT_FL_*).
1749206bc0f6SHans Verkuil  * @colorspace: the colorspace (enum v4l2_colorspace).
1750206bc0f6SHans Verkuil  * @xfer_func: the transfer function (enum v4l2_xfer_func).
1751206bc0f6SHans Verkuil  * @ycbcr_enc: the Y'CbCr encoding (enum v4l2_ycbcr_encoding).
1752206bc0f6SHans Verkuil  * @quantization: the quantization (enum v4l2_quantization).
1753206bc0f6SHans Verkuil  */
1754206bc0f6SHans Verkuil struct v4l2_ctrl_fwht_params {
1755206bc0f6SHans Verkuil 	__u64 backward_ref_ts;
1756206bc0f6SHans Verkuil 	__u32 version;
1757206bc0f6SHans Verkuil 	__u32 width;
1758206bc0f6SHans Verkuil 	__u32 height;
1759206bc0f6SHans Verkuil 	__u32 flags;
1760206bc0f6SHans Verkuil 	__u32 colorspace;
1761206bc0f6SHans Verkuil 	__u32 xfer_func;
1762206bc0f6SHans Verkuil 	__u32 ycbcr_enc;
1763206bc0f6SHans Verkuil 	__u32 quantization;
1764206bc0f6SHans Verkuil };
1765206bc0f6SHans Verkuil 
1766363240ceSEzequiel Garcia /* Stateless VP8 control */
1767363240ceSEzequiel Garcia 
1768363240ceSEzequiel Garcia #define V4L2_VP8_SEGMENT_FLAG_ENABLED              0x01
1769363240ceSEzequiel Garcia #define V4L2_VP8_SEGMENT_FLAG_UPDATE_MAP           0x02
1770363240ceSEzequiel Garcia #define V4L2_VP8_SEGMENT_FLAG_UPDATE_FEATURE_DATA  0x04
1771363240ceSEzequiel Garcia #define V4L2_VP8_SEGMENT_FLAG_DELTA_VALUE_MODE     0x08
1772363240ceSEzequiel Garcia 
1773363240ceSEzequiel Garcia /**
1774363240ceSEzequiel Garcia  * struct v4l2_vp8_segment - VP8 segment-based adjustments parameters
1775363240ceSEzequiel Garcia  *
1776363240ceSEzequiel Garcia  * @quant_update: update values for the segment quantizer.
1777363240ceSEzequiel Garcia  * @lf_update: update values for the loop filter level.
1778363240ceSEzequiel Garcia  * @segment_probs: branch probabilities of the segment_id decoding tree.
1779363240ceSEzequiel Garcia  * @padding: padding field. Should be zeroed by applications.
1780363240ceSEzequiel Garcia  * @flags: see V4L2_VP8_SEGMENT_FLAG_{}.
1781363240ceSEzequiel Garcia  *
1782363240ceSEzequiel Garcia  * This structure contains segment-based adjustments related parameters.
1783363240ceSEzequiel Garcia  * See the 'update_segmentation()' part of the frame header syntax,
1784363240ceSEzequiel Garcia  * and section '9.3. Segment-Based Adjustments' of the VP8 specification
1785363240ceSEzequiel Garcia  * for more details.
1786363240ceSEzequiel Garcia  */
1787363240ceSEzequiel Garcia struct v4l2_vp8_segment {
1788363240ceSEzequiel Garcia 	__s8 quant_update[4];
1789363240ceSEzequiel Garcia 	__s8 lf_update[4];
1790363240ceSEzequiel Garcia 	__u8 segment_probs[3];
1791363240ceSEzequiel Garcia 	__u8 padding;
1792363240ceSEzequiel Garcia 	__u32 flags;
1793363240ceSEzequiel Garcia };
1794363240ceSEzequiel Garcia 
1795363240ceSEzequiel Garcia #define V4L2_VP8_LF_ADJ_ENABLE	0x01
1796363240ceSEzequiel Garcia #define V4L2_VP8_LF_DELTA_UPDATE	0x02
1797363240ceSEzequiel Garcia #define V4L2_VP8_LF_FILTER_TYPE_SIMPLE	0x04
1798363240ceSEzequiel Garcia 
1799363240ceSEzequiel Garcia /**
1800363240ceSEzequiel Garcia  * struct v4l2_vp8_loop_filter - VP8 loop filter parameters
1801363240ceSEzequiel Garcia  *
1802363240ceSEzequiel Garcia  * @ref_frm_delta: Reference frame signed delta values.
1803363240ceSEzequiel Garcia  * @mb_mode_delta: MB prediction mode signed delta values.
1804363240ceSEzequiel Garcia  * @sharpness_level: matches sharpness_level syntax element.
1805363240ceSEzequiel Garcia  * @level: matches loop_filter_level syntax element.
1806363240ceSEzequiel Garcia  * @padding: padding field. Should be zeroed by applications.
18071c24bb3fSDeborah Brouwer  * @flags: see V4L2_VP8_LF_{}.
1808363240ceSEzequiel Garcia  *
1809363240ceSEzequiel Garcia  * This structure contains loop filter related parameters.
1810363240ceSEzequiel Garcia  * See the 'mb_lf_adjustments()' part of the frame header syntax,
1811363240ceSEzequiel Garcia  * and section '9.4. Loop Filter Type and Levels' of the VP8 specification
1812363240ceSEzequiel Garcia  * for more details.
1813363240ceSEzequiel Garcia  */
1814363240ceSEzequiel Garcia struct v4l2_vp8_loop_filter {
1815363240ceSEzequiel Garcia 	__s8 ref_frm_delta[4];
1816363240ceSEzequiel Garcia 	__s8 mb_mode_delta[4];
1817363240ceSEzequiel Garcia 	__u8 sharpness_level;
1818363240ceSEzequiel Garcia 	__u8 level;
1819363240ceSEzequiel Garcia 	__u16 padding;
1820363240ceSEzequiel Garcia 	__u32 flags;
1821363240ceSEzequiel Garcia };
1822363240ceSEzequiel Garcia 
1823363240ceSEzequiel Garcia /**
1824363240ceSEzequiel Garcia  * struct v4l2_vp8_quantization - VP8 quantizattion indices
1825363240ceSEzequiel Garcia  *
1826363240ceSEzequiel Garcia  * @y_ac_qi: luma AC coefficient table index.
1827363240ceSEzequiel Garcia  * @y_dc_delta: luma DC delta vaue.
1828363240ceSEzequiel Garcia  * @y2_dc_delta: y2 block DC delta value.
1829363240ceSEzequiel Garcia  * @y2_ac_delta: y2 block AC delta value.
1830363240ceSEzequiel Garcia  * @uv_dc_delta: chroma DC delta value.
1831363240ceSEzequiel Garcia  * @uv_ac_delta: chroma AC delta value.
1832363240ceSEzequiel Garcia  * @padding: padding field. Should be zeroed by applications.
1833e6a7d7c3SEzequiel Garcia  *
1834363240ceSEzequiel Garcia  * This structure contains the quantization indices present
1835363240ceSEzequiel Garcia  * in 'quant_indices()' part of the frame header syntax.
1836363240ceSEzequiel Garcia  * See section '9.6. Dequantization Indices' of the VP8 specification
1837363240ceSEzequiel Garcia  * for more details.
1838363240ceSEzequiel Garcia  */
1839363240ceSEzequiel Garcia struct v4l2_vp8_quantization {
1840363240ceSEzequiel Garcia 	__u8 y_ac_qi;
1841363240ceSEzequiel Garcia 	__s8 y_dc_delta;
1842363240ceSEzequiel Garcia 	__s8 y2_dc_delta;
1843363240ceSEzequiel Garcia 	__s8 y2_ac_delta;
1844363240ceSEzequiel Garcia 	__s8 uv_dc_delta;
1845363240ceSEzequiel Garcia 	__s8 uv_ac_delta;
1846363240ceSEzequiel Garcia 	__u16 padding;
1847363240ceSEzequiel Garcia };
1848363240ceSEzequiel Garcia 
1849363240ceSEzequiel Garcia #define V4L2_VP8_COEFF_PROB_CNT 11
1850363240ceSEzequiel Garcia #define V4L2_VP8_MV_PROB_CNT 19
1851363240ceSEzequiel Garcia 
1852363240ceSEzequiel Garcia /**
1853363240ceSEzequiel Garcia  * struct v4l2_vp8_entropy - VP8 update probabilities
1854363240ceSEzequiel Garcia  *
1855363240ceSEzequiel Garcia  * @coeff_probs: coefficient probability update values.
1856363240ceSEzequiel Garcia  * @y_mode_probs: luma intra-prediction probabilities.
1857363240ceSEzequiel Garcia  * @uv_mode_probs: chroma intra-prediction probabilities.
1858363240ceSEzequiel Garcia  * @mv_probs: mv decoding probability.
1859363240ceSEzequiel Garcia  * @padding: padding field. Should be zeroed by applications.
1860363240ceSEzequiel Garcia  *
1861363240ceSEzequiel Garcia  * This structure contains the update probabilities present in
1862363240ceSEzequiel Garcia  * 'token_prob_update()' and 'mv_prob_update()' part of the frame header.
1863363240ceSEzequiel Garcia  * See section '17.2. Probability Updates' of the VP8 specification
1864363240ceSEzequiel Garcia  * for more details.
1865363240ceSEzequiel Garcia  */
1866363240ceSEzequiel Garcia struct v4l2_vp8_entropy {
1867363240ceSEzequiel Garcia 	__u8 coeff_probs[4][8][3][V4L2_VP8_COEFF_PROB_CNT];
1868363240ceSEzequiel Garcia 	__u8 y_mode_probs[4];
1869363240ceSEzequiel Garcia 	__u8 uv_mode_probs[3];
1870363240ceSEzequiel Garcia 	__u8 mv_probs[2][V4L2_VP8_MV_PROB_CNT];
1871363240ceSEzequiel Garcia 	__u8 padding[3];
1872363240ceSEzequiel Garcia };
1873363240ceSEzequiel Garcia 
1874363240ceSEzequiel Garcia /**
1875363240ceSEzequiel Garcia  * struct v4l2_vp8_entropy_coder_state - VP8 boolean coder state
1876363240ceSEzequiel Garcia  *
1877363240ceSEzequiel Garcia  * @range: coder state value for "Range"
1878363240ceSEzequiel Garcia  * @value: coder state value for "Value"
1879363240ceSEzequiel Garcia  * @bit_count: number of bits left in range "Value".
1880363240ceSEzequiel Garcia  * @padding: padding field. Should be zeroed by applications.
1881363240ceSEzequiel Garcia  *
1882363240ceSEzequiel Garcia  * This structure contains the state for the boolean coder, as
1883363240ceSEzequiel Garcia  * explained in section '7. Boolean Entropy Decoder' of the VP8 specification.
1884363240ceSEzequiel Garcia  */
1885363240ceSEzequiel Garcia struct v4l2_vp8_entropy_coder_state {
1886363240ceSEzequiel Garcia 	__u8 range;
1887363240ceSEzequiel Garcia 	__u8 value;
1888363240ceSEzequiel Garcia 	__u8 bit_count;
1889363240ceSEzequiel Garcia 	__u8 padding;
1890363240ceSEzequiel Garcia };
1891363240ceSEzequiel Garcia 
1892363240ceSEzequiel Garcia #define V4L2_VP8_FRAME_FLAG_KEY_FRAME		0x01
1893363240ceSEzequiel Garcia #define V4L2_VP8_FRAME_FLAG_EXPERIMENTAL		0x02
1894363240ceSEzequiel Garcia #define V4L2_VP8_FRAME_FLAG_SHOW_FRAME		0x04
1895363240ceSEzequiel Garcia #define V4L2_VP8_FRAME_FLAG_MB_NO_SKIP_COEFF	0x08
1896363240ceSEzequiel Garcia #define V4L2_VP8_FRAME_FLAG_SIGN_BIAS_GOLDEN	0x10
1897363240ceSEzequiel Garcia #define V4L2_VP8_FRAME_FLAG_SIGN_BIAS_ALT	0x20
1898363240ceSEzequiel Garcia 
1899363240ceSEzequiel Garcia #define V4L2_VP8_FRAME_IS_KEY_FRAME(hdr) \
1900363240ceSEzequiel Garcia 	(!!((hdr)->flags & V4L2_VP8_FRAME_FLAG_KEY_FRAME))
1901363240ceSEzequiel Garcia 
1902363240ceSEzequiel Garcia #define V4L2_CID_STATELESS_VP8_FRAME (V4L2_CID_CODEC_STATELESS_BASE + 200)
1903363240ceSEzequiel Garcia /**
1904e6a7d7c3SEzequiel Garcia  * struct v4l2_ctrl_vp8_frame - VP8 frame parameters
1905363240ceSEzequiel Garcia  *
1906e6a7d7c3SEzequiel Garcia  * @segment: segmentation parameters. See &v4l2_vp8_segment for more details
1907363240ceSEzequiel Garcia  * @lf: loop filter parameters. See &v4l2_vp8_loop_filter for more details
1908363240ceSEzequiel Garcia  * @quant: quantization parameters. See &v4l2_vp8_quantization for more details
1909e6a7d7c3SEzequiel Garcia  * @entropy: update probabilities. See &v4l2_vp8_entropy for more details
1910e6a7d7c3SEzequiel Garcia  * @coder_state: boolean coder state. See &v4l2_vp8_entropy_coder_state for more details
1911363240ceSEzequiel Garcia  * @width: frame width.
1912363240ceSEzequiel Garcia  * @height: frame height.
1913363240ceSEzequiel Garcia  * @horizontal_scale: horizontal scaling factor.
1914363240ceSEzequiel Garcia  * @vertical_scale: vertical scaling factor.
1915363240ceSEzequiel Garcia  * @version: bitstream version.
1916363240ceSEzequiel Garcia  * @prob_skip_false: frame header syntax element.
1917363240ceSEzequiel Garcia  * @prob_intra: frame header syntax element.
1918363240ceSEzequiel Garcia  * @prob_last: frame header syntax element.
1919363240ceSEzequiel Garcia  * @prob_gf: frame header syntax element.
1920363240ceSEzequiel Garcia  * @num_dct_parts: number of DCT coefficients partitions.
1921363240ceSEzequiel Garcia  * @first_part_size: size of the first partition, i.e. the control partition.
1922363240ceSEzequiel Garcia  * @first_part_header_bits: size in bits of the first partition header portion.
1923363240ceSEzequiel Garcia  * @dct_part_sizes: DCT coefficients sizes.
1924363240ceSEzequiel Garcia  * @last_frame_ts: "last" reference buffer timestamp.
1925363240ceSEzequiel Garcia  * The timestamp refers to the timestamp field in struct v4l2_buffer.
1926363240ceSEzequiel Garcia  * Use v4l2_timeval_to_ns() to convert the struct timeval to a __u64.
1927363240ceSEzequiel Garcia  * @golden_frame_ts: "golden" reference buffer timestamp.
1928363240ceSEzequiel Garcia  * @alt_frame_ts: "alt" reference buffer timestamp.
1929363240ceSEzequiel Garcia  * @flags: see V4L2_VP8_FRAME_FLAG_{}.
1930363240ceSEzequiel Garcia  */
1931363240ceSEzequiel Garcia struct v4l2_ctrl_vp8_frame {
1932363240ceSEzequiel Garcia 	struct v4l2_vp8_segment segment;
1933363240ceSEzequiel Garcia 	struct v4l2_vp8_loop_filter lf;
1934363240ceSEzequiel Garcia 	struct v4l2_vp8_quantization quant;
1935363240ceSEzequiel Garcia 	struct v4l2_vp8_entropy entropy;
1936363240ceSEzequiel Garcia 	struct v4l2_vp8_entropy_coder_state coder_state;
1937363240ceSEzequiel Garcia 
1938363240ceSEzequiel Garcia 	__u16 width;
1939363240ceSEzequiel Garcia 	__u16 height;
1940363240ceSEzequiel Garcia 
1941363240ceSEzequiel Garcia 	__u8 horizontal_scale;
1942363240ceSEzequiel Garcia 	__u8 vertical_scale;
1943363240ceSEzequiel Garcia 
1944363240ceSEzequiel Garcia 	__u8 version;
1945363240ceSEzequiel Garcia 	__u8 prob_skip_false;
1946363240ceSEzequiel Garcia 	__u8 prob_intra;
1947363240ceSEzequiel Garcia 	__u8 prob_last;
1948363240ceSEzequiel Garcia 	__u8 prob_gf;
1949363240ceSEzequiel Garcia 	__u8 num_dct_parts;
1950363240ceSEzequiel Garcia 
1951363240ceSEzequiel Garcia 	__u32 first_part_size;
1952363240ceSEzequiel Garcia 	__u32 first_part_header_bits;
1953363240ceSEzequiel Garcia 	__u32 dct_part_sizes[8];
1954363240ceSEzequiel Garcia 
1955363240ceSEzequiel Garcia 	__u64 last_frame_ts;
1956363240ceSEzequiel Garcia 	__u64 golden_frame_ts;
1957363240ceSEzequiel Garcia 	__u64 alt_frame_ts;
1958363240ceSEzequiel Garcia 
1959363240ceSEzequiel Garcia 	__u64 flags;
1960363240ceSEzequiel Garcia };
1961363240ceSEzequiel Garcia 
1962f4815b39SEzequiel Garcia /* Stateless MPEG-2 controls */
1963f4815b39SEzequiel Garcia 
1964f4815b39SEzequiel Garcia #define V4L2_MPEG2_SEQ_FLAG_PROGRESSIVE	0x01
1965f4815b39SEzequiel Garcia 
1966f4815b39SEzequiel Garcia #define V4L2_CID_STATELESS_MPEG2_SEQUENCE (V4L2_CID_CODEC_STATELESS_BASE+220)
1967f4815b39SEzequiel Garcia /**
1968f4815b39SEzequiel Garcia  * struct v4l2_ctrl_mpeg2_sequence - MPEG-2 sequence header
1969f4815b39SEzequiel Garcia  *
1970f4815b39SEzequiel Garcia  * All the members on this structure match the sequence header and sequence
1971f4815b39SEzequiel Garcia  * extension syntaxes as specified by the MPEG-2 specification.
1972f4815b39SEzequiel Garcia  *
1973f4815b39SEzequiel Garcia  * Fields horizontal_size, vertical_size and vbv_buffer_size are a
1974f4815b39SEzequiel Garcia  * combination of respective _value and extension syntax elements,
1975f4815b39SEzequiel Garcia  * as described in section 6.3.3 "Sequence header".
1976f4815b39SEzequiel Garcia  *
1977f4815b39SEzequiel Garcia  * @horizontal_size: combination of elements horizontal_size_value and
1978f4815b39SEzequiel Garcia  * horizontal_size_extension.
1979f4815b39SEzequiel Garcia  * @vertical_size: combination of elements vertical_size_value and
1980f4815b39SEzequiel Garcia  * vertical_size_extension.
1981f4815b39SEzequiel Garcia  * @vbv_buffer_size: combination of elements vbv_buffer_size_value and
1982f4815b39SEzequiel Garcia  * vbv_buffer_size_extension.
1983f4815b39SEzequiel Garcia  * @profile_and_level_indication: see MPEG-2 specification.
1984f4815b39SEzequiel Garcia  * @chroma_format: see MPEG-2 specification.
1985f4815b39SEzequiel Garcia  * @flags: see V4L2_MPEG2_SEQ_FLAG_{}.
1986f4815b39SEzequiel Garcia  */
1987f4815b39SEzequiel Garcia struct v4l2_ctrl_mpeg2_sequence {
1988f4815b39SEzequiel Garcia 	__u16	horizontal_size;
1989f4815b39SEzequiel Garcia 	__u16	vertical_size;
1990f4815b39SEzequiel Garcia 	__u32	vbv_buffer_size;
1991f4815b39SEzequiel Garcia 	__u16	profile_and_level_indication;
1992f4815b39SEzequiel Garcia 	__u8	chroma_format;
1993f4815b39SEzequiel Garcia 	__u8	flags;
1994f4815b39SEzequiel Garcia };
1995f4815b39SEzequiel Garcia 
1996f4815b39SEzequiel Garcia #define V4L2_MPEG2_PIC_CODING_TYPE_I			1
1997f4815b39SEzequiel Garcia #define V4L2_MPEG2_PIC_CODING_TYPE_P			2
1998f4815b39SEzequiel Garcia #define V4L2_MPEG2_PIC_CODING_TYPE_B			3
1999f4815b39SEzequiel Garcia #define V4L2_MPEG2_PIC_CODING_TYPE_D			4
2000f4815b39SEzequiel Garcia 
2001f4815b39SEzequiel Garcia #define V4L2_MPEG2_PIC_TOP_FIELD			0x1
2002f4815b39SEzequiel Garcia #define V4L2_MPEG2_PIC_BOTTOM_FIELD			0x2
2003f4815b39SEzequiel Garcia #define V4L2_MPEG2_PIC_FRAME				0x3
2004f4815b39SEzequiel Garcia 
2005f4815b39SEzequiel Garcia #define V4L2_MPEG2_PIC_FLAG_TOP_FIELD_FIRST		0x0001
2006f4815b39SEzequiel Garcia #define V4L2_MPEG2_PIC_FLAG_FRAME_PRED_DCT		0x0002
2007f4815b39SEzequiel Garcia #define V4L2_MPEG2_PIC_FLAG_CONCEALMENT_MV		0x0004
2008f4815b39SEzequiel Garcia #define V4L2_MPEG2_PIC_FLAG_Q_SCALE_TYPE		0x0008
2009f4815b39SEzequiel Garcia #define V4L2_MPEG2_PIC_FLAG_INTRA_VLC			0x0010
2010f4815b39SEzequiel Garcia #define V4L2_MPEG2_PIC_FLAG_ALT_SCAN			0x0020
2011f4815b39SEzequiel Garcia #define V4L2_MPEG2_PIC_FLAG_REPEAT_FIRST		0x0040
2012f4815b39SEzequiel Garcia #define V4L2_MPEG2_PIC_FLAG_PROGRESSIVE			0x0080
2013f4815b39SEzequiel Garcia 
2014f4815b39SEzequiel Garcia #define V4L2_CID_STATELESS_MPEG2_PICTURE (V4L2_CID_CODEC_STATELESS_BASE+221)
2015f4815b39SEzequiel Garcia /**
2016f4815b39SEzequiel Garcia  * struct v4l2_ctrl_mpeg2_picture - MPEG-2 picture header
2017f4815b39SEzequiel Garcia  *
2018f4815b39SEzequiel Garcia  * All the members on this structure match the picture header and picture
2019f4815b39SEzequiel Garcia  * coding extension syntaxes as specified by the MPEG-2 specification.
2020f4815b39SEzequiel Garcia  *
2021f4815b39SEzequiel Garcia  * @backward_ref_ts: timestamp of the V4L2 capture buffer to use as
2022f4815b39SEzequiel Garcia  * reference for backward prediction.
2023f4815b39SEzequiel Garcia  * @forward_ref_ts: timestamp of the V4L2 capture buffer to use as
2024f4815b39SEzequiel Garcia  * reference for forward prediction. These timestamp refers to the
2025f4815b39SEzequiel Garcia  * timestamp field in struct v4l2_buffer. Use v4l2_timeval_to_ns()
2026f4815b39SEzequiel Garcia  * to convert the struct timeval to a __u64.
2027f4815b39SEzequiel Garcia  * @flags: see V4L2_MPEG2_PIC_FLAG_{}.
2028f4815b39SEzequiel Garcia  * @f_code: see MPEG-2 specification.
2029f4815b39SEzequiel Garcia  * @picture_coding_type: see MPEG-2 specification.
2030f4815b39SEzequiel Garcia  * @picture_structure: see V4L2_MPEG2_PIC_{}_FIELD.
2031f4815b39SEzequiel Garcia  * @intra_dc_precision: see MPEG-2 specification.
2032f4815b39SEzequiel Garcia  * @reserved: padding field. Should be zeroed by applications.
2033f4815b39SEzequiel Garcia  */
2034f4815b39SEzequiel Garcia struct v4l2_ctrl_mpeg2_picture {
2035f4815b39SEzequiel Garcia 	__u64	backward_ref_ts;
2036f4815b39SEzequiel Garcia 	__u64	forward_ref_ts;
2037f4815b39SEzequiel Garcia 	__u32	flags;
2038f4815b39SEzequiel Garcia 	__u8	f_code[2][2];
2039f4815b39SEzequiel Garcia 	__u8	picture_coding_type;
2040f4815b39SEzequiel Garcia 	__u8	picture_structure;
2041f4815b39SEzequiel Garcia 	__u8	intra_dc_precision;
2042f4815b39SEzequiel Garcia 	__u8	reserved[5];
2043f4815b39SEzequiel Garcia };
2044f4815b39SEzequiel Garcia 
2045f4815b39SEzequiel Garcia #define V4L2_CID_STATELESS_MPEG2_QUANTISATION (V4L2_CID_CODEC_STATELESS_BASE+222)
2046f4815b39SEzequiel Garcia /**
2047f4815b39SEzequiel Garcia  * struct v4l2_ctrl_mpeg2_quantisation - MPEG-2 quantisation
2048f4815b39SEzequiel Garcia  *
2049f4815b39SEzequiel Garcia  * Quantisation matrices as specified by section 6.3.7
2050f4815b39SEzequiel Garcia  * "Quant matrix extension".
2051f4815b39SEzequiel Garcia  *
2052f4815b39SEzequiel Garcia  * @intra_quantiser_matrix: The quantisation matrix coefficients
2053f4815b39SEzequiel Garcia  * for intra-coded frames, in zigzag scanning order. It is relevant
2054f4815b39SEzequiel Garcia  * for both luma and chroma components, although it can be superseded
2055f4815b39SEzequiel Garcia  * by the chroma-specific matrix for non-4:2:0 YUV formats.
2056f4815b39SEzequiel Garcia  * @non_intra_quantiser_matrix: The quantisation matrix coefficients
2057f4815b39SEzequiel Garcia  * for non-intra-coded frames, in zigzag scanning order. It is relevant
2058f4815b39SEzequiel Garcia  * for both luma and chroma components, although it can be superseded
2059f4815b39SEzequiel Garcia  * by the chroma-specific matrix for non-4:2:0 YUV formats.
2060f4815b39SEzequiel Garcia  * @chroma_intra_quantiser_matrix: The quantisation matrix coefficients
2061f4815b39SEzequiel Garcia  * for the chominance component of intra-coded frames, in zigzag scanning
2062f4815b39SEzequiel Garcia  * order. Only relevant for 4:2:2 and 4:4:4 YUV formats.
2063f4815b39SEzequiel Garcia  * @chroma_non_intra_quantiser_matrix: The quantisation matrix coefficients
2064f4815b39SEzequiel Garcia  * for the chrominance component of non-intra-coded frames, in zigzag scanning
2065f4815b39SEzequiel Garcia  * order. Only relevant for 4:2:2 and 4:4:4 YUV formats.
2066f4815b39SEzequiel Garcia  */
2067f4815b39SEzequiel Garcia struct v4l2_ctrl_mpeg2_quantisation {
2068f4815b39SEzequiel Garcia 	__u8	intra_quantiser_matrix[64];
2069f4815b39SEzequiel Garcia 	__u8	non_intra_quantiser_matrix[64];
2070f4815b39SEzequiel Garcia 	__u8	chroma_intra_quantiser_matrix[64];
2071f4815b39SEzequiel Garcia 	__u8	chroma_non_intra_quantiser_matrix[64];
2072f4815b39SEzequiel Garcia };
2073f4815b39SEzequiel Garcia 
2074ca24fef0SBenjamin Gaignard #define V4L2_CID_STATELESS_HEVC_SPS		(V4L2_CID_CODEC_STATELESS_BASE + 400)
2075ca24fef0SBenjamin Gaignard #define V4L2_CID_STATELESS_HEVC_PPS		(V4L2_CID_CODEC_STATELESS_BASE + 401)
2076ca24fef0SBenjamin Gaignard #define V4L2_CID_STATELESS_HEVC_SLICE_PARAMS	(V4L2_CID_CODEC_STATELESS_BASE + 402)
2077ca24fef0SBenjamin Gaignard #define V4L2_CID_STATELESS_HEVC_SCALING_MATRIX	(V4L2_CID_CODEC_STATELESS_BASE + 403)
2078ca24fef0SBenjamin Gaignard #define V4L2_CID_STATELESS_HEVC_DECODE_PARAMS	(V4L2_CID_CODEC_STATELESS_BASE + 404)
2079ca24fef0SBenjamin Gaignard #define V4L2_CID_STATELESS_HEVC_DECODE_MODE	(V4L2_CID_CODEC_STATELESS_BASE + 405)
2080ca24fef0SBenjamin Gaignard #define V4L2_CID_STATELESS_HEVC_START_CODE	(V4L2_CID_CODEC_STATELESS_BASE + 406)
2081ca24fef0SBenjamin Gaignard #define V4L2_CID_STATELESS_HEVC_ENTRY_POINT_OFFSETS (V4L2_CID_CODEC_STATELESS_BASE + 407)
2082ca24fef0SBenjamin Gaignard 
2083ca24fef0SBenjamin Gaignard enum v4l2_stateless_hevc_decode_mode {
2084ca24fef0SBenjamin Gaignard 	V4L2_STATELESS_HEVC_DECODE_MODE_SLICE_BASED,
2085ca24fef0SBenjamin Gaignard 	V4L2_STATELESS_HEVC_DECODE_MODE_FRAME_BASED,
2086ca24fef0SBenjamin Gaignard };
2087ca24fef0SBenjamin Gaignard 
2088ca24fef0SBenjamin Gaignard enum v4l2_stateless_hevc_start_code {
2089ca24fef0SBenjamin Gaignard 	V4L2_STATELESS_HEVC_START_CODE_NONE,
2090ca24fef0SBenjamin Gaignard 	V4L2_STATELESS_HEVC_START_CODE_ANNEX_B,
2091ca24fef0SBenjamin Gaignard };
2092ca24fef0SBenjamin Gaignard 
2093ca24fef0SBenjamin Gaignard #define V4L2_HEVC_SLICE_TYPE_B	0
2094ca24fef0SBenjamin Gaignard #define V4L2_HEVC_SLICE_TYPE_P	1
2095ca24fef0SBenjamin Gaignard #define V4L2_HEVC_SLICE_TYPE_I	2
2096ca24fef0SBenjamin Gaignard 
2097ca24fef0SBenjamin Gaignard #define V4L2_HEVC_SPS_FLAG_SEPARATE_COLOUR_PLANE		(1ULL << 0)
2098ca24fef0SBenjamin Gaignard #define V4L2_HEVC_SPS_FLAG_SCALING_LIST_ENABLED			(1ULL << 1)
2099ca24fef0SBenjamin Gaignard #define V4L2_HEVC_SPS_FLAG_AMP_ENABLED				(1ULL << 2)
2100ca24fef0SBenjamin Gaignard #define V4L2_HEVC_SPS_FLAG_SAMPLE_ADAPTIVE_OFFSET		(1ULL << 3)
2101ca24fef0SBenjamin Gaignard #define V4L2_HEVC_SPS_FLAG_PCM_ENABLED				(1ULL << 4)
2102ca24fef0SBenjamin Gaignard #define V4L2_HEVC_SPS_FLAG_PCM_LOOP_FILTER_DISABLED		(1ULL << 5)
2103ca24fef0SBenjamin Gaignard #define V4L2_HEVC_SPS_FLAG_LONG_TERM_REF_PICS_PRESENT		(1ULL << 6)
2104ca24fef0SBenjamin Gaignard #define V4L2_HEVC_SPS_FLAG_SPS_TEMPORAL_MVP_ENABLED		(1ULL << 7)
2105ca24fef0SBenjamin Gaignard #define V4L2_HEVC_SPS_FLAG_STRONG_INTRA_SMOOTHING_ENABLED	(1ULL << 8)
2106ca24fef0SBenjamin Gaignard 
2107ca24fef0SBenjamin Gaignard /**
2108ca24fef0SBenjamin Gaignard  * struct v4l2_ctrl_hevc_sps - ITU-T Rec. H.265: Sequence parameter set
2109ca24fef0SBenjamin Gaignard  *
2110ca24fef0SBenjamin Gaignard  * @video_parameter_set_id: specifies the value of the
2111ca24fef0SBenjamin Gaignard  *			vps_video_parameter_set_id of the active VPS
2112ca24fef0SBenjamin Gaignard  * @seq_parameter_set_id: provides an identifier for the SPS for
2113ca24fef0SBenjamin Gaignard  *			  reference by other syntax elements
2114ca24fef0SBenjamin Gaignard  * @pic_width_in_luma_samples:	specifies the width of each decoded picture
2115ca24fef0SBenjamin Gaignard  *				in units of luma samples
2116ca24fef0SBenjamin Gaignard  * @pic_height_in_luma_samples: specifies the height of each decoded picture
2117ca24fef0SBenjamin Gaignard  *				in units of luma samples
2118ca24fef0SBenjamin Gaignard  * @bit_depth_luma_minus8: this value plus 8specifies the bit depth of the
2119ca24fef0SBenjamin Gaignard  *                         samples of the luma array
2120ca24fef0SBenjamin Gaignard  * @bit_depth_chroma_minus8: this value plus 8 specifies the bit depth of the
2121ca24fef0SBenjamin Gaignard  *                           samples of the chroma arrays
2122ca24fef0SBenjamin Gaignard  * @log2_max_pic_order_cnt_lsb_minus4: this value plus 4 specifies the value of
2123ca24fef0SBenjamin Gaignard  *                                     the variable MaxPicOrderCntLsb
2124ca24fef0SBenjamin Gaignard  * @sps_max_dec_pic_buffering_minus1: this value plus 1 specifies the maximum
2125ca24fef0SBenjamin Gaignard  *                                    required size of the decoded picture
2126ca24fef0SBenjamin Gaignard  *                                    buffer for the codec video sequence
2127ca24fef0SBenjamin Gaignard  * @sps_max_num_reorder_pics: indicates the maximum allowed number of pictures
2128ca24fef0SBenjamin Gaignard  * @sps_max_latency_increase_plus1: not equal to 0 is used to compute the
2129ca24fef0SBenjamin Gaignard  *				    value of SpsMaxLatencyPictures array
2130ca24fef0SBenjamin Gaignard  * @log2_min_luma_coding_block_size_minus3: plus 3 specifies the minimum
2131ca24fef0SBenjamin Gaignard  *					    luma coding block size
2132ca24fef0SBenjamin Gaignard  * @log2_diff_max_min_luma_coding_block_size: specifies the difference between
2133ca24fef0SBenjamin Gaignard  *					      the maximum and minimum luma
2134ca24fef0SBenjamin Gaignard  *					      coding block size
2135ca24fef0SBenjamin Gaignard  * @log2_min_luma_transform_block_size_minus2: plus 2 specifies the minimum luma
2136ca24fef0SBenjamin Gaignard  *					       transform block size
2137ca24fef0SBenjamin Gaignard  * @log2_diff_max_min_luma_transform_block_size: specifies the difference between
2138ca24fef0SBenjamin Gaignard  *						 the maximum and minimum luma
2139ca24fef0SBenjamin Gaignard  *						 transform block size
2140ca24fef0SBenjamin Gaignard  * @max_transform_hierarchy_depth_inter: specifies the maximum hierarchy
2141ca24fef0SBenjamin Gaignard  *					 depth for transform units of
2142ca24fef0SBenjamin Gaignard  *					 coding units coded in inter
2143ca24fef0SBenjamin Gaignard  *					 prediction mode
2144ca24fef0SBenjamin Gaignard  * @max_transform_hierarchy_depth_intra: specifies the maximum hierarchy
2145ca24fef0SBenjamin Gaignard  *					 depth for transform units of
2146ca24fef0SBenjamin Gaignard  *					 coding units coded in intra
2147ca24fef0SBenjamin Gaignard  *					 prediction mode
2148ca24fef0SBenjamin Gaignard  * @pcm_sample_bit_depth_luma_minus1: this value plus 1 specifies the number of
2149ca24fef0SBenjamin Gaignard  *                                    bits used to represent each of PCM sample
2150ca24fef0SBenjamin Gaignard  *                                    values of the luma component
2151ca24fef0SBenjamin Gaignard  * @pcm_sample_bit_depth_chroma_minus1: this value plus 1 specifies the number
2152ca24fef0SBenjamin Gaignard  *                                      of bits used to represent each of PCM
2153ca24fef0SBenjamin Gaignard  *                                      sample values of the chroma components
2154ca24fef0SBenjamin Gaignard  * @log2_min_pcm_luma_coding_block_size_minus3: this value plus 3 specifies the
2155ca24fef0SBenjamin Gaignard  *                                              minimum size of coding blocks
2156ca24fef0SBenjamin Gaignard  * @log2_diff_max_min_pcm_luma_coding_block_size: specifies the difference between
2157ca24fef0SBenjamin Gaignard  *						  the maximum and minimum size of
2158ca24fef0SBenjamin Gaignard  *						  coding blocks
2159ca24fef0SBenjamin Gaignard  * @num_short_term_ref_pic_sets: specifies the number of st_ref_pic_set()
2160ca24fef0SBenjamin Gaignard  *				 syntax structures included in the SPS
2161ca24fef0SBenjamin Gaignard  * @num_long_term_ref_pics_sps: specifies the number of candidate long-term
2162ca24fef0SBenjamin Gaignard  *				reference pictures that are specified in the SPS
2163ca24fef0SBenjamin Gaignard  * @chroma_format_idc: specifies the chroma sampling
2164ca24fef0SBenjamin Gaignard  * @sps_max_sub_layers_minus1: this value plus 1 specifies the maximum number
2165ca24fef0SBenjamin Gaignard  *                             of temporal sub-layers
2166ca24fef0SBenjamin Gaignard  * @reserved: padding field. Should be zeroed by applications.
2167ca24fef0SBenjamin Gaignard  * @flags: see V4L2_HEVC_SPS_FLAG_{}
2168ca24fef0SBenjamin Gaignard  */
2169ca24fef0SBenjamin Gaignard struct v4l2_ctrl_hevc_sps {
2170ca24fef0SBenjamin Gaignard 	__u8	video_parameter_set_id;
2171ca24fef0SBenjamin Gaignard 	__u8	seq_parameter_set_id;
2172ca24fef0SBenjamin Gaignard 	__u16	pic_width_in_luma_samples;
2173ca24fef0SBenjamin Gaignard 	__u16	pic_height_in_luma_samples;
2174ca24fef0SBenjamin Gaignard 	__u8	bit_depth_luma_minus8;
2175ca24fef0SBenjamin Gaignard 	__u8	bit_depth_chroma_minus8;
2176ca24fef0SBenjamin Gaignard 	__u8	log2_max_pic_order_cnt_lsb_minus4;
2177ca24fef0SBenjamin Gaignard 	__u8	sps_max_dec_pic_buffering_minus1;
2178ca24fef0SBenjamin Gaignard 	__u8	sps_max_num_reorder_pics;
2179ca24fef0SBenjamin Gaignard 	__u8	sps_max_latency_increase_plus1;
2180ca24fef0SBenjamin Gaignard 	__u8	log2_min_luma_coding_block_size_minus3;
2181ca24fef0SBenjamin Gaignard 	__u8	log2_diff_max_min_luma_coding_block_size;
2182ca24fef0SBenjamin Gaignard 	__u8	log2_min_luma_transform_block_size_minus2;
2183ca24fef0SBenjamin Gaignard 	__u8	log2_diff_max_min_luma_transform_block_size;
2184ca24fef0SBenjamin Gaignard 	__u8	max_transform_hierarchy_depth_inter;
2185ca24fef0SBenjamin Gaignard 	__u8	max_transform_hierarchy_depth_intra;
2186ca24fef0SBenjamin Gaignard 	__u8	pcm_sample_bit_depth_luma_minus1;
2187ca24fef0SBenjamin Gaignard 	__u8	pcm_sample_bit_depth_chroma_minus1;
2188ca24fef0SBenjamin Gaignard 	__u8	log2_min_pcm_luma_coding_block_size_minus3;
2189ca24fef0SBenjamin Gaignard 	__u8	log2_diff_max_min_pcm_luma_coding_block_size;
2190ca24fef0SBenjamin Gaignard 	__u8	num_short_term_ref_pic_sets;
2191ca24fef0SBenjamin Gaignard 	__u8	num_long_term_ref_pics_sps;
2192ca24fef0SBenjamin Gaignard 	__u8	chroma_format_idc;
2193ca24fef0SBenjamin Gaignard 	__u8	sps_max_sub_layers_minus1;
2194ca24fef0SBenjamin Gaignard 
2195ca24fef0SBenjamin Gaignard 	__u8	reserved[6];
2196ca24fef0SBenjamin Gaignard 	__u64	flags;
2197ca24fef0SBenjamin Gaignard };
2198ca24fef0SBenjamin Gaignard 
2199ca24fef0SBenjamin Gaignard #define V4L2_HEVC_PPS_FLAG_DEPENDENT_SLICE_SEGMENT_ENABLED	(1ULL << 0)
2200ca24fef0SBenjamin Gaignard #define V4L2_HEVC_PPS_FLAG_OUTPUT_FLAG_PRESENT			(1ULL << 1)
2201ca24fef0SBenjamin Gaignard #define V4L2_HEVC_PPS_FLAG_SIGN_DATA_HIDING_ENABLED		(1ULL << 2)
2202ca24fef0SBenjamin Gaignard #define V4L2_HEVC_PPS_FLAG_CABAC_INIT_PRESENT			(1ULL << 3)
2203ca24fef0SBenjamin Gaignard #define V4L2_HEVC_PPS_FLAG_CONSTRAINED_INTRA_PRED		(1ULL << 4)
2204ca24fef0SBenjamin Gaignard #define V4L2_HEVC_PPS_FLAG_TRANSFORM_SKIP_ENABLED		(1ULL << 5)
2205ca24fef0SBenjamin Gaignard #define V4L2_HEVC_PPS_FLAG_CU_QP_DELTA_ENABLED			(1ULL << 6)
2206ca24fef0SBenjamin Gaignard #define V4L2_HEVC_PPS_FLAG_PPS_SLICE_CHROMA_QP_OFFSETS_PRESENT	(1ULL << 7)
2207ca24fef0SBenjamin Gaignard #define V4L2_HEVC_PPS_FLAG_WEIGHTED_PRED			(1ULL << 8)
2208ca24fef0SBenjamin Gaignard #define V4L2_HEVC_PPS_FLAG_WEIGHTED_BIPRED			(1ULL << 9)
2209ca24fef0SBenjamin Gaignard #define V4L2_HEVC_PPS_FLAG_TRANSQUANT_BYPASS_ENABLED		(1ULL << 10)
2210ca24fef0SBenjamin Gaignard #define V4L2_HEVC_PPS_FLAG_TILES_ENABLED			(1ULL << 11)
2211ca24fef0SBenjamin Gaignard #define V4L2_HEVC_PPS_FLAG_ENTROPY_CODING_SYNC_ENABLED		(1ULL << 12)
2212ca24fef0SBenjamin Gaignard #define V4L2_HEVC_PPS_FLAG_LOOP_FILTER_ACROSS_TILES_ENABLED	(1ULL << 13)
2213ca24fef0SBenjamin Gaignard #define V4L2_HEVC_PPS_FLAG_PPS_LOOP_FILTER_ACROSS_SLICES_ENABLED (1ULL << 14)
2214ca24fef0SBenjamin Gaignard #define V4L2_HEVC_PPS_FLAG_DEBLOCKING_FILTER_OVERRIDE_ENABLED	(1ULL << 15)
2215ca24fef0SBenjamin Gaignard #define V4L2_HEVC_PPS_FLAG_PPS_DISABLE_DEBLOCKING_FILTER	(1ULL << 16)
2216ca24fef0SBenjamin Gaignard #define V4L2_HEVC_PPS_FLAG_LISTS_MODIFICATION_PRESENT		(1ULL << 17)
2217ca24fef0SBenjamin Gaignard #define V4L2_HEVC_PPS_FLAG_SLICE_SEGMENT_HEADER_EXTENSION_PRESENT (1ULL << 18)
2218ca24fef0SBenjamin Gaignard #define V4L2_HEVC_PPS_FLAG_DEBLOCKING_FILTER_CONTROL_PRESENT	(1ULL << 19)
2219ca24fef0SBenjamin Gaignard #define V4L2_HEVC_PPS_FLAG_UNIFORM_SPACING			(1ULL << 20)
2220ca24fef0SBenjamin Gaignard 
2221ca24fef0SBenjamin Gaignard /**
2222ca24fef0SBenjamin Gaignard  * struct v4l2_ctrl_hevc_pps - ITU-T Rec. H.265: Picture parameter set
2223ca24fef0SBenjamin Gaignard  *
2224ca24fef0SBenjamin Gaignard  * @pic_parameter_set_id: identifies the PPS for reference by other
2225ca24fef0SBenjamin Gaignard  *			  syntax elements
2226ca24fef0SBenjamin Gaignard  * @num_extra_slice_header_bits: specifies the number of extra slice header
2227ca24fef0SBenjamin Gaignard  *				 bits that are present in the slice header RBSP
2228ca24fef0SBenjamin Gaignard  *				 for coded pictures referring to the PPS.
2229ca24fef0SBenjamin Gaignard  * @num_ref_idx_l0_default_active_minus1: this value plus 1 specifies the
2230ca24fef0SBenjamin Gaignard  *                                        inferred value of num_ref_idx_l0_active_minus1
2231ca24fef0SBenjamin Gaignard  * @num_ref_idx_l1_default_active_minus1: this value plus 1 specifies the
2232ca24fef0SBenjamin Gaignard  *                                        inferred value of num_ref_idx_l1_active_minus1
2233ca24fef0SBenjamin Gaignard  * @init_qp_minus26: this value plus 26 specifies the initial value of SliceQp Y for
2234ca24fef0SBenjamin Gaignard  *		     each slice referring to the PPS
2235ca24fef0SBenjamin Gaignard  * @diff_cu_qp_delta_depth: specifies the difference between the luma coding
2236ca24fef0SBenjamin Gaignard  *			    tree block size and the minimum luma coding block
2237ca24fef0SBenjamin Gaignard  *			    size of coding units that convey cu_qp_delta_abs
2238ca24fef0SBenjamin Gaignard  *			    and cu_qp_delta_sign_flag
2239ca24fef0SBenjamin Gaignard  * @pps_cb_qp_offset: specify the offsets to the luma quantization parameter Cb
2240ca24fef0SBenjamin Gaignard  * @pps_cr_qp_offset: specify the offsets to the luma quantization parameter Cr
2241ca24fef0SBenjamin Gaignard  * @num_tile_columns_minus1: this value plus 1 specifies the number of tile columns
2242ca24fef0SBenjamin Gaignard  *			     partitioning the picture
2243ca24fef0SBenjamin Gaignard  * @num_tile_rows_minus1: this value plus 1 specifies the number of tile rows partitioning
2244ca24fef0SBenjamin Gaignard  *			  the picture
2245ca24fef0SBenjamin Gaignard  * @column_width_minus1: this value plus 1 specifies the width of the each tile column in
2246ca24fef0SBenjamin Gaignard  *			 units of coding tree blocks
2247ca24fef0SBenjamin Gaignard  * @row_height_minus1: this value plus 1 specifies the height of the each tile row in
2248ca24fef0SBenjamin Gaignard  *		       units of coding tree blocks
2249ca24fef0SBenjamin Gaignard  * @pps_beta_offset_div2: specify the default deblocking parameter offsets for
2250ca24fef0SBenjamin Gaignard  *			  beta divided by 2
2251ca24fef0SBenjamin Gaignard  * @pps_tc_offset_div2: specify the default deblocking parameter offsets for tC
2252ca24fef0SBenjamin Gaignard  *			divided by 2
2253ca24fef0SBenjamin Gaignard  * @log2_parallel_merge_level_minus2: this value plus 2 specifies the value of
2254ca24fef0SBenjamin Gaignard  *                                    the variable Log2ParMrgLevel
2255ca24fef0SBenjamin Gaignard  * @reserved: padding field. Should be zeroed by applications.
2256ca24fef0SBenjamin Gaignard  * @flags: see V4L2_HEVC_PPS_FLAG_{}
2257ca24fef0SBenjamin Gaignard  */
2258ca24fef0SBenjamin Gaignard struct v4l2_ctrl_hevc_pps {
2259ca24fef0SBenjamin Gaignard 	__u8	pic_parameter_set_id;
2260ca24fef0SBenjamin Gaignard 	__u8	num_extra_slice_header_bits;
2261ca24fef0SBenjamin Gaignard 	__u8	num_ref_idx_l0_default_active_minus1;
2262ca24fef0SBenjamin Gaignard 	__u8	num_ref_idx_l1_default_active_minus1;
2263ca24fef0SBenjamin Gaignard 	__s8	init_qp_minus26;
2264ca24fef0SBenjamin Gaignard 	__u8	diff_cu_qp_delta_depth;
2265ca24fef0SBenjamin Gaignard 	__s8	pps_cb_qp_offset;
2266ca24fef0SBenjamin Gaignard 	__s8	pps_cr_qp_offset;
2267ca24fef0SBenjamin Gaignard 	__u8	num_tile_columns_minus1;
2268ca24fef0SBenjamin Gaignard 	__u8	num_tile_rows_minus1;
2269ca24fef0SBenjamin Gaignard 	__u8	column_width_minus1[20];
2270ca24fef0SBenjamin Gaignard 	__u8	row_height_minus1[22];
2271ca24fef0SBenjamin Gaignard 	__s8	pps_beta_offset_div2;
2272ca24fef0SBenjamin Gaignard 	__s8	pps_tc_offset_div2;
2273ca24fef0SBenjamin Gaignard 	__u8	log2_parallel_merge_level_minus2;
2274ca24fef0SBenjamin Gaignard 	__u8	reserved;
2275ca24fef0SBenjamin Gaignard 	__u64	flags;
2276ca24fef0SBenjamin Gaignard };
2277ca24fef0SBenjamin Gaignard 
2278ca24fef0SBenjamin Gaignard #define V4L2_HEVC_DPB_ENTRY_LONG_TERM_REFERENCE	0x01
2279ca24fef0SBenjamin Gaignard 
2280ca24fef0SBenjamin Gaignard #define V4L2_HEVC_SEI_PIC_STRUCT_FRAME				0
2281ca24fef0SBenjamin Gaignard #define V4L2_HEVC_SEI_PIC_STRUCT_TOP_FIELD			1
2282ca24fef0SBenjamin Gaignard #define V4L2_HEVC_SEI_PIC_STRUCT_BOTTOM_FIELD			2
2283ca24fef0SBenjamin Gaignard #define V4L2_HEVC_SEI_PIC_STRUCT_TOP_BOTTOM			3
2284ca24fef0SBenjamin Gaignard #define V4L2_HEVC_SEI_PIC_STRUCT_BOTTOM_TOP			4
2285ca24fef0SBenjamin Gaignard #define V4L2_HEVC_SEI_PIC_STRUCT_TOP_BOTTOM_TOP			5
2286ca24fef0SBenjamin Gaignard #define V4L2_HEVC_SEI_PIC_STRUCT_BOTTOM_TOP_BOTTOM		6
2287ca24fef0SBenjamin Gaignard #define V4L2_HEVC_SEI_PIC_STRUCT_FRAME_DOUBLING			7
2288ca24fef0SBenjamin Gaignard #define V4L2_HEVC_SEI_PIC_STRUCT_FRAME_TRIPLING			8
2289ca24fef0SBenjamin Gaignard #define V4L2_HEVC_SEI_PIC_STRUCT_TOP_PAIRED_PREVIOUS_BOTTOM	9
2290ca24fef0SBenjamin Gaignard #define V4L2_HEVC_SEI_PIC_STRUCT_BOTTOM_PAIRED_PREVIOUS_TOP	10
2291ca24fef0SBenjamin Gaignard #define V4L2_HEVC_SEI_PIC_STRUCT_TOP_PAIRED_NEXT_BOTTOM		11
2292ca24fef0SBenjamin Gaignard #define V4L2_HEVC_SEI_PIC_STRUCT_BOTTOM_PAIRED_NEXT_TOP		12
2293ca24fef0SBenjamin Gaignard 
2294ca24fef0SBenjamin Gaignard #define V4L2_HEVC_DPB_ENTRIES_NUM_MAX		16
2295ca24fef0SBenjamin Gaignard 
2296ca24fef0SBenjamin Gaignard /**
2297ca24fef0SBenjamin Gaignard  * struct v4l2_hevc_dpb_entry - HEVC decoded picture buffer entry
2298ca24fef0SBenjamin Gaignard  *
2299ca24fef0SBenjamin Gaignard  * @timestamp: timestamp of the V4L2 capture buffer to use as reference.
2300ca24fef0SBenjamin Gaignard  * @flags: long term flag for the reference frame
2301ca24fef0SBenjamin Gaignard  * @field_pic: whether the reference is a field picture or a frame.
2302ca24fef0SBenjamin Gaignard  * @reserved: padding field. Should be zeroed by applications.
2303ca24fef0SBenjamin Gaignard  * @pic_order_cnt_val: the picture order count of the current picture.
2304ca24fef0SBenjamin Gaignard  */
2305ca24fef0SBenjamin Gaignard struct v4l2_hevc_dpb_entry {
2306ca24fef0SBenjamin Gaignard 	__u64	timestamp;
2307ca24fef0SBenjamin Gaignard 	__u8	flags;
2308ca24fef0SBenjamin Gaignard 	__u8	field_pic;
2309ca24fef0SBenjamin Gaignard 	__u16	reserved;
2310ca24fef0SBenjamin Gaignard 	__s32	pic_order_cnt_val;
2311ca24fef0SBenjamin Gaignard };
2312ca24fef0SBenjamin Gaignard 
2313ca24fef0SBenjamin Gaignard /**
2314ca24fef0SBenjamin Gaignard  * struct v4l2_hevc_pred_weight_table - HEVC weighted prediction parameters
2315ca24fef0SBenjamin Gaignard  *
2316ca24fef0SBenjamin Gaignard  * @delta_luma_weight_l0: the difference of the weighting factor applied
2317ca24fef0SBenjamin Gaignard  *			  to the luma prediction value for list 0
2318ca24fef0SBenjamin Gaignard  * @luma_offset_l0: the additive offset applied to the luma prediction value
2319ca24fef0SBenjamin Gaignard  *		    for list 0
2320ca24fef0SBenjamin Gaignard  * @delta_chroma_weight_l0: the difference of the weighting factor applied
2321ca24fef0SBenjamin Gaignard  *			    to the chroma prediction values for list 0
2322ca24fef0SBenjamin Gaignard  * @chroma_offset_l0: the difference of the additive offset applied to
2323ca24fef0SBenjamin Gaignard  *		      the chroma prediction values for list 0
2324ca24fef0SBenjamin Gaignard  * @delta_luma_weight_l1: the difference of the weighting factor applied
2325ca24fef0SBenjamin Gaignard  *			  to the luma prediction value for list 1
2326ca24fef0SBenjamin Gaignard  * @luma_offset_l1: the additive offset applied to the luma prediction value
2327ca24fef0SBenjamin Gaignard  *		    for list 1
2328ca24fef0SBenjamin Gaignard  * @delta_chroma_weight_l1: the difference of the weighting factor applied
2329ca24fef0SBenjamin Gaignard  *			    to the chroma prediction values for list 1
2330ca24fef0SBenjamin Gaignard  * @chroma_offset_l1: the difference of the additive offset applied to
2331ca24fef0SBenjamin Gaignard  *		      the chroma prediction values for list 1
2332ca24fef0SBenjamin Gaignard  * @luma_log2_weight_denom: the base 2 logarithm of the denominator for
2333ca24fef0SBenjamin Gaignard  *			    all luma weighting factors
2334ca24fef0SBenjamin Gaignard  * @delta_chroma_log2_weight_denom: the difference of the base 2 logarithm
2335ca24fef0SBenjamin Gaignard  *				    of the denominator for all chroma
2336ca24fef0SBenjamin Gaignard  *				    weighting factors
2337ca24fef0SBenjamin Gaignard  */
2338ca24fef0SBenjamin Gaignard struct v4l2_hevc_pred_weight_table {
2339ca24fef0SBenjamin Gaignard 	__s8	delta_luma_weight_l0[V4L2_HEVC_DPB_ENTRIES_NUM_MAX];
2340ca24fef0SBenjamin Gaignard 	__s8	luma_offset_l0[V4L2_HEVC_DPB_ENTRIES_NUM_MAX];
2341ca24fef0SBenjamin Gaignard 	__s8	delta_chroma_weight_l0[V4L2_HEVC_DPB_ENTRIES_NUM_MAX][2];
2342ca24fef0SBenjamin Gaignard 	__s8	chroma_offset_l0[V4L2_HEVC_DPB_ENTRIES_NUM_MAX][2];
2343ca24fef0SBenjamin Gaignard 
2344ca24fef0SBenjamin Gaignard 	__s8	delta_luma_weight_l1[V4L2_HEVC_DPB_ENTRIES_NUM_MAX];
2345ca24fef0SBenjamin Gaignard 	__s8	luma_offset_l1[V4L2_HEVC_DPB_ENTRIES_NUM_MAX];
2346ca24fef0SBenjamin Gaignard 	__s8	delta_chroma_weight_l1[V4L2_HEVC_DPB_ENTRIES_NUM_MAX][2];
2347ca24fef0SBenjamin Gaignard 	__s8	chroma_offset_l1[V4L2_HEVC_DPB_ENTRIES_NUM_MAX][2];
2348ca24fef0SBenjamin Gaignard 
2349ca24fef0SBenjamin Gaignard 	__u8	luma_log2_weight_denom;
2350ca24fef0SBenjamin Gaignard 	__s8	delta_chroma_log2_weight_denom;
2351ca24fef0SBenjamin Gaignard };
2352ca24fef0SBenjamin Gaignard 
2353ca24fef0SBenjamin Gaignard #define V4L2_HEVC_SLICE_PARAMS_FLAG_SLICE_SAO_LUMA		(1ULL << 0)
2354ca24fef0SBenjamin Gaignard #define V4L2_HEVC_SLICE_PARAMS_FLAG_SLICE_SAO_CHROMA		(1ULL << 1)
2355ca24fef0SBenjamin Gaignard #define V4L2_HEVC_SLICE_PARAMS_FLAG_SLICE_TEMPORAL_MVP_ENABLED	(1ULL << 2)
2356ca24fef0SBenjamin Gaignard #define V4L2_HEVC_SLICE_PARAMS_FLAG_MVD_L1_ZERO			(1ULL << 3)
2357ca24fef0SBenjamin Gaignard #define V4L2_HEVC_SLICE_PARAMS_FLAG_CABAC_INIT			(1ULL << 4)
2358ca24fef0SBenjamin Gaignard #define V4L2_HEVC_SLICE_PARAMS_FLAG_COLLOCATED_FROM_L0		(1ULL << 5)
2359ca24fef0SBenjamin Gaignard #define V4L2_HEVC_SLICE_PARAMS_FLAG_USE_INTEGER_MV		(1ULL << 6)
2360ca24fef0SBenjamin Gaignard #define V4L2_HEVC_SLICE_PARAMS_FLAG_SLICE_DEBLOCKING_FILTER_DISABLED (1ULL << 7)
2361ca24fef0SBenjamin Gaignard #define V4L2_HEVC_SLICE_PARAMS_FLAG_SLICE_LOOP_FILTER_ACROSS_SLICES_ENABLED (1ULL << 8)
2362ca24fef0SBenjamin Gaignard #define V4L2_HEVC_SLICE_PARAMS_FLAG_DEPENDENT_SLICE_SEGMENT	(1ULL << 9)
2363ca24fef0SBenjamin Gaignard 
2364ca24fef0SBenjamin Gaignard /**
2365ca24fef0SBenjamin Gaignard  * struct v4l2_ctrl_hevc_slice_params - HEVC slice parameters
2366ca24fef0SBenjamin Gaignard  *
2367ca24fef0SBenjamin Gaignard  * This control is a dynamically sized 1-dimensional array,
2368ca24fef0SBenjamin Gaignard  * V4L2_CTRL_FLAG_DYNAMIC_ARRAY flag must be set when using it.
2369ca24fef0SBenjamin Gaignard  *
2370ca24fef0SBenjamin Gaignard  * @bit_size: size (in bits) of the current slice data
2371ca24fef0SBenjamin Gaignard  * @data_byte_offset: offset (in bytes) to the video data in the current slice data
2372ca24fef0SBenjamin Gaignard  * @num_entry_point_offsets: specifies the number of entry point offset syntax
2373ca24fef0SBenjamin Gaignard  *			     elements in the slice header.
2374ca24fef0SBenjamin Gaignard  * @nal_unit_type: specifies the coding type of the slice (B, P or I)
2375ca24fef0SBenjamin Gaignard  * @nuh_temporal_id_plus1: minus 1 specifies a temporal identifier for the NAL unit
2376ca24fef0SBenjamin Gaignard  * @slice_type: see V4L2_HEVC_SLICE_TYPE_{}
2377ca24fef0SBenjamin Gaignard  * @colour_plane_id: specifies the colour plane associated with the current slice
2378ca24fef0SBenjamin Gaignard  * @slice_pic_order_cnt: specifies the picture order count
2379ca24fef0SBenjamin Gaignard  * @num_ref_idx_l0_active_minus1: this value plus 1 specifies the maximum
2380ca24fef0SBenjamin Gaignard  *                                reference index for reference picture list 0
2381ca24fef0SBenjamin Gaignard  *                                that may be used to decode the slice
2382ca24fef0SBenjamin Gaignard  * @num_ref_idx_l1_active_minus1: this value plus 1 specifies the maximum
2383ca24fef0SBenjamin Gaignard  *                                reference index for reference picture list 1
2384ca24fef0SBenjamin Gaignard  *                                that may be used to decode the slice
2385ca24fef0SBenjamin Gaignard  * @collocated_ref_idx: specifies the reference index of the collocated picture used
2386ca24fef0SBenjamin Gaignard  *			for temporal motion vector prediction
2387ca24fef0SBenjamin Gaignard  * @five_minus_max_num_merge_cand: specifies the maximum number of merging
2388ca24fef0SBenjamin Gaignard  *				   motion vector prediction candidates supported in
2389ca24fef0SBenjamin Gaignard  *				   the slice subtracted from 5
2390ca24fef0SBenjamin Gaignard  * @slice_qp_delta: specifies the initial value of QpY to be used for the coding
2391ca24fef0SBenjamin Gaignard  *		    blocks in the slice
2392ca24fef0SBenjamin Gaignard  * @slice_cb_qp_offset: specifies a difference to be added to the value of pps_cb_qp_offset
2393ca24fef0SBenjamin Gaignard  * @slice_cr_qp_offset: specifies a difference to be added to the value of pps_cr_qp_offset
2394ca24fef0SBenjamin Gaignard  * @slice_act_y_qp_offset: screen content extension parameters
2395ca24fef0SBenjamin Gaignard  * @slice_act_cb_qp_offset: screen content extension parameters
2396ca24fef0SBenjamin Gaignard  * @slice_act_cr_qp_offset: screen content extension parameters
2397ca24fef0SBenjamin Gaignard  * @slice_beta_offset_div2: specify the deblocking parameter offsets for beta divided by 2
2398ca24fef0SBenjamin Gaignard  * @slice_tc_offset_div2: specify the deblocking parameter offsets for tC divided by 2
2399ca24fef0SBenjamin Gaignard  * @pic_struct: indicates whether a picture should be displayed as a frame or as one or
2400ca24fef0SBenjamin Gaignard  *		more fields
2401ca24fef0SBenjamin Gaignard  * @reserved0: padding field. Should be zeroed by applications.
2402ca24fef0SBenjamin Gaignard  * @slice_segment_addr: specifies the address of the first coding tree block in
2403ca24fef0SBenjamin Gaignard  *			the slice segment
2404ca24fef0SBenjamin Gaignard  * @ref_idx_l0: the list of L0 reference elements as indices in the DPB
2405ca24fef0SBenjamin Gaignard  * @ref_idx_l1: the list of L1 reference elements as indices in the DPB
2406ca24fef0SBenjamin Gaignard  * @short_term_ref_pic_set_size: specifies the size of short-term reference
2407ca24fef0SBenjamin Gaignard  *				 pictures set included in the SPS
2408ca24fef0SBenjamin Gaignard  * @long_term_ref_pic_set_size: specifies the size of long-term reference
2409ca24fef0SBenjamin Gaignard  *				pictures set include in the SPS
2410ca24fef0SBenjamin Gaignard  * @pred_weight_table: the prediction weight coefficients for inter-picture
2411ca24fef0SBenjamin Gaignard  *		       prediction
2412ca24fef0SBenjamin Gaignard  * @reserved1: padding field. Should be zeroed by applications.
2413ca24fef0SBenjamin Gaignard  * @flags: see V4L2_HEVC_SLICE_PARAMS_FLAG_{}
2414ca24fef0SBenjamin Gaignard  */
2415ca24fef0SBenjamin Gaignard struct v4l2_ctrl_hevc_slice_params {
2416ca24fef0SBenjamin Gaignard 	__u32	bit_size;
2417ca24fef0SBenjamin Gaignard 	__u32	data_byte_offset;
2418ca24fef0SBenjamin Gaignard 	__u32	num_entry_point_offsets;
2419ca24fef0SBenjamin Gaignard 
2420ca24fef0SBenjamin Gaignard 	/* ISO/IEC 23008-2, ITU-T Rec. H.265: NAL unit header */
2421ca24fef0SBenjamin Gaignard 	__u8	nal_unit_type;
2422ca24fef0SBenjamin Gaignard 	__u8	nuh_temporal_id_plus1;
2423ca24fef0SBenjamin Gaignard 
2424ca24fef0SBenjamin Gaignard 	/* ISO/IEC 23008-2, ITU-T Rec. H.265: General slice segment header */
2425ca24fef0SBenjamin Gaignard 	__u8	slice_type;
2426ca24fef0SBenjamin Gaignard 	__u8	colour_plane_id;
2427ca24fef0SBenjamin Gaignard 	__s32	slice_pic_order_cnt;
2428ca24fef0SBenjamin Gaignard 	__u8	num_ref_idx_l0_active_minus1;
2429ca24fef0SBenjamin Gaignard 	__u8	num_ref_idx_l1_active_minus1;
2430ca24fef0SBenjamin Gaignard 	__u8	collocated_ref_idx;
2431ca24fef0SBenjamin Gaignard 	__u8	five_minus_max_num_merge_cand;
2432ca24fef0SBenjamin Gaignard 	__s8	slice_qp_delta;
2433ca24fef0SBenjamin Gaignard 	__s8	slice_cb_qp_offset;
2434ca24fef0SBenjamin Gaignard 	__s8	slice_cr_qp_offset;
2435ca24fef0SBenjamin Gaignard 	__s8	slice_act_y_qp_offset;
2436ca24fef0SBenjamin Gaignard 	__s8	slice_act_cb_qp_offset;
2437ca24fef0SBenjamin Gaignard 	__s8	slice_act_cr_qp_offset;
2438ca24fef0SBenjamin Gaignard 	__s8	slice_beta_offset_div2;
2439ca24fef0SBenjamin Gaignard 	__s8	slice_tc_offset_div2;
2440ca24fef0SBenjamin Gaignard 
2441ca24fef0SBenjamin Gaignard 	/* ISO/IEC 23008-2, ITU-T Rec. H.265: Picture timing SEI message */
2442ca24fef0SBenjamin Gaignard 	__u8	pic_struct;
2443ca24fef0SBenjamin Gaignard 
2444ca24fef0SBenjamin Gaignard 	__u8	reserved0[3];
2445ca24fef0SBenjamin Gaignard 	/* ISO/IEC 23008-2, ITU-T Rec. H.265: General slice segment header */
2446ca24fef0SBenjamin Gaignard 	__u32	slice_segment_addr;
2447ca24fef0SBenjamin Gaignard 	__u8	ref_idx_l0[V4L2_HEVC_DPB_ENTRIES_NUM_MAX];
2448ca24fef0SBenjamin Gaignard 	__u8	ref_idx_l1[V4L2_HEVC_DPB_ENTRIES_NUM_MAX];
2449ca24fef0SBenjamin Gaignard 	__u16	short_term_ref_pic_set_size;
2450ca24fef0SBenjamin Gaignard 	__u16	long_term_ref_pic_set_size;
2451ca24fef0SBenjamin Gaignard 
2452ca24fef0SBenjamin Gaignard 	/* ISO/IEC 23008-2, ITU-T Rec. H.265: Weighted prediction parameter */
2453ca24fef0SBenjamin Gaignard 	struct v4l2_hevc_pred_weight_table pred_weight_table;
2454ca24fef0SBenjamin Gaignard 
2455ca24fef0SBenjamin Gaignard 	__u8	reserved1[2];
2456ca24fef0SBenjamin Gaignard 	__u64	flags;
2457ca24fef0SBenjamin Gaignard };
2458ca24fef0SBenjamin Gaignard 
2459ca24fef0SBenjamin Gaignard #define V4L2_HEVC_DECODE_PARAM_FLAG_IRAP_PIC		0x1
2460ca24fef0SBenjamin Gaignard #define V4L2_HEVC_DECODE_PARAM_FLAG_IDR_PIC		0x2
2461ca24fef0SBenjamin Gaignard #define V4L2_HEVC_DECODE_PARAM_FLAG_NO_OUTPUT_OF_PRIOR  0x4
2462ca24fef0SBenjamin Gaignard 
2463ca24fef0SBenjamin Gaignard /**
2464ca24fef0SBenjamin Gaignard  * struct v4l2_ctrl_hevc_decode_params - HEVC decode parameters
2465ca24fef0SBenjamin Gaignard  *
2466ca24fef0SBenjamin Gaignard  * @pic_order_cnt_val: picture order count
2467ca24fef0SBenjamin Gaignard  * @short_term_ref_pic_set_size: specifies the size of short-term reference
2468ca24fef0SBenjamin Gaignard  *				 pictures set included in the SPS of the first slice
2469ca24fef0SBenjamin Gaignard  * @long_term_ref_pic_set_size: specifies the size of long-term reference
2470ca24fef0SBenjamin Gaignard  *				pictures set include in the SPS of the first slice
2471ca24fef0SBenjamin Gaignard  * @num_active_dpb_entries: the number of entries in dpb
2472ca24fef0SBenjamin Gaignard  * @num_poc_st_curr_before: the number of reference pictures in the short-term
2473ca24fef0SBenjamin Gaignard  *			    set that come before the current frame
2474ca24fef0SBenjamin Gaignard  * @num_poc_st_curr_after: the number of reference pictures in the short-term
2475ca24fef0SBenjamin Gaignard  *			   set that come after the current frame
2476ca24fef0SBenjamin Gaignard  * @num_poc_lt_curr: the number of reference pictures in the long-term set
2477ca24fef0SBenjamin Gaignard  * @poc_st_curr_before: provides the index of the short term before references
2478ca24fef0SBenjamin Gaignard  *			in DPB array
2479ca24fef0SBenjamin Gaignard  * @poc_st_curr_after: provides the index of the short term after references
2480ca24fef0SBenjamin Gaignard  *		       in DPB array
2481ca24fef0SBenjamin Gaignard  * @poc_lt_curr: provides the index of the long term references in DPB array
2482ae440c5dSBenjamin Gaignard  * @num_delta_pocs_of_ref_rps_idx: same as the derived value NumDeltaPocs[RefRpsIdx],
2483ae440c5dSBenjamin Gaignard  *				   can be used to parse the RPS data in slice headers
2484ae440c5dSBenjamin Gaignard  *				   instead of skipping it with @short_term_ref_pic_set_size.
2485ca24fef0SBenjamin Gaignard  * @reserved: padding field. Should be zeroed by applications.
2486ca24fef0SBenjamin Gaignard  * @dpb: the decoded picture buffer, for meta-data about reference frames
2487ca24fef0SBenjamin Gaignard  * @flags: see V4L2_HEVC_DECODE_PARAM_FLAG_{}
2488ca24fef0SBenjamin Gaignard  */
2489ca24fef0SBenjamin Gaignard struct v4l2_ctrl_hevc_decode_params {
2490ca24fef0SBenjamin Gaignard 	__s32	pic_order_cnt_val;
2491ca24fef0SBenjamin Gaignard 	__u16	short_term_ref_pic_set_size;
2492ca24fef0SBenjamin Gaignard 	__u16	long_term_ref_pic_set_size;
2493ca24fef0SBenjamin Gaignard 	__u8	num_active_dpb_entries;
2494ca24fef0SBenjamin Gaignard 	__u8	num_poc_st_curr_before;
2495ca24fef0SBenjamin Gaignard 	__u8	num_poc_st_curr_after;
2496ca24fef0SBenjamin Gaignard 	__u8	num_poc_lt_curr;
2497ca24fef0SBenjamin Gaignard 	__u8	poc_st_curr_before[V4L2_HEVC_DPB_ENTRIES_NUM_MAX];
2498ca24fef0SBenjamin Gaignard 	__u8	poc_st_curr_after[V4L2_HEVC_DPB_ENTRIES_NUM_MAX];
2499ca24fef0SBenjamin Gaignard 	__u8	poc_lt_curr[V4L2_HEVC_DPB_ENTRIES_NUM_MAX];
2500ae440c5dSBenjamin Gaignard 	__u8	num_delta_pocs_of_ref_rps_idx;
2501ae440c5dSBenjamin Gaignard 	__u8	reserved[3];
2502ca24fef0SBenjamin Gaignard 	struct	v4l2_hevc_dpb_entry dpb[V4L2_HEVC_DPB_ENTRIES_NUM_MAX];
2503ca24fef0SBenjamin Gaignard 	__u64	flags;
2504ca24fef0SBenjamin Gaignard };
2505ca24fef0SBenjamin Gaignard 
2506ca24fef0SBenjamin Gaignard /**
2507ca24fef0SBenjamin Gaignard  * struct v4l2_ctrl_hevc_scaling_matrix - HEVC scaling lists parameters
2508ca24fef0SBenjamin Gaignard  *
2509ca24fef0SBenjamin Gaignard  * @scaling_list_4x4: scaling list is used for the scaling process for
2510ca24fef0SBenjamin Gaignard  *		      transform coefficients. The values on each scaling
2511ca24fef0SBenjamin Gaignard  *		      list are expected in raster scan order
2512ca24fef0SBenjamin Gaignard  * @scaling_list_8x8: scaling list is used for the scaling process for
2513ca24fef0SBenjamin Gaignard  *		      transform coefficients. The values on each scaling
2514ca24fef0SBenjamin Gaignard  *		      list are expected in raster scan order
2515ca24fef0SBenjamin Gaignard  * @scaling_list_16x16:	scaling list is used for the scaling process for
2516ca24fef0SBenjamin Gaignard  *			transform coefficients. The values on each scaling
2517ca24fef0SBenjamin Gaignard  *			list are expected in raster scan order
2518ca24fef0SBenjamin Gaignard  * @scaling_list_32x32:	scaling list is used for the scaling process for
2519ca24fef0SBenjamin Gaignard  *			transform coefficients. The values on each scaling
2520ca24fef0SBenjamin Gaignard  *			list are expected in raster scan order
2521ca24fef0SBenjamin Gaignard  * @scaling_list_dc_coef_16x16:	scaling list is used for the scaling process
2522ca24fef0SBenjamin Gaignard  *				for transform coefficients. The values on each
2523ca24fef0SBenjamin Gaignard  *				scaling list are expected in raster scan order.
2524ca24fef0SBenjamin Gaignard  * @scaling_list_dc_coef_32x32:	scaling list is used for the scaling process
2525ca24fef0SBenjamin Gaignard  *				for transform coefficients. The values on each
2526ca24fef0SBenjamin Gaignard  *				scaling list are expected in raster scan order.
2527ca24fef0SBenjamin Gaignard  */
2528ca24fef0SBenjamin Gaignard struct v4l2_ctrl_hevc_scaling_matrix {
2529ca24fef0SBenjamin Gaignard 	__u8	scaling_list_4x4[6][16];
2530ca24fef0SBenjamin Gaignard 	__u8	scaling_list_8x8[6][64];
2531ca24fef0SBenjamin Gaignard 	__u8	scaling_list_16x16[6][64];
2532ca24fef0SBenjamin Gaignard 	__u8	scaling_list_32x32[2][64];
2533ca24fef0SBenjamin Gaignard 	__u8	scaling_list_dc_coef_16x16[6];
2534ca24fef0SBenjamin Gaignard 	__u8	scaling_list_dc_coef_32x32[2];
2535ca24fef0SBenjamin Gaignard };
2536ca24fef0SBenjamin Gaignard 
2537f31b9ffdSStanimir Varbanov #define V4L2_CID_COLORIMETRY_CLASS_BASE	(V4L2_CTRL_CLASS_COLORIMETRY | 0x900)
2538f31b9ffdSStanimir Varbanov #define V4L2_CID_COLORIMETRY_CLASS	(V4L2_CTRL_CLASS_COLORIMETRY | 1)
2539f31b9ffdSStanimir Varbanov 
25401ad0de78SStanimir Varbanov #define V4L2_CID_COLORIMETRY_HDR10_CLL_INFO	(V4L2_CID_COLORIMETRY_CLASS_BASE + 0)
25411ad0de78SStanimir Varbanov 
25421ad0de78SStanimir Varbanov struct v4l2_ctrl_hdr10_cll_info {
25431ad0de78SStanimir Varbanov 	__u16 max_content_light_level;
25441ad0de78SStanimir Varbanov 	__u16 max_pic_average_light_level;
25451ad0de78SStanimir Varbanov };
25461ad0de78SStanimir Varbanov 
25471ad0de78SStanimir Varbanov #define V4L2_CID_COLORIMETRY_HDR10_MASTERING_DISPLAY	(V4L2_CID_COLORIMETRY_CLASS_BASE + 1)
25481ad0de78SStanimir Varbanov 
25491ad0de78SStanimir Varbanov #define V4L2_HDR10_MASTERING_PRIMARIES_X_LOW	5
25501ad0de78SStanimir Varbanov #define V4L2_HDR10_MASTERING_PRIMARIES_X_HIGH	37000
25511ad0de78SStanimir Varbanov #define V4L2_HDR10_MASTERING_PRIMARIES_Y_LOW	5
25521ad0de78SStanimir Varbanov #define V4L2_HDR10_MASTERING_PRIMARIES_Y_HIGH	42000
25531ad0de78SStanimir Varbanov #define V4L2_HDR10_MASTERING_WHITE_POINT_X_LOW	5
25541ad0de78SStanimir Varbanov #define V4L2_HDR10_MASTERING_WHITE_POINT_X_HIGH	37000
25551ad0de78SStanimir Varbanov #define V4L2_HDR10_MASTERING_WHITE_POINT_Y_LOW	5
25561ad0de78SStanimir Varbanov #define V4L2_HDR10_MASTERING_WHITE_POINT_Y_HIGH	42000
25571ad0de78SStanimir Varbanov #define V4L2_HDR10_MASTERING_MAX_LUMA_LOW	50000
25581ad0de78SStanimir Varbanov #define V4L2_HDR10_MASTERING_MAX_LUMA_HIGH	100000000
25591ad0de78SStanimir Varbanov #define V4L2_HDR10_MASTERING_MIN_LUMA_LOW	1
25601ad0de78SStanimir Varbanov #define V4L2_HDR10_MASTERING_MIN_LUMA_HIGH	50000
25611ad0de78SStanimir Varbanov 
25621ad0de78SStanimir Varbanov struct v4l2_ctrl_hdr10_mastering_display {
25631ad0de78SStanimir Varbanov 	__u16 display_primaries_x[3];
25641ad0de78SStanimir Varbanov 	__u16 display_primaries_y[3];
25651ad0de78SStanimir Varbanov 	__u16 white_point_x;
25661ad0de78SStanimir Varbanov 	__u16 white_point_y;
25671ad0de78SStanimir Varbanov 	__u32 max_display_mastering_luminance;
25681ad0de78SStanimir Varbanov 	__u32 min_display_mastering_luminance;
25691ad0de78SStanimir Varbanov };
25701ad0de78SStanimir Varbanov 
2571b88dbe38SAndrzej Pietrasiewicz /* Stateless VP9 controls */
2572b88dbe38SAndrzej Pietrasiewicz 
2573b88dbe38SAndrzej Pietrasiewicz #define V4L2_VP9_LOOP_FILTER_FLAG_DELTA_ENABLED	0x1
2574b88dbe38SAndrzej Pietrasiewicz #define	V4L2_VP9_LOOP_FILTER_FLAG_DELTA_UPDATE	0x2
2575b88dbe38SAndrzej Pietrasiewicz 
2576b88dbe38SAndrzej Pietrasiewicz /**
2577b88dbe38SAndrzej Pietrasiewicz  * struct v4l2_vp9_loop_filter - VP9 loop filter parameters
2578b88dbe38SAndrzej Pietrasiewicz  *
2579b88dbe38SAndrzej Pietrasiewicz  * @ref_deltas: contains the adjustment needed for the filter level based on the
2580b88dbe38SAndrzej Pietrasiewicz  * chosen reference frame. If this syntax element is not present in the bitstream,
2581b88dbe38SAndrzej Pietrasiewicz  * users should pass its last value.
2582b88dbe38SAndrzej Pietrasiewicz  * @mode_deltas: contains the adjustment needed for the filter level based on the
2583b88dbe38SAndrzej Pietrasiewicz  * chosen mode.	If this syntax element is not present in the bitstream, users should
2584b88dbe38SAndrzej Pietrasiewicz  * pass its last value.
2585b88dbe38SAndrzej Pietrasiewicz  * @level: indicates the loop filter strength.
2586b88dbe38SAndrzej Pietrasiewicz  * @sharpness: indicates the sharpness level.
2587b88dbe38SAndrzej Pietrasiewicz  * @flags: combination of V4L2_VP9_LOOP_FILTER_FLAG_{} flags.
2588b88dbe38SAndrzej Pietrasiewicz  * @reserved: padding field. Should be zeroed by applications.
2589b88dbe38SAndrzej Pietrasiewicz  *
2590b88dbe38SAndrzej Pietrasiewicz  * This structure contains all loop filter related parameters. See sections
2591b88dbe38SAndrzej Pietrasiewicz  * '7.2.8 Loop filter semantics' of the VP9 specification for more details.
2592b88dbe38SAndrzej Pietrasiewicz  */
2593b88dbe38SAndrzej Pietrasiewicz struct v4l2_vp9_loop_filter {
2594b88dbe38SAndrzej Pietrasiewicz 	__s8 ref_deltas[4];
2595b88dbe38SAndrzej Pietrasiewicz 	__s8 mode_deltas[2];
2596b88dbe38SAndrzej Pietrasiewicz 	__u8 level;
2597b88dbe38SAndrzej Pietrasiewicz 	__u8 sharpness;
2598b88dbe38SAndrzej Pietrasiewicz 	__u8 flags;
2599b88dbe38SAndrzej Pietrasiewicz 	__u8 reserved[7];
2600b88dbe38SAndrzej Pietrasiewicz };
2601b88dbe38SAndrzej Pietrasiewicz 
2602b88dbe38SAndrzej Pietrasiewicz /**
2603b88dbe38SAndrzej Pietrasiewicz  * struct v4l2_vp9_quantization - VP9 quantization parameters
2604b88dbe38SAndrzej Pietrasiewicz  *
2605b88dbe38SAndrzej Pietrasiewicz  * @base_q_idx: indicates the base frame qindex.
2606b88dbe38SAndrzej Pietrasiewicz  * @delta_q_y_dc: indicates the Y DC quantizer relative to base_q_idx.
2607b88dbe38SAndrzej Pietrasiewicz  * @delta_q_uv_dc: indicates the UV DC quantizer relative to base_q_idx.
2608b88dbe38SAndrzej Pietrasiewicz  * @delta_q_uv_ac: indicates the UV AC quantizer relative to base_q_idx.
2609b88dbe38SAndrzej Pietrasiewicz  * @reserved: padding field. Should be zeroed by applications.
2610b88dbe38SAndrzej Pietrasiewicz  *
2611b88dbe38SAndrzej Pietrasiewicz  * Encodes the quantization parameters. See section '7.2.9 Quantization params
2612b88dbe38SAndrzej Pietrasiewicz  * syntax' of the VP9 specification for more details.
2613b88dbe38SAndrzej Pietrasiewicz  */
2614b88dbe38SAndrzej Pietrasiewicz struct v4l2_vp9_quantization {
2615b88dbe38SAndrzej Pietrasiewicz 	__u8 base_q_idx;
2616b88dbe38SAndrzej Pietrasiewicz 	__s8 delta_q_y_dc;
2617b88dbe38SAndrzej Pietrasiewicz 	__s8 delta_q_uv_dc;
2618b88dbe38SAndrzej Pietrasiewicz 	__s8 delta_q_uv_ac;
2619b88dbe38SAndrzej Pietrasiewicz 	__u8 reserved[4];
2620b88dbe38SAndrzej Pietrasiewicz };
2621b88dbe38SAndrzej Pietrasiewicz 
2622b88dbe38SAndrzej Pietrasiewicz #define V4L2_VP9_SEGMENTATION_FLAG_ENABLED		0x01
2623b88dbe38SAndrzej Pietrasiewicz #define V4L2_VP9_SEGMENTATION_FLAG_UPDATE_MAP		0x02
2624b88dbe38SAndrzej Pietrasiewicz #define V4L2_VP9_SEGMENTATION_FLAG_TEMPORAL_UPDATE	0x04
2625b88dbe38SAndrzej Pietrasiewicz #define V4L2_VP9_SEGMENTATION_FLAG_UPDATE_DATA		0x08
2626b88dbe38SAndrzej Pietrasiewicz #define V4L2_VP9_SEGMENTATION_FLAG_ABS_OR_DELTA_UPDATE	0x10
2627b88dbe38SAndrzej Pietrasiewicz 
2628b88dbe38SAndrzej Pietrasiewicz #define V4L2_VP9_SEG_LVL_ALT_Q				0
2629b88dbe38SAndrzej Pietrasiewicz #define V4L2_VP9_SEG_LVL_ALT_L				1
2630b88dbe38SAndrzej Pietrasiewicz #define V4L2_VP9_SEG_LVL_REF_FRAME			2
2631b88dbe38SAndrzej Pietrasiewicz #define V4L2_VP9_SEG_LVL_SKIP				3
2632b88dbe38SAndrzej Pietrasiewicz #define V4L2_VP9_SEG_LVL_MAX				4
2633b88dbe38SAndrzej Pietrasiewicz 
2634b88dbe38SAndrzej Pietrasiewicz #define V4L2_VP9_SEGMENT_FEATURE_ENABLED(id)	(1 << (id))
2635b88dbe38SAndrzej Pietrasiewicz #define V4L2_VP9_SEGMENT_FEATURE_ENABLED_MASK	0xf
2636b88dbe38SAndrzej Pietrasiewicz 
2637b88dbe38SAndrzej Pietrasiewicz /**
2638b88dbe38SAndrzej Pietrasiewicz  * struct v4l2_vp9_segmentation - VP9 segmentation parameters
2639b88dbe38SAndrzej Pietrasiewicz  *
2640b88dbe38SAndrzej Pietrasiewicz  * @feature_data: data attached to each feature. Data entry is only valid if
2641b88dbe38SAndrzej Pietrasiewicz  * the feature is enabled. The array shall be indexed with segment number as
2642b88dbe38SAndrzej Pietrasiewicz  * the first dimension (0..7) and one of V4L2_VP9_SEG_{} as the second dimension.
2643b88dbe38SAndrzej Pietrasiewicz  * @feature_enabled: bitmask defining which features are enabled in each segment.
2644b88dbe38SAndrzej Pietrasiewicz  * The value for each segment is a combination of V4L2_VP9_SEGMENT_FEATURE_ENABLED(id)
2645b88dbe38SAndrzej Pietrasiewicz  * values where id is one of V4L2_VP9_SEG_LVL_{}.
2646b88dbe38SAndrzej Pietrasiewicz  * @tree_probs: specifies the probability values to be used when decoding a
2647b88dbe38SAndrzej Pietrasiewicz  * Segment-ID. See '5.15. Segmentation map' section of the VP9 specification
2648b88dbe38SAndrzej Pietrasiewicz  * for more details.
2649b88dbe38SAndrzej Pietrasiewicz  * @pred_probs: specifies the probability values to be used when decoding a
2650b88dbe38SAndrzej Pietrasiewicz  * Predicted-Segment-ID. See '6.4.14. Get segment id syntax' section of :ref:`vp9`
2651b88dbe38SAndrzej Pietrasiewicz  * for more details.
2652b88dbe38SAndrzej Pietrasiewicz  * @flags: combination of V4L2_VP9_SEGMENTATION_FLAG_{} flags.
2653b88dbe38SAndrzej Pietrasiewicz  * @reserved: padding field. Should be zeroed by applications.
2654b88dbe38SAndrzej Pietrasiewicz  *
2655b88dbe38SAndrzej Pietrasiewicz  * Encodes the quantization parameters. See section '7.2.10 Segmentation params syntax' of
2656b88dbe38SAndrzej Pietrasiewicz  * the VP9 specification for more details.
2657b88dbe38SAndrzej Pietrasiewicz  */
2658b88dbe38SAndrzej Pietrasiewicz struct v4l2_vp9_segmentation {
2659b88dbe38SAndrzej Pietrasiewicz 	__s16 feature_data[8][4];
2660b88dbe38SAndrzej Pietrasiewicz 	__u8 feature_enabled[8];
2661b88dbe38SAndrzej Pietrasiewicz 	__u8 tree_probs[7];
2662b88dbe38SAndrzej Pietrasiewicz 	__u8 pred_probs[3];
2663b88dbe38SAndrzej Pietrasiewicz 	__u8 flags;
2664b88dbe38SAndrzej Pietrasiewicz 	__u8 reserved[5];
2665b88dbe38SAndrzej Pietrasiewicz };
2666b88dbe38SAndrzej Pietrasiewicz 
2667b88dbe38SAndrzej Pietrasiewicz #define V4L2_VP9_FRAME_FLAG_KEY_FRAME			0x001
2668b88dbe38SAndrzej Pietrasiewicz #define V4L2_VP9_FRAME_FLAG_SHOW_FRAME			0x002
2669b88dbe38SAndrzej Pietrasiewicz #define V4L2_VP9_FRAME_FLAG_ERROR_RESILIENT		0x004
2670b88dbe38SAndrzej Pietrasiewicz #define V4L2_VP9_FRAME_FLAG_INTRA_ONLY			0x008
2671b88dbe38SAndrzej Pietrasiewicz #define V4L2_VP9_FRAME_FLAG_ALLOW_HIGH_PREC_MV		0x010
2672b88dbe38SAndrzej Pietrasiewicz #define V4L2_VP9_FRAME_FLAG_REFRESH_FRAME_CTX		0x020
2673b88dbe38SAndrzej Pietrasiewicz #define V4L2_VP9_FRAME_FLAG_PARALLEL_DEC_MODE		0x040
2674b88dbe38SAndrzej Pietrasiewicz #define V4L2_VP9_FRAME_FLAG_X_SUBSAMPLING		0x080
2675b88dbe38SAndrzej Pietrasiewicz #define V4L2_VP9_FRAME_FLAG_Y_SUBSAMPLING		0x100
2676b88dbe38SAndrzej Pietrasiewicz #define V4L2_VP9_FRAME_FLAG_COLOR_RANGE_FULL_SWING	0x200
2677b88dbe38SAndrzej Pietrasiewicz 
2678b88dbe38SAndrzej Pietrasiewicz #define V4L2_VP9_SIGN_BIAS_LAST				0x1
2679b88dbe38SAndrzej Pietrasiewicz #define V4L2_VP9_SIGN_BIAS_GOLDEN			0x2
2680b88dbe38SAndrzej Pietrasiewicz #define V4L2_VP9_SIGN_BIAS_ALT				0x4
2681b88dbe38SAndrzej Pietrasiewicz 
2682b88dbe38SAndrzej Pietrasiewicz #define V4L2_VP9_RESET_FRAME_CTX_NONE			0
2683b88dbe38SAndrzej Pietrasiewicz #define V4L2_VP9_RESET_FRAME_CTX_SPEC			1
2684b88dbe38SAndrzej Pietrasiewicz #define V4L2_VP9_RESET_FRAME_CTX_ALL			2
2685b88dbe38SAndrzej Pietrasiewicz 
2686b88dbe38SAndrzej Pietrasiewicz #define V4L2_VP9_INTERP_FILTER_EIGHTTAP			0
2687b88dbe38SAndrzej Pietrasiewicz #define V4L2_VP9_INTERP_FILTER_EIGHTTAP_SMOOTH		1
2688b88dbe38SAndrzej Pietrasiewicz #define V4L2_VP9_INTERP_FILTER_EIGHTTAP_SHARP		2
2689b88dbe38SAndrzej Pietrasiewicz #define V4L2_VP9_INTERP_FILTER_BILINEAR			3
2690b88dbe38SAndrzej Pietrasiewicz #define V4L2_VP9_INTERP_FILTER_SWITCHABLE		4
2691b88dbe38SAndrzej Pietrasiewicz 
2692b88dbe38SAndrzej Pietrasiewicz #define V4L2_VP9_REFERENCE_MODE_SINGLE_REFERENCE	0
2693b88dbe38SAndrzej Pietrasiewicz #define V4L2_VP9_REFERENCE_MODE_COMPOUND_REFERENCE	1
2694b88dbe38SAndrzej Pietrasiewicz #define V4L2_VP9_REFERENCE_MODE_SELECT			2
2695b88dbe38SAndrzej Pietrasiewicz 
2696b88dbe38SAndrzej Pietrasiewicz #define V4L2_VP9_PROFILE_MAX				3
2697b88dbe38SAndrzej Pietrasiewicz 
2698b88dbe38SAndrzej Pietrasiewicz #define V4L2_CID_STATELESS_VP9_FRAME	(V4L2_CID_CODEC_STATELESS_BASE + 300)
2699b88dbe38SAndrzej Pietrasiewicz /**
2700b88dbe38SAndrzej Pietrasiewicz  * struct v4l2_ctrl_vp9_frame - VP9 frame decoding control
2701b88dbe38SAndrzej Pietrasiewicz  *
2702b88dbe38SAndrzej Pietrasiewicz  * @lf: loop filter parameters. See &v4l2_vp9_loop_filter for more details.
2703b88dbe38SAndrzej Pietrasiewicz  * @quant: quantization parameters. See &v4l2_vp9_quantization for more details.
2704b88dbe38SAndrzej Pietrasiewicz  * @seg: segmentation parameters. See &v4l2_vp9_segmentation for more details.
2705b88dbe38SAndrzej Pietrasiewicz  * @flags: combination of V4L2_VP9_FRAME_FLAG_{} flags.
2706b88dbe38SAndrzej Pietrasiewicz  * @compressed_header_size: compressed header size in bytes.
2707b88dbe38SAndrzej Pietrasiewicz  * @uncompressed_header_size: uncompressed header size in bytes.
2708b88dbe38SAndrzej Pietrasiewicz  * @frame_width_minus_1: add 1 to it and you'll get the frame width expressed in pixels.
2709b88dbe38SAndrzej Pietrasiewicz  * @frame_height_minus_1: add 1 to it and you'll get the frame height expressed in pixels.
2710b88dbe38SAndrzej Pietrasiewicz  * @render_width_minus_1: add 1 to it and you'll get the expected render width expressed in
2711b88dbe38SAndrzej Pietrasiewicz  * pixels. This is not used during the decoding process but might be used by HW scalers
2712b88dbe38SAndrzej Pietrasiewicz  * to prepare a frame that's ready for scanout.
2713b88dbe38SAndrzej Pietrasiewicz  * @render_height_minus_1: add 1 to it and you'll get the expected render height expressed in
2714b88dbe38SAndrzej Pietrasiewicz  * pixels. This is not used during the decoding process but might be used by HW scalers
2715b88dbe38SAndrzej Pietrasiewicz  * to prepare a frame that's ready for scanout.
2716b88dbe38SAndrzej Pietrasiewicz  * @last_frame_ts: "last" reference buffer timestamp.
2717b88dbe38SAndrzej Pietrasiewicz  * The timestamp refers to the timestamp field in struct v4l2_buffer.
2718b88dbe38SAndrzej Pietrasiewicz  * Use v4l2_timeval_to_ns() to convert the struct timeval to a __u64.
2719b88dbe38SAndrzej Pietrasiewicz  * @golden_frame_ts: "golden" reference buffer timestamp.
2720b88dbe38SAndrzej Pietrasiewicz  * The timestamp refers to the timestamp field in struct v4l2_buffer.
2721b88dbe38SAndrzej Pietrasiewicz  * Use v4l2_timeval_to_ns() to convert the struct timeval to a __u64.
2722b88dbe38SAndrzej Pietrasiewicz  * @alt_frame_ts: "alt" reference buffer timestamp.
2723b88dbe38SAndrzej Pietrasiewicz  * The timestamp refers to the timestamp field in struct v4l2_buffer.
2724b88dbe38SAndrzej Pietrasiewicz  * Use v4l2_timeval_to_ns() to convert the struct timeval to a __u64.
2725b88dbe38SAndrzej Pietrasiewicz  * @ref_frame_sign_bias: a bitfield specifying whether the sign bias is set for a given
2726b88dbe38SAndrzej Pietrasiewicz  * reference frame. Either of V4L2_VP9_SIGN_BIAS_{}.
2727b88dbe38SAndrzej Pietrasiewicz  * @reset_frame_context: specifies whether the frame context should be reset to default values.
2728b88dbe38SAndrzej Pietrasiewicz  * Either of V4L2_VP9_RESET_FRAME_CTX_{}.
2729b88dbe38SAndrzej Pietrasiewicz  * @frame_context_idx: frame context that should be used/updated.
2730b88dbe38SAndrzej Pietrasiewicz  * @profile: VP9 profile. Can be 0, 1, 2 or 3.
2731b88dbe38SAndrzej Pietrasiewicz  * @bit_depth: bits per components. Can be 8, 10 or 12. Note that not all profiles support
2732b88dbe38SAndrzej Pietrasiewicz  * 10 and/or 12 bits depths.
2733b88dbe38SAndrzej Pietrasiewicz  * @interpolation_filter: specifies the filter selection used for performing inter prediction.
2734b88dbe38SAndrzej Pietrasiewicz  * Set to one of V4L2_VP9_INTERP_FILTER_{}.
2735b88dbe38SAndrzej Pietrasiewicz  * @tile_cols_log2: specifies the base 2 logarithm of the width of each tile (where the width
2736b88dbe38SAndrzej Pietrasiewicz  * is measured in units of 8x8 blocks). Shall be less than or equal to 6.
2737b88dbe38SAndrzej Pietrasiewicz  * @tile_rows_log2: specifies the base 2 logarithm of the height of each tile (where the height
2738b88dbe38SAndrzej Pietrasiewicz  * is measured in units of 8x8 blocks).
2739b88dbe38SAndrzej Pietrasiewicz  * @reference_mode: specifies the type of inter prediction to be used.
2740b88dbe38SAndrzej Pietrasiewicz  * Set to one of V4L2_VP9_REFERENCE_MODE_{}.
2741b88dbe38SAndrzej Pietrasiewicz  * @reserved: padding field. Should be zeroed by applications.
2742b88dbe38SAndrzej Pietrasiewicz  */
2743b88dbe38SAndrzej Pietrasiewicz struct v4l2_ctrl_vp9_frame {
2744b88dbe38SAndrzej Pietrasiewicz 	struct v4l2_vp9_loop_filter lf;
2745b88dbe38SAndrzej Pietrasiewicz 	struct v4l2_vp9_quantization quant;
2746b88dbe38SAndrzej Pietrasiewicz 	struct v4l2_vp9_segmentation seg;
2747b88dbe38SAndrzej Pietrasiewicz 	__u32 flags;
2748b88dbe38SAndrzej Pietrasiewicz 	__u16 compressed_header_size;
2749b88dbe38SAndrzej Pietrasiewicz 	__u16 uncompressed_header_size;
2750b88dbe38SAndrzej Pietrasiewicz 	__u16 frame_width_minus_1;
2751b88dbe38SAndrzej Pietrasiewicz 	__u16 frame_height_minus_1;
2752b88dbe38SAndrzej Pietrasiewicz 	__u16 render_width_minus_1;
2753b88dbe38SAndrzej Pietrasiewicz 	__u16 render_height_minus_1;
2754b88dbe38SAndrzej Pietrasiewicz 	__u64 last_frame_ts;
2755b88dbe38SAndrzej Pietrasiewicz 	__u64 golden_frame_ts;
2756b88dbe38SAndrzej Pietrasiewicz 	__u64 alt_frame_ts;
2757b88dbe38SAndrzej Pietrasiewicz 	__u8 ref_frame_sign_bias;
2758b88dbe38SAndrzej Pietrasiewicz 	__u8 reset_frame_context;
2759b88dbe38SAndrzej Pietrasiewicz 	__u8 frame_context_idx;
2760b88dbe38SAndrzej Pietrasiewicz 	__u8 profile;
2761b88dbe38SAndrzej Pietrasiewicz 	__u8 bit_depth;
2762b88dbe38SAndrzej Pietrasiewicz 	__u8 interpolation_filter;
2763b88dbe38SAndrzej Pietrasiewicz 	__u8 tile_cols_log2;
2764b88dbe38SAndrzej Pietrasiewicz 	__u8 tile_rows_log2;
2765b88dbe38SAndrzej Pietrasiewicz 	__u8 reference_mode;
2766b88dbe38SAndrzej Pietrasiewicz 	__u8 reserved[7];
2767b88dbe38SAndrzej Pietrasiewicz };
2768b88dbe38SAndrzej Pietrasiewicz 
2769b88dbe38SAndrzej Pietrasiewicz #define V4L2_VP9_NUM_FRAME_CTX	4
2770b88dbe38SAndrzej Pietrasiewicz 
2771b88dbe38SAndrzej Pietrasiewicz /**
2772b88dbe38SAndrzej Pietrasiewicz  * struct v4l2_vp9_mv_probs - VP9 Motion vector probability updates
2773b88dbe38SAndrzej Pietrasiewicz  * @joint: motion vector joint probability updates.
2774b88dbe38SAndrzej Pietrasiewicz  * @sign: motion vector sign probability updates.
2775b88dbe38SAndrzej Pietrasiewicz  * @classes: motion vector class probability updates.
2776b88dbe38SAndrzej Pietrasiewicz  * @class0_bit: motion vector class0 bit probability updates.
2777b88dbe38SAndrzej Pietrasiewicz  * @bits: motion vector bits probability updates.
2778b88dbe38SAndrzej Pietrasiewicz  * @class0_fr: motion vector class0 fractional bit probability updates.
2779b88dbe38SAndrzej Pietrasiewicz  * @fr: motion vector fractional bit probability updates.
2780b88dbe38SAndrzej Pietrasiewicz  * @class0_hp: motion vector class0 high precision fractional bit probability updates.
2781b88dbe38SAndrzej Pietrasiewicz  * @hp: motion vector high precision fractional bit probability updates.
2782b88dbe38SAndrzej Pietrasiewicz  *
2783b88dbe38SAndrzej Pietrasiewicz  * This structure contains new values of motion vector probabilities.
2784b88dbe38SAndrzej Pietrasiewicz  * A value of zero in an array element means there is no update of the relevant probability.
2785b88dbe38SAndrzej Pietrasiewicz  * See `struct v4l2_vp9_prob_updates` for details.
2786b88dbe38SAndrzej Pietrasiewicz  */
2787b88dbe38SAndrzej Pietrasiewicz struct v4l2_vp9_mv_probs {
2788b88dbe38SAndrzej Pietrasiewicz 	__u8 joint[3];
2789b88dbe38SAndrzej Pietrasiewicz 	__u8 sign[2];
2790b88dbe38SAndrzej Pietrasiewicz 	__u8 classes[2][10];
2791b88dbe38SAndrzej Pietrasiewicz 	__u8 class0_bit[2];
2792b88dbe38SAndrzej Pietrasiewicz 	__u8 bits[2][10];
2793b88dbe38SAndrzej Pietrasiewicz 	__u8 class0_fr[2][2][3];
2794b88dbe38SAndrzej Pietrasiewicz 	__u8 fr[2][3];
2795b88dbe38SAndrzej Pietrasiewicz 	__u8 class0_hp[2];
2796b88dbe38SAndrzej Pietrasiewicz 	__u8 hp[2];
2797b88dbe38SAndrzej Pietrasiewicz };
2798b88dbe38SAndrzej Pietrasiewicz 
2799b88dbe38SAndrzej Pietrasiewicz #define V4L2_CID_STATELESS_VP9_COMPRESSED_HDR	(V4L2_CID_CODEC_STATELESS_BASE + 301)
2800b88dbe38SAndrzej Pietrasiewicz 
2801b88dbe38SAndrzej Pietrasiewicz #define V4L2_VP9_TX_MODE_ONLY_4X4			0
2802b88dbe38SAndrzej Pietrasiewicz #define V4L2_VP9_TX_MODE_ALLOW_8X8			1
2803b88dbe38SAndrzej Pietrasiewicz #define V4L2_VP9_TX_MODE_ALLOW_16X16			2
2804b88dbe38SAndrzej Pietrasiewicz #define V4L2_VP9_TX_MODE_ALLOW_32X32			3
2805b88dbe38SAndrzej Pietrasiewicz #define V4L2_VP9_TX_MODE_SELECT				4
2806b88dbe38SAndrzej Pietrasiewicz 
2807b88dbe38SAndrzej Pietrasiewicz /**
2808b88dbe38SAndrzej Pietrasiewicz  * struct v4l2_ctrl_vp9_compressed_hdr - VP9 probability updates control
2809b88dbe38SAndrzej Pietrasiewicz  * @tx_mode: specifies the TX mode. Set to one of V4L2_VP9_TX_MODE_{}.
2810b88dbe38SAndrzej Pietrasiewicz  * @tx8: TX 8x8 probability updates.
2811b88dbe38SAndrzej Pietrasiewicz  * @tx16: TX 16x16 probability updates.
2812b88dbe38SAndrzej Pietrasiewicz  * @tx32: TX 32x32 probability updates.
2813b88dbe38SAndrzej Pietrasiewicz  * @coef: coefficient probability updates.
2814b88dbe38SAndrzej Pietrasiewicz  * @skip: skip probability updates.
2815b88dbe38SAndrzej Pietrasiewicz  * @inter_mode: inter mode probability updates.
2816b88dbe38SAndrzej Pietrasiewicz  * @interp_filter: interpolation filter probability updates.
2817b88dbe38SAndrzej Pietrasiewicz  * @is_inter: is inter-block probability updates.
2818b88dbe38SAndrzej Pietrasiewicz  * @comp_mode: compound prediction mode probability updates.
2819b88dbe38SAndrzej Pietrasiewicz  * @single_ref: single ref probability updates.
2820b88dbe38SAndrzej Pietrasiewicz  * @comp_ref: compound ref probability updates.
2821b88dbe38SAndrzej Pietrasiewicz  * @y_mode: Y prediction mode probability updates.
2822b88dbe38SAndrzej Pietrasiewicz  * @uv_mode: UV prediction mode probability updates.
2823b88dbe38SAndrzej Pietrasiewicz  * @partition: partition probability updates.
2824b88dbe38SAndrzej Pietrasiewicz  * @mv: motion vector probability updates.
2825b88dbe38SAndrzej Pietrasiewicz  *
2826b88dbe38SAndrzej Pietrasiewicz  * This structure holds the probabilities update as parsed in the compressed
2827b88dbe38SAndrzej Pietrasiewicz  * header (Spec 6.3). These values represent the value of probability update after
2828b88dbe38SAndrzej Pietrasiewicz  * being translated with inv_map_table[] (see 6.3.5). A value of zero in an array element
2829b88dbe38SAndrzej Pietrasiewicz  * means that there is no update of the relevant probability.
2830b88dbe38SAndrzej Pietrasiewicz  *
2831b88dbe38SAndrzej Pietrasiewicz  * This control is optional and needs to be used when dealing with the hardware which is
2832b88dbe38SAndrzej Pietrasiewicz  * not capable of parsing the compressed header itself. Only drivers which need it will
2833b88dbe38SAndrzej Pietrasiewicz  * implement it.
2834b88dbe38SAndrzej Pietrasiewicz  */
2835b88dbe38SAndrzej Pietrasiewicz struct v4l2_ctrl_vp9_compressed_hdr {
2836b88dbe38SAndrzej Pietrasiewicz 	__u8 tx_mode;
2837b88dbe38SAndrzej Pietrasiewicz 	__u8 tx8[2][1];
2838b88dbe38SAndrzej Pietrasiewicz 	__u8 tx16[2][2];
2839b88dbe38SAndrzej Pietrasiewicz 	__u8 tx32[2][3];
2840b88dbe38SAndrzej Pietrasiewicz 	__u8 coef[4][2][2][6][6][3];
2841b88dbe38SAndrzej Pietrasiewicz 	__u8 skip[3];
2842b88dbe38SAndrzej Pietrasiewicz 	__u8 inter_mode[7][3];
2843b88dbe38SAndrzej Pietrasiewicz 	__u8 interp_filter[4][2];
2844b88dbe38SAndrzej Pietrasiewicz 	__u8 is_inter[4];
2845b88dbe38SAndrzej Pietrasiewicz 	__u8 comp_mode[5];
2846b88dbe38SAndrzej Pietrasiewicz 	__u8 single_ref[5][2];
2847b88dbe38SAndrzej Pietrasiewicz 	__u8 comp_ref[5];
2848b88dbe38SAndrzej Pietrasiewicz 	__u8 y_mode[4][9];
2849b88dbe38SAndrzej Pietrasiewicz 	__u8 uv_mode[10][9];
2850b88dbe38SAndrzej Pietrasiewicz 	__u8 partition[16][3];
2851b88dbe38SAndrzej Pietrasiewicz 
2852b88dbe38SAndrzej Pietrasiewicz 	struct v4l2_vp9_mv_probs mv;
2853b88dbe38SAndrzej Pietrasiewicz };
2854b88dbe38SAndrzej Pietrasiewicz 
28559de30f57SDaniel Almeida /* Stateless AV1 controls */
28569de30f57SDaniel Almeida 
28579de30f57SDaniel Almeida #define V4L2_AV1_TOTAL_REFS_PER_FRAME	8
28589de30f57SDaniel Almeida #define V4L2_AV1_CDEF_MAX		8
28599de30f57SDaniel Almeida #define V4L2_AV1_NUM_PLANES_MAX		3 /* 1 if monochrome, 3 otherwise */
28609de30f57SDaniel Almeida #define V4L2_AV1_MAX_SEGMENTS		8
28619de30f57SDaniel Almeida #define V4L2_AV1_MAX_OPERATING_POINTS	(1 << 5) /* 5 bits to encode */
28629de30f57SDaniel Almeida #define V4L2_AV1_REFS_PER_FRAME		7
28639de30f57SDaniel Almeida #define V4L2_AV1_MAX_NUM_Y_POINTS	(1 << 4) /* 4 bits to encode */
28649de30f57SDaniel Almeida #define V4L2_AV1_MAX_NUM_CB_POINTS	(1 << 4) /* 4 bits to encode */
28659de30f57SDaniel Almeida #define V4L2_AV1_MAX_NUM_CR_POINTS	(1 << 4) /* 4 bits to encode */
28669de30f57SDaniel Almeida #define V4L2_AV1_AR_COEFFS_SIZE		25 /* (2 * 3 * (3 + 1)) + 1 */
28679de30f57SDaniel Almeida #define V4L2_AV1_MAX_NUM_PLANES		3
28689de30f57SDaniel Almeida #define V4L2_AV1_MAX_TILE_COLS		64
28699de30f57SDaniel Almeida #define V4L2_AV1_MAX_TILE_ROWS		64
28709de30f57SDaniel Almeida #define V4L2_AV1_MAX_TILE_COUNT		512
28719de30f57SDaniel Almeida 
28729de30f57SDaniel Almeida #define V4L2_AV1_SEQUENCE_FLAG_STILL_PICTURE		  0x00000001
28739de30f57SDaniel Almeida #define V4L2_AV1_SEQUENCE_FLAG_USE_128X128_SUPERBLOCK	  0x00000002
28749de30f57SDaniel Almeida #define V4L2_AV1_SEQUENCE_FLAG_ENABLE_FILTER_INTRA	  0x00000004
28759de30f57SDaniel Almeida #define V4L2_AV1_SEQUENCE_FLAG_ENABLE_INTRA_EDGE_FILTER   0x00000008
28769de30f57SDaniel Almeida #define V4L2_AV1_SEQUENCE_FLAG_ENABLE_INTERINTRA_COMPOUND 0x00000010
28779de30f57SDaniel Almeida #define V4L2_AV1_SEQUENCE_FLAG_ENABLE_MASKED_COMPOUND	  0x00000020
28789de30f57SDaniel Almeida #define V4L2_AV1_SEQUENCE_FLAG_ENABLE_WARPED_MOTION	  0x00000040
28799de30f57SDaniel Almeida #define V4L2_AV1_SEQUENCE_FLAG_ENABLE_DUAL_FILTER	  0x00000080
28809de30f57SDaniel Almeida #define V4L2_AV1_SEQUENCE_FLAG_ENABLE_ORDER_HINT	  0x00000100
28819de30f57SDaniel Almeida #define V4L2_AV1_SEQUENCE_FLAG_ENABLE_JNT_COMP		  0x00000200
28829de30f57SDaniel Almeida #define V4L2_AV1_SEQUENCE_FLAG_ENABLE_REF_FRAME_MVS	  0x00000400
28839de30f57SDaniel Almeida #define V4L2_AV1_SEQUENCE_FLAG_ENABLE_SUPERRES		  0x00000800
28849de30f57SDaniel Almeida #define V4L2_AV1_SEQUENCE_FLAG_ENABLE_CDEF		  0x00001000
28859de30f57SDaniel Almeida #define V4L2_AV1_SEQUENCE_FLAG_ENABLE_RESTORATION	  0x00002000
28869de30f57SDaniel Almeida #define V4L2_AV1_SEQUENCE_FLAG_MONO_CHROME		  0x00004000
28879de30f57SDaniel Almeida #define V4L2_AV1_SEQUENCE_FLAG_COLOR_RANGE		  0x00008000
28889de30f57SDaniel Almeida #define V4L2_AV1_SEQUENCE_FLAG_SUBSAMPLING_X		  0x00010000
28899de30f57SDaniel Almeida #define V4L2_AV1_SEQUENCE_FLAG_SUBSAMPLING_Y		  0x00020000
28909de30f57SDaniel Almeida #define V4L2_AV1_SEQUENCE_FLAG_FILM_GRAIN_PARAMS_PRESENT  0x00040000
28919de30f57SDaniel Almeida #define V4L2_AV1_SEQUENCE_FLAG_SEPARATE_UV_DELTA_Q	  0x00080000
28929de30f57SDaniel Almeida 
28939de30f57SDaniel Almeida #define V4L2_CID_STATELESS_AV1_SEQUENCE (V4L2_CID_CODEC_STATELESS_BASE + 500)
28949de30f57SDaniel Almeida /**
28959de30f57SDaniel Almeida  * struct v4l2_ctrl_av1_sequence - AV1 Sequence
28969de30f57SDaniel Almeida  *
28979de30f57SDaniel Almeida  * Represents an AV1 Sequence OBU. See section 5.5 "Sequence header OBU syntax"
28989de30f57SDaniel Almeida  * for more details.
28999de30f57SDaniel Almeida  *
29009de30f57SDaniel Almeida  * @flags: See V4L2_AV1_SEQUENCE_FLAG_{}.
29019de30f57SDaniel Almeida  * @seq_profile: specifies the features that can be used in the coded video
29029de30f57SDaniel Almeida  * sequence.
29039de30f57SDaniel Almeida  * @order_hint_bits: specifies the number of bits used for the order_hint field
29049de30f57SDaniel Almeida  * at each frame.
29059de30f57SDaniel Almeida  * @bit_depth: the bitdepth to use for the sequence as described in section
29069de30f57SDaniel Almeida  * 5.5.2 "Color config syntax".
29079de30f57SDaniel Almeida  * @reserved: padding field. Should be zeroed by applications.
29089de30f57SDaniel Almeida  * @max_frame_width_minus_1: specifies the maximum frame width minus 1 for the
29099de30f57SDaniel Almeida  * frames represented by this sequence header.
29109de30f57SDaniel Almeida  * @max_frame_height_minus_1: specifies the maximum frame height minus 1 for the
29119de30f57SDaniel Almeida  * frames represented by this sequence header.
29129de30f57SDaniel Almeida  */
29139de30f57SDaniel Almeida struct v4l2_ctrl_av1_sequence {
29149de30f57SDaniel Almeida 	__u32 flags;
29159de30f57SDaniel Almeida 	__u8 seq_profile;
29169de30f57SDaniel Almeida 	__u8 order_hint_bits;
29179de30f57SDaniel Almeida 	__u8 bit_depth;
29189de30f57SDaniel Almeida 	__u8 reserved;
29199de30f57SDaniel Almeida 	__u16 max_frame_width_minus_1;
29209de30f57SDaniel Almeida 	__u16 max_frame_height_minus_1;
29219de30f57SDaniel Almeida };
29229de30f57SDaniel Almeida 
29239de30f57SDaniel Almeida #define V4L2_CID_STATELESS_AV1_TILE_GROUP_ENTRY (V4L2_CID_CODEC_STATELESS_BASE + 501)
29249de30f57SDaniel Almeida /**
29259de30f57SDaniel Almeida  * struct v4l2_ctrl_av1_tile_group_entry - AV1 Tile Group entry
29269de30f57SDaniel Almeida  *
29279de30f57SDaniel Almeida  * Represents a single AV1 tile inside an AV1 Tile Group. Note that MiRowStart,
29289de30f57SDaniel Almeida  * MiRowEnd, MiColStart and MiColEnd can be retrieved from struct
29299de30f57SDaniel Almeida  * v4l2_av1_tile_info in struct v4l2_ctrl_av1_frame using tile_row and
29309de30f57SDaniel Almeida  * tile_col. See section 6.10.1 "General tile group OBU semantics" for more
29319de30f57SDaniel Almeida  * details.
29329de30f57SDaniel Almeida  *
29339de30f57SDaniel Almeida  * @tile_offset: offset from the OBU data, i.e. where the coded tile data
29349de30f57SDaniel Almeida  * actually starts.
29359de30f57SDaniel Almeida  * @tile_size: specifies the size in bytes of the coded tile. Equivalent to
29369de30f57SDaniel Almeida  * "TileSize" in the AV1 Specification.
29379de30f57SDaniel Almeida  * @tile_row: specifies the row of the current tile. Equivalent to "TileRow" in
29389de30f57SDaniel Almeida  * the AV1 Specification.
29399de30f57SDaniel Almeida  * @tile_col: specifies the col of the current tile. Equivalent to "TileCol" in
29409de30f57SDaniel Almeida  * the AV1 Specification.
29419de30f57SDaniel Almeida  */
29429de30f57SDaniel Almeida struct v4l2_ctrl_av1_tile_group_entry {
29439de30f57SDaniel Almeida 	__u32 tile_offset;
29449de30f57SDaniel Almeida 	__u32 tile_size;
29459de30f57SDaniel Almeida 	__u32 tile_row;
29469de30f57SDaniel Almeida 	__u32 tile_col;
29479de30f57SDaniel Almeida };
29489de30f57SDaniel Almeida 
29499de30f57SDaniel Almeida /**
29509de30f57SDaniel Almeida  * enum v4l2_av1_warp_model - AV1 Warp Model as described in section 3
29519de30f57SDaniel Almeida  * "Symbols and abbreviated terms" of the AV1 Specification.
29529de30f57SDaniel Almeida  *
29539de30f57SDaniel Almeida  * @V4L2_AV1_WARP_MODEL_IDENTITY: Warp model is just an identity transform.
29549de30f57SDaniel Almeida  * @V4L2_AV1_WARP_MODEL_TRANSLATION: Warp model is a pure translation.
29559de30f57SDaniel Almeida  * @V4L2_AV1_WARP_MODEL_ROTZOOM: Warp model is a rotation + symmetric zoom +
29569de30f57SDaniel Almeida  * translation.
29579de30f57SDaniel Almeida  * @V4L2_AV1_WARP_MODEL_AFFINE: Warp model is a general affine transform.
29589de30f57SDaniel Almeida  */
29599de30f57SDaniel Almeida enum v4l2_av1_warp_model {
29609de30f57SDaniel Almeida 	V4L2_AV1_WARP_MODEL_IDENTITY = 0,
29619de30f57SDaniel Almeida 	V4L2_AV1_WARP_MODEL_TRANSLATION = 1,
29629de30f57SDaniel Almeida 	V4L2_AV1_WARP_MODEL_ROTZOOM = 2,
29639de30f57SDaniel Almeida 	V4L2_AV1_WARP_MODEL_AFFINE = 3,
29649de30f57SDaniel Almeida };
29659de30f57SDaniel Almeida 
29669de30f57SDaniel Almeida /**
29679de30f57SDaniel Almeida  * enum v4l2_av1_reference_frame - AV1 reference frames
29689de30f57SDaniel Almeida  *
29699de30f57SDaniel Almeida  * @V4L2_AV1_REF_INTRA_FRAME: Intra Frame Reference
29709de30f57SDaniel Almeida  * @V4L2_AV1_REF_LAST_FRAME: Last Reference Frame
29719de30f57SDaniel Almeida  * @V4L2_AV1_REF_LAST2_FRAME: Last2 Reference Frame
29729de30f57SDaniel Almeida  * @V4L2_AV1_REF_LAST3_FRAME: Last3 Reference Frame
29739de30f57SDaniel Almeida  * @V4L2_AV1_REF_GOLDEN_FRAME: Golden Reference Frame
29749de30f57SDaniel Almeida  * @V4L2_AV1_REF_BWDREF_FRAME: BWD Reference Frame
29759de30f57SDaniel Almeida  * @V4L2_AV1_REF_ALTREF2_FRAME: Alternative2 Reference Frame
29769de30f57SDaniel Almeida  * @V4L2_AV1_REF_ALTREF_FRAME: Alternative Reference Frame
29779de30f57SDaniel Almeida  */
29789de30f57SDaniel Almeida enum v4l2_av1_reference_frame {
29799de30f57SDaniel Almeida 	V4L2_AV1_REF_INTRA_FRAME = 0,
29809de30f57SDaniel Almeida 	V4L2_AV1_REF_LAST_FRAME = 1,
29819de30f57SDaniel Almeida 	V4L2_AV1_REF_LAST2_FRAME = 2,
29829de30f57SDaniel Almeida 	V4L2_AV1_REF_LAST3_FRAME = 3,
29839de30f57SDaniel Almeida 	V4L2_AV1_REF_GOLDEN_FRAME = 4,
29849de30f57SDaniel Almeida 	V4L2_AV1_REF_BWDREF_FRAME = 5,
29859de30f57SDaniel Almeida 	V4L2_AV1_REF_ALTREF2_FRAME = 6,
29869de30f57SDaniel Almeida 	V4L2_AV1_REF_ALTREF_FRAME = 7,
29879de30f57SDaniel Almeida };
29889de30f57SDaniel Almeida 
29899de30f57SDaniel Almeida #define V4L2_AV1_GLOBAL_MOTION_IS_INVALID(ref) (1 << (ref))
29909de30f57SDaniel Almeida 
29919de30f57SDaniel Almeida #define V4L2_AV1_GLOBAL_MOTION_FLAG_IS_GLOBAL	   0x1
29929de30f57SDaniel Almeida #define V4L2_AV1_GLOBAL_MOTION_FLAG_IS_ROT_ZOOM	   0x2
29939de30f57SDaniel Almeida #define V4L2_AV1_GLOBAL_MOTION_FLAG_IS_TRANSLATION 0x4
29949de30f57SDaniel Almeida /**
29959de30f57SDaniel Almeida  * struct v4l2_av1_global_motion - AV1 Global Motion parameters as described in
29969de30f57SDaniel Almeida  * section 6.8.17 "Global motion params semantics" of the AV1 specification.
29979de30f57SDaniel Almeida  *
29989de30f57SDaniel Almeida  * @flags: A bitfield containing the flags per reference frame. See
29999de30f57SDaniel Almeida  * V4L2_AV1_GLOBAL_MOTION_FLAG_{}
30009de30f57SDaniel Almeida  * @type: The type of global motion transform used.
30019de30f57SDaniel Almeida  * @params: this field has the same meaning as "gm_params" in the AV1
30029de30f57SDaniel Almeida  * specification.
30039de30f57SDaniel Almeida  * @invalid: bitfield indicating whether the global motion params are invalid
30049de30f57SDaniel Almeida  * for a given reference frame. See section 7.11.3.6 Setup shear process and
30059de30f57SDaniel Almeida  * the variable "warpValid". Use V4L2_AV1_GLOBAL_MOTION_IS_INVALID(ref) to
30069de30f57SDaniel Almeida  * create a suitable mask.
30079de30f57SDaniel Almeida  * @reserved: padding field. Should be zeroed by applications.
30089de30f57SDaniel Almeida  */
30099de30f57SDaniel Almeida 
30109de30f57SDaniel Almeida struct v4l2_av1_global_motion {
30119de30f57SDaniel Almeida 	__u8 flags[V4L2_AV1_TOTAL_REFS_PER_FRAME];
30129de30f57SDaniel Almeida 	enum v4l2_av1_warp_model type[V4L2_AV1_TOTAL_REFS_PER_FRAME];
30139de30f57SDaniel Almeida 	__s32 params[V4L2_AV1_TOTAL_REFS_PER_FRAME][6];
30149de30f57SDaniel Almeida 	__u8 invalid;
30159de30f57SDaniel Almeida 	__u8 reserved[3];
30169de30f57SDaniel Almeida };
30179de30f57SDaniel Almeida 
30189de30f57SDaniel Almeida /**
30199de30f57SDaniel Almeida  * enum v4l2_av1_frame_restoration_type - AV1 Frame Restoration Type
30209de30f57SDaniel Almeida  * @V4L2_AV1_FRAME_RESTORE_NONE: no filtering is applied.
30219de30f57SDaniel Almeida  * @V4L2_AV1_FRAME_RESTORE_WIENER: Wiener filter process is invoked.
30229de30f57SDaniel Almeida  * @V4L2_AV1_FRAME_RESTORE_SGRPROJ: self guided filter process is invoked.
30239de30f57SDaniel Almeida  * @V4L2_AV1_FRAME_RESTORE_SWITCHABLE: restoration filter is swichtable.
30249de30f57SDaniel Almeida  */
30259de30f57SDaniel Almeida enum v4l2_av1_frame_restoration_type {
30269de30f57SDaniel Almeida 	V4L2_AV1_FRAME_RESTORE_NONE = 0,
30279de30f57SDaniel Almeida 	V4L2_AV1_FRAME_RESTORE_WIENER = 1,
30289de30f57SDaniel Almeida 	V4L2_AV1_FRAME_RESTORE_SGRPROJ = 2,
30299de30f57SDaniel Almeida 	V4L2_AV1_FRAME_RESTORE_SWITCHABLE = 3,
30309de30f57SDaniel Almeida };
30319de30f57SDaniel Almeida 
30329de30f57SDaniel Almeida #define V4L2_AV1_LOOP_RESTORATION_FLAG_USES_LR		0x1
30339de30f57SDaniel Almeida #define V4L2_AV1_LOOP_RESTORATION_FLAG_USES_CHROMA_LR	0x2
30349de30f57SDaniel Almeida 
30359de30f57SDaniel Almeida /**
30369de30f57SDaniel Almeida  * struct v4l2_av1_loop_restoration - AV1 Loop Restauration as described in
30379de30f57SDaniel Almeida  * section 6.10.15 "Loop restoration params semantics" of the AV1 specification.
30389de30f57SDaniel Almeida  *
30399de30f57SDaniel Almeida  * @flags: See V4L2_AV1_LOOP_RESTORATION_FLAG_{}.
30409de30f57SDaniel Almeida  * @lr_unit_shift: specifies if the luma restoration size should be halved.
30419de30f57SDaniel Almeida  * @lr_uv_shift: specifies if the chroma size should be half the luma size.
30429de30f57SDaniel Almeida  * @reserved: padding field. Should be zeroed by applications.
30439de30f57SDaniel Almeida  * @frame_restoration_type: specifies the type of restoration used for each
30449de30f57SDaniel Almeida  * plane. See enum v4l2_av1_frame_restoration_type.
30459de30f57SDaniel Almeida  * @loop_restoration_size: specifies the size of loop restoration units in units
30469de30f57SDaniel Almeida  * of samples in the current plane.
30479de30f57SDaniel Almeida  */
30489de30f57SDaniel Almeida struct v4l2_av1_loop_restoration {
30499de30f57SDaniel Almeida 	__u8 flags;
30509de30f57SDaniel Almeida 	__u8 lr_unit_shift;
30519de30f57SDaniel Almeida 	__u8 lr_uv_shift;
30529de30f57SDaniel Almeida 	__u8 reserved;
30539de30f57SDaniel Almeida 	enum v4l2_av1_frame_restoration_type frame_restoration_type[V4L2_AV1_NUM_PLANES_MAX];
30549de30f57SDaniel Almeida 	__u32 loop_restoration_size[V4L2_AV1_MAX_NUM_PLANES];
30559de30f57SDaniel Almeida };
30569de30f57SDaniel Almeida 
30579de30f57SDaniel Almeida /**
30589de30f57SDaniel Almeida  * struct v4l2_av1_cdef - AV1 CDEF params semantics as described in section
30599de30f57SDaniel Almeida  * 6.10.14 "CDEF params semantics" of the AV1 specification
30609de30f57SDaniel Almeida  *
30619de30f57SDaniel Almeida  * @damping_minus_3: controls the amount of damping in the deringing filter.
30629de30f57SDaniel Almeida  * @bits: specifies the number of bits needed to specify which CDEF filter to
30639de30f57SDaniel Almeida  * apply.
30649de30f57SDaniel Almeida  * @y_pri_strength: specifies the strength of the primary filter.
30659de30f57SDaniel Almeida  * @y_sec_strength: specifies the strength of the secondary filter.
30669de30f57SDaniel Almeida  * @uv_pri_strength: specifies the strength of the primary filter.
30679de30f57SDaniel Almeida  * @uv_sec_strength: specifies the strength of the secondary filter.
30689de30f57SDaniel Almeida  */
30699de30f57SDaniel Almeida struct v4l2_av1_cdef {
30709de30f57SDaniel Almeida 	__u8 damping_minus_3;
30719de30f57SDaniel Almeida 	__u8 bits;
30729de30f57SDaniel Almeida 	__u8 y_pri_strength[V4L2_AV1_CDEF_MAX];
30739de30f57SDaniel Almeida 	__u8 y_sec_strength[V4L2_AV1_CDEF_MAX];
30749de30f57SDaniel Almeida 	__u8 uv_pri_strength[V4L2_AV1_CDEF_MAX];
30759de30f57SDaniel Almeida 	__u8 uv_sec_strength[V4L2_AV1_CDEF_MAX];
30769de30f57SDaniel Almeida };
30779de30f57SDaniel Almeida 
30789de30f57SDaniel Almeida #define V4L2_AV1_SEGMENTATION_FLAG_ENABLED	   0x1
30799de30f57SDaniel Almeida #define V4L2_AV1_SEGMENTATION_FLAG_UPDATE_MAP	   0x2
30809de30f57SDaniel Almeida #define V4L2_AV1_SEGMENTATION_FLAG_TEMPORAL_UPDATE 0x4
30819de30f57SDaniel Almeida #define V4L2_AV1_SEGMENTATION_FLAG_UPDATE_DATA	   0x8
30829de30f57SDaniel Almeida #define V4L2_AV1_SEGMENTATION_FLAG_SEG_ID_PRE_SKIP 0x10
30839de30f57SDaniel Almeida 
30849de30f57SDaniel Almeida /**
30859de30f57SDaniel Almeida  * enum v4l2_av1_segment_feature - AV1 segment features as described in section
30869de30f57SDaniel Almeida  * 3 "Symbols and abbreviated terms" of the AV1 specification.
30879de30f57SDaniel Almeida  *
30889de30f57SDaniel Almeida  * @V4L2_AV1_SEG_LVL_ALT_Q: Index for quantizer segment feature.
30899de30f57SDaniel Almeida  * @V4L2_AV1_SEG_LVL_ALT_LF_Y_V: Index for vertical luma loop filter segment
30909de30f57SDaniel Almeida  * feature.
30919de30f57SDaniel Almeida  * @V4L2_AV1_SEG_LVL_REF_FRAME: Index for reference frame segment feature.
30929de30f57SDaniel Almeida  * @V4L2_AV1_SEG_LVL_REF_SKIP: Index for skip segment feature.
30939de30f57SDaniel Almeida  * @V4L2_AV1_SEG_LVL_REF_GLOBALMV: Index for global mv feature.
30949de30f57SDaniel Almeida  * @V4L2_AV1_SEG_LVL_MAX: Number of segment features.
30959de30f57SDaniel Almeida  */
30969de30f57SDaniel Almeida enum v4l2_av1_segment_feature {
30979de30f57SDaniel Almeida 	V4L2_AV1_SEG_LVL_ALT_Q = 0,
30989de30f57SDaniel Almeida 	V4L2_AV1_SEG_LVL_ALT_LF_Y_V = 1,
30999de30f57SDaniel Almeida 	V4L2_AV1_SEG_LVL_REF_FRAME = 5,
31009de30f57SDaniel Almeida 	V4L2_AV1_SEG_LVL_REF_SKIP = 6,
31019de30f57SDaniel Almeida 	V4L2_AV1_SEG_LVL_REF_GLOBALMV = 7,
31029de30f57SDaniel Almeida 	V4L2_AV1_SEG_LVL_MAX = 8
31039de30f57SDaniel Almeida };
31049de30f57SDaniel Almeida 
31059de30f57SDaniel Almeida #define V4L2_AV1_SEGMENT_FEATURE_ENABLED(id)	(1 << (id))
31069de30f57SDaniel Almeida 
31079de30f57SDaniel Almeida /**
31089de30f57SDaniel Almeida  * struct v4l2_av1_segmentation - AV1 Segmentation params as defined in section
31099de30f57SDaniel Almeida  * 6.8.13 "Segmentation params semantics" of the AV1 specification.
31109de30f57SDaniel Almeida  *
31119de30f57SDaniel Almeida  * @flags: see V4L2_AV1_SEGMENTATION_FLAG_{}.
31129de30f57SDaniel Almeida  * @last_active_seg_id: indicates the highest numbered segment id that has some
31139de30f57SDaniel Almeida  * enabled feature. This is used when decoding the segment id to only decode
31149de30f57SDaniel Almeida  * choices corresponding to used segments.
31159de30f57SDaniel Almeida  * @feature_enabled: bitmask defining which features are enabled in each
31169de30f57SDaniel Almeida  * segment. Use V4L2_AV1_SEGMENT_FEATURE_ENABLED to build a suitable mask.
31179de30f57SDaniel Almeida  * @feature_data: data attached to each feature. Data entry is only valid if the
31189de30f57SDaniel Almeida  * feature is enabled
31199de30f57SDaniel Almeida  */
31209de30f57SDaniel Almeida struct v4l2_av1_segmentation {
31219de30f57SDaniel Almeida 	__u8 flags;
31229de30f57SDaniel Almeida 	__u8 last_active_seg_id;
31239de30f57SDaniel Almeida 	__u8 feature_enabled[V4L2_AV1_MAX_SEGMENTS];
31249de30f57SDaniel Almeida 	__s16 feature_data[V4L2_AV1_MAX_SEGMENTS][V4L2_AV1_SEG_LVL_MAX];
31259de30f57SDaniel Almeida };
31269de30f57SDaniel Almeida 
31279de30f57SDaniel Almeida #define V4L2_AV1_LOOP_FILTER_FLAG_DELTA_ENABLED    0x1
31289de30f57SDaniel Almeida #define V4L2_AV1_LOOP_FILTER_FLAG_DELTA_UPDATE     0x2
31299de30f57SDaniel Almeida #define V4L2_AV1_LOOP_FILTER_FLAG_DELTA_LF_PRESENT 0x4
31309de30f57SDaniel Almeida #define V4L2_AV1_LOOP_FILTER_FLAG_DELTA_LF_MULTI   0x8
31319de30f57SDaniel Almeida 
31329de30f57SDaniel Almeida /**
31339de30f57SDaniel Almeida  * struct v4l2_av1_loop_filter - AV1 Loop filter params as defined in section
31349de30f57SDaniel Almeida  * 6.8.10 "Loop filter semantics" and 6.8.16 "Loop filter delta parameters
31359de30f57SDaniel Almeida  * semantics" of the AV1 specification.
31369de30f57SDaniel Almeida  *
31379de30f57SDaniel Almeida  * @flags: see V4L2_AV1_LOOP_FILTER_FLAG_{}
31389de30f57SDaniel Almeida  * @level: an array containing loop filter strength values. Different loop
31399de30f57SDaniel Almeida  * filter strength values from the array are used depending on the image plane
31409de30f57SDaniel Almeida  * being filtered, and the edge direction (vertical or horizontal) being
31419de30f57SDaniel Almeida  * filtered.
31429de30f57SDaniel Almeida  * @sharpness: indicates the sharpness level. The loop_filter_level and
31439de30f57SDaniel Almeida  * loop_filter_sharpness together determine when a block edge is filtered, and
31449de30f57SDaniel Almeida  * by how much the filtering can change the sample values. The loop filter
31459de30f57SDaniel Almeida  * process is described in section 7.14 of the AV1 specification.
31469de30f57SDaniel Almeida  * @ref_deltas: contains the adjustment needed for the filter level based on the
31479de30f57SDaniel Almeida  * chosen reference frame. If this syntax element is not present, it maintains
31489de30f57SDaniel Almeida  * its previous value.
31499de30f57SDaniel Almeida  * @mode_deltas: contains the adjustment needed for the filter level based on
31509de30f57SDaniel Almeida  * the chosen mode. If this syntax element is not present, it maintains its
31519de30f57SDaniel Almeida  * previous value.
31529de30f57SDaniel Almeida  * @delta_lf_res: specifies the left shift which should be applied to decoded
31539de30f57SDaniel Almeida  * loop filter delta values.
31549de30f57SDaniel Almeida  */
31559de30f57SDaniel Almeida struct v4l2_av1_loop_filter {
31569de30f57SDaniel Almeida 	__u8 flags;
31579de30f57SDaniel Almeida 	__u8 level[4];
31589de30f57SDaniel Almeida 	__u8 sharpness;
31599de30f57SDaniel Almeida 	__s8 ref_deltas[V4L2_AV1_TOTAL_REFS_PER_FRAME];
31609de30f57SDaniel Almeida 	__s8 mode_deltas[2];
31619de30f57SDaniel Almeida 	__u8 delta_lf_res;
31629de30f57SDaniel Almeida };
31639de30f57SDaniel Almeida 
31649de30f57SDaniel Almeida #define V4L2_AV1_QUANTIZATION_FLAG_DIFF_UV_DELTA   0x1
31659de30f57SDaniel Almeida #define V4L2_AV1_QUANTIZATION_FLAG_USING_QMATRIX   0x2
31669de30f57SDaniel Almeida #define V4L2_AV1_QUANTIZATION_FLAG_DELTA_Q_PRESENT 0x4
31679de30f57SDaniel Almeida 
31689de30f57SDaniel Almeida /**
31699de30f57SDaniel Almeida  * struct v4l2_av1_quantization - AV1 Quantization params as defined in section
31709de30f57SDaniel Almeida  * 6.8.11 "Quantization params semantics" of the AV1 specification.
31719de30f57SDaniel Almeida  *
31729de30f57SDaniel Almeida  * @flags: see V4L2_AV1_QUANTIZATION_FLAG_{}
31739de30f57SDaniel Almeida  * @base_q_idx: indicates the base frame qindex. This is used for Y AC
31749de30f57SDaniel Almeida  * coefficients and as the base value for the other quantizers.
31759de30f57SDaniel Almeida  * @delta_q_y_dc: indicates the Y DC quantizer relative to base_q_idx.
31769de30f57SDaniel Almeida  * @delta_q_u_dc: indicates the U DC quantizer relative to base_q_idx.
31779de30f57SDaniel Almeida  * @delta_q_u_ac: indicates the U AC quantizer relative to base_q_idx.
31789de30f57SDaniel Almeida  * @delta_q_v_dc: indicates the V DC quantizer relative to base_q_idx.
31799de30f57SDaniel Almeida  * @delta_q_v_ac: indicates the V AC quantizer relative to base_q_idx.
31809de30f57SDaniel Almeida  * @qm_y: specifies the level in the quantizer matrix that should be used for
31819de30f57SDaniel Almeida  * luma plane decoding.
31829de30f57SDaniel Almeida  * @qm_u: specifies the level in the quantizer matrix that should be used for
31839de30f57SDaniel Almeida  * chroma U plane decoding.
31849de30f57SDaniel Almeida  * @qm_v: specifies the level in the quantizer matrix that should be used for
31859de30f57SDaniel Almeida  * chroma V plane decoding.
31869de30f57SDaniel Almeida  * @delta_q_res: specifies the left shift which should be applied to decoded
31879de30f57SDaniel Almeida  * quantizer index delta values.
31889de30f57SDaniel Almeida  */
31899de30f57SDaniel Almeida struct v4l2_av1_quantization {
31909de30f57SDaniel Almeida 	__u8 flags;
31919de30f57SDaniel Almeida 	__u8 base_q_idx;
31929de30f57SDaniel Almeida 	__s8 delta_q_y_dc;
31939de30f57SDaniel Almeida 	__s8 delta_q_u_dc;
31949de30f57SDaniel Almeida 	__s8 delta_q_u_ac;
31959de30f57SDaniel Almeida 	__s8 delta_q_v_dc;
31969de30f57SDaniel Almeida 	__s8 delta_q_v_ac;
31979de30f57SDaniel Almeida 	__u8 qm_y;
31989de30f57SDaniel Almeida 	__u8 qm_u;
31999de30f57SDaniel Almeida 	__u8 qm_v;
32009de30f57SDaniel Almeida 	__u8 delta_q_res;
32019de30f57SDaniel Almeida };
32029de30f57SDaniel Almeida 
32039de30f57SDaniel Almeida #define V4L2_AV1_TILE_INFO_FLAG_UNIFORM_TILE_SPACING	0x1
32049de30f57SDaniel Almeida 
32059de30f57SDaniel Almeida /**
32069de30f57SDaniel Almeida  * struct v4l2_av1_tile_info - AV1 Tile info as defined in section 6.8.14 "Tile
32079de30f57SDaniel Almeida  * info semantics" of the AV1 specification.
32089de30f57SDaniel Almeida  *
32099de30f57SDaniel Almeida  * @flags: see V4L2_AV1_TILE_INFO_FLAG_{}
32109de30f57SDaniel Almeida  * @context_update_tile_id: specifies which tile to use for the CDF update.
32119de30f57SDaniel Almeida  * @tile_rows: specifies the number of tiles down the frame.
32129de30f57SDaniel Almeida  * @tile_cols: specifies the number of tiles across the frame.
32139de30f57SDaniel Almeida  * @mi_col_starts: an array specifying the start column (in units of 4x4 luma
32149de30f57SDaniel Almeida  * samples) for each tile across the image.
32159de30f57SDaniel Almeida  * @mi_row_starts: an array specifying the start row (in units of 4x4 luma
32169de30f57SDaniel Almeida  * samples) for each tile down the image.
32179de30f57SDaniel Almeida  * @width_in_sbs_minus_1: specifies the width of a tile minus 1 in units of
32189de30f57SDaniel Almeida  * superblocks.
32199de30f57SDaniel Almeida  * @height_in_sbs_minus_1:  specifies the height of a tile minus 1 in units of
32209de30f57SDaniel Almeida  * superblocks.
32219de30f57SDaniel Almeida  * @tile_size_bytes: specifies the number of bytes needed to code each tile
32229de30f57SDaniel Almeida  * size.
32239de30f57SDaniel Almeida  * @reserved: padding field. Should be zeroed by applications.
32249de30f57SDaniel Almeida  */
32259de30f57SDaniel Almeida struct v4l2_av1_tile_info {
32269de30f57SDaniel Almeida 	__u8 flags;
32279de30f57SDaniel Almeida 	__u8 context_update_tile_id;
32289de30f57SDaniel Almeida 	__u8 tile_cols;
32299de30f57SDaniel Almeida 	__u8 tile_rows;
32309de30f57SDaniel Almeida 	__u32 mi_col_starts[V4L2_AV1_MAX_TILE_COLS + 1];
32319de30f57SDaniel Almeida 	__u32 mi_row_starts[V4L2_AV1_MAX_TILE_ROWS + 1];
32329de30f57SDaniel Almeida 	__u32 width_in_sbs_minus_1[V4L2_AV1_MAX_TILE_COLS];
32339de30f57SDaniel Almeida 	__u32 height_in_sbs_minus_1[V4L2_AV1_MAX_TILE_ROWS];
32349de30f57SDaniel Almeida 	__u8 tile_size_bytes;
32359de30f57SDaniel Almeida 	__u8 reserved[3];
32369de30f57SDaniel Almeida };
32379de30f57SDaniel Almeida 
32389de30f57SDaniel Almeida /**
32399de30f57SDaniel Almeida  * enum v4l2_av1_frame_type - AV1 Frame Type
32409de30f57SDaniel Almeida  *
32419de30f57SDaniel Almeida  * @V4L2_AV1_KEY_FRAME: Key frame
32429de30f57SDaniel Almeida  * @V4L2_AV1_INTER_FRAME: Inter frame
32439de30f57SDaniel Almeida  * @V4L2_AV1_INTRA_ONLY_FRAME: Intra-only frame
32449de30f57SDaniel Almeida  * @V4L2_AV1_SWITCH_FRAME: Switch frame
32459de30f57SDaniel Almeida  */
32469de30f57SDaniel Almeida enum v4l2_av1_frame_type {
32479de30f57SDaniel Almeida 	V4L2_AV1_KEY_FRAME = 0,
32489de30f57SDaniel Almeida 	V4L2_AV1_INTER_FRAME = 1,
32499de30f57SDaniel Almeida 	V4L2_AV1_INTRA_ONLY_FRAME = 2,
32509de30f57SDaniel Almeida 	V4L2_AV1_SWITCH_FRAME = 3
32519de30f57SDaniel Almeida };
32529de30f57SDaniel Almeida 
32539de30f57SDaniel Almeida /**
32549de30f57SDaniel Almeida  * enum v4l2_av1_interpolation_filter - AV1 interpolation filter types
32559de30f57SDaniel Almeida  *
32569de30f57SDaniel Almeida  * @V4L2_AV1_INTERPOLATION_FILTER_EIGHTTAP: eight tap filter
32579de30f57SDaniel Almeida  * @V4L2_AV1_INTERPOLATION_FILTER_EIGHTTAP_SMOOTH: eight tap smooth filter
32589de30f57SDaniel Almeida  * @V4L2_AV1_INTERPOLATION_FILTER_EIGHTTAP_SHARP: eight tap sharp filter
32599de30f57SDaniel Almeida  * @V4L2_AV1_INTERPOLATION_FILTER_BILINEAR: bilinear filter
32609de30f57SDaniel Almeida  * @V4L2_AV1_INTERPOLATION_FILTER_SWITCHABLE: filter selection is signaled at
32619de30f57SDaniel Almeida  * the block level
32629de30f57SDaniel Almeida  *
32639de30f57SDaniel Almeida  * See section 6.8.9 "Interpolation filter semantics" of the AV1 specification
32649de30f57SDaniel Almeida  * for more details.
32659de30f57SDaniel Almeida  */
32669de30f57SDaniel Almeida enum v4l2_av1_interpolation_filter {
32679de30f57SDaniel Almeida 	V4L2_AV1_INTERPOLATION_FILTER_EIGHTTAP = 0,
32689de30f57SDaniel Almeida 	V4L2_AV1_INTERPOLATION_FILTER_EIGHTTAP_SMOOTH = 1,
32699de30f57SDaniel Almeida 	V4L2_AV1_INTERPOLATION_FILTER_EIGHTTAP_SHARP = 2,
32709de30f57SDaniel Almeida 	V4L2_AV1_INTERPOLATION_FILTER_BILINEAR = 3,
32719de30f57SDaniel Almeida 	V4L2_AV1_INTERPOLATION_FILTER_SWITCHABLE = 4,
32729de30f57SDaniel Almeida };
32739de30f57SDaniel Almeida 
32749de30f57SDaniel Almeida /**
32759de30f57SDaniel Almeida  * enum v4l2_av1_tx_mode - AV1 Tx mode as described in section 6.8.21 "TX mode
32769de30f57SDaniel Almeida  * semantics" of the AV1 specification.
32779de30f57SDaniel Almeida  * @V4L2_AV1_TX_MODE_ONLY_4X4: the inverse transform will use only 4x4
32789de30f57SDaniel Almeida  * transforms
32799de30f57SDaniel Almeida  * @V4L2_AV1_TX_MODE_LARGEST: the inverse transform will use the largest
32809de30f57SDaniel Almeida  * transform size that fits inside the block
32819de30f57SDaniel Almeida  * @V4L2_AV1_TX_MODE_SELECT: the choice of transform size is specified
32829de30f57SDaniel Almeida  * explicitly for each block.
32839de30f57SDaniel Almeida  */
32849de30f57SDaniel Almeida enum v4l2_av1_tx_mode {
32859de30f57SDaniel Almeida 	V4L2_AV1_TX_MODE_ONLY_4X4 = 0,
32869de30f57SDaniel Almeida 	V4L2_AV1_TX_MODE_LARGEST = 1,
32879de30f57SDaniel Almeida 	V4L2_AV1_TX_MODE_SELECT = 2
32889de30f57SDaniel Almeida };
32899de30f57SDaniel Almeida 
32909de30f57SDaniel Almeida #define V4L2_AV1_FRAME_FLAG_SHOW_FRAME			 0x00000001
32919de30f57SDaniel Almeida #define V4L2_AV1_FRAME_FLAG_SHOWABLE_FRAME		 0x00000002
32929de30f57SDaniel Almeida #define V4L2_AV1_FRAME_FLAG_ERROR_RESILIENT_MODE	 0x00000004
32939de30f57SDaniel Almeida #define V4L2_AV1_FRAME_FLAG_DISABLE_CDF_UPDATE		 0x00000008
32949de30f57SDaniel Almeida #define V4L2_AV1_FRAME_FLAG_ALLOW_SCREEN_CONTENT_TOOLS	 0x00000010
32959de30f57SDaniel Almeida #define V4L2_AV1_FRAME_FLAG_FORCE_INTEGER_MV		 0x00000020
32969de30f57SDaniel Almeida #define V4L2_AV1_FRAME_FLAG_ALLOW_INTRABC		 0x00000040
32979de30f57SDaniel Almeida #define V4L2_AV1_FRAME_FLAG_USE_SUPERRES		 0x00000080
32989de30f57SDaniel Almeida #define V4L2_AV1_FRAME_FLAG_ALLOW_HIGH_PRECISION_MV	 0x00000100
32999de30f57SDaniel Almeida #define V4L2_AV1_FRAME_FLAG_IS_MOTION_MODE_SWITCHABLE	 0x00000200
33009de30f57SDaniel Almeida #define V4L2_AV1_FRAME_FLAG_USE_REF_FRAME_MVS		 0x00000400
33019de30f57SDaniel Almeida #define V4L2_AV1_FRAME_FLAG_DISABLE_FRAME_END_UPDATE_CDF 0x00000800
33029de30f57SDaniel Almeida #define V4L2_AV1_FRAME_FLAG_ALLOW_WARPED_MOTION		 0x00001000
33039de30f57SDaniel Almeida #define V4L2_AV1_FRAME_FLAG_REFERENCE_SELECT		 0x00002000
33049de30f57SDaniel Almeida #define V4L2_AV1_FRAME_FLAG_REDUCED_TX_SET		 0x00004000
33059de30f57SDaniel Almeida #define V4L2_AV1_FRAME_FLAG_SKIP_MODE_ALLOWED		 0x00008000
33069de30f57SDaniel Almeida #define V4L2_AV1_FRAME_FLAG_SKIP_MODE_PRESENT		 0x00010000
33079de30f57SDaniel Almeida #define V4L2_AV1_FRAME_FLAG_FRAME_SIZE_OVERRIDE		 0x00020000
33089de30f57SDaniel Almeida #define V4L2_AV1_FRAME_FLAG_BUFFER_REMOVAL_TIME_PRESENT	 0x00040000
33099de30f57SDaniel Almeida #define V4L2_AV1_FRAME_FLAG_FRAME_REFS_SHORT_SIGNALING	 0x00080000
33109de30f57SDaniel Almeida 
33119de30f57SDaniel Almeida #define V4L2_CID_STATELESS_AV1_FRAME (V4L2_CID_CODEC_STATELESS_BASE + 502)
33129de30f57SDaniel Almeida /**
33139de30f57SDaniel Almeida  * struct v4l2_ctrl_av1_frame - Represents an AV1 Frame Header OBU.
33149de30f57SDaniel Almeida  *
33159de30f57SDaniel Almeida  * @tile_info: tile info
33169de30f57SDaniel Almeida  * @quantization: quantization params
33179de30f57SDaniel Almeida  * @segmentation: segmentation params
33189de30f57SDaniel Almeida  * @superres_denom: the denominator for the upscaling ratio.
33199de30f57SDaniel Almeida  * @loop_filter: loop filter params
33209de30f57SDaniel Almeida  * @cdef: cdef params
33219de30f57SDaniel Almeida  * @skip_mode_frame: specifies the frames to use for compound prediction when
33229de30f57SDaniel Almeida  * skip_mode is equal to 1.
33239de30f57SDaniel Almeida  * @primary_ref_frame: specifies which reference frame contains the CDF values
33249de30f57SDaniel Almeida  * and other state that should be loaded at the start of the frame.
33259de30f57SDaniel Almeida  * @loop_restoration: loop restoration params
33269de30f57SDaniel Almeida  * @global_motion: global motion params
33279de30f57SDaniel Almeida  * @flags: see V4L2_AV1_FRAME_FLAG_{}
33289de30f57SDaniel Almeida  * @frame_type: specifies the AV1 frame type
33299de30f57SDaniel Almeida  * @order_hint: specifies OrderHintBits least significant bits of the expected
33309de30f57SDaniel Almeida  * output order for this frame.
33319de30f57SDaniel Almeida  * @upscaled_width: the upscaled width.
33329de30f57SDaniel Almeida  * @interpolation_filter: specifies the filter selection used for performing
33339de30f57SDaniel Almeida  * inter prediction.
33349de30f57SDaniel Almeida  * @tx_mode: specifies how the transform size is determined.
33359de30f57SDaniel Almeida  * @frame_width_minus_1: add 1 to get the frame's width.
33369de30f57SDaniel Almeida  * @frame_height_minus_1: add 1 to get the frame's height
33379de30f57SDaniel Almeida  * @render_width_minus_1: add 1 to get the render width of the frame in luma
33389de30f57SDaniel Almeida  * samples.
33399de30f57SDaniel Almeida  * @render_height_minus_1: add 1 to get the render height of the frame in luma
33409de30f57SDaniel Almeida  * samples.
33419de30f57SDaniel Almeida  * @current_frame_id: specifies the frame id number for the current frame. Frame
33429de30f57SDaniel Almeida  * id numbers are additional information that do not affect the decoding
33439de30f57SDaniel Almeida  * process, but provide decoders with a way of detecting missing reference
33449de30f57SDaniel Almeida  * frames so that appropriate action can be taken.
33459de30f57SDaniel Almeida  * @buffer_removal_time: specifies the frame removal time in units of DecCT clock
33469de30f57SDaniel Almeida  * ticks counted from the removal time of the last random access point for
33479de30f57SDaniel Almeida  * operating point opNum.
33489de30f57SDaniel Almeida  * @reserved: padding field. Should be zeroed by applications.
33499de30f57SDaniel Almeida  * @order_hints: specifies the expected output order hint for each reference
33509de30f57SDaniel Almeida  * frame. This field corresponds to the OrderHints variable from the
33519de30f57SDaniel Almeida  * specification (section 5.9.2 "Uncompressed header syntax"). As such, this is
33529de30f57SDaniel Almeida  * only used for non-intra frames and ignored otherwise. order_hints[0] is
33539de30f57SDaniel Almeida  * always ignored.
33549de30f57SDaniel Almeida  * @reference_frame_ts: the V4L2 timestamp of the reference frame slots.
33559de30f57SDaniel Almeida  * @ref_frame_idx: used to index into @reference_frame_ts when decoding
33569de30f57SDaniel Almeida  * inter-frames. The meaning of this array is the same as in the specification.
33579de30f57SDaniel Almeida  * The timestamp refers to the timestamp field in struct v4l2_buffer. Use
33589de30f57SDaniel Almeida  * v4l2_timeval_to_ns() to convert the struct timeval to a __u64.
33599de30f57SDaniel Almeida  * @refresh_frame_flags: contains a bitmask that specifies which reference frame
33609de30f57SDaniel Almeida  * slots will be updated with the current frame after it is decoded.
33619de30f57SDaniel Almeida  */
33629de30f57SDaniel Almeida struct v4l2_ctrl_av1_frame {
33639de30f57SDaniel Almeida 	struct v4l2_av1_tile_info tile_info;
33649de30f57SDaniel Almeida 	struct v4l2_av1_quantization quantization;
33659de30f57SDaniel Almeida 	__u8 superres_denom;
33669de30f57SDaniel Almeida 	struct v4l2_av1_segmentation segmentation;
33679de30f57SDaniel Almeida 	struct v4l2_av1_loop_filter loop_filter;
33689de30f57SDaniel Almeida 	struct v4l2_av1_cdef cdef;
33699de30f57SDaniel Almeida 	__u8 skip_mode_frame[2];
33709de30f57SDaniel Almeida 	__u8 primary_ref_frame;
33719de30f57SDaniel Almeida 	struct v4l2_av1_loop_restoration loop_restoration;
33729de30f57SDaniel Almeida 	struct v4l2_av1_global_motion global_motion;
33739de30f57SDaniel Almeida 	__u32 flags;
33749de30f57SDaniel Almeida 	enum v4l2_av1_frame_type frame_type;
33759de30f57SDaniel Almeida 	__u32 order_hint;
33769de30f57SDaniel Almeida 	__u32 upscaled_width;
33779de30f57SDaniel Almeida 	enum v4l2_av1_interpolation_filter interpolation_filter;
33789de30f57SDaniel Almeida 	enum v4l2_av1_tx_mode tx_mode;
33799de30f57SDaniel Almeida 	__u32 frame_width_minus_1;
33809de30f57SDaniel Almeida 	__u32 frame_height_minus_1;
33819de30f57SDaniel Almeida 	__u16 render_width_minus_1;
33829de30f57SDaniel Almeida 	__u16 render_height_minus_1;
33839de30f57SDaniel Almeida 
33849de30f57SDaniel Almeida 	__u32 current_frame_id;
33859de30f57SDaniel Almeida 	__u32 buffer_removal_time[V4L2_AV1_MAX_OPERATING_POINTS];
33869de30f57SDaniel Almeida 	__u8 reserved[4];
33879de30f57SDaniel Almeida 	__u32 order_hints[V4L2_AV1_TOTAL_REFS_PER_FRAME];
33889de30f57SDaniel Almeida 	__u64 reference_frame_ts[V4L2_AV1_TOTAL_REFS_PER_FRAME];
33899de30f57SDaniel Almeida 	__s8 ref_frame_idx[V4L2_AV1_REFS_PER_FRAME];
33909de30f57SDaniel Almeida 	__u8 refresh_frame_flags;
33919de30f57SDaniel Almeida };
33929de30f57SDaniel Almeida 
33939de30f57SDaniel Almeida #define V4L2_AV1_FILM_GRAIN_FLAG_APPLY_GRAIN 0x1
33949de30f57SDaniel Almeida #define V4L2_AV1_FILM_GRAIN_FLAG_UPDATE_GRAIN 0x2
33959de30f57SDaniel Almeida #define V4L2_AV1_FILM_GRAIN_FLAG_CHROMA_SCALING_FROM_LUMA 0x4
33969de30f57SDaniel Almeida #define V4L2_AV1_FILM_GRAIN_FLAG_OVERLAP 0x8
33979de30f57SDaniel Almeida #define V4L2_AV1_FILM_GRAIN_FLAG_CLIP_TO_RESTRICTED_RANGE 0x10
33989de30f57SDaniel Almeida 
33999de30f57SDaniel Almeida #define V4L2_CID_STATELESS_AV1_FILM_GRAIN (V4L2_CID_CODEC_STATELESS_BASE + 505)
34009de30f57SDaniel Almeida /**
34019de30f57SDaniel Almeida  * struct v4l2_ctrl_av1_film_grain - AV1 Film Grain parameters.
34029de30f57SDaniel Almeida  *
34039de30f57SDaniel Almeida  * Film grain parameters as specified by section 6.8.20 of the AV1 Specification.
34049de30f57SDaniel Almeida  *
34059de30f57SDaniel Almeida  * @flags: see V4L2_AV1_FILM_GRAIN_{}.
34069de30f57SDaniel Almeida  * @cr_mult: represents a multiplier for the cr component used in derivation of
34079de30f57SDaniel Almeida  * the input index to the cr component scaling function.
34089de30f57SDaniel Almeida  * @grain_seed: specifies the starting value for the pseudo-random numbers used
34099de30f57SDaniel Almeida  * during film grain synthesis.
34109de30f57SDaniel Almeida  * @film_grain_params_ref_idx: indicates which reference frame contains the
34119de30f57SDaniel Almeida  * film grain parameters to be used for this frame.
34129de30f57SDaniel Almeida  * @num_y_points: specifies the number of points for the piece-wise linear
34139de30f57SDaniel Almeida  * scaling function of the luma component.
34149de30f57SDaniel Almeida  * @point_y_value: represents the x (luma value) coordinate for the i-th point
34159de30f57SDaniel Almeida  * of the piecewise linear scaling function for luma component. The values are
34169de30f57SDaniel Almeida  * signaled on the scale of 0..255. In case of 10 bit video, these values
34179de30f57SDaniel Almeida  * correspond to luma values divided by 4. In case of 12 bit video, these values
34189de30f57SDaniel Almeida  * correspond to luma values divided by 16.
34199de30f57SDaniel Almeida  * @point_y_scaling:  represents the scaling (output) value for the i-th point
34209de30f57SDaniel Almeida  * of the piecewise linear scaling function for luma component.
34219de30f57SDaniel Almeida  * @num_cb_points: specifies the number of points for the piece-wise linear
34229de30f57SDaniel Almeida  * scaling function of the cb component.
34239de30f57SDaniel Almeida  * @point_cb_value: represents the x coordinate for the i-th point of the
34249de30f57SDaniel Almeida  * piece-wise linear scaling function for cb component. The values are signaled
34259de30f57SDaniel Almeida  * on the scale of 0..255.
34269de30f57SDaniel Almeida  * @point_cb_scaling: represents the scaling (output) value for the i-th point
34279de30f57SDaniel Almeida  * of the piecewise linear scaling function for cb component.
34289de30f57SDaniel Almeida  * @num_cr_points: specifies represents the number of points for the piece-wise
34299de30f57SDaniel Almeida  * linear scaling function of the cr component.
34309de30f57SDaniel Almeida  * @point_cr_value:  represents the x coordinate for the i-th point of the
34319de30f57SDaniel Almeida  * piece-wise linear scaling function for cr component. The values are signaled
34329de30f57SDaniel Almeida  * on the scale of 0..255.
34339de30f57SDaniel Almeida  * @point_cr_scaling:  represents the scaling (output) value for the i-th point
34349de30f57SDaniel Almeida  * of the piecewise linear scaling function for cr component.
34359de30f57SDaniel Almeida  * @grain_scaling_minus_8: represents the shift – 8 applied to the values of the
34369de30f57SDaniel Almeida  * chroma component. The grain_scaling_minus_8 can take values of 0..3 and
34379de30f57SDaniel Almeida  * determines the range and quantization step of the standard deviation of film
34389de30f57SDaniel Almeida  * grain.
34399de30f57SDaniel Almeida  * @ar_coeff_lag: specifies the number of auto-regressive coefficients for luma
34409de30f57SDaniel Almeida  * and chroma.
34419de30f57SDaniel Almeida  * @ar_coeffs_y_plus_128: specifies auto-regressive coefficients used for the Y
34429de30f57SDaniel Almeida  * plane.
34439de30f57SDaniel Almeida  * @ar_coeffs_cb_plus_128: specifies auto-regressive coefficients used for the U
34449de30f57SDaniel Almeida  * plane.
34459de30f57SDaniel Almeida  * @ar_coeffs_cr_plus_128: specifies auto-regressive coefficients used for the V
34469de30f57SDaniel Almeida  * plane.
34479de30f57SDaniel Almeida  * @ar_coeff_shift_minus_6: specifies the range of the auto-regressive
34489de30f57SDaniel Almeida  * coefficients. Values of 0, 1, 2, and 3 correspond to the ranges for
34499de30f57SDaniel Almeida  * auto-regressive coefficients of [-2, 2), [-1, 1), [-0.5, 0.5) and [-0.25,
34509de30f57SDaniel Almeida  * 0.25) respectively.
34519de30f57SDaniel Almeida  * @grain_scale_shift: specifies how much the Gaussian random numbers should be
34529de30f57SDaniel Almeida  * scaled down during the grain synthesis process.
34539de30f57SDaniel Almeida  * @cb_mult: represents a multiplier for the cb component used in derivation of
34549de30f57SDaniel Almeida  * the input index to the cb component scaling function.
34559de30f57SDaniel Almeida  * @cb_luma_mult: represents a multiplier for the average luma component used in
34569de30f57SDaniel Almeida  * derivation of the input index to the cb component scaling function.
34579de30f57SDaniel Almeida  * @cr_luma_mult: represents a multiplier for the average luma component used in
34589de30f57SDaniel Almeida  * derivation of the input index to the cr component scaling function.
34599de30f57SDaniel Almeida  * @cb_offset: represents an offset used in derivation of the input index to the
34609de30f57SDaniel Almeida  * cb component scaling function.
34619de30f57SDaniel Almeida  * @cr_offset: represents an offset used in derivation of the input index to the
34629de30f57SDaniel Almeida  * cr component scaling function.
34639de30f57SDaniel Almeida  * @reserved: padding field. Should be zeroed by applications.
34649de30f57SDaniel Almeida  */
34659de30f57SDaniel Almeida struct v4l2_ctrl_av1_film_grain {
34669de30f57SDaniel Almeida 	__u8 flags;
34679de30f57SDaniel Almeida 	__u8 cr_mult;
34689de30f57SDaniel Almeida 	__u16 grain_seed;
34699de30f57SDaniel Almeida 	__u8 film_grain_params_ref_idx;
34709de30f57SDaniel Almeida 	__u8 num_y_points;
34719de30f57SDaniel Almeida 	__u8 point_y_value[V4L2_AV1_MAX_NUM_Y_POINTS];
34729de30f57SDaniel Almeida 	__u8 point_y_scaling[V4L2_AV1_MAX_NUM_Y_POINTS];
34739de30f57SDaniel Almeida 	__u8 num_cb_points;
34749de30f57SDaniel Almeida 	__u8 point_cb_value[V4L2_AV1_MAX_NUM_CB_POINTS];
34759de30f57SDaniel Almeida 	__u8 point_cb_scaling[V4L2_AV1_MAX_NUM_CB_POINTS];
34769de30f57SDaniel Almeida 	__u8 num_cr_points;
34779de30f57SDaniel Almeida 	__u8 point_cr_value[V4L2_AV1_MAX_NUM_CR_POINTS];
34789de30f57SDaniel Almeida 	__u8 point_cr_scaling[V4L2_AV1_MAX_NUM_CR_POINTS];
34799de30f57SDaniel Almeida 	__u8 grain_scaling_minus_8;
34809de30f57SDaniel Almeida 	__u8 ar_coeff_lag;
34819de30f57SDaniel Almeida 	__u8 ar_coeffs_y_plus_128[V4L2_AV1_AR_COEFFS_SIZE];
34829de30f57SDaniel Almeida 	__u8 ar_coeffs_cb_plus_128[V4L2_AV1_AR_COEFFS_SIZE];
34839de30f57SDaniel Almeida 	__u8 ar_coeffs_cr_plus_128[V4L2_AV1_AR_COEFFS_SIZE];
34849de30f57SDaniel Almeida 	__u8 ar_coeff_shift_minus_6;
34859de30f57SDaniel Almeida 	__u8 grain_scale_shift;
34869de30f57SDaniel Almeida 	__u8 cb_mult;
34879de30f57SDaniel Almeida 	__u8 cb_luma_mult;
34889de30f57SDaniel Almeida 	__u8 cr_luma_mult;
34899de30f57SDaniel Almeida 	__u16 cb_offset;
34909de30f57SDaniel Almeida 	__u16 cr_offset;
34919de30f57SDaniel Almeida 	__u8 reserved[4];
34929de30f57SDaniel Almeida };
34939de30f57SDaniel Almeida 
349435aaa6e6SEzequiel Garcia /* MPEG-compression definitions kept for backwards compatibility */
349535aaa6e6SEzequiel Garcia #ifndef __KERNEL__
349635aaa6e6SEzequiel Garcia #define V4L2_CTRL_CLASS_MPEG            V4L2_CTRL_CLASS_CODEC
349735aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_CLASS             V4L2_CID_CODEC_CLASS
349835aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_BASE              V4L2_CID_CODEC_BASE
349935aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_CX2341X_BASE      V4L2_CID_CODEC_CX2341X_BASE
350035aaa6e6SEzequiel Garcia #define V4L2_CID_MPEG_MFC51_BASE        V4L2_CID_CODEC_MFC51_BASE
350135aaa6e6SEzequiel Garcia #endif
350235aaa6e6SEzequiel Garcia 
3503607ca46eSDavid Howells #endif
3504