FFmpeg
codec_par.h
Go to the documentation of this file.
1 /*
2  * Codec parameters public API
3  *
4  * This file is part of FFmpeg.
5  *
6  * FFmpeg is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * FFmpeg is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with FFmpeg; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19  */
20 
21 #ifndef AVCODEC_CODEC_PAR_H
22 #define AVCODEC_CODEC_PAR_H
23 
24 #include <stdint.h>
25 
26 #include "libavutil/avutil.h"
27 #include "libavutil/rational.h"
28 #include "libavutil/pixfmt.h"
29 
30 #include "codec_id.h"
31 
32 /**
33  * @addtogroup lavc_core
34  */
35 
39  AV_FIELD_TT, //< Top coded_first, top displayed first
40  AV_FIELD_BB, //< Bottom coded first, bottom displayed first
41  AV_FIELD_TB, //< Top coded first, bottom displayed first
42  AV_FIELD_BT, //< Bottom coded first, top displayed first
43 };
44 
45 /**
46  * This struct describes the properties of an encoded stream.
47  *
48  * sizeof(AVCodecParameters) is not a part of the public ABI, this struct must
49  * be allocated with avcodec_parameters_alloc() and freed with
50  * avcodec_parameters_free().
51  */
52 typedef struct AVCodecParameters {
53  /**
54  * General type of the encoded data.
55  */
57  /**
58  * Specific type of the encoded data (the codec used).
59  */
61  /**
62  * Additional information about the codec (corresponds to the AVI FOURCC).
63  */
64  uint32_t codec_tag;
65 
66  /**
67  * Extra binary data needed for initializing the decoder, codec-dependent.
68  *
69  * Must be allocated with av_malloc() and will be freed by
70  * avcodec_parameters_free(). The allocated size of extradata must be at
71  * least extradata_size + AV_INPUT_BUFFER_PADDING_SIZE, with the padding
72  * bytes zeroed.
73  */
74  uint8_t *extradata;
75  /**
76  * Size of the extradata content in bytes.
77  */
79 
80  /**
81  * - video: the pixel format, the value corresponds to enum AVPixelFormat.
82  * - audio: the sample format, the value corresponds to enum AVSampleFormat.
83  */
84  int format;
85 
86  /**
87  * The average bitrate of the encoded data (in bits per second).
88  */
89  int64_t bit_rate;
90 
91  /**
92  * The number of bits per sample in the codedwords.
93  *
94  * This is basically the bitrate per sample. It is mandatory for a bunch of
95  * formats to actually decode them. It's the number of bits for one sample in
96  * the actual coded bitstream.
97  *
98  * This could be for example 4 for ADPCM
99  * For PCM formats this matches bits_per_raw_sample
100  * Can be 0
101  */
103 
104  /**
105  * This is the number of valid bits in each output sample. If the
106  * sample format has more bits, the least significant bits are additional
107  * padding bits, which are always 0. Use right shifts to reduce the sample
108  * to its actual size. For example, audio formats with 24 bit samples will
109  * have bits_per_raw_sample set to 24, and format set to AV_SAMPLE_FMT_S32.
110  * To get the original sample use "(int32_t)sample >> 8"."
111  *
112  * For ADPCM this might be 12 or 16 or similar
113  * Can be 0
114  */
116 
117  /**
118  * Codec-specific bitstream restrictions that the stream conforms to.
119  */
120  int profile;
121  int level;
122 
123  /**
124  * Video only. The dimensions of the video frame in pixels.
125  */
126  int width;
127  int height;
128 
129  /**
130  * Video only. The aspect ratio (width / height) which a single pixel
131  * should have when displayed.
132  *
133  * When the aspect ratio is unknown / undefined, the numerator should be
134  * set to 0 (the denominator may have any value).
135  */
137 
138  /**
139  * Video only. The order of the fields in interlaced video.
140  */
142 
143  /**
144  * Video only. Additional colorspace characteristics.
145  */
151 
152  /**
153  * Video only. Number of delayed frames.
154  */
156 
157  /**
158  * Audio only. The channel layout bitmask. May be 0 if the channel layout is
159  * unknown or unspecified, otherwise the number of bits set must be equal to
160  * the channels field.
161  */
162  uint64_t channel_layout;
163  /**
164  * Audio only. The number of audio channels.
165  */
166  int channels;
167  /**
168  * Audio only. The number of audio samples per second.
169  */
171  /**
172  * Audio only. The number of bytes per coded audio frame, required by some
173  * formats.
174  *
175  * Corresponds to nBlockAlign in WAVEFORMATEX.
176  */
178  /**
179  * Audio only. Audio frame size, if known. Required by some formats to be static.
180  */
182 
183  /**
184  * Audio only. The amount of padding (in samples) inserted by the encoder at
185  * the beginning of the audio. I.e. this number of leading decoded samples
186  * must be discarded by the caller to get the original audio without leading
187  * padding.
188  */
190  /**
191  * Audio only. The amount of padding (in samples) appended by the encoder to
192  * the end of the audio. I.e. this number of decoded samples must be
193  * discarded by the caller from the end of the stream to get the original
194  * audio without any trailing padding.
195  */
197  /**
198  * Audio only. Number of samples to skip after a discontinuity.
199  */
202 
203 /**
204  * Allocate a new AVCodecParameters and set its fields to default values
205  * (unknown/invalid/0). The returned struct must be freed with
206  * avcodec_parameters_free().
207  */
209 
210 /**
211  * Free an AVCodecParameters instance and everything associated with it and
212  * write NULL to the supplied pointer.
213  */
215 
216 /**
217  * Copy the contents of src to dst. Any allocated fields in dst are freed and
218  * replaced with newly allocated duplicates of the corresponding fields in src.
219  *
220  * @return >= 0 on success, a negative AVERROR code on failure.
221  */
223 
224 /**
225  * This function is the same as av_get_audio_frame_duration(), except it works
226  * with AVCodecParameters instead of an AVCodecContext.
227  */
228 int av_get_audio_frame_duration2(AVCodecParameters *par, int frame_bytes);
229 
230 /**
231  * @}
232  */
233 
234 #endif // AVCODEC_CODEC_PAR_H
AVCodecParameters::extradata
uint8_t * extradata
Extra binary data needed for initializing the decoder, codec-dependent.
Definition: codec_par.h:74
AVCodecParameters::codec_type
enum AVMediaType codec_type
General type of the encoded data.
Definition: codec_par.h:56
AVColorTransferCharacteristic
AVColorTransferCharacteristic
Color Transfer Characteristic.
Definition: pixfmt.h:494
AVCodecParameters
This struct describes the properties of an encoded stream.
Definition: codec_par.h:52
AVCodecParameters::color_space
enum AVColorSpace color_space
Definition: codec_par.h:149
rational.h
AVCodecParameters::seek_preroll
int seek_preroll
Audio only.
Definition: codec_par.h:200
AVCodecParameters::codec_tag
uint32_t codec_tag
Additional information about the codec (corresponds to the AVI FOURCC).
Definition: codec_par.h:64
AVColorPrimaries
AVColorPrimaries
Chromaticity coordinates of the source primaries.
Definition: pixfmt.h:469
av_get_audio_frame_duration2
int av_get_audio_frame_duration2(AVCodecParameters *par, int frame_bytes)
This function is the same as av_get_audio_frame_duration(), except it works with AVCodecParameters in...
Definition: utils.c:816
AVCodecParameters::color_primaries
enum AVColorPrimaries color_primaries
Definition: codec_par.h:147
AVCodecParameters::channels
int channels
Audio only.
Definition: codec_par.h:166
AV_FIELD_TT
@ AV_FIELD_TT
Definition: codec_par.h:39
avcodec_parameters_free
void avcodec_parameters_free(AVCodecParameters **par)
Free an AVCodecParameters instance and everything associated with it and write NULL to the supplied p...
Definition: codec_par.c:61
AVCodecParameters::bits_per_raw_sample
int bits_per_raw_sample
This is the number of valid bits in each output sample.
Definition: codec_par.h:115
AV_FIELD_TB
@ AV_FIELD_TB
Definition: codec_par.h:41
AVCodecParameters::color_trc
enum AVColorTransferCharacteristic color_trc
Definition: codec_par.h:148
codec_id.h
AVCodecParameters::frame_size
int frame_size
Audio only.
Definition: codec_par.h:181
AVCodecParameters::sample_aspect_ratio
AVRational sample_aspect_ratio
Video only.
Definition: codec_par.h:136
AVCodecParameters::width
int width
Video only.
Definition: codec_par.h:126
AV_FIELD_UNKNOWN
@ AV_FIELD_UNKNOWN
Definition: codec_par.h:37
AV_FIELD_BT
@ AV_FIELD_BT
Definition: codec_par.h:42
AVRational
Rational number (pair of numerator and denominator).
Definition: rational.h:58
src
#define src
Definition: vp8dsp.c:255
AVCodecParameters::level
int level
Definition: codec_par.h:121
AVCodecParameters::sample_rate
int sample_rate
Audio only.
Definition: codec_par.h:170
AVCodecID
AVCodecID
Identify the syntax and semantics of the bitstream.
Definition: codec_id.h:47
AVCodecParameters::extradata_size
int extradata_size
Size of the extradata content in bytes.
Definition: codec_par.h:78
AVMediaType
AVMediaType
Definition: avutil.h:199
AVCodecParameters::profile
int profile
Codec-specific bitstream restrictions that the stream conforms to.
Definition: codec_par.h:120
AVChromaLocation
AVChromaLocation
Location of chroma samples.
Definition: pixfmt.h:616
AV_FIELD_BB
@ AV_FIELD_BB
Definition: codec_par.h:40
AVCodecParameters::height
int height
Definition: codec_par.h:127
AVCodecParameters::block_align
int block_align
Audio only.
Definition: codec_par.h:177
AVColorSpace
AVColorSpace
YUV colorspace type.
Definition: pixfmt.h:523
AVCodecParameters::color_range
enum AVColorRange color_range
Video only.
Definition: codec_par.h:146
AVCodecParameters::field_order
enum AVFieldOrder field_order
Video only.
Definition: codec_par.h:141
pixfmt.h
avcodec_parameters_alloc
AVCodecParameters * avcodec_parameters_alloc(void)
Allocate a new AVCodecParameters and set its fields to default values (unknown/invalid/0).
Definition: codec_par.c:51
AVCodecParameters::chroma_location
enum AVChromaLocation chroma_location
Definition: codec_par.h:150
AVCodecParameters::trailing_padding
int trailing_padding
Audio only.
Definition: codec_par.h:196
avcodec_parameters_copy
int avcodec_parameters_copy(AVCodecParameters *dst, const AVCodecParameters *src)
Copy the contents of src to dst.
Definition: codec_par.c:72
avutil.h
AVCodecParameters::bits_per_coded_sample
int bits_per_coded_sample
The number of bits per sample in the codedwords.
Definition: codec_par.h:102
AVCodecParameters::video_delay
int video_delay
Video only.
Definition: codec_par.h:155
AV_FIELD_PROGRESSIVE
@ AV_FIELD_PROGRESSIVE
Definition: codec_par.h:38
AVCodecParameters::format
int format
Definition: codec_par.h:84
AVFieldOrder
AVFieldOrder
Definition: codec_par.h:36
AVCodecParameters::codec_id
enum AVCodecID codec_id
Specific type of the encoded data (the codec used).
Definition: codec_par.h:60
AVCodecParameters::channel_layout
uint64_t channel_layout
Audio only.
Definition: codec_par.h:162
AVCodecParameters::bit_rate
int64_t bit_rate
The average bitrate of the encoded data (in bits per second).
Definition: codec_par.h:89
AVColorRange
AVColorRange
Visual content value range.
Definition: pixfmt.h:562
AVCodecParameters::initial_padding
int initial_padding
Audio only.
Definition: codec_par.h:189