FFmpeg
codec.h
Go to the documentation of this file.
1 /*
2  * AVCodec 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_H
22 #define AVCODEC_CODEC_H
23 
24 #include <stdint.h>
25 
26 #include "libavutil/avutil.h"
27 #include "libavutil/hwcontext.h"
28 #include "libavutil/log.h"
29 #include "libavutil/pixfmt.h"
30 #include "libavutil/rational.h"
31 #include "libavutil/samplefmt.h"
32 
33 #include "libavcodec/codec_id.h"
35 
36 /**
37  * @addtogroup lavc_core
38  * @{
39  */
40 
41 /**
42  * Decoder can use draw_horiz_band callback.
43  */
44 #define AV_CODEC_CAP_DRAW_HORIZ_BAND (1 << 0)
45 /**
46  * Codec uses get_buffer() or get_encode_buffer() for allocating buffers and
47  * supports custom allocators.
48  * If not set, it might not use get_buffer() or get_encode_buffer() at all, or
49  * use operations that assume the buffer was allocated by
50  * avcodec_default_get_buffer2 or avcodec_default_get_encode_buffer.
51  */
52 #define AV_CODEC_CAP_DR1 (1 << 1)
53 /**
54  * Encoder or decoder requires flushing with NULL input at the end in order to
55  * give the complete and correct output.
56  *
57  * NOTE: If this flag is not set, the codec is guaranteed to never be fed with
58  * with NULL data. The user can still send NULL data to the public encode
59  * or decode function, but libavcodec will not pass it along to the codec
60  * unless this flag is set.
61  *
62  * Decoders:
63  * The decoder has a non-zero delay and needs to be fed with avpkt->data=NULL,
64  * avpkt->size=0 at the end to get the delayed data until the decoder no longer
65  * returns frames.
66  *
67  * Encoders:
68  * The encoder needs to be fed with NULL data at the end of encoding until the
69  * encoder no longer returns data.
70  *
71  * NOTE: For encoders implementing the AVCodec.encode2() function, setting this
72  * flag also means that the encoder must set the pts and duration for
73  * each output packet. If this flag is not set, the pts and duration will
74  * be determined by libavcodec from the input frame.
75  */
76 #define AV_CODEC_CAP_DELAY (1 << 5)
77 /**
78  * Codec can be fed a final frame with a smaller size.
79  * This can be used to prevent truncation of the last audio samples.
80  */
81 #define AV_CODEC_CAP_SMALL_LAST_FRAME (1 << 6)
82 
83 /**
84  * Codec can output multiple frames per AVPacket
85  * Normally demuxers return one frame at a time, demuxers which do not do
86  * are connected to a parser to split what they return into proper frames.
87  * This flag is reserved to the very rare category of codecs which have a
88  * bitstream that cannot be split into frames without timeconsuming
89  * operations like full decoding. Demuxers carrying such bitstreams thus
90  * may return multiple frames in a packet. This has many disadvantages like
91  * prohibiting stream copy in many cases thus it should only be considered
92  * as a last resort.
93  */
94 #define AV_CODEC_CAP_SUBFRAMES (1 << 8)
95 /**
96  * Codec is experimental and is thus avoided in favor of non experimental
97  * encoders
98  */
99 #define AV_CODEC_CAP_EXPERIMENTAL (1 << 9)
100 /**
101  * Codec should fill in channel configuration and samplerate instead of container
102  */
103 #define AV_CODEC_CAP_CHANNEL_CONF (1 << 10)
104 /**
105  * Codec supports frame-level multithreading.
106  */
107 #define AV_CODEC_CAP_FRAME_THREADS (1 << 12)
108 /**
109  * Codec supports slice-based (or partition-based) multithreading.
110  */
111 #define AV_CODEC_CAP_SLICE_THREADS (1 << 13)
112 /**
113  * Codec supports changed parameters at any point.
114  */
115 #define AV_CODEC_CAP_PARAM_CHANGE (1 << 14)
116 /**
117  * Codec supports multithreading through a method other than slice- or
118  * frame-level multithreading. Typically this marks wrappers around
119  * multithreading-capable external libraries.
120  */
121 #define AV_CODEC_CAP_OTHER_THREADS (1 << 15)
122 /**
123  * Audio encoder supports receiving a different number of samples in each call.
124  */
125 #define AV_CODEC_CAP_VARIABLE_FRAME_SIZE (1 << 16)
126 /**
127  * Decoder is not a preferred choice for probing.
128  * This indicates that the decoder is not a good choice for probing.
129  * It could for example be an expensive to spin up hardware decoder,
130  * or it could simply not provide a lot of useful information about
131  * the stream.
132  * A decoder marked with this flag should only be used as last resort
133  * choice for probing.
134  */
135 #define AV_CODEC_CAP_AVOID_PROBING (1 << 17)
136 
137 /**
138  * Codec is backed by a hardware implementation. Typically used to
139  * identify a non-hwaccel hardware decoder. For information about hwaccels, use
140  * avcodec_get_hw_config() instead.
141  */
142 #define AV_CODEC_CAP_HARDWARE (1 << 18)
143 
144 /**
145  * Codec is potentially backed by a hardware implementation, but not
146  * necessarily. This is used instead of AV_CODEC_CAP_HARDWARE, if the
147  * implementation provides some sort of internal fallback.
148  */
149 #define AV_CODEC_CAP_HYBRID (1 << 19)
150 
151 /**
152  * This encoder can reorder user opaque values from input AVFrames and return
153  * them with corresponding output packets.
154  * @see AV_CODEC_FLAG_COPY_OPAQUE
155  */
156 #define AV_CODEC_CAP_ENCODER_REORDERED_OPAQUE (1 << 20)
157 
158 /**
159  * This encoder can be flushed using avcodec_flush_buffers(). If this flag is
160  * not set, the encoder must be closed and reopened to ensure that no frames
161  * remain pending.
162  */
163 #define AV_CODEC_CAP_ENCODER_FLUSH (1 << 21)
164 
165 /**
166  * The encoder is able to output reconstructed frame data, i.e. raw frames that
167  * would be produced by decoding the encoded bitstream.
168  *
169  * Reconstructed frame output is enabled by the AV_CODEC_FLAG_RECON_FRAME flag.
170  */
171 #define AV_CODEC_CAP_ENCODER_RECON_FRAME (1 << 22)
172 
173 /**
174  * AVProfile.
175  */
176 typedef struct AVProfile {
177  int profile;
178  const char *name; ///< short name for the profile
179 } AVProfile;
180 
181 /**
182  * AVCodec.
183  */
184 typedef struct AVCodec {
185  /**
186  * Name of the codec implementation.
187  * The name is globally unique among encoders and among decoders (but an
188  * encoder and a decoder can share the same name).
189  * This is the primary way to find a codec from the user perspective.
190  */
191  const char *name;
192  /**
193  * Descriptive name for the codec, meant to be more human readable than name.
194  * You should use the NULL_IF_CONFIG_SMALL() macro to define it.
195  */
196  const char *long_name;
198  enum AVCodecID id;
199  /**
200  * Codec capabilities.
201  * see AV_CODEC_CAP_*
202  */
204  uint8_t max_lowres; ///< maximum value for lowres supported by the decoder
205  const AVRational *supported_framerates; ///< array of supported framerates, or NULL if any, array is terminated by {0,0}
206  const enum AVPixelFormat *pix_fmts; ///< array of supported pixel formats, or NULL if unknown, array is terminated by -1
207  const int *supported_samplerates; ///< array of supported audio samplerates, or NULL if unknown, array is terminated by 0
208  const enum AVSampleFormat *sample_fmts; ///< array of supported sample formats, or NULL if unknown, array is terminated by -1
209 #if FF_API_OLD_CHANNEL_LAYOUT
210  /**
211  * @deprecated use ch_layouts instead
212  */
214  const uint64_t *channel_layouts; ///< array of support channel layouts, or NULL if unknown. array is terminated by 0
215 #endif
216  const AVClass *priv_class; ///< AVClass for the private context
217  const AVProfile *profiles; ///< array of recognized profiles, or NULL if unknown, array is terminated by {FF_PROFILE_UNKNOWN}
218 
219  /**
220  * Group name of the codec implementation.
221  * This is a short symbolic name of the wrapper backing this codec. A
222  * wrapper uses some kind of external implementation for the codec, such
223  * as an external library, or a codec implementation provided by the OS or
224  * the hardware.
225  * If this field is NULL, this is a builtin, libavcodec native codec.
226  * If non-NULL, this will be the suffix in AVCodec.name in most cases
227  * (usually AVCodec.name will be of the form "<codec_name>_<wrapper_name>").
228  */
229  const char *wrapper_name;
230 
231  /**
232  * Array of supported channel layouts, terminated with a zeroed layout.
233  */
235 } AVCodec;
236 
237 /**
238  * Iterate over all registered codecs.
239  *
240  * @param opaque a pointer where libavcodec will store the iteration state. Must
241  * point to NULL to start the iteration.
242  *
243  * @return the next registered codec or NULL when the iteration is
244  * finished
245  */
246 const AVCodec *av_codec_iterate(void **opaque);
247 
248 /**
249  * Find a registered decoder with a matching codec ID.
250  *
251  * @param id AVCodecID of the requested decoder
252  * @return A decoder if one was found, NULL otherwise.
253  */
254 const AVCodec *avcodec_find_decoder(enum AVCodecID id);
255 
256 /**
257  * Find a registered decoder with the specified name.
258  *
259  * @param name name of the requested decoder
260  * @return A decoder if one was found, NULL otherwise.
261  */
262 const AVCodec *avcodec_find_decoder_by_name(const char *name);
263 
264 /**
265  * Find a registered encoder with a matching codec ID.
266  *
267  * @param id AVCodecID of the requested encoder
268  * @return An encoder if one was found, NULL otherwise.
269  */
270 const AVCodec *avcodec_find_encoder(enum AVCodecID id);
271 
272 /**
273  * Find a registered encoder with the specified name.
274  *
275  * @param name name of the requested encoder
276  * @return An encoder if one was found, NULL otherwise.
277  */
278 const AVCodec *avcodec_find_encoder_by_name(const char *name);
279 /**
280  * @return a non-zero number if codec is an encoder, zero otherwise
281  */
282 int av_codec_is_encoder(const AVCodec *codec);
283 
284 /**
285  * @return a non-zero number if codec is a decoder, zero otherwise
286  */
287 int av_codec_is_decoder(const AVCodec *codec);
288 
289 /**
290  * Return a name for the specified profile, if available.
291  *
292  * @param codec the codec that is searched for the given profile
293  * @param profile the profile value for which a name is requested
294  * @return A name for the profile if found, NULL otherwise.
295  */
296 const char *av_get_profile_name(const AVCodec *codec, int profile);
297 
298 enum {
299  /**
300  * The codec supports this format via the hw_device_ctx interface.
301  *
302  * When selecting this format, AVCodecContext.hw_device_ctx should
303  * have been set to a device of the specified type before calling
304  * avcodec_open2().
305  */
307  /**
308  * The codec supports this format via the hw_frames_ctx interface.
309  *
310  * When selecting this format for a decoder,
311  * AVCodecContext.hw_frames_ctx should be set to a suitable frames
312  * context inside the get_format() callback. The frames context
313  * must have been created on a device of the specified type.
314  *
315  * When selecting this format for an encoder,
316  * AVCodecContext.hw_frames_ctx should be set to the context which
317  * will be used for the input frames before calling avcodec_open2().
318  */
320  /**
321  * The codec supports this format by some internal method.
322  *
323  * This format can be selected without any additional configuration -
324  * no device or frames context is required.
325  */
327  /**
328  * The codec supports this format by some ad-hoc method.
329  *
330  * Additional settings and/or function calls are required. See the
331  * codec-specific documentation for details. (Methods requiring
332  * this sort of configuration are deprecated and others should be
333  * used in preference.)
334  */
336 };
337 
338 typedef struct AVCodecHWConfig {
339  /**
340  * For decoders, a hardware pixel format which that decoder may be
341  * able to decode to if suitable hardware is available.
342  *
343  * For encoders, a pixel format which the encoder may be able to
344  * accept. If set to AV_PIX_FMT_NONE, this applies to all pixel
345  * formats supported by the codec.
346  */
348  /**
349  * Bit set of AV_CODEC_HW_CONFIG_METHOD_* flags, describing the possible
350  * setup methods which can be used with this configuration.
351  */
352  int methods;
353  /**
354  * The device type associated with the configuration.
355  *
356  * Must be set for AV_CODEC_HW_CONFIG_METHOD_HW_DEVICE_CTX and
357  * AV_CODEC_HW_CONFIG_METHOD_HW_FRAMES_CTX, otherwise unused.
358  */
361 
362 /**
363  * Retrieve supported hardware configurations for a codec.
364  *
365  * Values of index from zero to some maximum return the indexed configuration
366  * descriptor; all other values return NULL. If the codec does not support
367  * any hardware configurations then it will always return NULL.
368  */
369 const AVCodecHWConfig *avcodec_get_hw_config(const AVCodec *codec, int index);
370 
371 /**
372  * @}
373  */
374 
375 #endif /* AVCODEC_CODEC_H */
AVCodec::ch_layouts
const AVChannelLayout * ch_layouts
Array of supported channel layouts, terminated with a zeroed layout.
Definition: codec.h:234
AVCodec
AVCodec.
Definition: codec.h:184
AVPixelFormat
AVPixelFormat
Pixel format.
Definition: pixfmt.h:64
name
it s the only field you need to keep assuming you have a context There is some magic you don t need to care about around this just let it vf default minimum maximum flags name is the option name
Definition: writing_filters.txt:88
AVCodec::long_name
const char * long_name
Descriptive name for the codec, meant to be more human readable than name.
Definition: codec.h:196
AVCodecHWConfig::methods
int methods
Bit set of AV_CODEC_HW_CONFIG_METHOD_* flags, describing the possible setup methods which can be used...
Definition: codec.h:352
AVCodec::priv_class
const AVClass * priv_class
AVClass for the private context.
Definition: codec.h:216
AVProfile::name
const char * name
short name for the profile
Definition: codec.h:178
AV_CODEC_HW_CONFIG_METHOD_INTERNAL
@ AV_CODEC_HW_CONFIG_METHOD_INTERNAL
The codec supports this format by some internal method.
Definition: codec.h:326
rational.h
AVCodec::pix_fmts
enum AVPixelFormat * pix_fmts
array of supported pixel formats, or NULL if unknown, array is terminated by -1
Definition: codec.h:206
AVCodec::wrapper_name
const char * wrapper_name
Group name of the codec implementation.
Definition: codec.h:229
avcodec_find_encoder
const AVCodec * avcodec_find_encoder(enum AVCodecID id)
Find a registered encoder with a matching codec ID.
Definition: allcodecs.c:959
AVCodec::capabilities
int capabilities
Codec capabilities.
Definition: codec.h:203
version_major.h
AVProfile
AVProfile.
Definition: codec.h:176
AVCodec::max_lowres
uint8_t max_lowres
maximum value for lowres supported by the decoder
Definition: codec.h:204
AVCodec::sample_fmts
enum AVSampleFormat * sample_fmts
array of supported sample formats, or NULL if unknown, array is terminated by -1
Definition: codec.h:208
samplefmt.h
AVCodec::supported_samplerates
const int * supported_samplerates
array of supported audio samplerates, or NULL if unknown, array is terminated by 0
Definition: codec.h:207
codec_id.h
AVCodec::supported_framerates
const AVRational * supported_framerates
array of supported framerates, or NULL if any, array is terminated by {0,0}
Definition: codec.h:205
AV_CODEC_HW_CONFIG_METHOD_HW_FRAMES_CTX
@ AV_CODEC_HW_CONFIG_METHOD_HW_FRAMES_CTX
The codec supports this format via the hw_frames_ctx interface.
Definition: codec.h:319
AVHWDeviceType
AVHWDeviceType
Definition: hwcontext.h:27
AVCodecHWConfig::pix_fmt
enum AVPixelFormat pix_fmt
For decoders, a hardware pixel format which that decoder may be able to decode to if suitable hardwar...
Definition: codec.h:347
AVClass
Describe the class of an AVClass context structure.
Definition: log.h:66
avcodec_find_decoder_by_name
const AVCodec * avcodec_find_decoder_by_name(const char *name)
Find a registered decoder with the specified name.
Definition: allcodecs.c:992
AVCodec::type
enum AVMediaType type
Definition: codec.h:197
AVRational
Rational number (pair of numerator and denominator).
Definition: rational.h:58
AVCodec::profiles
const AVProfile * profiles
array of recognized profiles, or NULL if unknown, array is terminated by {FF_PROFILE_UNKNOWN}
Definition: codec.h:217
AVProfile::profile
int profile
Definition: codec.h:177
index
int index
Definition: gxfenc.c:89
AVCodecID
AVCodecID
Identify the syntax and semantics of the bitstream.
Definition: codec_id.h:49
avcodec_find_decoder
const AVCodec * avcodec_find_decoder(enum AVCodecID id)
Find a registered decoder with a matching codec ID.
Definition: allcodecs.c:964
av_codec_is_decoder
int av_codec_is_decoder(const AVCodec *codec)
Definition: utils.c:83
AVMediaType
AVMediaType
Definition: avutil.h:199
AVChannelLayout
An AVChannelLayout holds information about the channel layout of audio data.
Definition: channel_layout.h:301
attribute_deprecated
#define attribute_deprecated
Definition: attributes.h:104
AVCodec::id
enum AVCodecID id
Definition: codec.h:198
av_codec_is_encoder
int av_codec_is_encoder(const AVCodec *codec)
Definition: utils.c:75
log.h
av_get_profile_name
const char * av_get_profile_name(const AVCodec *codec, int profile)
Return a name for the specified profile, if available.
Definition: utils.c:462
AVSampleFormat
AVSampleFormat
Audio sample formats.
Definition: samplefmt.h:55
AVCodec::name
const char * name
Name of the codec implementation.
Definition: codec.h:191
profile
int profile
Definition: mxfenc.c:2009
av_codec_iterate
const AVCodec * av_codec_iterate(void **opaque)
Iterate over all registered codecs.
Definition: allcodecs.c:915
pixfmt.h
AV_CODEC_HW_CONFIG_METHOD_AD_HOC
@ AV_CODEC_HW_CONFIG_METHOD_AD_HOC
The codec supports this format by some ad-hoc method.
Definition: codec.h:335
avcodec_get_hw_config
const AVCodecHWConfig * avcodec_get_hw_config(const AVCodec *codec, int index)
Retrieve supported hardware configurations for a codec.
Definition: utils.c:884
avutil.h
channel_layouts
static const uint16_t channel_layouts[7]
Definition: dca_lbr.c:111
hwcontext.h
AV_CODEC_HW_CONFIG_METHOD_HW_DEVICE_CTX
@ AV_CODEC_HW_CONFIG_METHOD_HW_DEVICE_CTX
The codec supports this format via the hw_device_ctx interface.
Definition: codec.h:306
AVCodecHWConfig
Definition: codec.h:338
AVCodecHWConfig::device_type
enum AVHWDeviceType device_type
The device type associated with the configuration.
Definition: codec.h:359
avcodec_find_encoder_by_name
const AVCodec * avcodec_find_encoder_by_name(const char *name)
Find a registered encoder with the specified name.
Definition: allcodecs.c:987