FFmpeg
defs.h
Go to the documentation of this file.
1 /*
2  *
3  * This file is part of FFmpeg.
4  *
5  * FFmpeg is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2.1 of the License, or (at your option) any later version.
9  *
10  * FFmpeg is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public
16  * License along with FFmpeg; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
18  */
19 
20 #ifndef AVCODEC_DEFS_H
21 #define AVCODEC_DEFS_H
22 
23 /**
24  * @file
25  * @ingroup libavc
26  * Misc types and constants that do not belong anywhere else.
27  */
28 
29 #include <stdint.h>
30 #include <stdlib.h>
31 
32 /**
33  * @ingroup lavc_decoding
34  * Required number of additionally allocated bytes at the end of the input bitstream for decoding.
35  * This is mainly needed because some optimized bitstream readers read
36  * 32 or 64 bit at once and could read over the end.<br>
37  * Note: If the first 23 bits of the additional bytes are not 0, then damaged
38  * MPEG bitstreams could cause overread and segfault.
39  */
40 #define AV_INPUT_BUFFER_PADDING_SIZE 64
41 
42 /**
43  * Verify checksums embedded in the bitstream (could be of either encoded or
44  * decoded data, depending on the format) and print an error message on mismatch.
45  * If AV_EF_EXPLODE is also set, a mismatching checksum will result in the
46  * decoder/demuxer returning an error.
47  */
48 #define AV_EF_CRCCHECK (1<<0)
49 #define AV_EF_BITSTREAM (1<<1) ///< detect bitstream specification deviations
50 #define AV_EF_BUFFER (1<<2) ///< detect improper bitstream length
51 #define AV_EF_EXPLODE (1<<3) ///< abort decoding on minor error detection
52 
53 #define AV_EF_IGNORE_ERR (1<<15) ///< ignore errors and continue
54 #define AV_EF_CAREFUL (1<<16) ///< consider things that violate the spec, are fast to calculate and have not been seen in the wild as errors
55 #define AV_EF_COMPLIANT (1<<17) ///< consider all spec non compliances as errors
56 #define AV_EF_AGGRESSIVE (1<<18) ///< consider things that a sane encoder/muxer should not do as an error
57 
58 #define FF_COMPLIANCE_VERY_STRICT 2 ///< Strictly conform to an older more strict version of the spec or reference software.
59 #define FF_COMPLIANCE_STRICT 1 ///< Strictly conform to all the things in the spec no matter what consequences.
60 #define FF_COMPLIANCE_NORMAL 0
61 #define FF_COMPLIANCE_UNOFFICIAL -1 ///< Allow unofficial extensions
62 #define FF_COMPLIANCE_EXPERIMENTAL -2 ///< Allow nonstandardized experimental things.
63 
64 
65 #define AV_PROFILE_UNKNOWN -99
66 #define AV_PROFILE_RESERVED -100
67 
68 #define AV_PROFILE_AAC_MAIN 0
69 #define AV_PROFILE_AAC_LOW 1
70 #define AV_PROFILE_AAC_SSR 2
71 #define AV_PROFILE_AAC_LTP 3
72 #define AV_PROFILE_AAC_HE 4
73 #define AV_PROFILE_AAC_HE_V2 28
74 #define AV_PROFILE_AAC_LD 22
75 #define AV_PROFILE_AAC_ELD 38
76 #define AV_PROFILE_AAC_USAC 41
77 #define AV_PROFILE_MPEG2_AAC_LOW 128
78 #define AV_PROFILE_MPEG2_AAC_HE 131
79 
80 #define AV_PROFILE_DNXHD 0
81 #define AV_PROFILE_DNXHR_LB 1
82 #define AV_PROFILE_DNXHR_SQ 2
83 #define AV_PROFILE_DNXHR_HQ 3
84 #define AV_PROFILE_DNXHR_HQX 4
85 #define AV_PROFILE_DNXHR_444 5
86 
87 #define AV_PROFILE_DTS 20
88 #define AV_PROFILE_DTS_ES 30
89 #define AV_PROFILE_DTS_96_24 40
90 #define AV_PROFILE_DTS_HD_HRA 50
91 #define AV_PROFILE_DTS_HD_MA 60
92 #define AV_PROFILE_DTS_EXPRESS 70
93 #define AV_PROFILE_DTS_HD_MA_X 61
94 #define AV_PROFILE_DTS_HD_MA_X_IMAX 62
95 
96 #define AV_PROFILE_EAC3_DDP_ATMOS 30
97 
98 #define AV_PROFILE_TRUEHD_ATMOS 30
99 
100 #define AV_PROFILE_MPEG2_422 0
101 #define AV_PROFILE_MPEG2_HIGH 1
102 #define AV_PROFILE_MPEG2_SS 2
103 #define AV_PROFILE_MPEG2_SNR_SCALABLE 3
104 #define AV_PROFILE_MPEG2_MAIN 4
105 #define AV_PROFILE_MPEG2_SIMPLE 5
106 
107 #define AV_PROFILE_H264_CONSTRAINED (1<<9) // 8+1; constraint_set1_flag
108 #define AV_PROFILE_H264_INTRA (1<<11) // 8+3; constraint_set3_flag
109 
110 #define AV_PROFILE_H264_BASELINE 66
111 #define AV_PROFILE_H264_CONSTRAINED_BASELINE (66|AV_PROFILE_H264_CONSTRAINED)
112 #define AV_PROFILE_H264_MAIN 77
113 #define AV_PROFILE_H264_EXTENDED 88
114 #define AV_PROFILE_H264_HIGH 100
115 #define AV_PROFILE_H264_HIGH_10 110
116 #define AV_PROFILE_H264_HIGH_10_INTRA (110|AV_PROFILE_H264_INTRA)
117 #define AV_PROFILE_H264_MULTIVIEW_HIGH 118
118 #define AV_PROFILE_H264_HIGH_422 122
119 #define AV_PROFILE_H264_HIGH_422_INTRA (122|AV_PROFILE_H264_INTRA)
120 #define AV_PROFILE_H264_STEREO_HIGH 128
121 #define AV_PROFILE_H264_HIGH_444 144
122 #define AV_PROFILE_H264_HIGH_444_PREDICTIVE 244
123 #define AV_PROFILE_H264_HIGH_444_INTRA (244|AV_PROFILE_H264_INTRA)
124 #define AV_PROFILE_H264_CAVLC_444 44
125 
126 #define AV_PROFILE_VC1_SIMPLE 0
127 #define AV_PROFILE_VC1_MAIN 1
128 #define AV_PROFILE_VC1_COMPLEX 2
129 #define AV_PROFILE_VC1_ADVANCED 3
130 
131 #define AV_PROFILE_MPEG4_SIMPLE 0
132 #define AV_PROFILE_MPEG4_SIMPLE_SCALABLE 1
133 #define AV_PROFILE_MPEG4_CORE 2
134 #define AV_PROFILE_MPEG4_MAIN 3
135 #define AV_PROFILE_MPEG4_N_BIT 4
136 #define AV_PROFILE_MPEG4_SCALABLE_TEXTURE 5
137 #define AV_PROFILE_MPEG4_SIMPLE_FACE_ANIMATION 6
138 #define AV_PROFILE_MPEG4_BASIC_ANIMATED_TEXTURE 7
139 #define AV_PROFILE_MPEG4_HYBRID 8
140 #define AV_PROFILE_MPEG4_ADVANCED_REAL_TIME 9
141 #define AV_PROFILE_MPEG4_CORE_SCALABLE 10
142 #define AV_PROFILE_MPEG4_ADVANCED_CODING 11
143 #define AV_PROFILE_MPEG4_ADVANCED_CORE 12
144 #define AV_PROFILE_MPEG4_ADVANCED_SCALABLE_TEXTURE 13
145 #define AV_PROFILE_MPEG4_SIMPLE_STUDIO 14
146 #define AV_PROFILE_MPEG4_ADVANCED_SIMPLE 15
147 
148 #define AV_PROFILE_JPEG2000_CSTREAM_RESTRICTION_0 1
149 #define AV_PROFILE_JPEG2000_CSTREAM_RESTRICTION_1 2
150 #define AV_PROFILE_JPEG2000_CSTREAM_NO_RESTRICTION 32768
151 #define AV_PROFILE_JPEG2000_DCINEMA_2K 3
152 #define AV_PROFILE_JPEG2000_DCINEMA_4K 4
153 
154 #define AV_PROFILE_VP9_0 0
155 #define AV_PROFILE_VP9_1 1
156 #define AV_PROFILE_VP9_2 2
157 #define AV_PROFILE_VP9_3 3
158 
159 #define AV_PROFILE_HEVC_MAIN 1
160 #define AV_PROFILE_HEVC_MAIN_10 2
161 #define AV_PROFILE_HEVC_MAIN_STILL_PICTURE 3
162 #define AV_PROFILE_HEVC_REXT 4
163 #define AV_PROFILE_HEVC_SCC 9
164 
165 #define AV_PROFILE_VVC_MAIN_10 1
166 #define AV_PROFILE_VVC_MAIN_10_444 33
167 
168 #define AV_PROFILE_AV1_MAIN 0
169 #define AV_PROFILE_AV1_HIGH 1
170 #define AV_PROFILE_AV1_PROFESSIONAL 2
171 
172 #define AV_PROFILE_MJPEG_HUFFMAN_BASELINE_DCT 0xc0
173 #define AV_PROFILE_MJPEG_HUFFMAN_EXTENDED_SEQUENTIAL_DCT 0xc1
174 #define AV_PROFILE_MJPEG_HUFFMAN_PROGRESSIVE_DCT 0xc2
175 #define AV_PROFILE_MJPEG_HUFFMAN_LOSSLESS 0xc3
176 #define AV_PROFILE_MJPEG_JPEG_LS 0xf7
177 
178 #define AV_PROFILE_SBC_MSBC 1
179 
180 #define AV_PROFILE_PRORES_PROXY 0
181 #define AV_PROFILE_PRORES_LT 1
182 #define AV_PROFILE_PRORES_STANDARD 2
183 #define AV_PROFILE_PRORES_HQ 3
184 #define AV_PROFILE_PRORES_4444 4
185 #define AV_PROFILE_PRORES_XQ 5
186 
187 #define AV_PROFILE_ARIB_PROFILE_A 0
188 #define AV_PROFILE_ARIB_PROFILE_C 1
189 
190 #define AV_PROFILE_KLVA_SYNC 0
191 #define AV_PROFILE_KLVA_ASYNC 1
192 
193 #define AV_PROFILE_EVC_BASELINE 0
194 #define AV_PROFILE_EVC_MAIN 1
195 
196 
197 #define AV_LEVEL_UNKNOWN -99
198 
202  AV_FIELD_TT, ///< Top coded_first, top displayed first
203  AV_FIELD_BB, ///< Bottom coded first, bottom displayed first
204  AV_FIELD_TB, ///< Top coded first, bottom displayed first
205  AV_FIELD_BT, ///< Bottom coded first, top displayed first
206 };
207 
208 /**
209  * @ingroup lavc_decoding
210  */
212  /* We leave some space between them for extensions (drop some
213  * keyframes for intra-only or drop just some bidir frames). */
214  AVDISCARD_NONE =-16, ///< discard nothing
215  AVDISCARD_DEFAULT = 0, ///< discard useless packets like 0 size packets in avi
216  AVDISCARD_NONREF = 8, ///< discard all non reference
217  AVDISCARD_BIDIR = 16, ///< discard all bidirectional frames
218  AVDISCARD_NONINTRA= 24, ///< discard all non intra frames
219  AVDISCARD_NONKEY = 32, ///< discard all frames except keyframes
220  AVDISCARD_ALL = 48, ///< discard all
221 };
222 
233  AV_AUDIO_SERVICE_TYPE_NB , ///< Not part of ABI
234 };
235 
236 /**
237  * Pan Scan area.
238  * This specifies the area which should be displayed.
239  * Note there may be multiple such areas for one frame.
240  */
241 typedef struct AVPanScan {
242  /**
243  * id
244  * - encoding: Set by user.
245  * - decoding: Set by libavcodec.
246  */
247  int id;
248 
249  /**
250  * width and height in 1/16 pel
251  * - encoding: Set by user.
252  * - decoding: Set by libavcodec.
253  */
254  int width;
255  int height;
256 
257  /**
258  * position of the top left corner in 1/16 pel for up to 3 fields/frames
259  * - encoding: Set by user.
260  * - decoding: Set by libavcodec.
261  */
262  int16_t position[3][2];
263 } AVPanScan;
264 
265 /**
266  * This structure describes the bitrate properties of an encoded bitstream. It
267  * roughly corresponds to a subset the VBV parameters for MPEG-2 or HRD
268  * parameters for H.264/HEVC.
269  */
270 typedef struct AVCPBProperties {
271  /**
272  * Maximum bitrate of the stream, in bits per second.
273  * Zero if unknown or unspecified.
274  */
275  int64_t max_bitrate;
276  /**
277  * Minimum bitrate of the stream, in bits per second.
278  * Zero if unknown or unspecified.
279  */
280  int64_t min_bitrate;
281  /**
282  * Average bitrate of the stream, in bits per second.
283  * Zero if unknown or unspecified.
284  */
285  int64_t avg_bitrate;
286 
287  /**
288  * The size of the buffer to which the ratecontrol is applied, in bits.
289  * Zero if unknown or unspecified.
290  */
291  int64_t buffer_size;
292 
293  /**
294  * The delay between the time the packet this structure is associated with
295  * is received and the time when it should be decoded, in periods of a 27MHz
296  * clock.
297  *
298  * UINT64_MAX when unknown or unspecified.
299  */
300  uint64_t vbv_delay;
302 
303 /**
304  * Allocate a CPB properties structure and initialize its fields to default
305  * values.
306  *
307  * @param size if non-NULL, the size of the allocated struct will be written
308  * here. This is useful for embedding it in side data.
309  *
310  * @return the newly allocated struct or NULL on failure
311  */
313 
314 /**
315  * This structure supplies correlation between a packet timestamp and a wall clock
316  * production time. The definition follows the Producer Reference Time ('prft')
317  * as defined in ISO/IEC 14496-12
318  */
319 typedef struct AVProducerReferenceTime {
320  /**
321  * A UTC timestamp, in microseconds, since Unix epoch (e.g, av_gettime()).
322  */
323  int64_t wallclock;
324  int flags;
326 
327 /**
328  * Encode extradata length to a buffer. Used by xiph codecs.
329  *
330  * @param s buffer to write to; must be at least (v/255+1) bytes long
331  * @param v size of extradata in bytes
332  * @return number of bytes written to the buffer.
333  */
334 unsigned int av_xiphlacing(unsigned char *s, unsigned int v);
335 
336 #endif // AVCODEC_DEFS_H
AVPanScan::id
int id
id
Definition: defs.h:247
AVPanScan::position
int16_t position[3][2]
position of the top left corner in 1/16 pel for up to 3 fields/frames
Definition: defs.h:262
AVFieldOrder
AVFieldOrder
Definition: defs.h:199
AV_FIELD_PROGRESSIVE
@ AV_FIELD_PROGRESSIVE
Definition: defs.h:201
AV_AUDIO_SERVICE_TYPE_NB
@ AV_AUDIO_SERVICE_TYPE_NB
Not part of ABI.
Definition: defs.h:233
AVPanScan
Pan Scan area.
Definition: defs.h:241
AVProducerReferenceTime::wallclock
int64_t wallclock
A UTC timestamp, in microseconds, since Unix epoch (e.g, av_gettime()).
Definition: defs.h:323
AV_AUDIO_SERVICE_TYPE_VOICE_OVER
@ AV_AUDIO_SERVICE_TYPE_VOICE_OVER
Definition: defs.h:231
AV_FIELD_BT
@ AV_FIELD_BT
Bottom coded first, top displayed first.
Definition: defs.h:205
AV_FIELD_TT
@ AV_FIELD_TT
Top coded_first, top displayed first.
Definition: defs.h:202
AVPanScan::width
int width
width and height in 1/16 pel
Definition: defs.h:254
AVDISCARD_NONE
@ AVDISCARD_NONE
discard nothing
Definition: defs.h:214
AV_FIELD_TB
@ AV_FIELD_TB
Top coded first, bottom displayed first.
Definition: defs.h:204
AV_FIELD_UNKNOWN
@ AV_FIELD_UNKNOWN
Definition: defs.h:200
s
#define s(width, name)
Definition: cbs_vp9.c:198
AV_AUDIO_SERVICE_TYPE_HEARING_IMPAIRED
@ AV_AUDIO_SERVICE_TYPE_HEARING_IMPAIRED
Definition: defs.h:227
AVCPBProperties
This structure describes the bitrate properties of an encoded bitstream.
Definition: defs.h:270
AVDISCARD_BIDIR
@ AVDISCARD_BIDIR
discard all bidirectional frames
Definition: defs.h:217
AVDISCARD_ALL
@ AVDISCARD_ALL
discard all
Definition: defs.h:220
AV_AUDIO_SERVICE_TYPE_EMERGENCY
@ AV_AUDIO_SERVICE_TYPE_EMERGENCY
Definition: defs.h:230
AVProducerReferenceTime
This structure supplies correlation between a packet timestamp and a wall clock production time.
Definition: defs.h:319
AVProducerReferenceTime::flags
int flags
Definition: defs.h:324
AVAudioServiceType
AVAudioServiceType
Definition: defs.h:223
AVDISCARD_NONKEY
@ AVDISCARD_NONKEY
discard all frames except keyframes
Definition: defs.h:219
AVDISCARD_DEFAULT
@ AVDISCARD_DEFAULT
discard useless packets like 0 size packets in avi
Definition: defs.h:215
size
int size
Definition: twinvq_data.h:10344
av_xiphlacing
unsigned int av_xiphlacing(unsigned char *s, unsigned int v)
Encode extradata length to a buffer.
Definition: utils.c:817
AVCPBProperties::min_bitrate
int64_t min_bitrate
Minimum bitrate of the stream, in bits per second.
Definition: defs.h:280
AVCPBProperties::avg_bitrate
int64_t avg_bitrate
Average bitrate of the stream, in bits per second.
Definition: defs.h:285
AVCPBProperties::vbv_delay
uint64_t vbv_delay
The delay between the time the packet this structure is associated with is received and the time when...
Definition: defs.h:300
AVDISCARD_NONINTRA
@ AVDISCARD_NONINTRA
discard all non intra frames
Definition: defs.h:218
AV_FIELD_BB
@ AV_FIELD_BB
Bottom coded first, bottom displayed first.
Definition: defs.h:203
AVCPBProperties::max_bitrate
int64_t max_bitrate
Maximum bitrate of the stream, in bits per second.
Definition: defs.h:275
AV_AUDIO_SERVICE_TYPE_VISUALLY_IMPAIRED
@ AV_AUDIO_SERVICE_TYPE_VISUALLY_IMPAIRED
Definition: defs.h:226
AVCPBProperties::buffer_size
int64_t buffer_size
The size of the buffer to which the ratecontrol is applied, in bits.
Definition: defs.h:291
AV_AUDIO_SERVICE_TYPE_KARAOKE
@ AV_AUDIO_SERVICE_TYPE_KARAOKE
Definition: defs.h:232
AV_AUDIO_SERVICE_TYPE_COMMENTARY
@ AV_AUDIO_SERVICE_TYPE_COMMENTARY
Definition: defs.h:229
AV_AUDIO_SERVICE_TYPE_EFFECTS
@ AV_AUDIO_SERVICE_TYPE_EFFECTS
Definition: defs.h:225
AVPanScan::height
int height
Definition: defs.h:255
AV_AUDIO_SERVICE_TYPE_DIALOGUE
@ AV_AUDIO_SERVICE_TYPE_DIALOGUE
Definition: defs.h:228
AVDiscard
AVDiscard
Definition: defs.h:211
AVDISCARD_NONREF
@ AVDISCARD_NONREF
discard all non reference
Definition: defs.h:216
AV_AUDIO_SERVICE_TYPE_MAIN
@ AV_AUDIO_SERVICE_TYPE_MAIN
Definition: defs.h:224
av_cpb_properties_alloc
AVCPBProperties * av_cpb_properties_alloc(size_t *size)
Allocate a CPB properties structure and initialize its fields to default values.
Definition: utils.c:975