]> git.sesse.net Git - ffmpeg/blob - libavcodec/avcodec.h
5ed3801d75ff826210c62090fa91f4d89de92fa2
[ffmpeg] / libavcodec / avcodec.h
1 /*
2  * copyright (c) 2001 Fabrice Bellard
3  *
4  * This file is part of Libav.
5  *
6  * Libav 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  * Libav 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 Libav; 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_AVCODEC_H
22 #define AVCODEC_AVCODEC_H
23
24 /**
25  * @file
26  * @ingroup libavc
27  * Libavcodec external API header
28  */
29
30 #include <errno.h>
31 #include "libavutil/samplefmt.h"
32 #include "libavutil/attributes.h"
33 #include "libavutil/avutil.h"
34 #include "libavutil/buffer.h"
35 #include "libavutil/cpu.h"
36 #include "libavutil/dict.h"
37 #include "libavutil/frame.h"
38 #include "libavutil/log.h"
39 #include "libavutil/pixfmt.h"
40 #include "libavutil/rational.h"
41
42 #include "version.h"
43
44 #if FF_API_FAST_MALLOC
45 // to provide fast_*alloc
46 #include "libavutil/mem.h"
47 #endif
48
49 /**
50  * @defgroup libavc Encoding/Decoding Library
51  * @{
52  *
53  * @defgroup lavc_decoding Decoding
54  * @{
55  * @}
56  *
57  * @defgroup lavc_encoding Encoding
58  * @{
59  * @}
60  *
61  * @defgroup lavc_codec Codecs
62  * @{
63  * @defgroup lavc_codec_native Native Codecs
64  * @{
65  * @}
66  * @defgroup lavc_codec_wrappers External library wrappers
67  * @{
68  * @}
69  * @defgroup lavc_codec_hwaccel Hardware Accelerators bridge
70  * @{
71  * @}
72  * @}
73  * @defgroup lavc_internal Internal
74  * @{
75  * @}
76  * @}
77  */
78
79 /**
80  * @ingroup libavc
81  * @defgroup lavc_encdec send/receive encoding and decoding API overview
82  * @{
83  *
84  * The avcodec_send_packet()/avcodec_receive_frame()/avcodec_send_frame()/
85  * avcodec_receive_packet() functions provide an encode/decode API, which
86  * decouples input and output.
87  *
88  * The API is very similar for encoding/decoding and audio/video, and works as
89  * follows:
90  * - Set up and open the AVCodecContext as usual.
91  * - Send valid input:
92  *   - For decoding, call avcodec_send_packet() to give the decoder raw
93  *     compressed data in an AVPacket.
94  *   - For encoding, call avcodec_send_frame() to give the decoder an AVFrame
95  *     containing uncompressed audio or video.
96  *   In both cases, it is recommended that AVPackets and AVFrames are
97  *   refcounted, or libavcodec might have to copy the input data. (libavformat
98  *   always returns refcounted AVPackets, and av_frame_get_buffer() allocates
99  *   refcounted AVFrames.)
100  * - Receive output in a loop. Periodically call one of the avcodec_receive_*()
101  *   functions and process their output:
102  *   - For decoding, call avcodec_receive_frame(). On success, it will return
103  *     an AVFrame containing uncompressed audio or video data.
104  *   - For encoding, call avcodec_receive_packet(). On success, it will return
105  *     an AVPacket with a compressed frame.
106  *   Repeat this call until it returns AVERROR(EAGAIN) or an error. The
107  *   AVERROR(EAGAIN) return value means that new input data is required to
108  *   return new output. In this case, continue with sending input. For each
109  *   input frame/packet, the codec will typically return 1 output frame/packet,
110  *   but it can also be 0 or more than 1.
111  *
112  * At the beginning of decoding or encoding, the codec might accept multiple
113  * input frames/packets without returning a frame, until its internal buffers
114  * are filled. This situation is handled transparently if you follow the steps
115  * outlined above.
116  *
117  * In theory, sending input can result in EAGAIN - this should happen only if
118  * not all output was received. You can use this to structure alternative decode
119  * or encode loops other than the one suggested above. For example, you could
120  * try sending new input on each iteration, and try to receive output if that
121  * returns EAGAIN.
122  *
123  * End of stream situations. These require "flushing" (aka draining) the codec,
124  * as the codec might buffer multiple frames or packets internally for
125  * performance or out of necessity (consider B-frames).
126  * This is handled as follows:
127  * - Instead of valid input, send NULL to the avcodec_send_packet() (decoding)
128  *   or avcodec_send_frame() (encoding) functions. This will enter draining
129  *   mode.
130  * - Call avcodec_receive_frame() (decoding) or avcodec_receive_packet()
131  *   (encoding) in a loop until AVERROR_EOF is returned. The functions will
132  *   not return AVERROR(EAGAIN), unless you forgot to enter draining mode.
133  * - Before decoding can be resumed again, the codec has to be reset with
134  *   avcodec_flush_buffers().
135  *
136  * Using the API as outlined above is highly recommended. But it is also
137  * possible to call functions outside of this rigid schema. For example, you can
138  * call avcodec_send_packet() repeatedly without calling
139  * avcodec_receive_frame(). In this case, avcodec_send_packet() will succeed
140  * until the codec's internal buffer has been filled up (which is typically of
141  * size 1 per output frame, after initial input), and then reject input with
142  * AVERROR(EAGAIN). Once it starts rejecting input, you have no choice but to
143  * read at least some output.
144  *
145  * Not all codecs will follow a rigid and predictable dataflow; the only
146  * guarantee is that an AVERROR(EAGAIN) return value on a send/receive call on
147  * one end implies that a receive/send call on the other end will succeed. In
148  * general, no codec will permit unlimited buffering of input or output.
149  *
150  * This API replaces the following legacy functions:
151  * - avcodec_decode_video2() and avcodec_decode_audio4():
152  *   Use avcodec_send_packet() to feed input to the decoder, then use
153  *   avcodec_receive_frame() to receive decoded frames after each packet.
154  *   Unlike with the old video decoding API, multiple frames might result from
155  *   a packet. For audio, splitting the input packet into frames by partially
156  *   decoding packets becomes transparent to the API user. You never need to
157  *   feed an AVPacket to the API twice (unless it is rejected with EAGAIN - then
158  *   no data was read from the packet).
159  *   Additionally, sending a flush/draining packet is required only once.
160  * - avcodec_encode_video2()/avcodec_encode_audio2():
161  *   Use avcodec_send_frame() to feed input to the encoder, then use
162  *   avcodec_receive_packet() to receive encoded packets.
163  *   Providing user-allocated buffers for avcodec_receive_packet() is not
164  *   possible.
165  * - The new API does not handle subtitles yet.
166  *
167  * Mixing new and old function calls on the same AVCodecContext is not allowed,
168  * and will result in arbitrary behavior.
169  *
170  * Some codecs might require using the new API; using the old API will return
171  * an error when calling it. All codecs support the new API.
172  *
173  * A codec is not allowed to return EAGAIN for both sending and receiving. This
174  * would be an invalid state, which could put the codec user into an endless
175  * loop. The API has no concept of time either: it cannot happen that trying to
176  * do avcodec_send_packet() results in EAGAIN, but a repeated call 1 second
177  * later accepts the packet (with no other receive/flush API calls involved).
178  * The API is a strict state machine, and the passage of time is not supposed
179  * to influence it. Some timing-dependent behavior might still be deemed
180  * acceptable in certain cases. But it must never result in both send/receive
181  * returning EAGAIN at the same time at any point. It must also absolutely be
182  * avoided that the current state is "unstable" and can "flip-flop" between
183  * the send/receive APIs allowing progress. For example, it's not allowed that
184  * the codec randomly decides that it actually wants to consume a packet now
185  * instead of returning a frame, after it just returned EAGAIN on an
186  * avcodec_send_packet() call.
187  * @}
188  */
189
190 /**
191  * @defgroup lavc_core Core functions/structures.
192  * @ingroup libavc
193  *
194  * Basic definitions, functions for querying libavcodec capabilities,
195  * allocating core structures, etc.
196  * @{
197  */
198
199
200 /**
201  * Identify the syntax and semantics of the bitstream.
202  * The principle is roughly:
203  * Two decoders with the same ID can decode the same streams.
204  * Two encoders with the same ID can encode compatible streams.
205  * There may be slight deviations from the principle due to implementation
206  * details.
207  *
208  * If you add a codec ID to this list, add it so that
209  * 1. no value of a existing codec ID changes (that would break ABI),
210  * 2. it is as close as possible to similar codecs.
211  *
212  * After adding new codec IDs, do not forget to add an entry to the codec
213  * descriptor list and bump libavcodec minor version.
214  */
215 enum AVCodecID {
216     AV_CODEC_ID_NONE,
217
218     /* video codecs */
219     AV_CODEC_ID_MPEG1VIDEO,
220     AV_CODEC_ID_MPEG2VIDEO, ///< preferred ID for MPEG-1/2 video decoding
221 #if FF_API_XVMC
222     AV_CODEC_ID_MPEG2VIDEO_XVMC,
223 #endif /* FF_API_XVMC */
224     AV_CODEC_ID_H261,
225     AV_CODEC_ID_H263,
226     AV_CODEC_ID_RV10,
227     AV_CODEC_ID_RV20,
228     AV_CODEC_ID_MJPEG,
229     AV_CODEC_ID_MJPEGB,
230     AV_CODEC_ID_LJPEG,
231     AV_CODEC_ID_SP5X,
232     AV_CODEC_ID_JPEGLS,
233     AV_CODEC_ID_MPEG4,
234     AV_CODEC_ID_RAWVIDEO,
235     AV_CODEC_ID_MSMPEG4V1,
236     AV_CODEC_ID_MSMPEG4V2,
237     AV_CODEC_ID_MSMPEG4V3,
238     AV_CODEC_ID_WMV1,
239     AV_CODEC_ID_WMV2,
240     AV_CODEC_ID_H263P,
241     AV_CODEC_ID_H263I,
242     AV_CODEC_ID_FLV1,
243     AV_CODEC_ID_SVQ1,
244     AV_CODEC_ID_SVQ3,
245     AV_CODEC_ID_DVVIDEO,
246     AV_CODEC_ID_HUFFYUV,
247     AV_CODEC_ID_CYUV,
248     AV_CODEC_ID_H264,
249     AV_CODEC_ID_INDEO3,
250     AV_CODEC_ID_VP3,
251     AV_CODEC_ID_THEORA,
252     AV_CODEC_ID_ASV1,
253     AV_CODEC_ID_ASV2,
254     AV_CODEC_ID_FFV1,
255     AV_CODEC_ID_4XM,
256     AV_CODEC_ID_VCR1,
257     AV_CODEC_ID_CLJR,
258     AV_CODEC_ID_MDEC,
259     AV_CODEC_ID_ROQ,
260     AV_CODEC_ID_INTERPLAY_VIDEO,
261     AV_CODEC_ID_XAN_WC3,
262     AV_CODEC_ID_XAN_WC4,
263     AV_CODEC_ID_RPZA,
264     AV_CODEC_ID_CINEPAK,
265     AV_CODEC_ID_WS_VQA,
266     AV_CODEC_ID_MSRLE,
267     AV_CODEC_ID_MSVIDEO1,
268     AV_CODEC_ID_IDCIN,
269     AV_CODEC_ID_8BPS,
270     AV_CODEC_ID_SMC,
271     AV_CODEC_ID_FLIC,
272     AV_CODEC_ID_TRUEMOTION1,
273     AV_CODEC_ID_VMDVIDEO,
274     AV_CODEC_ID_MSZH,
275     AV_CODEC_ID_ZLIB,
276     AV_CODEC_ID_QTRLE,
277     AV_CODEC_ID_TSCC,
278     AV_CODEC_ID_ULTI,
279     AV_CODEC_ID_QDRAW,
280     AV_CODEC_ID_VIXL,
281     AV_CODEC_ID_QPEG,
282     AV_CODEC_ID_PNG,
283     AV_CODEC_ID_PPM,
284     AV_CODEC_ID_PBM,
285     AV_CODEC_ID_PGM,
286     AV_CODEC_ID_PGMYUV,
287     AV_CODEC_ID_PAM,
288     AV_CODEC_ID_FFVHUFF,
289     AV_CODEC_ID_RV30,
290     AV_CODEC_ID_RV40,
291     AV_CODEC_ID_VC1,
292     AV_CODEC_ID_WMV3,
293     AV_CODEC_ID_LOCO,
294     AV_CODEC_ID_WNV1,
295     AV_CODEC_ID_AASC,
296     AV_CODEC_ID_INDEO2,
297     AV_CODEC_ID_FRAPS,
298     AV_CODEC_ID_TRUEMOTION2,
299     AV_CODEC_ID_BMP,
300     AV_CODEC_ID_CSCD,
301     AV_CODEC_ID_MMVIDEO,
302     AV_CODEC_ID_ZMBV,
303     AV_CODEC_ID_AVS,
304     AV_CODEC_ID_SMACKVIDEO,
305     AV_CODEC_ID_NUV,
306     AV_CODEC_ID_KMVC,
307     AV_CODEC_ID_FLASHSV,
308     AV_CODEC_ID_CAVS,
309     AV_CODEC_ID_JPEG2000,
310     AV_CODEC_ID_VMNC,
311     AV_CODEC_ID_VP5,
312     AV_CODEC_ID_VP6,
313     AV_CODEC_ID_VP6F,
314     AV_CODEC_ID_TARGA,
315     AV_CODEC_ID_DSICINVIDEO,
316     AV_CODEC_ID_TIERTEXSEQVIDEO,
317     AV_CODEC_ID_TIFF,
318     AV_CODEC_ID_GIF,
319     AV_CODEC_ID_DXA,
320     AV_CODEC_ID_DNXHD,
321     AV_CODEC_ID_THP,
322     AV_CODEC_ID_SGI,
323     AV_CODEC_ID_C93,
324     AV_CODEC_ID_BETHSOFTVID,
325     AV_CODEC_ID_PTX,
326     AV_CODEC_ID_TXD,
327     AV_CODEC_ID_VP6A,
328     AV_CODEC_ID_AMV,
329     AV_CODEC_ID_VB,
330     AV_CODEC_ID_PCX,
331     AV_CODEC_ID_SUNRAST,
332     AV_CODEC_ID_INDEO4,
333     AV_CODEC_ID_INDEO5,
334     AV_CODEC_ID_MIMIC,
335     AV_CODEC_ID_RL2,
336     AV_CODEC_ID_ESCAPE124,
337     AV_CODEC_ID_DIRAC,
338     AV_CODEC_ID_BFI,
339     AV_CODEC_ID_CMV,
340     AV_CODEC_ID_MOTIONPIXELS,
341     AV_CODEC_ID_TGV,
342     AV_CODEC_ID_TGQ,
343     AV_CODEC_ID_TQI,
344     AV_CODEC_ID_AURA,
345     AV_CODEC_ID_AURA2,
346     AV_CODEC_ID_V210X,
347     AV_CODEC_ID_TMV,
348     AV_CODEC_ID_V210,
349     AV_CODEC_ID_DPX,
350     AV_CODEC_ID_MAD,
351     AV_CODEC_ID_FRWU,
352     AV_CODEC_ID_FLASHSV2,
353     AV_CODEC_ID_CDGRAPHICS,
354     AV_CODEC_ID_R210,
355     AV_CODEC_ID_ANM,
356     AV_CODEC_ID_BINKVIDEO,
357     AV_CODEC_ID_IFF_ILBM,
358     AV_CODEC_ID_IFF_BYTERUN1,
359     AV_CODEC_ID_KGV1,
360     AV_CODEC_ID_YOP,
361     AV_CODEC_ID_VP8,
362     AV_CODEC_ID_PICTOR,
363     AV_CODEC_ID_ANSI,
364     AV_CODEC_ID_A64_MULTI,
365     AV_CODEC_ID_A64_MULTI5,
366     AV_CODEC_ID_R10K,
367     AV_CODEC_ID_MXPEG,
368     AV_CODEC_ID_LAGARITH,
369     AV_CODEC_ID_PRORES,
370     AV_CODEC_ID_JV,
371     AV_CODEC_ID_DFA,
372     AV_CODEC_ID_WMV3IMAGE,
373     AV_CODEC_ID_VC1IMAGE,
374     AV_CODEC_ID_UTVIDEO,
375     AV_CODEC_ID_BMV_VIDEO,
376     AV_CODEC_ID_VBLE,
377     AV_CODEC_ID_DXTORY,
378     AV_CODEC_ID_V410,
379     AV_CODEC_ID_XWD,
380     AV_CODEC_ID_CDXL,
381     AV_CODEC_ID_XBM,
382     AV_CODEC_ID_ZEROCODEC,
383     AV_CODEC_ID_MSS1,
384     AV_CODEC_ID_MSA1,
385     AV_CODEC_ID_TSCC2,
386     AV_CODEC_ID_MTS2,
387     AV_CODEC_ID_CLLC,
388     AV_CODEC_ID_MSS2,
389     AV_CODEC_ID_VP9,
390     AV_CODEC_ID_AIC,
391     AV_CODEC_ID_ESCAPE130,
392     AV_CODEC_ID_G2M,
393     AV_CODEC_ID_WEBP,
394     AV_CODEC_ID_HNM4_VIDEO,
395     AV_CODEC_ID_HEVC,
396     AV_CODEC_ID_FIC,
397     AV_CODEC_ID_ALIAS_PIX,
398     AV_CODEC_ID_BRENDER_PIX,
399     AV_CODEC_ID_PAF_VIDEO,
400     AV_CODEC_ID_EXR,
401     AV_CODEC_ID_VP7,
402     AV_CODEC_ID_SANM,
403     AV_CODEC_ID_SGIRLE,
404     AV_CODEC_ID_MVC1,
405     AV_CODEC_ID_MVC2,
406     AV_CODEC_ID_HQX,
407     AV_CODEC_ID_TDSC,
408     AV_CODEC_ID_HQ_HQA,
409     AV_CODEC_ID_HAP,
410     AV_CODEC_ID_DDS,
411     AV_CODEC_ID_DXV,
412     AV_CODEC_ID_SCREENPRESSO,
413     AV_CODEC_ID_RSCC,
414     AV_CODEC_ID_MAGICYUV,
415     AV_CODEC_ID_TRUEMOTION2RT,
416     AV_CODEC_ID_AV1,
417     AV_CODEC_ID_PIXLET,
418     AV_CODEC_ID_CFHD,
419
420     /* various PCM "codecs" */
421     AV_CODEC_ID_FIRST_AUDIO = 0x10000,     ///< A dummy id pointing at the start of audio codecs
422     AV_CODEC_ID_PCM_S16LE = 0x10000,
423     AV_CODEC_ID_PCM_S16BE,
424     AV_CODEC_ID_PCM_U16LE,
425     AV_CODEC_ID_PCM_U16BE,
426     AV_CODEC_ID_PCM_S8,
427     AV_CODEC_ID_PCM_U8,
428     AV_CODEC_ID_PCM_MULAW,
429     AV_CODEC_ID_PCM_ALAW,
430     AV_CODEC_ID_PCM_S32LE,
431     AV_CODEC_ID_PCM_S32BE,
432     AV_CODEC_ID_PCM_U32LE,
433     AV_CODEC_ID_PCM_U32BE,
434     AV_CODEC_ID_PCM_S24LE,
435     AV_CODEC_ID_PCM_S24BE,
436     AV_CODEC_ID_PCM_U24LE,
437     AV_CODEC_ID_PCM_U24BE,
438     AV_CODEC_ID_PCM_S24DAUD,
439     AV_CODEC_ID_PCM_ZORK,
440     AV_CODEC_ID_PCM_S16LE_PLANAR,
441     AV_CODEC_ID_PCM_DVD,
442     AV_CODEC_ID_PCM_F32BE,
443     AV_CODEC_ID_PCM_F32LE,
444     AV_CODEC_ID_PCM_F64BE,
445     AV_CODEC_ID_PCM_F64LE,
446     AV_CODEC_ID_PCM_BLURAY,
447     AV_CODEC_ID_PCM_LXF,
448     AV_CODEC_ID_S302M,
449     AV_CODEC_ID_PCM_S8_PLANAR,
450     AV_CODEC_ID_PCM_S24LE_PLANAR,
451     AV_CODEC_ID_PCM_S32LE_PLANAR,
452     AV_CODEC_ID_PCM_S16BE_PLANAR,
453
454     /* various ADPCM codecs */
455     AV_CODEC_ID_ADPCM_IMA_QT = 0x11000,
456     AV_CODEC_ID_ADPCM_IMA_WAV,
457     AV_CODEC_ID_ADPCM_IMA_DK3,
458     AV_CODEC_ID_ADPCM_IMA_DK4,
459     AV_CODEC_ID_ADPCM_IMA_WS,
460     AV_CODEC_ID_ADPCM_IMA_SMJPEG,
461     AV_CODEC_ID_ADPCM_MS,
462     AV_CODEC_ID_ADPCM_4XM,
463     AV_CODEC_ID_ADPCM_XA,
464     AV_CODEC_ID_ADPCM_ADX,
465     AV_CODEC_ID_ADPCM_EA,
466     AV_CODEC_ID_ADPCM_G726,
467     AV_CODEC_ID_ADPCM_CT,
468     AV_CODEC_ID_ADPCM_SWF,
469     AV_CODEC_ID_ADPCM_YAMAHA,
470     AV_CODEC_ID_ADPCM_SBPRO_4,
471     AV_CODEC_ID_ADPCM_SBPRO_3,
472     AV_CODEC_ID_ADPCM_SBPRO_2,
473     AV_CODEC_ID_ADPCM_THP,
474     AV_CODEC_ID_ADPCM_IMA_AMV,
475     AV_CODEC_ID_ADPCM_EA_R1,
476     AV_CODEC_ID_ADPCM_EA_R3,
477     AV_CODEC_ID_ADPCM_EA_R2,
478     AV_CODEC_ID_ADPCM_IMA_EA_SEAD,
479     AV_CODEC_ID_ADPCM_IMA_EA_EACS,
480     AV_CODEC_ID_ADPCM_EA_XAS,
481     AV_CODEC_ID_ADPCM_EA_MAXIS_XA,
482     AV_CODEC_ID_ADPCM_IMA_ISS,
483     AV_CODEC_ID_ADPCM_G722,
484     AV_CODEC_ID_ADPCM_IMA_APC,
485     AV_CODEC_ID_ADPCM_VIMA,
486
487     /* AMR */
488     AV_CODEC_ID_AMR_NB = 0x12000,
489     AV_CODEC_ID_AMR_WB,
490
491     /* RealAudio codecs*/
492     AV_CODEC_ID_RA_144 = 0x13000,
493     AV_CODEC_ID_RA_288,
494
495     /* various DPCM codecs */
496     AV_CODEC_ID_ROQ_DPCM = 0x14000,
497     AV_CODEC_ID_INTERPLAY_DPCM,
498     AV_CODEC_ID_XAN_DPCM,
499     AV_CODEC_ID_SOL_DPCM,
500
501     /* audio codecs */
502     AV_CODEC_ID_MP2 = 0x15000,
503     AV_CODEC_ID_MP3, ///< preferred ID for decoding MPEG audio layer 1, 2 or 3
504     AV_CODEC_ID_AAC,
505     AV_CODEC_ID_AC3,
506     AV_CODEC_ID_DTS,
507     AV_CODEC_ID_VORBIS,
508     AV_CODEC_ID_DVAUDIO,
509     AV_CODEC_ID_WMAV1,
510     AV_CODEC_ID_WMAV2,
511     AV_CODEC_ID_MACE3,
512     AV_CODEC_ID_MACE6,
513     AV_CODEC_ID_VMDAUDIO,
514     AV_CODEC_ID_FLAC,
515     AV_CODEC_ID_MP3ADU,
516     AV_CODEC_ID_MP3ON4,
517     AV_CODEC_ID_SHORTEN,
518     AV_CODEC_ID_ALAC,
519     AV_CODEC_ID_WESTWOOD_SND1,
520     AV_CODEC_ID_GSM, ///< as in Berlin toast format
521     AV_CODEC_ID_QDM2,
522     AV_CODEC_ID_COOK,
523     AV_CODEC_ID_TRUESPEECH,
524     AV_CODEC_ID_TTA,
525     AV_CODEC_ID_SMACKAUDIO,
526     AV_CODEC_ID_QCELP,
527     AV_CODEC_ID_WAVPACK,
528     AV_CODEC_ID_DSICINAUDIO,
529     AV_CODEC_ID_IMC,
530     AV_CODEC_ID_MUSEPACK7,
531     AV_CODEC_ID_MLP,
532     AV_CODEC_ID_GSM_MS, /* as found in WAV */
533     AV_CODEC_ID_ATRAC3,
534     AV_CODEC_ID_APE,
535     AV_CODEC_ID_NELLYMOSER,
536     AV_CODEC_ID_MUSEPACK8,
537     AV_CODEC_ID_SPEEX,
538     AV_CODEC_ID_WMAVOICE,
539     AV_CODEC_ID_WMAPRO,
540     AV_CODEC_ID_WMALOSSLESS,
541     AV_CODEC_ID_ATRAC3P,
542     AV_CODEC_ID_EAC3,
543     AV_CODEC_ID_SIPR,
544     AV_CODEC_ID_MP1,
545     AV_CODEC_ID_TWINVQ,
546     AV_CODEC_ID_TRUEHD,
547     AV_CODEC_ID_MP4ALS,
548     AV_CODEC_ID_ATRAC1,
549     AV_CODEC_ID_BINKAUDIO_RDFT,
550     AV_CODEC_ID_BINKAUDIO_DCT,
551     AV_CODEC_ID_AAC_LATM,
552     AV_CODEC_ID_QDMC,
553     AV_CODEC_ID_CELT,
554     AV_CODEC_ID_G723_1,
555     AV_CODEC_ID_G729,
556     AV_CODEC_ID_8SVX_EXP,
557     AV_CODEC_ID_8SVX_FIB,
558     AV_CODEC_ID_BMV_AUDIO,
559     AV_CODEC_ID_RALF,
560     AV_CODEC_ID_IAC,
561     AV_CODEC_ID_ILBC,
562     AV_CODEC_ID_OPUS,
563     AV_CODEC_ID_COMFORT_NOISE,
564     AV_CODEC_ID_TAK,
565     AV_CODEC_ID_METASOUND,
566     AV_CODEC_ID_PAF_AUDIO,
567     AV_CODEC_ID_ON2AVC,
568     AV_CODEC_ID_DSS_SP,
569
570     /* subtitle codecs */
571     AV_CODEC_ID_FIRST_SUBTITLE = 0x17000,          ///< A dummy ID pointing at the start of subtitle codecs.
572     AV_CODEC_ID_DVD_SUBTITLE = 0x17000,
573     AV_CODEC_ID_DVB_SUBTITLE,
574     AV_CODEC_ID_TEXT,  ///< raw UTF-8 text
575     AV_CODEC_ID_XSUB,
576     AV_CODEC_ID_SSA,
577     AV_CODEC_ID_MOV_TEXT,
578     AV_CODEC_ID_HDMV_PGS_SUBTITLE,
579     AV_CODEC_ID_DVB_TELETEXT,
580     AV_CODEC_ID_SRT,
581
582     /* other specific kind of codecs (generally used for attachments) */
583     AV_CODEC_ID_FIRST_UNKNOWN = 0x18000,           ///< A dummy ID pointing at the start of various fake codecs.
584     AV_CODEC_ID_TTF = 0x18000,
585
586     AV_CODEC_ID_PROBE = 0x19000, ///< codec_id is not known (like AV_CODEC_ID_NONE) but lavf should attempt to identify it
587
588     AV_CODEC_ID_MPEG2TS = 0x20000, /**< _FAKE_ codec to indicate a raw MPEG-2 TS
589                                 * stream (only used by libavformat) */
590     AV_CODEC_ID_MPEG4SYSTEMS = 0x20001, /**< _FAKE_ codec to indicate a MPEG-4 Systems
591                                 * stream (only used by libavformat) */
592     AV_CODEC_ID_FFMETADATA = 0x21000,   ///< Dummy codec for streams containing only metadata information.
593     AV_CODEC_ID_WRAPPED_AVFRAME = 0x21001, ///< Passthrough codec, AVFrames wrapped in AVPacket
594 };
595
596 /**
597  * This struct describes the properties of a single codec described by an
598  * AVCodecID.
599  * @see avcodec_descriptor_get()
600  */
601 typedef struct AVCodecDescriptor {
602     enum AVCodecID     id;
603     enum AVMediaType type;
604     /**
605      * Name of the codec described by this descriptor. It is non-empty and
606      * unique for each codec descriptor. It should contain alphanumeric
607      * characters and '_' only.
608      */
609     const char      *name;
610     /**
611      * A more descriptive name for this codec. May be NULL.
612      */
613     const char *long_name;
614     /**
615      * Codec properties, a combination of AV_CODEC_PROP_* flags.
616      */
617     int             props;
618     /**
619      * If non-NULL, an array of profiles recognized for this codec.
620      * Terminated with FF_PROFILE_UNKNOWN.
621      */
622     const struct AVProfile *profiles;
623 } AVCodecDescriptor;
624
625 /**
626  * Codec uses only intra compression.
627  * Video codecs only.
628  */
629 #define AV_CODEC_PROP_INTRA_ONLY    (1 << 0)
630 /**
631  * Codec supports lossy compression. Audio and video codecs only.
632  * @note a codec may support both lossy and lossless
633  * compression modes
634  */
635 #define AV_CODEC_PROP_LOSSY         (1 << 1)
636 /**
637  * Codec supports lossless compression. Audio and video codecs only.
638  */
639 #define AV_CODEC_PROP_LOSSLESS      (1 << 2)
640 /**
641  * Codec supports frame reordering. That is, the coded order (the order in which
642  * the encoded packets are output by the encoders / stored / input to the
643  * decoders) may be different from the presentation order of the corresponding
644  * frames.
645  *
646  * For codecs that do not have this property set, PTS and DTS should always be
647  * equal.
648  */
649 #define AV_CODEC_PROP_REORDER       (1 << 3)
650
651 /**
652  * @ingroup lavc_decoding
653  * Required number of additionally allocated bytes at the end of the input bitstream for decoding.
654  * This is mainly needed because some optimized bitstream readers read
655  * 32 or 64 bit at once and could read over the end.<br>
656  * Note: If the first 23 bits of the additional bytes are not 0, then damaged
657  * MPEG bitstreams could cause overread and segfault.
658  */
659 #define AV_INPUT_BUFFER_PADDING_SIZE 8
660
661 /**
662  * @ingroup lavc_encoding
663  * minimum encoding buffer size
664  * Used to avoid some checks during header writing.
665  */
666 #define AV_INPUT_BUFFER_MIN_SIZE 16384
667
668 #if FF_API_WITHOUT_PREFIX
669 /**
670  * @deprecated use AV_INPUT_BUFFER_PADDING_SIZE instead
671  */
672 #define FF_INPUT_BUFFER_PADDING_SIZE 8
673
674 /**
675  * @deprecated use AV_INPUT_BUFFER_MIN_SIZE instead
676  */
677 #define FF_MIN_BUFFER_SIZE 16384
678 #endif /* FF_API_WITHOUT_PREFIX */
679
680 /**
681  * @ingroup lavc_encoding
682  * motion estimation type.
683  * @deprecated use codec private option instead
684  */
685 #if FF_API_MOTION_EST
686 enum Motion_Est_ID {
687     ME_ZERO = 1,    ///< no search, that is use 0,0 vector whenever one is needed
688     ME_FULL,
689     ME_LOG,
690     ME_PHODS,
691     ME_EPZS,        ///< enhanced predictive zonal search
692     ME_X1,          ///< reserved for experiments
693     ME_HEX,         ///< hexagon based search
694     ME_UMH,         ///< uneven multi-hexagon search
695     ME_TESA,        ///< transformed exhaustive search algorithm
696 };
697 #endif
698
699 /**
700  * @ingroup lavc_decoding
701  */
702 enum AVDiscard{
703     /* We leave some space between them for extensions (drop some
704      * keyframes for intra-only or drop just some bidir frames). */
705     AVDISCARD_NONE    =-16, ///< discard nothing
706     AVDISCARD_DEFAULT =  0, ///< discard useless packets like 0 size packets in avi
707     AVDISCARD_NONREF  =  8, ///< discard all non reference
708     AVDISCARD_BIDIR   = 16, ///< discard all bidirectional frames
709     AVDISCARD_NONKEY  = 32, ///< discard all frames except keyframes
710     AVDISCARD_ALL     = 48, ///< discard all
711 };
712
713 enum AVAudioServiceType {
714     AV_AUDIO_SERVICE_TYPE_MAIN              = 0,
715     AV_AUDIO_SERVICE_TYPE_EFFECTS           = 1,
716     AV_AUDIO_SERVICE_TYPE_VISUALLY_IMPAIRED = 2,
717     AV_AUDIO_SERVICE_TYPE_HEARING_IMPAIRED  = 3,
718     AV_AUDIO_SERVICE_TYPE_DIALOGUE          = 4,
719     AV_AUDIO_SERVICE_TYPE_COMMENTARY        = 5,
720     AV_AUDIO_SERVICE_TYPE_EMERGENCY         = 6,
721     AV_AUDIO_SERVICE_TYPE_VOICE_OVER        = 7,
722     AV_AUDIO_SERVICE_TYPE_KARAOKE           = 8,
723     AV_AUDIO_SERVICE_TYPE_NB                   , ///< Not part of ABI
724 };
725
726 /**
727  * @ingroup lavc_encoding
728  */
729 typedef struct RcOverride{
730     int start_frame;
731     int end_frame;
732     int qscale; // If this is 0 then quality_factor will be used instead.
733     float quality_factor;
734 } RcOverride;
735
736 #if FF_API_MAX_BFRAMES
737 /**
738  * @deprecated there is no libavcodec-wide limit on the number of B-frames
739  */
740 #define FF_MAX_B_FRAMES 16
741 #endif
742
743 /* encoding support
744    These flags can be passed in AVCodecContext.flags before initialization.
745    Note: Not everything is supported yet.
746 */
747
748 /**
749  * Allow decoders to produce frames with data planes that are not aligned
750  * to CPU requirements (e.g. due to cropping).
751  */
752 #define AV_CODEC_FLAG_UNALIGNED       (1 <<  0)
753 /**
754  * Use fixed qscale.
755  */
756 #define AV_CODEC_FLAG_QSCALE          (1 <<  1)
757 /**
758  * 4 MV per MB allowed / advanced prediction for H.263.
759  */
760 #define AV_CODEC_FLAG_4MV             (1 <<  2)
761 /**
762  * Output even those frames that might be corrupted.
763  */
764 #define AV_CODEC_FLAG_OUTPUT_CORRUPT  (1 <<  3)
765 /**
766  * Use qpel MC.
767  */
768 #define AV_CODEC_FLAG_QPEL            (1 <<  4)
769 /**
770  * Use internal 2pass ratecontrol in first pass mode.
771  */
772 #define AV_CODEC_FLAG_PASS1           (1 <<  9)
773 /**
774  * Use internal 2pass ratecontrol in second pass mode.
775  */
776 #define AV_CODEC_FLAG_PASS2           (1 << 10)
777 /**
778  * loop filter.
779  */
780 #define AV_CODEC_FLAG_LOOP_FILTER     (1 << 11)
781 /**
782  * Only decode/encode grayscale.
783  */
784 #define AV_CODEC_FLAG_GRAY            (1 << 13)
785 /**
786  * error[?] variables will be set during encoding.
787  */
788 #define AV_CODEC_FLAG_PSNR            (1 << 15)
789 /**
790  * Input bitstream might be truncated at a random location
791  * instead of only at frame boundaries.
792  */
793 #define AV_CODEC_FLAG_TRUNCATED       (1 << 16)
794 /**
795  * Use interlaced DCT.
796  */
797 #define AV_CODEC_FLAG_INTERLACED_DCT  (1 << 18)
798 /**
799  * Force low delay.
800  */
801 #define AV_CODEC_FLAG_LOW_DELAY       (1 << 19)
802 /**
803  * Place global headers in extradata instead of every keyframe.
804  */
805 #define AV_CODEC_FLAG_GLOBAL_HEADER   (1 << 22)
806 /**
807  * Use only bitexact stuff (except (I)DCT).
808  */
809 #define AV_CODEC_FLAG_BITEXACT        (1 << 23)
810 /* Fx : Flag for H.263+ extra options */
811 /**
812  * H.263 advanced intra coding / MPEG-4 AC prediction
813  */
814 #define AV_CODEC_FLAG_AC_PRED         (1 << 24)
815 /**
816  * interlaced motion estimation
817  */
818 #define AV_CODEC_FLAG_INTERLACED_ME   (1 << 29)
819 #define AV_CODEC_FLAG_CLOSED_GOP      (1 << 31)
820
821 /**
822  * Allow non spec compliant speedup tricks.
823  */
824 #define AV_CODEC_FLAG2_FAST           (1 <<  0)
825 /**
826  * Skip bitstream encoding.
827  */
828 #define AV_CODEC_FLAG2_NO_OUTPUT      (1 <<  2)
829 /**
830  * Place global headers at every keyframe instead of in extradata.
831  */
832 #define AV_CODEC_FLAG2_LOCAL_HEADER   (1 <<  3)
833 /**
834  * Input bitstream might be truncated at a packet boundaries
835  * instead of only at frame boundaries.
836  */
837 #define AV_CODEC_FLAG2_CHUNKS         (1 << 15)
838 /**
839  * Discard cropping information from SPS.
840  */
841 #define AV_CODEC_FLAG2_IGNORE_CROP    (1 << 16)
842
843 /* Unsupported options :
844  *              Syntax Arithmetic coding (SAC)
845  *              Reference Picture Selection
846  *              Independent Segment Decoding */
847 /* /Fx */
848 /* codec capabilities */
849
850 /**
851  * Decoder can use draw_horiz_band callback.
852  */
853 #define AV_CODEC_CAP_DRAW_HORIZ_BAND     (1 <<  0)
854 /**
855  * Codec uses get_buffer() for allocating buffers and supports custom allocators.
856  * If not set, it might not use get_buffer() at all or use operations that
857  * assume the buffer was allocated by avcodec_default_get_buffer.
858  */
859 #define AV_CODEC_CAP_DR1                 (1 <<  1)
860 #define AV_CODEC_CAP_TRUNCATED           (1 <<  3)
861 /**
862  * Encoder or decoder requires flushing with NULL input at the end in order to
863  * give the complete and correct output.
864  *
865  * NOTE: If this flag is not set, the codec is guaranteed to never be fed with
866  *       with NULL data. The user can still send NULL data to the public encode
867  *       or decode function, but libavcodec will not pass it along to the codec
868  *       unless this flag is set.
869  *
870  * Decoders:
871  * The decoder has a non-zero delay and needs to be fed with avpkt->data=NULL,
872  * avpkt->size=0 at the end to get the delayed data until the decoder no longer
873  * returns frames.
874  *
875  * Encoders:
876  * The encoder needs to be fed with NULL data at the end of encoding until the
877  * encoder no longer returns data.
878  *
879  * NOTE: For encoders implementing the AVCodec.encode2() function, setting this
880  *       flag also means that the encoder must set the pts and duration for
881  *       each output packet. If this flag is not set, the pts and duration will
882  *       be determined by libavcodec from the input frame.
883  */
884 #define AV_CODEC_CAP_DELAY               (1 <<  5)
885 /**
886  * Codec can be fed a final frame with a smaller size.
887  * This can be used to prevent truncation of the last audio samples.
888  */
889 #define AV_CODEC_CAP_SMALL_LAST_FRAME    (1 <<  6)
890 /**
891  * Codec can output multiple frames per AVPacket
892  * Normally demuxers return one frame at a time, demuxers which do not do
893  * are connected to a parser to split what they return into proper frames.
894  * This flag is reserved to the very rare category of codecs which have a
895  * bitstream that cannot be split into frames without timeconsuming
896  * operations like full decoding. Demuxers carrying such bitstreams thus
897  * may return multiple frames in a packet. This has many disadvantages like
898  * prohibiting stream copy in many cases thus it should only be considered
899  * as a last resort.
900  */
901 #define AV_CODEC_CAP_SUBFRAMES           (1 <<  8)
902 /**
903  * Codec is experimental and is thus avoided in favor of non experimental
904  * encoders
905  */
906 #define AV_CODEC_CAP_EXPERIMENTAL        (1 <<  9)
907 /**
908  * Codec should fill in channel configuration and samplerate instead of container
909  */
910 #define AV_CODEC_CAP_CHANNEL_CONF        (1 << 10)
911 /**
912  * Codec supports frame-level multithreading.
913  */
914 #define AV_CODEC_CAP_FRAME_THREADS       (1 << 12)
915 /**
916  * Codec supports slice-based (or partition-based) multithreading.
917  */
918 #define AV_CODEC_CAP_SLICE_THREADS       (1 << 13)
919 /**
920  * Codec supports changed parameters at any point.
921  */
922 #define AV_CODEC_CAP_PARAM_CHANGE        (1 << 14)
923 /**
924  * Codec supports avctx->thread_count == 0 (auto).
925  */
926 #define AV_CODEC_CAP_AUTO_THREADS        (1 << 15)
927 /**
928  * Audio encoder supports receiving a different number of samples in each call.
929  */
930 #define AV_CODEC_CAP_VARIABLE_FRAME_SIZE (1 << 16)
931
932 #if FF_API_WITHOUT_PREFIX
933 /**
934  * Allow decoders to produce frames with data planes that are not aligned
935  * to CPU requirements (e.g. due to cropping).
936  */
937 #define CODEC_FLAG_UNALIGNED 0x0001
938 #define CODEC_FLAG_QSCALE 0x0002  ///< Use fixed qscale.
939 #define CODEC_FLAG_4MV    0x0004  ///< 4 MV per MB allowed / advanced prediction for H.263.
940 #define CODEC_FLAG_OUTPUT_CORRUPT 0x0008 ///< Output even those frames that might be corrupted
941 #define CODEC_FLAG_QPEL   0x0010  ///< Use qpel MC.
942 #if FF_API_GMC
943 /**
944  * @deprecated use the "gmc" private option of the libxvid encoder
945  */
946 #define CODEC_FLAG_GMC    0x0020  ///< Use GMC.
947 #endif
948 #if FF_API_MV0
949 /**
950  * @deprecated use the flag "mv0" in the "mpv_flags" private option of the
951  * mpegvideo encoders
952  */
953 #define CODEC_FLAG_MV0    0x0040
954 #endif
955 #if FF_API_INPUT_PRESERVED
956 /**
957  * @deprecated passing reference-counted frames to the encoders replaces this
958  * flag
959  */
960 #define CODEC_FLAG_INPUT_PRESERVED 0x0100
961 #endif
962 #define CODEC_FLAG_PASS1           0x0200   ///< Use internal 2pass ratecontrol in first pass mode.
963 #define CODEC_FLAG_PASS2           0x0400   ///< Use internal 2pass ratecontrol in second pass mode.
964 #define CODEC_FLAG_GRAY            0x2000   ///< Only decode/encode grayscale.
965 #if FF_API_EMU_EDGE
966 /**
967  * @deprecated edges are not used/required anymore. I.e. this flag is now always
968  * set.
969  */
970 #define CODEC_FLAG_EMU_EDGE        0x4000
971 #endif
972 #define CODEC_FLAG_PSNR            0x8000   ///< error[?] variables will be set during encoding.
973 #define CODEC_FLAG_TRUNCATED       0x00010000 /** Input bitstream might be truncated at a random
974                                                   location instead of only at frame boundaries. */
975 #if FF_API_NORMALIZE_AQP
976 /**
977  * @deprecated use the flag "naq" in the "mpv_flags" private option of the
978  * mpegvideo encoders
979  */
980 #define CODEC_FLAG_NORMALIZE_AQP  0x00020000
981 #endif
982 #define CODEC_FLAG_INTERLACED_DCT 0x00040000 ///< Use interlaced DCT.
983 #define CODEC_FLAG_LOW_DELAY      0x00080000 ///< Force low delay.
984 #define CODEC_FLAG_GLOBAL_HEADER  0x00400000 ///< Place global headers in extradata instead of every keyframe.
985 #define CODEC_FLAG_BITEXACT       0x00800000 ///< Use only bitexact stuff (except (I)DCT).
986 /* Fx : Flag for H.263+ extra options */
987 #define CODEC_FLAG_AC_PRED        0x01000000 ///< H.263 advanced intra coding / MPEG-4 AC prediction
988 #define CODEC_FLAG_LOOP_FILTER    0x00000800 ///< loop filter
989 #define CODEC_FLAG_INTERLACED_ME  0x20000000 ///< interlaced motion estimation
990 #define CODEC_FLAG_CLOSED_GOP     0x80000000
991 #define CODEC_FLAG2_FAST          0x00000001 ///< Allow non spec compliant speedup tricks.
992 #define CODEC_FLAG2_NO_OUTPUT     0x00000004 ///< Skip bitstream encoding.
993 #define CODEC_FLAG2_LOCAL_HEADER  0x00000008 ///< Place global headers at every keyframe instead of in extradata.
994 #define CODEC_FLAG2_IGNORE_CROP   0x00010000 ///< Discard cropping information from SPS.
995
996 #define CODEC_FLAG2_CHUNKS        0x00008000 ///< Input bitstream might be truncated at a packet boundaries instead of only at frame boundaries.
997
998 /* Unsupported options :
999  *              Syntax Arithmetic coding (SAC)
1000  *              Reference Picture Selection
1001  *              Independent Segment Decoding */
1002 /* /Fx */
1003 /* codec capabilities */
1004
1005 #define CODEC_CAP_DRAW_HORIZ_BAND 0x0001 ///< Decoder can use draw_horiz_band callback.
1006 /**
1007  * Codec uses get_buffer() for allocating buffers and supports custom allocators.
1008  * If not set, it might not use get_buffer() at all or use operations that
1009  * assume the buffer was allocated by avcodec_default_get_buffer.
1010  */
1011 #define CODEC_CAP_DR1             0x0002
1012 #define CODEC_CAP_TRUNCATED       0x0008
1013 #if FF_API_XVMC
1014 /* Codec can export data for HW decoding (XvMC). */
1015 #define CODEC_CAP_HWACCEL         0x0010
1016 #endif /* FF_API_XVMC */
1017 /**
1018  * Encoder or decoder requires flushing with NULL input at the end in order to
1019  * give the complete and correct output.
1020  *
1021  * NOTE: If this flag is not set, the codec is guaranteed to never be fed with
1022  *       with NULL data. The user can still send NULL data to the public encode
1023  *       or decode function, but libavcodec will not pass it along to the codec
1024  *       unless this flag is set.
1025  *
1026  * Decoders:
1027  * The decoder has a non-zero delay and needs to be fed with avpkt->data=NULL,
1028  * avpkt->size=0 at the end to get the delayed data until the decoder no longer
1029  * returns frames.
1030  *
1031  * Encoders:
1032  * The encoder needs to be fed with NULL data at the end of encoding until the
1033  * encoder no longer returns data.
1034  *
1035  * NOTE: For encoders implementing the AVCodec.encode2() function, setting this
1036  *       flag also means that the encoder must set the pts and duration for
1037  *       each output packet. If this flag is not set, the pts and duration will
1038  *       be determined by libavcodec from the input frame.
1039  */
1040 #define CODEC_CAP_DELAY           0x0020
1041 /**
1042  * Codec can be fed a final frame with a smaller size.
1043  * This can be used to prevent truncation of the last audio samples.
1044  */
1045 #define CODEC_CAP_SMALL_LAST_FRAME 0x0040
1046 /**
1047  * Codec can output multiple frames per AVPacket
1048  * Normally demuxers return one frame at a time, demuxers which do not do
1049  * are connected to a parser to split what they return into proper frames.
1050  * This flag is reserved to the very rare category of codecs which have a
1051  * bitstream that cannot be split into frames without timeconsuming
1052  * operations like full decoding. Demuxers carrying such bitstreams thus
1053  * may return multiple frames in a packet. This has many disadvantages like
1054  * prohibiting stream copy in many cases thus it should only be considered
1055  * as a last resort.
1056  */
1057 #define CODEC_CAP_SUBFRAMES        0x0100
1058 /**
1059  * Codec is experimental and is thus avoided in favor of non experimental
1060  * encoders
1061  */
1062 #define CODEC_CAP_EXPERIMENTAL     0x0200
1063 /**
1064  * Codec should fill in channel configuration and samplerate instead of container
1065  */
1066 #define CODEC_CAP_CHANNEL_CONF     0x0400
1067 #if FF_API_NEG_LINESIZES
1068 /**
1069  * @deprecated no codecs use this capability
1070  */
1071 #define CODEC_CAP_NEG_LINESIZES    0x0800
1072 #endif
1073 /**
1074  * Codec supports frame-level multithreading.
1075  */
1076 #define CODEC_CAP_FRAME_THREADS    0x1000
1077 /**
1078  * Codec supports slice-based (or partition-based) multithreading.
1079  */
1080 #define CODEC_CAP_SLICE_THREADS    0x2000
1081 /**
1082  * Codec supports changed parameters at any point.
1083  */
1084 #define CODEC_CAP_PARAM_CHANGE     0x4000
1085 /**
1086  * Codec supports avctx->thread_count == 0 (auto).
1087  */
1088 #define CODEC_CAP_AUTO_THREADS     0x8000
1089 /**
1090  * Audio encoder supports receiving a different number of samples in each call.
1091  */
1092 #define CODEC_CAP_VARIABLE_FRAME_SIZE 0x10000
1093 #endif /* FF_API_WITHOUT_PREFIX */
1094
1095 #if FF_API_MB_TYPE
1096 //The following defines may change, don't expect compatibility if you use them.
1097 #define MB_TYPE_INTRA4x4   0x0001
1098 #define MB_TYPE_INTRA16x16 0x0002 //FIXME H.264-specific
1099 #define MB_TYPE_INTRA_PCM  0x0004 //FIXME H.264-specific
1100 #define MB_TYPE_16x16      0x0008
1101 #define MB_TYPE_16x8       0x0010
1102 #define MB_TYPE_8x16       0x0020
1103 #define MB_TYPE_8x8        0x0040
1104 #define MB_TYPE_INTERLACED 0x0080
1105 #define MB_TYPE_DIRECT2    0x0100 //FIXME
1106 #define MB_TYPE_ACPRED     0x0200
1107 #define MB_TYPE_GMC        0x0400
1108 #define MB_TYPE_SKIP       0x0800
1109 #define MB_TYPE_P0L0       0x1000
1110 #define MB_TYPE_P1L0       0x2000
1111 #define MB_TYPE_P0L1       0x4000
1112 #define MB_TYPE_P1L1       0x8000
1113 #define MB_TYPE_L0         (MB_TYPE_P0L0 | MB_TYPE_P1L0)
1114 #define MB_TYPE_L1         (MB_TYPE_P0L1 | MB_TYPE_P1L1)
1115 #define MB_TYPE_L0L1       (MB_TYPE_L0   | MB_TYPE_L1)
1116 #define MB_TYPE_QUANT      0x00010000
1117 #define MB_TYPE_CBP        0x00020000
1118 // Note bits 24-31 are reserved for codec specific use (H.264 ref0, MPEG-1 0mv, ...)
1119 #endif
1120
1121 /**
1122  * Pan Scan area.
1123  * This specifies the area which should be displayed.
1124  * Note there may be multiple such areas for one frame.
1125  */
1126 typedef struct AVPanScan{
1127     /**
1128      * id
1129      * - encoding: Set by user.
1130      * - decoding: Set by libavcodec.
1131      */
1132     int id;
1133
1134     /**
1135      * width and height in 1/16 pel
1136      * - encoding: Set by user.
1137      * - decoding: Set by libavcodec.
1138      */
1139     int width;
1140     int height;
1141
1142     /**
1143      * position of the top left corner in 1/16 pel for up to 3 fields/frames
1144      * - encoding: Set by user.
1145      * - decoding: Set by libavcodec.
1146      */
1147     int16_t position[3][2];
1148 }AVPanScan;
1149
1150 /**
1151  * This structure describes the bitrate properties of an encoded bitstream. It
1152  * roughly corresponds to a subset the VBV parameters for MPEG-2 or HRD
1153  * parameters for H.264/HEVC.
1154  */
1155 typedef struct AVCPBProperties {
1156     /**
1157      * Maximum bitrate of the stream, in bits per second.
1158      * Zero if unknown or unspecified.
1159      */
1160     int max_bitrate;
1161     /**
1162      * Minimum bitrate of the stream, in bits per second.
1163      * Zero if unknown or unspecified.
1164      */
1165     int min_bitrate;
1166     /**
1167      * Average bitrate of the stream, in bits per second.
1168      * Zero if unknown or unspecified.
1169      */
1170     int avg_bitrate;
1171
1172     /**
1173      * The size of the buffer to which the ratecontrol is applied, in bits.
1174      * Zero if unknown or unspecified.
1175      */
1176     int buffer_size;
1177
1178     /**
1179      * The delay between the time the packet this structure is associated with
1180      * is received and the time when it should be decoded, in periods of a 27MHz
1181      * clock.
1182      *
1183      * UINT64_MAX when unknown or unspecified.
1184      */
1185     uint64_t vbv_delay;
1186 } AVCPBProperties;
1187
1188 #if FF_API_QSCALE_TYPE
1189 #define FF_QSCALE_TYPE_MPEG1 0
1190 #define FF_QSCALE_TYPE_MPEG2 1
1191 #define FF_QSCALE_TYPE_H264  2
1192 #define FF_QSCALE_TYPE_VP56  3
1193 #endif
1194
1195 /**
1196  * The decoder will keep a reference to the frame and may reuse it later.
1197  */
1198 #define AV_GET_BUFFER_FLAG_REF (1 << 0)
1199
1200 /**
1201  * @defgroup lavc_packet AVPacket
1202  *
1203  * Types and functions for working with AVPacket.
1204  * @{
1205  */
1206 enum AVPacketSideDataType {
1207     /**
1208      * An AV_PKT_DATA_PALETTE side data packet contains exactly AVPALETTE_SIZE
1209      * bytes worth of palette. This side data signals that a new palette is
1210      * present.
1211      */
1212     AV_PKT_DATA_PALETTE,
1213
1214     /**
1215      * The AV_PKT_DATA_NEW_EXTRADATA is used to notify the codec or the format
1216      * that the extradata buffer was changed and the receiving side should
1217      * act upon it appropriately. The new extradata is embedded in the side
1218      * data buffer and should be immediately used for processing the current
1219      * frame or packet.
1220      */
1221     AV_PKT_DATA_NEW_EXTRADATA,
1222
1223     /**
1224      * An AV_PKT_DATA_PARAM_CHANGE side data packet is laid out as follows:
1225      * @code
1226      * u32le param_flags
1227      * if (param_flags & AV_SIDE_DATA_PARAM_CHANGE_CHANNEL_COUNT)
1228      *     s32le channel_count
1229      * if (param_flags & AV_SIDE_DATA_PARAM_CHANGE_CHANNEL_LAYOUT)
1230      *     u64le channel_layout
1231      * if (param_flags & AV_SIDE_DATA_PARAM_CHANGE_SAMPLE_RATE)
1232      *     s32le sample_rate
1233      * if (param_flags & AV_SIDE_DATA_PARAM_CHANGE_DIMENSIONS)
1234      *     s32le width
1235      *     s32le height
1236      * @endcode
1237      */
1238     AV_PKT_DATA_PARAM_CHANGE,
1239
1240     /**
1241      * An AV_PKT_DATA_H263_MB_INFO side data packet contains a number of
1242      * structures with info about macroblocks relevant to splitting the
1243      * packet into smaller packets on macroblock edges (e.g. as for RFC 2190).
1244      * That is, it does not necessarily contain info about all macroblocks,
1245      * as long as the distance between macroblocks in the info is smaller
1246      * than the target payload size.
1247      * Each MB info structure is 12 bytes, and is laid out as follows:
1248      * @code
1249      * u32le bit offset from the start of the packet
1250      * u8    current quantizer at the start of the macroblock
1251      * u8    GOB number
1252      * u16le macroblock address within the GOB
1253      * u8    horizontal MV predictor
1254      * u8    vertical MV predictor
1255      * u8    horizontal MV predictor for block number 3
1256      * u8    vertical MV predictor for block number 3
1257      * @endcode
1258      */
1259     AV_PKT_DATA_H263_MB_INFO,
1260
1261     /**
1262      * This side data should be associated with an audio stream and contains
1263      * ReplayGain information in form of the AVReplayGain struct.
1264      */
1265     AV_PKT_DATA_REPLAYGAIN,
1266
1267     /**
1268      * This side data contains a 3x3 transformation matrix describing an affine
1269      * transformation that needs to be applied to the decoded video frames for
1270      * correct presentation.
1271      *
1272      * See libavutil/display.h for a detailed description of the data.
1273      */
1274     AV_PKT_DATA_DISPLAYMATRIX,
1275
1276     /**
1277      * This side data should be associated with a video stream and contains
1278      * Stereoscopic 3D information in form of the AVStereo3D struct.
1279      */
1280     AV_PKT_DATA_STEREO3D,
1281
1282     /**
1283      * This side data should be associated with an audio stream and corresponds
1284      * to enum AVAudioServiceType.
1285      */
1286     AV_PKT_DATA_AUDIO_SERVICE_TYPE,
1287
1288     /**
1289      * This side data contains an integer value representing the quality
1290      * factor of the compressed frame. Allowed range is between 1 (good)
1291      * and FF_LAMBDA_MAX (bad).
1292      */
1293     AV_PKT_DATA_QUALITY_FACTOR,
1294
1295     /**
1296      * This side data contains an integer value representing the stream index
1297      * of a "fallback" track.  A fallback track indicates an alternate
1298      * track to use when the current track can not be decoded for some reason.
1299      * e.g. no decoder available for codec.
1300      */
1301     AV_PKT_DATA_FALLBACK_TRACK,
1302
1303     /**
1304      * This side data corresponds to the AVCPBProperties struct.
1305      */
1306     AV_PKT_DATA_CPB_PROPERTIES,
1307
1308     /**
1309      * This side data should be associated with a video stream and corresponds
1310      * to the AVSphericalMapping structure.
1311      */
1312     AV_PKT_DATA_SPHERICAL,
1313 };
1314
1315 typedef struct AVPacketSideData {
1316     uint8_t *data;
1317     int      size;
1318     enum AVPacketSideDataType type;
1319 } AVPacketSideData;
1320
1321 /**
1322  * This structure stores compressed data. It is typically exported by demuxers
1323  * and then passed as input to decoders, or received as output from encoders and
1324  * then passed to muxers.
1325  *
1326  * For video, it should typically contain one compressed frame. For audio it may
1327  * contain several compressed frames. Encoders are allowed to output empty
1328  * packets, with no compressed data, containing only side data
1329  * (e.g. to update some stream parameters at the end of encoding).
1330  *
1331  * AVPacket is one of the few structs in Libav, whose size is a part of public
1332  * ABI. Thus it may be allocated on stack and no new fields can be added to it
1333  * without libavcodec and libavformat major bump.
1334  *
1335  * The semantics of data ownership depends on the buf field.
1336  * If it is set, the packet data is dynamically allocated and is
1337  * valid indefinitely until a call to av_packet_unref() reduces the
1338  * reference count to 0.
1339  *
1340  * If the buf field is not set av_packet_ref() would make a copy instead
1341  * of increasing the reference count.
1342  *
1343  * The side data is always allocated with av_malloc(), copied by
1344  * av_packet_ref() and freed by av_packet_unref().
1345  *
1346  * @see av_packet_ref
1347  * @see av_packet_unref
1348  */
1349 typedef struct AVPacket {
1350     /**
1351      * A reference to the reference-counted buffer where the packet data is
1352      * stored.
1353      * May be NULL, then the packet data is not reference-counted.
1354      */
1355     AVBufferRef *buf;
1356     /**
1357      * Presentation timestamp in AVStream->time_base units; the time at which
1358      * the decompressed packet will be presented to the user.
1359      * Can be AV_NOPTS_VALUE if it is not stored in the file.
1360      * pts MUST be larger or equal to dts as presentation cannot happen before
1361      * decompression, unless one wants to view hex dumps. Some formats misuse
1362      * the terms dts and pts/cts to mean something different. Such timestamps
1363      * must be converted to true pts/dts before they are stored in AVPacket.
1364      */
1365     int64_t pts;
1366     /**
1367      * Decompression timestamp in AVStream->time_base units; the time at which
1368      * the packet is decompressed.
1369      * Can be AV_NOPTS_VALUE if it is not stored in the file.
1370      */
1371     int64_t dts;
1372     uint8_t *data;
1373     int   size;
1374     int   stream_index;
1375     /**
1376      * A combination of AV_PKT_FLAG values
1377      */
1378     int   flags;
1379     /**
1380      * Additional packet data that can be provided by the container.
1381      * Packet can contain several types of side information.
1382      */
1383     AVPacketSideData *side_data;
1384     int side_data_elems;
1385
1386     /**
1387      * Duration of this packet in AVStream->time_base units, 0 if unknown.
1388      * Equals next_pts - this_pts in presentation order.
1389      */
1390     int64_t duration;
1391
1392     int64_t pos;                            ///< byte position in stream, -1 if unknown
1393
1394 #if FF_API_CONVERGENCE_DURATION
1395     /**
1396      * @deprecated Same as the duration field, but as int64_t. This was required
1397      * for Matroska subtitles, whose duration values could overflow when the
1398      * duration field was still an int.
1399      */
1400     attribute_deprecated
1401     int64_t convergence_duration;
1402 #endif
1403 } AVPacket;
1404 #define AV_PKT_FLAG_KEY     0x0001 ///< The packet contains a keyframe
1405 #define AV_PKT_FLAG_CORRUPT 0x0002 ///< The packet content is corrupted
1406
1407 enum AVSideDataParamChangeFlags {
1408     AV_SIDE_DATA_PARAM_CHANGE_CHANNEL_COUNT  = 0x0001,
1409     AV_SIDE_DATA_PARAM_CHANGE_CHANNEL_LAYOUT = 0x0002,
1410     AV_SIDE_DATA_PARAM_CHANGE_SAMPLE_RATE    = 0x0004,
1411     AV_SIDE_DATA_PARAM_CHANGE_DIMENSIONS     = 0x0008,
1412 };
1413 /**
1414  * @}
1415  */
1416
1417 struct AVCodecInternal;
1418
1419 enum AVFieldOrder {
1420     AV_FIELD_UNKNOWN,
1421     AV_FIELD_PROGRESSIVE,
1422     AV_FIELD_TT,          //< Top coded_first, top displayed first
1423     AV_FIELD_BB,          //< Bottom coded first, bottom displayed first
1424     AV_FIELD_TB,          //< Top coded first, bottom displayed first
1425     AV_FIELD_BT,          //< Bottom coded first, top displayed first
1426 };
1427
1428 /**
1429  * main external API structure.
1430  * New fields can be added to the end with minor version bumps.
1431  * Removal, reordering and changes to existing fields require a major
1432  * version bump.
1433  * sizeof(AVCodecContext) must not be used outside libav*.
1434  */
1435 typedef struct AVCodecContext {
1436     /**
1437      * information on struct for av_log
1438      * - set by avcodec_alloc_context3
1439      */
1440     const AVClass *av_class;
1441     int log_level_offset;
1442
1443     enum AVMediaType codec_type; /* see AVMEDIA_TYPE_xxx */
1444     const struct AVCodec  *codec;
1445 #if FF_API_CODEC_NAME
1446     /**
1447      * @deprecated this field is not used for anything in libavcodec
1448      */
1449     attribute_deprecated
1450     char             codec_name[32];
1451 #endif
1452     enum AVCodecID     codec_id; /* see AV_CODEC_ID_xxx */
1453
1454     /**
1455      * fourcc (LSB first, so "ABCD" -> ('D'<<24) + ('C'<<16) + ('B'<<8) + 'A').
1456      * This is used to work around some encoder bugs.
1457      * A demuxer should set this to what is stored in the field used to identify the codec.
1458      * If there are multiple such fields in a container then the demuxer should choose the one
1459      * which maximizes the information about the used codec.
1460      * If the codec tag field in a container is larger than 32 bits then the demuxer should
1461      * remap the longer ID to 32 bits with a table or other structure. Alternatively a new
1462      * extra_codec_tag + size could be added but for this a clear advantage must be demonstrated
1463      * first.
1464      * - encoding: Set by user, if not then the default based on codec_id will be used.
1465      * - decoding: Set by user, will be converted to uppercase by libavcodec during init.
1466      */
1467     unsigned int codec_tag;
1468
1469 #if FF_API_STREAM_CODEC_TAG
1470     /**
1471      * @deprecated this field is unused
1472      */
1473     attribute_deprecated
1474     unsigned int stream_codec_tag;
1475 #endif
1476
1477     void *priv_data;
1478
1479     /**
1480      * Private context used for internal data.
1481      *
1482      * Unlike priv_data, this is not codec-specific. It is used in general
1483      * libavcodec functions.
1484      */
1485     struct AVCodecInternal *internal;
1486
1487     /**
1488      * Private data of the user, can be used to carry app specific stuff.
1489      * - encoding: Set by user.
1490      * - decoding: Set by user.
1491      */
1492     void *opaque;
1493
1494     /**
1495      * the average bitrate
1496      * - encoding: Set by user; unused for constant quantizer encoding.
1497      * - decoding: Set by libavcodec. 0 or some bitrate if this info is available in the stream.
1498      */
1499     int bit_rate;
1500
1501     /**
1502      * number of bits the bitstream is allowed to diverge from the reference.
1503      *           the reference can be CBR (for CBR pass1) or VBR (for pass2)
1504      * - encoding: Set by user; unused for constant quantizer encoding.
1505      * - decoding: unused
1506      */
1507     int bit_rate_tolerance;
1508
1509     /**
1510      * Global quality for codecs which cannot change it per frame.
1511      * This should be proportional to MPEG-1/2/4 qscale.
1512      * - encoding: Set by user.
1513      * - decoding: unused
1514      */
1515     int global_quality;
1516
1517     /**
1518      * - encoding: Set by user.
1519      * - decoding: unused
1520      */
1521     int compression_level;
1522 #define FF_COMPRESSION_DEFAULT -1
1523
1524     /**
1525      * AV_CODEC_FLAG_*.
1526      * - encoding: Set by user.
1527      * - decoding: Set by user.
1528      */
1529     int flags;
1530
1531     /**
1532      * AV_CODEC_FLAG2_*
1533      * - encoding: Set by user.
1534      * - decoding: Set by user.
1535      */
1536     int flags2;
1537
1538     /**
1539      * some codecs need / can use extradata like Huffman tables.
1540      * MJPEG: Huffman tables
1541      * rv10: additional flags
1542      * MPEG-4: global headers (they can be in the bitstream or here)
1543      * The allocated memory should be AV_INPUT_BUFFER_PADDING_SIZE bytes larger
1544      * than extradata_size to avoid problems if it is read with the bitstream reader.
1545      * The bytewise contents of extradata must not depend on the architecture or CPU endianness.
1546      * - encoding: Set/allocated/freed by libavcodec.
1547      * - decoding: Set/allocated/freed by user.
1548      */
1549     uint8_t *extradata;
1550     int extradata_size;
1551
1552     /**
1553      * This is the fundamental unit of time (in seconds) in terms
1554      * of which frame timestamps are represented. For fixed-fps content,
1555      * timebase should be 1/framerate and timestamp increments should be
1556      * identically 1.
1557      * - encoding: MUST be set by user.
1558      * - decoding: the use of this field for decoding is deprecated.
1559      *             Use framerate instead.
1560      */
1561     AVRational time_base;
1562
1563     /**
1564      * For some codecs, the time base is closer to the field rate than the frame rate.
1565      * Most notably, H.264 and MPEG-2 specify time_base as half of frame duration
1566      * if no telecine is used ...
1567      *
1568      * Set to time_base ticks per frame. Default 1, e.g., H.264/MPEG-2 set it to 2.
1569      */
1570     int ticks_per_frame;
1571
1572     /**
1573      * Codec delay.
1574      *
1575      * Video:
1576      *   Number of frames the decoded output will be delayed relative to the
1577      *   encoded input.
1578      *
1579      * Audio:
1580      *   For encoding, this field is unused (see initial_padding).
1581      *
1582      *   For decoding, this is the number of samples the decoder needs to
1583      *   output before the decoder's output is valid. When seeking, you should
1584      *   start decoding this many samples prior to your desired seek point.
1585      *
1586      * - encoding: Set by libavcodec.
1587      * - decoding: Set by libavcodec.
1588      */
1589     int delay;
1590
1591
1592     /* video only */
1593     /**
1594      * picture width / height.
1595      *
1596      * @note Those fields may not match the values of the last
1597      * AVFrame output by avcodec_decode_video2 due frame
1598      * reordering.
1599      *
1600      * - encoding: MUST be set by user.
1601      * - decoding: May be set by the user before opening the decoder if known e.g.
1602      *             from the container. Some decoders will require the dimensions
1603      *             to be set by the caller. During decoding, the decoder may
1604      *             overwrite those values as required while parsing the data.
1605      */
1606     int width, height;
1607
1608     /**
1609      * Bitstream width / height, may be different from width/height e.g. when
1610      * the decoded frame is cropped before being output.
1611      *
1612      * @note Those field may not match the value of the last
1613      * AVFrame output by avcodec_receive_frame() due frame
1614      * reordering.
1615      *
1616      * - encoding: unused
1617      * - decoding: May be set by the user before opening the decoder if known
1618      *             e.g. from the container. During decoding, the decoder may
1619      *             overwrite those values as required while parsing the data.
1620      */
1621     int coded_width, coded_height;
1622
1623 #if FF_API_ASPECT_EXTENDED
1624 #define FF_ASPECT_EXTENDED 15
1625 #endif
1626
1627     /**
1628      * the number of pictures in a group of pictures, or 0 for intra_only
1629      * - encoding: Set by user.
1630      * - decoding: unused
1631      */
1632     int gop_size;
1633
1634     /**
1635      * Pixel format, see AV_PIX_FMT_xxx.
1636      * May be set by the demuxer if known from headers.
1637      * May be overridden by the decoder if it knows better.
1638      *
1639      * @note This field may not match the value of the last
1640      * AVFrame output by avcodec_receive_frame() due frame
1641      * reordering.
1642      *
1643      * - encoding: Set by user.
1644      * - decoding: Set by user if known, overridden by libavcodec while
1645      *             parsing the data.
1646      */
1647     enum AVPixelFormat pix_fmt;
1648
1649 #if FF_API_MOTION_EST
1650     /**
1651      * This option does nothing
1652      * @deprecated use codec private options instead
1653      */
1654     attribute_deprecated int me_method;
1655 #endif
1656
1657     /**
1658      * If non NULL, 'draw_horiz_band' is called by the libavcodec
1659      * decoder to draw a horizontal band. It improves cache usage. Not
1660      * all codecs can do that. You must check the codec capabilities
1661      * beforehand.
1662      * When multithreading is used, it may be called from multiple threads
1663      * at the same time; threads might draw different parts of the same AVFrame,
1664      * or multiple AVFrames, and there is no guarantee that slices will be drawn
1665      * in order.
1666      * The function is also used by hardware acceleration APIs.
1667      * It is called at least once during frame decoding to pass
1668      * the data needed for hardware render.
1669      * In that mode instead of pixel data, AVFrame points to
1670      * a structure specific to the acceleration API. The application
1671      * reads the structure and can change some fields to indicate progress
1672      * or mark state.
1673      * - encoding: unused
1674      * - decoding: Set by user.
1675      * @param height the height of the slice
1676      * @param y the y position of the slice
1677      * @param type 1->top field, 2->bottom field, 3->frame
1678      * @param offset offset into the AVFrame.data from which the slice should be read
1679      */
1680     void (*draw_horiz_band)(struct AVCodecContext *s,
1681                             const AVFrame *src, int offset[AV_NUM_DATA_POINTERS],
1682                             int y, int type, int height);
1683
1684     /**
1685      * callback to negotiate the pixelFormat
1686      * @param fmt is the list of formats which are supported by the codec,
1687      * it is terminated by -1 as 0 is a valid format, the formats are ordered by quality.
1688      * The first is always the native one.
1689      * @note The callback may be called again immediately if initialization for
1690      * the selected (hardware-accelerated) pixel format failed.
1691      * @warning Behavior is undefined if the callback returns a value not
1692      * in the fmt list of formats.
1693      * @return the chosen format
1694      * - encoding: unused
1695      * - decoding: Set by user, if not set the native format will be chosen.
1696      */
1697     enum AVPixelFormat (*get_format)(struct AVCodecContext *s, const enum AVPixelFormat * fmt);
1698
1699     /**
1700      * maximum number of B-frames between non-B-frames
1701      * Note: The output will be delayed by max_b_frames+1 relative to the input.
1702      * - encoding: Set by user.
1703      * - decoding: unused
1704      */
1705     int max_b_frames;
1706
1707     /**
1708      * qscale factor between IP and B-frames
1709      * If > 0 then the last P-frame quantizer will be used (q= lastp_q*factor+offset).
1710      * If < 0 then normal ratecontrol will be done (q= -normal_q*factor+offset).
1711      * - encoding: Set by user.
1712      * - decoding: unused
1713      */
1714     float b_quant_factor;
1715
1716 #if FF_API_RC_STRATEGY
1717     /** @deprecated use codec private option instead */
1718     attribute_deprecated int rc_strategy;
1719 #define FF_RC_STRATEGY_XVID 1
1720 #endif
1721
1722 #if FF_API_PRIVATE_OPT
1723     /** @deprecated use encoder private options instead */
1724     attribute_deprecated
1725     int b_frame_strategy;
1726 #endif
1727
1728     /**
1729      * qscale offset between IP and B-frames
1730      * - encoding: Set by user.
1731      * - decoding: unused
1732      */
1733     float b_quant_offset;
1734
1735     /**
1736      * Size of the frame reordering buffer in the decoder.
1737      * For MPEG-2 it is 1 IPB or 0 low delay IP.
1738      * - encoding: Set by libavcodec.
1739      * - decoding: Set by libavcodec.
1740      */
1741     int has_b_frames;
1742
1743 #if FF_API_PRIVATE_OPT
1744     /** @deprecated use encoder private options instead */
1745     attribute_deprecated
1746     int mpeg_quant;
1747 #endif
1748
1749     /**
1750      * qscale factor between P- and I-frames
1751      * If > 0 then the last P-frame quantizer will be used (q = lastp_q * factor + offset).
1752      * If < 0 then normal ratecontrol will be done (q= -normal_q*factor+offset).
1753      * - encoding: Set by user.
1754      * - decoding: unused
1755      */
1756     float i_quant_factor;
1757
1758     /**
1759      * qscale offset between P and I-frames
1760      * - encoding: Set by user.
1761      * - decoding: unused
1762      */
1763     float i_quant_offset;
1764
1765     /**
1766      * luminance masking (0-> disabled)
1767      * - encoding: Set by user.
1768      * - decoding: unused
1769      */
1770     float lumi_masking;
1771
1772     /**
1773      * temporary complexity masking (0-> disabled)
1774      * - encoding: Set by user.
1775      * - decoding: unused
1776      */
1777     float temporal_cplx_masking;
1778
1779     /**
1780      * spatial complexity masking (0-> disabled)
1781      * - encoding: Set by user.
1782      * - decoding: unused
1783      */
1784     float spatial_cplx_masking;
1785
1786     /**
1787      * p block masking (0-> disabled)
1788      * - encoding: Set by user.
1789      * - decoding: unused
1790      */
1791     float p_masking;
1792
1793     /**
1794      * darkness masking (0-> disabled)
1795      * - encoding: Set by user.
1796      * - decoding: unused
1797      */
1798     float dark_masking;
1799
1800     /**
1801      * slice count
1802      * - encoding: Set by libavcodec.
1803      * - decoding: Set by user (or 0).
1804      */
1805     int slice_count;
1806
1807 #if FF_API_PRIVATE_OPT
1808     /** @deprecated use encoder private options instead */
1809     attribute_deprecated
1810      int prediction_method;
1811 #define FF_PRED_LEFT   0
1812 #define FF_PRED_PLANE  1
1813 #define FF_PRED_MEDIAN 2
1814 #endif
1815
1816     /**
1817      * slice offsets in the frame in bytes
1818      * - encoding: Set/allocated by libavcodec.
1819      * - decoding: Set/allocated by user (or NULL).
1820      */
1821     int *slice_offset;
1822
1823     /**
1824      * sample aspect ratio (0 if unknown)
1825      * That is the width of a pixel divided by the height of the pixel.
1826      * Numerator and denominator must be relatively prime and smaller than 256 for some video standards.
1827      * - encoding: Set by user.
1828      * - decoding: Set by libavcodec.
1829      */
1830     AVRational sample_aspect_ratio;
1831
1832     /**
1833      * motion estimation comparison function
1834      * - encoding: Set by user.
1835      * - decoding: unused
1836      */
1837     int me_cmp;
1838     /**
1839      * subpixel motion estimation comparison function
1840      * - encoding: Set by user.
1841      * - decoding: unused
1842      */
1843     int me_sub_cmp;
1844     /**
1845      * macroblock comparison function (not supported yet)
1846      * - encoding: Set by user.
1847      * - decoding: unused
1848      */
1849     int mb_cmp;
1850     /**
1851      * interlaced DCT comparison function
1852      * - encoding: Set by user.
1853      * - decoding: unused
1854      */
1855     int ildct_cmp;
1856 #define FF_CMP_SAD    0
1857 #define FF_CMP_SSE    1
1858 #define FF_CMP_SATD   2
1859 #define FF_CMP_DCT    3
1860 #define FF_CMP_PSNR   4
1861 #define FF_CMP_BIT    5
1862 #define FF_CMP_RD     6
1863 #define FF_CMP_ZERO   7
1864 #define FF_CMP_VSAD   8
1865 #define FF_CMP_VSSE   9
1866 #define FF_CMP_NSSE   10
1867 #define FF_CMP_DCTMAX 13
1868 #define FF_CMP_DCT264 14
1869 #define FF_CMP_CHROMA 256
1870
1871     /**
1872      * ME diamond size & shape
1873      * - encoding: Set by user.
1874      * - decoding: unused
1875      */
1876     int dia_size;
1877
1878     /**
1879      * amount of previous MV predictors (2a+1 x 2a+1 square)
1880      * - encoding: Set by user.
1881      * - decoding: unused
1882      */
1883     int last_predictor_count;
1884
1885 #if FF_API_PRIVATE_OPT
1886     /** @deprecated use encoder private options instead */
1887     attribute_deprecated
1888     int pre_me;
1889 #endif
1890
1891     /**
1892      * motion estimation prepass comparison function
1893      * - encoding: Set by user.
1894      * - decoding: unused
1895      */
1896     int me_pre_cmp;
1897
1898     /**
1899      * ME prepass diamond size & shape
1900      * - encoding: Set by user.
1901      * - decoding: unused
1902      */
1903     int pre_dia_size;
1904
1905     /**
1906      * subpel ME quality
1907      * - encoding: Set by user.
1908      * - decoding: unused
1909      */
1910     int me_subpel_quality;
1911
1912 #if FF_API_AFD
1913     /**
1914      * DTG active format information (additional aspect ratio
1915      * information only used in DVB MPEG-2 transport streams)
1916      * 0 if not set.
1917      *
1918      * - encoding: unused
1919      * - decoding: Set by decoder.
1920      * @deprecated Deprecated in favor of AVSideData
1921      */
1922     attribute_deprecated int dtg_active_format;
1923 #define FF_DTG_AFD_SAME         8
1924 #define FF_DTG_AFD_4_3          9
1925 #define FF_DTG_AFD_16_9         10
1926 #define FF_DTG_AFD_14_9         11
1927 #define FF_DTG_AFD_4_3_SP_14_9  13
1928 #define FF_DTG_AFD_16_9_SP_14_9 14
1929 #define FF_DTG_AFD_SP_4_3       15
1930 #endif /* FF_API_AFD */
1931
1932     /**
1933      * maximum motion estimation search range in subpel units
1934      * If 0 then no limit.
1935      *
1936      * - encoding: Set by user.
1937      * - decoding: unused
1938      */
1939     int me_range;
1940
1941 #if FF_API_QUANT_BIAS
1942     /**
1943      * @deprecated use encoder private option instead
1944      */
1945     attribute_deprecated int intra_quant_bias;
1946 #define FF_DEFAULT_QUANT_BIAS 999999
1947
1948     /**
1949      * @deprecated use encoder private option instead
1950      */
1951     attribute_deprecated int inter_quant_bias;
1952 #endif
1953
1954     /**
1955      * slice flags
1956      * - encoding: unused
1957      * - decoding: Set by user.
1958      */
1959     int slice_flags;
1960 #define SLICE_FLAG_CODED_ORDER    0x0001 ///< draw_horiz_band() is called in coded order instead of display
1961 #define SLICE_FLAG_ALLOW_FIELD    0x0002 ///< allow draw_horiz_band() with field slices (MPEG-2 field pics)
1962 #define SLICE_FLAG_ALLOW_PLANE    0x0004 ///< allow draw_horiz_band() with 1 component at a time (SVQ1)
1963
1964 #if FF_API_XVMC
1965     /**
1966      * XVideo Motion Acceleration
1967      * - encoding: forbidden
1968      * - decoding: set by decoder
1969      * @deprecated XvMC support is slated for removal.
1970      */
1971     attribute_deprecated int xvmc_acceleration;
1972 #endif /* FF_API_XVMC */
1973
1974     /**
1975      * macroblock decision mode
1976      * - encoding: Set by user.
1977      * - decoding: unused
1978      */
1979     int mb_decision;
1980 #define FF_MB_DECISION_SIMPLE 0        ///< uses mb_cmp
1981 #define FF_MB_DECISION_BITS   1        ///< chooses the one which needs the fewest bits
1982 #define FF_MB_DECISION_RD     2        ///< rate distortion
1983
1984     /**
1985      * custom intra quantization matrix
1986      * - encoding: Set by user, can be NULL.
1987      * - decoding: Set by libavcodec.
1988      */
1989     uint16_t *intra_matrix;
1990
1991     /**
1992      * custom inter quantization matrix
1993      * - encoding: Set by user, can be NULL.
1994      * - decoding: Set by libavcodec.
1995      */
1996     uint16_t *inter_matrix;
1997
1998 #if FF_API_PRIVATE_OPT
1999     /** @deprecated use encoder private options instead */
2000     attribute_deprecated
2001     int scenechange_threshold;
2002
2003     /** @deprecated use encoder private options instead */
2004     attribute_deprecated
2005     int noise_reduction;
2006 #endif
2007
2008 #if FF_API_MPV_OPT
2009     /**
2010      * @deprecated this field is unused
2011      */
2012     attribute_deprecated
2013     int me_threshold;
2014
2015     /**
2016      * @deprecated this field is unused
2017      */
2018     attribute_deprecated
2019     int mb_threshold;
2020 #endif
2021
2022     /**
2023      * precision of the intra DC coefficient - 8
2024      * - encoding: Set by user.
2025      * - decoding: unused
2026      */
2027     int intra_dc_precision;
2028
2029     /**
2030      * Number of macroblock rows at the top which are skipped.
2031      * - encoding: unused
2032      * - decoding: Set by user.
2033      */
2034     int skip_top;
2035
2036     /**
2037      * Number of macroblock rows at the bottom which are skipped.
2038      * - encoding: unused
2039      * - decoding: Set by user.
2040      */
2041     int skip_bottom;
2042
2043 #if FF_API_MPV_OPT
2044     /**
2045      * @deprecated use encoder private options instead
2046      */
2047     attribute_deprecated
2048     float border_masking;
2049 #endif
2050
2051     /**
2052      * minimum MB Lagrange multiplier
2053      * - encoding: Set by user.
2054      * - decoding: unused
2055      */
2056     int mb_lmin;
2057
2058     /**
2059      * maximum MB Lagrange multiplier
2060      * - encoding: Set by user.
2061      * - decoding: unused
2062      */
2063     int mb_lmax;
2064
2065 #if FF_API_PRIVATE_OPT
2066     /**
2067      * @deprecated use encoder private options instead
2068      */
2069     attribute_deprecated
2070     int me_penalty_compensation;
2071 #endif
2072
2073     /**
2074      * - encoding: Set by user.
2075      * - decoding: unused
2076      */
2077     int bidir_refine;
2078
2079 #if FF_API_PRIVATE_OPT
2080     /** @deprecated use encoder private options instead */
2081     attribute_deprecated
2082     int brd_scale;
2083 #endif
2084
2085     /**
2086      * minimum GOP size
2087      * - encoding: Set by user.
2088      * - decoding: unused
2089      */
2090     int keyint_min;
2091
2092     /**
2093      * number of reference frames
2094      * - encoding: Set by user.
2095      * - decoding: Set by lavc.
2096      */
2097     int refs;
2098
2099 #if FF_API_PRIVATE_OPT
2100     /** @deprecated use encoder private options instead */
2101     attribute_deprecated
2102     int chromaoffset;
2103 #endif
2104
2105 #if FF_API_UNUSED_MEMBERS
2106     /**
2107      * Multiplied by qscale for each frame and added to scene_change_score.
2108      * - encoding: Set by user.
2109      * - decoding: unused
2110      */
2111     attribute_deprecated int scenechange_factor;
2112 #endif
2113
2114     /**
2115      * Note: Value depends upon the compare function used for fullpel ME.
2116      * - encoding: Set by user.
2117      * - decoding: unused
2118      */
2119     int mv0_threshold;
2120
2121 #if FF_API_PRIVATE_OPT
2122     /** @deprecated use encoder private options instead */
2123     attribute_deprecated
2124     int b_sensitivity;
2125 #endif
2126
2127     /**
2128      * Chromaticity coordinates of the source primaries.
2129      * - encoding: Set by user
2130      * - decoding: Set by libavcodec
2131      */
2132     enum AVColorPrimaries color_primaries;
2133
2134     /**
2135      * Color Transfer Characteristic.
2136      * - encoding: Set by user
2137      * - decoding: Set by libavcodec
2138      */
2139     enum AVColorTransferCharacteristic color_trc;
2140
2141     /**
2142      * YUV colorspace type.
2143      * - encoding: Set by user
2144      * - decoding: Set by libavcodec
2145      */
2146     enum AVColorSpace colorspace;
2147
2148     /**
2149      * MPEG vs JPEG YUV range.
2150      * - encoding: Set by user
2151      * - decoding: Set by libavcodec
2152      */
2153     enum AVColorRange color_range;
2154
2155     /**
2156      * This defines the location of chroma samples.
2157      * - encoding: Set by user
2158      * - decoding: Set by libavcodec
2159      */
2160     enum AVChromaLocation chroma_sample_location;
2161
2162     /**
2163      * Number of slices.
2164      * Indicates number of picture subdivisions. Used for parallelized
2165      * decoding.
2166      * - encoding: Set by user
2167      * - decoding: unused
2168      */
2169     int slices;
2170
2171     /** Field order
2172      * - encoding: set by libavcodec
2173      * - decoding: Set by libavcodec
2174      */
2175     enum AVFieldOrder field_order;
2176
2177     /* audio only */
2178     int sample_rate; ///< samples per second
2179     int channels;    ///< number of audio channels
2180
2181     /**
2182      * audio sample format
2183      * - encoding: Set by user.
2184      * - decoding: Set by libavcodec.
2185      */
2186     enum AVSampleFormat sample_fmt;  ///< sample format
2187
2188     /* The following data should not be initialized. */
2189     /**
2190      * Number of samples per channel in an audio frame.
2191      *
2192      * - encoding: set by libavcodec in avcodec_open2(). Each submitted frame
2193      *   except the last must contain exactly frame_size samples per channel.
2194      *   May be 0 when the codec has AV_CODEC_CAP_VARIABLE_FRAME_SIZE set, then the
2195      *   frame size is not restricted.
2196      * - decoding: may be set by some decoders to indicate constant frame size
2197      */
2198     int frame_size;
2199
2200     /**
2201      * Frame counter, set by libavcodec.
2202      *
2203      * - decoding: total number of frames returned from the decoder so far.
2204      * - encoding: total number of frames passed to the encoder so far.
2205      *
2206      *   @note the counter is not incremented if encoding/decoding resulted in
2207      *   an error.
2208      */
2209     int frame_number;
2210
2211     /**
2212      * number of bytes per packet if constant and known or 0
2213      * Used by some WAV based audio codecs.
2214      */
2215     int block_align;
2216
2217     /**
2218      * Audio cutoff bandwidth (0 means "automatic")
2219      * - encoding: Set by user.
2220      * - decoding: unused
2221      */
2222     int cutoff;
2223
2224     /**
2225      * Audio channel layout.
2226      * - encoding: set by user.
2227      * - decoding: set by libavcodec.
2228      */
2229     uint64_t channel_layout;
2230
2231     /**
2232      * Request decoder to use this channel layout if it can (0 for default)
2233      * - encoding: unused
2234      * - decoding: Set by user.
2235      */
2236     uint64_t request_channel_layout;
2237
2238     /**
2239      * Type of service that the audio stream conveys.
2240      * - encoding: Set by user.
2241      * - decoding: Set by libavcodec.
2242      */
2243     enum AVAudioServiceType audio_service_type;
2244
2245     /**
2246      * Used to request a sample format from the decoder.
2247      * - encoding: unused.
2248      * - decoding: Set by user.
2249      */
2250     enum AVSampleFormat request_sample_fmt;
2251
2252     /**
2253      * This callback is called at the beginning of each frame to get data
2254      * buffer(s) for it. There may be one contiguous buffer for all the data or
2255      * there may be a buffer per each data plane or anything in between. What
2256      * this means is, you may set however many entries in buf[] you feel necessary.
2257      * Each buffer must be reference-counted using the AVBuffer API (see description
2258      * of buf[] below).
2259      *
2260      * The following fields will be set in the frame before this callback is
2261      * called:
2262      * - format
2263      * - width, height (video only)
2264      * - sample_rate, channel_layout, nb_samples (audio only)
2265      * Their values may differ from the corresponding values in
2266      * AVCodecContext. This callback must use the frame values, not the codec
2267      * context values, to calculate the required buffer size.
2268      *
2269      * This callback must fill the following fields in the frame:
2270      * - data[]
2271      * - linesize[]
2272      * - extended_data:
2273      *   * if the data is planar audio with more than 8 channels, then this
2274      *     callback must allocate and fill extended_data to contain all pointers
2275      *     to all data planes. data[] must hold as many pointers as it can.
2276      *     extended_data must be allocated with av_malloc() and will be freed in
2277      *     av_frame_unref().
2278      *   * otherwise extended_data must point to data
2279      * - buf[] must contain one or more pointers to AVBufferRef structures. Each of
2280      *   the frame's data and extended_data pointers must be contained in these. That
2281      *   is, one AVBufferRef for each allocated chunk of memory, not necessarily one
2282      *   AVBufferRef per data[] entry. See: av_buffer_create(), av_buffer_alloc(),
2283      *   and av_buffer_ref().
2284      * - extended_buf and nb_extended_buf must be allocated with av_malloc() by
2285      *   this callback and filled with the extra buffers if there are more
2286      *   buffers than buf[] can hold. extended_buf will be freed in
2287      *   av_frame_unref().
2288      *
2289      * If AV_CODEC_CAP_DR1 is not set then get_buffer2() must call
2290      * avcodec_default_get_buffer2() instead of providing buffers allocated by
2291      * some other means.
2292      *
2293      * Each data plane must be aligned to the maximum required by the target
2294      * CPU.
2295      *
2296      * @see avcodec_default_get_buffer2()
2297      *
2298      * Video:
2299      *
2300      * If AV_GET_BUFFER_FLAG_REF is set in flags then the frame may be reused
2301      * (read and/or written to if it is writable) later by libavcodec.
2302      *
2303      * avcodec_align_dimensions2() should be used to find the required width and
2304      * height, as they normally need to be rounded up to the next multiple of 16.
2305      *
2306      * If frame multithreading is used and thread_safe_callbacks is set,
2307      * this callback may be called from a different thread, but not from more
2308      * than one at once. Does not need to be reentrant.
2309      *
2310      * @see avcodec_align_dimensions2()
2311      *
2312      * Audio:
2313      *
2314      * Decoders request a buffer of a particular size by setting
2315      * AVFrame.nb_samples prior to calling get_buffer2(). The decoder may,
2316      * however, utilize only part of the buffer by setting AVFrame.nb_samples
2317      * to a smaller value in the output frame.
2318      *
2319      * As a convenience, av_samples_get_buffer_size() and
2320      * av_samples_fill_arrays() in libavutil may be used by custom get_buffer2()
2321      * functions to find the required data size and to fill data pointers and
2322      * linesize. In AVFrame.linesize, only linesize[0] may be set for audio
2323      * since all planes must be the same size.
2324      *
2325      * @see av_samples_get_buffer_size(), av_samples_fill_arrays()
2326      *
2327      * - encoding: unused
2328      * - decoding: Set by libavcodec, user can override.
2329      */
2330     int (*get_buffer2)(struct AVCodecContext *s, AVFrame *frame, int flags);
2331
2332     /**
2333      * If non-zero, the decoded audio and video frames returned from
2334      * avcodec_decode_video2() and avcodec_decode_audio4() are reference-counted
2335      * and are valid indefinitely. The caller must free them with
2336      * av_frame_unref() when they are not needed anymore.
2337      * Otherwise, the decoded frames must not be freed by the caller and are
2338      * only valid until the next decode call.
2339      *
2340      * This is always automatically enabled if avcodec_receive_frame() is used.
2341      *
2342      * - encoding: unused
2343      * - decoding: set by the caller before avcodec_open2().
2344      */
2345     attribute_deprecated int refcounted_frames;
2346
2347     /* - encoding parameters */
2348     float qcompress;  ///< amount of qscale change between easy & hard scenes (0.0-1.0)
2349     float qblur;      ///< amount of qscale smoothing over time (0.0-1.0)
2350
2351     /**
2352      * minimum quantizer
2353      * - encoding: Set by user.
2354      * - decoding: unused
2355      */
2356     int qmin;
2357
2358     /**
2359      * maximum quantizer
2360      * - encoding: Set by user.
2361      * - decoding: unused
2362      */
2363     int qmax;
2364
2365     /**
2366      * maximum quantizer difference between frames
2367      * - encoding: Set by user.
2368      * - decoding: unused
2369      */
2370     int max_qdiff;
2371
2372 #if FF_API_MPV_OPT
2373     /**
2374      * @deprecated use encoder private options instead
2375      */
2376     attribute_deprecated
2377     float rc_qsquish;
2378
2379     attribute_deprecated
2380     float rc_qmod_amp;
2381     attribute_deprecated
2382     int rc_qmod_freq;
2383 #endif
2384
2385     /**
2386      * decoder bitstream buffer size
2387      * - encoding: Set by user.
2388      * - decoding: unused
2389      */
2390     int rc_buffer_size;
2391
2392     /**
2393      * ratecontrol override, see RcOverride
2394      * - encoding: Allocated/set/freed by user.
2395      * - decoding: unused
2396      */
2397     int rc_override_count;
2398     RcOverride *rc_override;
2399
2400 #if FF_API_MPV_OPT
2401     /**
2402      * @deprecated use encoder private options instead
2403      */
2404     attribute_deprecated
2405     const char *rc_eq;
2406 #endif
2407
2408     /**
2409      * maximum bitrate
2410      * - encoding: Set by user.
2411      * - decoding: unused
2412      */
2413     int rc_max_rate;
2414
2415     /**
2416      * minimum bitrate
2417      * - encoding: Set by user.
2418      * - decoding: unused
2419      */
2420     int rc_min_rate;
2421
2422 #if FF_API_MPV_OPT
2423     /**
2424      * @deprecated use encoder private options instead
2425      */
2426     attribute_deprecated
2427     float rc_buffer_aggressivity;
2428
2429     attribute_deprecated
2430     float rc_initial_cplx;
2431 #endif
2432
2433     /**
2434      * Ratecontrol attempt to use, at maximum, <value> of what can be used without an underflow.
2435      * - encoding: Set by user.
2436      * - decoding: unused.
2437      */
2438     float rc_max_available_vbv_use;
2439
2440     /**
2441      * Ratecontrol attempt to use, at least, <value> times the amount needed to prevent a vbv overflow.
2442      * - encoding: Set by user.
2443      * - decoding: unused.
2444      */
2445     float rc_min_vbv_overflow_use;
2446
2447     /**
2448      * Number of bits which should be loaded into the rc buffer before decoding starts.
2449      * - encoding: Set by user.
2450      * - decoding: unused
2451      */
2452     int rc_initial_buffer_occupancy;
2453
2454 #if FF_API_CODER_TYPE
2455 #define FF_CODER_TYPE_VLC       0
2456 #define FF_CODER_TYPE_AC        1
2457 #define FF_CODER_TYPE_RAW       2
2458 #define FF_CODER_TYPE_RLE       3
2459 #if FF_API_UNUSED_MEMBERS
2460 #define FF_CODER_TYPE_DEFLATE   4
2461 #endif /* FF_API_UNUSED_MEMBERS */
2462     /**
2463      * @deprecated use encoder private options instead
2464      */
2465     attribute_deprecated
2466     int coder_type;
2467 #endif /* FF_API_CODER_TYPE */
2468
2469 #if FF_API_PRIVATE_OPT
2470     /** @deprecated use encoder private options instead */
2471     attribute_deprecated
2472     int context_model;
2473 #endif
2474
2475 #if FF_API_MPV_OPT
2476     /**
2477      * @deprecated use encoder private options instead
2478      */
2479     attribute_deprecated
2480     int lmin;
2481
2482     /**
2483      * @deprecated use encoder private options instead
2484      */
2485     attribute_deprecated
2486     int lmax;
2487 #endif
2488
2489 #if FF_API_PRIVATE_OPT
2490     /** @deprecated use encoder private options instead */
2491     attribute_deprecated
2492     int frame_skip_threshold;
2493
2494     /** @deprecated use encoder private options instead */
2495     attribute_deprecated
2496     int frame_skip_factor;
2497
2498     /** @deprecated use encoder private options instead */
2499     attribute_deprecated
2500     int frame_skip_exp;
2501
2502     /** @deprecated use encoder private options instead */
2503     attribute_deprecated
2504     int frame_skip_cmp;
2505 #endif /* FF_API_PRIVATE_OPT */
2506
2507     /**
2508      * trellis RD quantization
2509      * - encoding: Set by user.
2510      * - decoding: unused
2511      */
2512     int trellis;
2513
2514 #if FF_API_PRIVATE_OPT
2515     /** @deprecated use encoder private options instead */
2516     attribute_deprecated
2517     int min_prediction_order;
2518
2519     /** @deprecated use encoder private options instead */
2520     attribute_deprecated
2521     int max_prediction_order;
2522
2523     /** @deprecated use encoder private options instead */
2524     attribute_deprecated
2525     int64_t timecode_frame_start;
2526 #endif
2527
2528 #if FF_API_RTP_CALLBACK
2529     /**
2530      * @deprecated unused
2531      */
2532     /* The RTP callback: This function is called    */
2533     /* every time the encoder has a packet to send. */
2534     /* It depends on the encoder if the data starts */
2535     /* with a Start Code (it should). H.263 does.   */
2536     /* mb_nb contains the number of macroblocks     */
2537     /* encoded in the RTP payload.                  */
2538     attribute_deprecated
2539     void (*rtp_callback)(struct AVCodecContext *avctx, void *data, int size, int mb_nb);
2540 #endif
2541
2542 #if FF_API_PRIVATE_OPT
2543     /** @deprecated use encoder private options instead */
2544     attribute_deprecated
2545     int rtp_payload_size;   /* The size of the RTP payload: the coder will  */
2546                             /* do its best to deliver a chunk with size     */
2547                             /* below rtp_payload_size, the chunk will start */
2548                             /* with a start code on some codecs like H.263. */
2549                             /* This doesn't take account of any particular  */
2550                             /* headers inside the transmitted RTP payload.  */
2551 #endif
2552
2553 #if FF_API_STAT_BITS
2554     /* statistics, used for 2-pass encoding */
2555     attribute_deprecated
2556     int mv_bits;
2557     attribute_deprecated
2558     int header_bits;
2559     attribute_deprecated
2560     int i_tex_bits;
2561     attribute_deprecated
2562     int p_tex_bits;
2563     attribute_deprecated
2564     int i_count;
2565     attribute_deprecated
2566     int p_count;
2567     attribute_deprecated
2568     int skip_count;
2569     attribute_deprecated
2570     int misc_bits;
2571
2572     /** @deprecated this field is unused */
2573     attribute_deprecated
2574     int frame_bits;
2575 #endif
2576
2577     /**
2578      * pass1 encoding statistics output buffer
2579      * - encoding: Set by libavcodec.
2580      * - decoding: unused
2581      */
2582     char *stats_out;
2583
2584     /**
2585      * pass2 encoding statistics input buffer
2586      * Concatenated stuff from stats_out of pass1 should be placed here.
2587      * - encoding: Allocated/set/freed by user.
2588      * - decoding: unused
2589      */
2590     char *stats_in;
2591
2592     /**
2593      * Work around bugs in encoders which sometimes cannot be detected automatically.
2594      * - encoding: Set by user
2595      * - decoding: Set by user
2596      */
2597     int workaround_bugs;
2598 #define FF_BUG_AUTODETECT       1  ///< autodetection
2599 #define FF_BUG_XVID_ILACE       4
2600 #define FF_BUG_UMP4             8
2601 #define FF_BUG_NO_PADDING       16
2602 #define FF_BUG_AMV              32
2603 #define FF_BUG_QPEL_CHROMA      64
2604 #define FF_BUG_STD_QPEL         128
2605 #define FF_BUG_QPEL_CHROMA2     256
2606 #define FF_BUG_DIRECT_BLOCKSIZE 512
2607 #define FF_BUG_EDGE             1024
2608 #define FF_BUG_HPEL_CHROMA      2048
2609 #define FF_BUG_DC_CLIP          4096
2610 #define FF_BUG_MS               8192 ///< Work around various bugs in Microsoft's broken decoders.
2611 #define FF_BUG_TRUNCATED       16384
2612
2613     /**
2614      * strictly follow the standard (MPEG-4, ...).
2615      * - encoding: Set by user.
2616      * - decoding: Set by user.
2617      * Setting this to STRICT or higher means the encoder and decoder will
2618      * generally do stupid things, whereas setting it to unofficial or lower
2619      * will mean the encoder might produce output that is not supported by all
2620      * spec-compliant decoders. Decoders don't differentiate between normal,
2621      * unofficial and experimental (that is, they always try to decode things
2622      * when they can) unless they are explicitly asked to behave stupidly
2623      * (=strictly conform to the specs)
2624      */
2625     int strict_std_compliance;
2626 #define FF_COMPLIANCE_VERY_STRICT   2 ///< Strictly conform to an older more strict version of the spec or reference software.
2627 #define FF_COMPLIANCE_STRICT        1 ///< Strictly conform to all the things in the spec no matter what consequences.
2628 #define FF_COMPLIANCE_NORMAL        0
2629 #define FF_COMPLIANCE_UNOFFICIAL   -1 ///< Allow unofficial extensions
2630 #define FF_COMPLIANCE_EXPERIMENTAL -2 ///< Allow nonstandardized experimental things.
2631
2632     /**
2633      * error concealment flags
2634      * - encoding: unused
2635      * - decoding: Set by user.
2636      */
2637     int error_concealment;
2638 #define FF_EC_GUESS_MVS   1
2639 #define FF_EC_DEBLOCK     2
2640
2641     /**
2642      * debug
2643      * - encoding: Set by user.
2644      * - decoding: Set by user.
2645      */
2646     int debug;
2647 #define FF_DEBUG_PICT_INFO   1
2648 #define FF_DEBUG_RC          2
2649 #define FF_DEBUG_BITSTREAM   4
2650 #define FF_DEBUG_MB_TYPE     8
2651 #define FF_DEBUG_QP          16
2652 #define FF_DEBUG_DCT_COEFF   0x00000040
2653 #define FF_DEBUG_SKIP        0x00000080
2654 #define FF_DEBUG_STARTCODE   0x00000100
2655 #if FF_API_UNUSED_MEMBERS
2656 #define FF_DEBUG_PTS         0x00000200
2657 #endif /* FF_API_UNUSED_MEMBERS */
2658 #define FF_DEBUG_ER          0x00000400
2659 #define FF_DEBUG_MMCO        0x00000800
2660 #define FF_DEBUG_BUGS        0x00001000
2661 #define FF_DEBUG_BUFFERS     0x00008000
2662 #define FF_DEBUG_THREADS     0x00010000
2663
2664     /**
2665      * Error recognition; may misdetect some more or less valid parts as errors.
2666      * - encoding: unused
2667      * - decoding: Set by user.
2668      */
2669     int err_recognition;
2670
2671 /**
2672  * Verify checksums embedded in the bitstream (could be of either encoded or
2673  * decoded data, depending on the codec) and print an error message on mismatch.
2674  * If AV_EF_EXPLODE is also set, a mismatching checksum will result in the
2675  * decoder returning an error.
2676  */
2677 #define AV_EF_CRCCHECK  (1<<0)
2678 #define AV_EF_BITSTREAM (1<<1)
2679 #define AV_EF_BUFFER    (1<<2)
2680 #define AV_EF_EXPLODE   (1<<3)
2681
2682     /**
2683      * opaque 64-bit number (generally a PTS) that will be reordered and
2684      * output in AVFrame.reordered_opaque
2685      * - encoding: unused
2686      * - decoding: Set by user.
2687      */
2688     int64_t reordered_opaque;
2689
2690     /**
2691      * Hardware accelerator in use
2692      * - encoding: unused.
2693      * - decoding: Set by libavcodec
2694      */
2695     struct AVHWAccel *hwaccel;
2696
2697     /**
2698      * Hardware accelerator context.
2699      * For some hardware accelerators, a global context needs to be
2700      * provided by the user. In that case, this holds display-dependent
2701      * data Libav cannot instantiate itself. Please refer to the
2702      * Libav HW accelerator documentation to know how to fill this
2703      * is. e.g. for VA API, this is a struct vaapi_context.
2704      * - encoding: unused
2705      * - decoding: Set by user
2706      */
2707     void *hwaccel_context;
2708
2709     /**
2710      * error
2711      * - encoding: Set by libavcodec if flags & AV_CODEC_FLAG_PSNR.
2712      * - decoding: unused
2713      */
2714     uint64_t error[AV_NUM_DATA_POINTERS];
2715
2716     /**
2717      * DCT algorithm, see FF_DCT_* below
2718      * - encoding: Set by user.
2719      * - decoding: unused
2720      */
2721     int dct_algo;
2722 #define FF_DCT_AUTO    0
2723 #define FF_DCT_FASTINT 1
2724 #define FF_DCT_INT     2
2725 #define FF_DCT_MMX     3
2726 #define FF_DCT_ALTIVEC 5
2727 #define FF_DCT_FAAN    6
2728
2729     /**
2730      * IDCT algorithm, see FF_IDCT_* below.
2731      * - encoding: Set by user.
2732      * - decoding: Set by user.
2733      */
2734     int idct_algo;
2735 #define FF_IDCT_AUTO          0
2736 #define FF_IDCT_INT           1
2737 #define FF_IDCT_SIMPLE        2
2738 #define FF_IDCT_SIMPLEMMX     3
2739 #define FF_IDCT_ARM           7
2740 #define FF_IDCT_ALTIVEC       8
2741 #if FF_API_ARCH_SH4
2742 #define FF_IDCT_SH4           9
2743 #endif
2744 #define FF_IDCT_SIMPLEARM     10
2745 #if FF_API_UNUSED_MEMBERS
2746 #define FF_IDCT_IPP           13
2747 #endif /* FF_API_UNUSED_MEMBERS */
2748 #define FF_IDCT_XVID          14
2749 #if FF_API_IDCT_XVIDMMX
2750 #define FF_IDCT_XVIDMMX       14
2751 #endif /* FF_API_IDCT_XVIDMMX */
2752 #define FF_IDCT_SIMPLEARMV5TE 16
2753 #define FF_IDCT_SIMPLEARMV6   17
2754 #if FF_API_ARCH_SPARC
2755 #define FF_IDCT_SIMPLEVIS     18
2756 #endif
2757 #define FF_IDCT_FAAN          20
2758 #define FF_IDCT_SIMPLENEON    22
2759 #if FF_API_ARCH_ALPHA
2760 #define FF_IDCT_SIMPLEALPHA   23
2761 #endif
2762
2763     /**
2764      * bits per sample/pixel from the demuxer (needed for huffyuv).
2765      * - encoding: Set by libavcodec.
2766      * - decoding: Set by user.
2767      */
2768      int bits_per_coded_sample;
2769
2770     /**
2771      * Bits per sample/pixel of internal libavcodec pixel/sample format.
2772      * - encoding: set by user.
2773      * - decoding: set by libavcodec.
2774      */
2775     int bits_per_raw_sample;
2776
2777 #if FF_API_CODED_FRAME
2778     /**
2779      * the picture in the bitstream
2780      * - encoding: Set by libavcodec.
2781      * - decoding: unused
2782      *
2783      * @deprecated use the quality factor packet side data instead
2784      */
2785     attribute_deprecated AVFrame *coded_frame;
2786 #endif
2787
2788     /**
2789      * thread count
2790      * is used to decide how many independent tasks should be passed to execute()
2791      * - encoding: Set by user.
2792      * - decoding: Set by user.
2793      */
2794     int thread_count;
2795
2796     /**
2797      * Which multithreading methods to use.
2798      * Use of FF_THREAD_FRAME will increase decoding delay by one frame per thread,
2799      * so clients which cannot provide future frames should not use it.
2800      *
2801      * - encoding: Set by user, otherwise the default is used.
2802      * - decoding: Set by user, otherwise the default is used.
2803      */
2804     int thread_type;
2805 #define FF_THREAD_FRAME   1 ///< Decode more than one frame at once
2806 #define FF_THREAD_SLICE   2 ///< Decode more than one part of a single frame at once
2807
2808     /**
2809      * Which multithreading methods are in use by the codec.
2810      * - encoding: Set by libavcodec.
2811      * - decoding: Set by libavcodec.
2812      */
2813     int active_thread_type;
2814
2815     /**
2816      * Set by the client if its custom get_buffer() callback can be called
2817      * synchronously from another thread, which allows faster multithreaded decoding.
2818      * draw_horiz_band() will be called from other threads regardless of this setting.
2819      * Ignored if the default get_buffer() is used.
2820      * - encoding: Set by user.
2821      * - decoding: Set by user.
2822      */
2823     int thread_safe_callbacks;
2824
2825     /**
2826      * The codec may call this to execute several independent things.
2827      * It will return only after finishing all tasks.
2828      * The user may replace this with some multithreaded implementation,
2829      * the default implementation will execute the parts serially.
2830      * @param count the number of things to execute
2831      * - encoding: Set by libavcodec, user can override.
2832      * - decoding: Set by libavcodec, user can override.
2833      */
2834     int (*execute)(struct AVCodecContext *c, int (*func)(struct AVCodecContext *c2, void *arg), void *arg2, int *ret, int count, int size);
2835
2836     /**
2837      * The codec may call this to execute several independent things.
2838      * It will return only after finishing all tasks.
2839      * The user may replace this with some multithreaded implementation,
2840      * the default implementation will execute the parts serially.
2841      * Also see avcodec_thread_init and e.g. the --enable-pthread configure option.
2842      * @param c context passed also to func
2843      * @param count the number of things to execute
2844      * @param arg2 argument passed unchanged to func
2845      * @param ret return values of executed functions, must have space for "count" values. May be NULL.
2846      * @param func function that will be called count times, with jobnr from 0 to count-1.
2847      *             threadnr will be in the range 0 to c->thread_count-1 < MAX_THREADS and so that no
2848      *             two instances of func executing at the same time will have the same threadnr.
2849      * @return always 0 currently, but code should handle a future improvement where when any call to func
2850      *         returns < 0 no further calls to func may be done and < 0 is returned.
2851      * - encoding: Set by libavcodec, user can override.
2852      * - decoding: Set by libavcodec, user can override.
2853      */
2854     int (*execute2)(struct AVCodecContext *c, int (*func)(struct AVCodecContext *c2, void *arg, int jobnr, int threadnr), void *arg2, int *ret, int count);
2855
2856     /**
2857      * noise vs. sse weight for the nsse comparison function
2858      * - encoding: Set by user.
2859      * - decoding: unused
2860      */
2861      int nsse_weight;
2862
2863     /**
2864      * profile
2865      * - encoding: Set by user.
2866      * - decoding: Set by libavcodec.
2867      */
2868      int profile;
2869 #define FF_PROFILE_UNKNOWN -99
2870 #define FF_PROFILE_RESERVED -100
2871
2872 #define FF_PROFILE_AAC_MAIN 0
2873 #define FF_PROFILE_AAC_LOW  1
2874 #define FF_PROFILE_AAC_SSR  2
2875 #define FF_PROFILE_AAC_LTP  3
2876 #define FF_PROFILE_AAC_HE   4
2877 #define FF_PROFILE_AAC_HE_V2 28
2878 #define FF_PROFILE_AAC_LD   22
2879 #define FF_PROFILE_AAC_ELD  38
2880 #define FF_PROFILE_MPEG2_AAC_LOW 128
2881 #define FF_PROFILE_MPEG2_AAC_HE  131
2882
2883 #define FF_PROFILE_DTS         20
2884 #define FF_PROFILE_DTS_ES      30
2885 #define FF_PROFILE_DTS_96_24   40
2886 #define FF_PROFILE_DTS_HD_HRA  50
2887 #define FF_PROFILE_DTS_HD_MA   60
2888 #define FF_PROFILE_DTS_EXPRESS 70
2889
2890 #define FF_PROFILE_MPEG2_422    0
2891 #define FF_PROFILE_MPEG2_HIGH   1
2892 #define FF_PROFILE_MPEG2_SS     2
2893 #define FF_PROFILE_MPEG2_SNR_SCALABLE  3
2894 #define FF_PROFILE_MPEG2_MAIN   4
2895 #define FF_PROFILE_MPEG2_SIMPLE 5
2896
2897 #define FF_PROFILE_H264_CONSTRAINED  (1<<9)  // 8+1; constraint_set1_flag
2898 #define FF_PROFILE_H264_INTRA        (1<<11) // 8+3; constraint_set3_flag
2899
2900 #define FF_PROFILE_H264_BASELINE             66
2901 #define FF_PROFILE_H264_CONSTRAINED_BASELINE (66|FF_PROFILE_H264_CONSTRAINED)
2902 #define FF_PROFILE_H264_MAIN                 77
2903 #define FF_PROFILE_H264_EXTENDED             88
2904 #define FF_PROFILE_H264_HIGH                 100
2905 #define FF_PROFILE_H264_HIGH_10              110
2906 #define FF_PROFILE_H264_HIGH_10_INTRA        (110|FF_PROFILE_H264_INTRA)
2907 #define FF_PROFILE_H264_MULTIVIEW_HIGH       118
2908 #define FF_PROFILE_H264_HIGH_422             122
2909 #define FF_PROFILE_H264_HIGH_422_INTRA       (122|FF_PROFILE_H264_INTRA)
2910 #define FF_PROFILE_H264_STEREO_HIGH          128
2911 #define FF_PROFILE_H264_HIGH_444             144
2912 #define FF_PROFILE_H264_HIGH_444_PREDICTIVE  244
2913 #define FF_PROFILE_H264_HIGH_444_INTRA       (244|FF_PROFILE_H264_INTRA)
2914 #define FF_PROFILE_H264_CAVLC_444            44
2915
2916 #define FF_PROFILE_VC1_SIMPLE   0
2917 #define FF_PROFILE_VC1_MAIN     1
2918 #define FF_PROFILE_VC1_COMPLEX  2
2919 #define FF_PROFILE_VC1_ADVANCED 3
2920
2921 #define FF_PROFILE_MPEG4_SIMPLE                     0
2922 #define FF_PROFILE_MPEG4_SIMPLE_SCALABLE            1
2923 #define FF_PROFILE_MPEG4_CORE                       2
2924 #define FF_PROFILE_MPEG4_MAIN                       3
2925 #define FF_PROFILE_MPEG4_N_BIT                      4
2926 #define FF_PROFILE_MPEG4_SCALABLE_TEXTURE           5
2927 #define FF_PROFILE_MPEG4_SIMPLE_FACE_ANIMATION      6
2928 #define FF_PROFILE_MPEG4_BASIC_ANIMATED_TEXTURE     7
2929 #define FF_PROFILE_MPEG4_HYBRID                     8
2930 #define FF_PROFILE_MPEG4_ADVANCED_REAL_TIME         9
2931 #define FF_PROFILE_MPEG4_CORE_SCALABLE             10
2932 #define FF_PROFILE_MPEG4_ADVANCED_CODING           11
2933 #define FF_PROFILE_MPEG4_ADVANCED_CORE             12
2934 #define FF_PROFILE_MPEG4_ADVANCED_SCALABLE_TEXTURE 13
2935 #define FF_PROFILE_MPEG4_SIMPLE_STUDIO             14
2936 #define FF_PROFILE_MPEG4_ADVANCED_SIMPLE           15
2937
2938 #define FF_PROFILE_JPEG2000_CSTREAM_RESTRICTION_0   1
2939 #define FF_PROFILE_JPEG2000_CSTREAM_RESTRICTION_1   2
2940 #define FF_PROFILE_JPEG2000_CSTREAM_NO_RESTRICTION  32768
2941 #define FF_PROFILE_JPEG2000_DCINEMA_2K              3
2942 #define FF_PROFILE_JPEG2000_DCINEMA_4K              4
2943
2944 #define FF_PROFILE_VP9_0                            0
2945 #define FF_PROFILE_VP9_1                            1
2946 #define FF_PROFILE_VP9_2                            2
2947 #define FF_PROFILE_VP9_3                            3
2948
2949 #define FF_PROFILE_HEVC_MAIN                        1
2950 #define FF_PROFILE_HEVC_MAIN_10                     2
2951 #define FF_PROFILE_HEVC_MAIN_STILL_PICTURE          3
2952 #define FF_PROFILE_HEVC_REXT                        4
2953
2954     /**
2955      * level
2956      * - encoding: Set by user.
2957      * - decoding: Set by libavcodec.
2958      */
2959      int level;
2960 #define FF_LEVEL_UNKNOWN -99
2961
2962     /**
2963      * - encoding: unused
2964      * - decoding: Set by user.
2965      */
2966     enum AVDiscard skip_loop_filter;
2967
2968     /**
2969      * - encoding: unused
2970      * - decoding: Set by user.
2971      */
2972     enum AVDiscard skip_idct;
2973
2974     /**
2975      * - encoding: unused
2976      * - decoding: Set by user.
2977      */
2978     enum AVDiscard skip_frame;
2979
2980     /**
2981      * Header containing style information for text subtitles.
2982      * For SUBTITLE_ASS subtitle type, it should contain the whole ASS
2983      * [Script Info] and [V4+ Styles] section, plus the [Events] line and
2984      * the Format line following. It shouldn't include any Dialogue line.
2985      * - encoding: Set/allocated/freed by user (before avcodec_open2())
2986      * - decoding: Set/allocated/freed by libavcodec (by avcodec_open2())
2987      */
2988     uint8_t *subtitle_header;
2989     int subtitle_header_size;
2990
2991 #if FF_API_ERROR_RATE
2992     /**
2993      * @deprecated use the 'error_rate' private AVOption of the mpegvideo
2994      * encoders
2995      */
2996     attribute_deprecated
2997     int error_rate;
2998 #endif
2999
3000 #if FF_API_VBV_DELAY
3001     /**
3002      * VBV delay coded in the last frame (in periods of a 27 MHz clock).
3003      * Used for compliant TS muxing.
3004      * - encoding: Set by libavcodec.
3005      * - decoding: unused.
3006      * @deprecated this value is now exported as a part of
3007      * AV_PKT_DATA_CPB_PROPERTIES packet side data
3008      */
3009     attribute_deprecated
3010     uint64_t vbv_delay;
3011 #endif
3012
3013 #if FF_API_SIDEDATA_ONLY_PKT
3014     /**
3015      * Encoding only and set by default. Allow encoders to output packets
3016      * that do not contain any encoded data, only side data.
3017      *
3018      * Some encoders need to output such packets, e.g. to update some stream
3019      * parameters at the end of encoding.
3020      *
3021      * @deprecated this field disables the default behaviour and
3022      *             it is kept only for compatibility.
3023      */
3024     attribute_deprecated
3025     int side_data_only_packets;
3026 #endif
3027
3028     /**
3029      * Audio only. The number of "priming" samples (padding) inserted by the
3030      * encoder at the beginning of the audio. I.e. this number of leading
3031      * decoded samples must be discarded by the caller to get the original audio
3032      * without leading padding.
3033      *
3034      * - decoding: unused
3035      * - encoding: Set by libavcodec. The timestamps on the output packets are
3036      *             adjusted by the encoder so that they always refer to the
3037      *             first sample of the data actually contained in the packet,
3038      *             including any added padding.  E.g. if the timebase is
3039      *             1/samplerate and the timestamp of the first input sample is
3040      *             0, the timestamp of the first output packet will be
3041      *             -initial_padding.
3042      */
3043     int initial_padding;
3044
3045     /*
3046      * - decoding: For codecs that store a framerate value in the compressed
3047      *             bitstream, the decoder may export it here. { 0, 1} when
3048      *             unknown.
3049      * - encoding: May be used to signal the framerate of CFR content to an
3050      *             encoder.
3051      */
3052     AVRational framerate;
3053
3054     /**
3055      * Nominal unaccelerated pixel format, see AV_PIX_FMT_xxx.
3056      * - encoding: unused.
3057      * - decoding: Set by libavcodec before calling get_format()
3058      */
3059     enum AVPixelFormat sw_pix_fmt;
3060
3061     /**
3062      * Additional data associated with the entire coded stream.
3063      *
3064      * - decoding: unused
3065      * - encoding: may be set by libavcodec after avcodec_open2().
3066      */
3067     AVPacketSideData *coded_side_data;
3068     int            nb_coded_side_data;
3069
3070     /**
3071      * A reference to the AVHWFramesContext describing the input (for encoding)
3072      * or output (decoding) frames. The reference is set by the caller and
3073      * afterwards owned (and freed) by libavcodec - it should never be read by
3074      * the caller after being set.
3075      *
3076      * - decoding: This field should be set by the caller from the get_format()
3077      *             callback. The previous reference (if any) will always be
3078      *             unreffed by libavcodec before the get_format() call.
3079      *
3080      *             If the default get_buffer2() is used with a hwaccel pixel
3081      *             format, then this AVHWFramesContext will be used for
3082      *             allocating the frame buffers.
3083      *
3084      * - encoding: For hardware encoders configured to use a hwaccel pixel
3085      *             format, this field should be set by the caller to a reference
3086      *             to the AVHWFramesContext describing input frames.
3087      *             AVHWFramesContext.format must be equal to
3088      *             AVCodecContext.pix_fmt.
3089      *
3090      *             This field should be set before avcodec_open2() is called.
3091      */
3092     AVBufferRef *hw_frames_ctx;
3093
3094     /**
3095      * Video decoding only. Certain video codecs support cropping, meaning that
3096      * only a sub-rectangle of the decoded frame is intended for display.  This
3097      * option controls how cropping is handled by libavcodec.
3098      *
3099      * When set to 1 (the default), libavcodec will apply cropping internally.
3100      * I.e. it will modify the output frame width/height fields and offset the
3101      * data pointers (only by as much as possible while preserving alignment, or
3102      * by the full amount if the AV_CODEC_FLAG_UNALIGNED flag is set) so that
3103      * the frames output by the decoder refer only to the cropped area. The
3104      * crop_* fields of the output frames will be zero.
3105      *
3106      * When set to 0, the width/height fields of the output frames will be set
3107      * to the coded dimensions and the crop_* fields will describe the cropping
3108      * rectangle. Applying the cropping is left to the caller.
3109      *
3110      * @warning When hardware acceleration with opaque output frames is used,
3111      * libavcodec is unable to apply cropping from the top/left border.
3112      *
3113      * @note when this option is set to zero, the width/height fields of the
3114      * AVCodecContext and output AVFrames have different meanings. The codec
3115      * context fields store display dimensions (with the coded dimensions in
3116      * coded_width/height), while the frame fields store the coded dimensions
3117      * (with the display dimensions being determined by the crop_* fields).
3118      */
3119     int apply_cropping;
3120
3121     /**
3122      * A reference to the AVHWDeviceContext describing the device which will
3123      * be used by a hardware encoder/decoder.  The reference is set by the
3124      * caller and afterwards owned (and freed) by libavcodec.
3125      *
3126      * This should be used if either the codec device does not require
3127      * hardware frames or any that are used are to be allocated internally by
3128      * libavcodec.  If the user wishes to supply any of the frames used as
3129      * encoder input or decoder output then hw_frames_ctx should be used
3130      * instead.  When hw_frames_ctx is set in get_format() for a decoder, this
3131      * field will be ignored while decoding the associated stream segment, but
3132      * may again be used on a following one after another get_format() call.
3133      *
3134      * For both encoders and decoders this field should be set before
3135      * avcodec_open2() is called and must not be written to thereafter.
3136      *
3137      * Note that some decoders may require this field to be set initially in
3138      * order to support hw_frames_ctx at all - in that case, all frames
3139      * contexts used must be created on the same device.
3140      */
3141     AVBufferRef *hw_device_ctx;
3142
3143     /**
3144      * Bit set of AV_HWACCEL_FLAG_* flags, which affect hardware accelerated
3145      * decoding (if active).
3146      * - encoding: unused
3147      * - decoding: Set by user (either before avcodec_open2(), or in the
3148      *             AVCodecContext.get_format callback)
3149      */
3150     int hwaccel_flags;
3151 } AVCodecContext;
3152
3153 /**
3154  * AVProfile.
3155  */
3156 typedef struct AVProfile {
3157     int profile;
3158     const char *name; ///< short name for the profile
3159 } AVProfile;
3160
3161 typedef struct AVCodecDefault AVCodecDefault;
3162
3163 struct AVSubtitle;
3164
3165 /**
3166  * AVCodec.
3167  */
3168 typedef struct AVCodec {
3169     /**
3170      * Name of the codec implementation.
3171      * The name is globally unique among encoders and among decoders (but an
3172      * encoder and a decoder can share the same name).
3173      * This is the primary way to find a codec from the user perspective.
3174      */
3175     const char *name;
3176     /**
3177      * Descriptive name for the codec, meant to be more human readable than name.
3178      * You should use the NULL_IF_CONFIG_SMALL() macro to define it.
3179      */
3180     const char *long_name;
3181     enum AVMediaType type;
3182     enum AVCodecID id;
3183     /**
3184      * Codec capabilities.
3185      * see AV_CODEC_CAP_*
3186      */
3187     int capabilities;
3188     const AVRational *supported_framerates; ///< array of supported framerates, or NULL if any, array is terminated by {0,0}
3189     const enum AVPixelFormat *pix_fmts;     ///< array of supported pixel formats, or NULL if unknown, array is terminated by -1
3190     const int *supported_samplerates;       ///< array of supported audio samplerates, or NULL if unknown, array is terminated by 0
3191     const enum AVSampleFormat *sample_fmts; ///< array of supported sample formats, or NULL if unknown, array is terminated by -1
3192     const uint64_t *channel_layouts;         ///< array of support channel layouts, or NULL if unknown. array is terminated by 0
3193     const AVClass *priv_class;              ///< AVClass for the private context
3194     const AVProfile *profiles;              ///< array of recognized profiles, or NULL if unknown, array is terminated by {FF_PROFILE_UNKNOWN}
3195
3196     /*****************************************************************
3197      * No fields below this line are part of the public API. They
3198      * may not be used outside of libavcodec and can be changed and
3199      * removed at will.
3200      * New public fields should be added right above.
3201      *****************************************************************
3202      */
3203     int priv_data_size;
3204     struct AVCodec *next;
3205     /**
3206      * @name Frame-level threading support functions
3207      * @{
3208      */
3209     /**
3210      * If defined, called on thread contexts when they are created.
3211      * If the codec allocates writable tables in init(), re-allocate them here.
3212      * priv_data will be set to a copy of the original.
3213      */
3214     int (*init_thread_copy)(AVCodecContext *);
3215     /**
3216      * Copy necessary context variables from a previous thread context to the current one.
3217      * If not defined, the next thread will start automatically; otherwise, the codec
3218      * must call ff_thread_finish_setup().
3219      *
3220      * dst and src will (rarely) point to the same context, in which case memcpy should be skipped.
3221      */
3222     int (*update_thread_context)(AVCodecContext *dst, const AVCodecContext *src);
3223     /** @} */
3224
3225     /**
3226      * Private codec-specific defaults.
3227      */
3228     const AVCodecDefault *defaults;
3229
3230     /**
3231      * Initialize codec static data, called from avcodec_register().
3232      */
3233     void (*init_static_data)(struct AVCodec *codec);
3234
3235     int (*init)(AVCodecContext *);
3236     int (*encode_sub)(AVCodecContext *, uint8_t *buf, int buf_size,
3237                       const struct AVSubtitle *sub);
3238     /**
3239      * Encode data to an AVPacket.
3240      *
3241      * @param      avctx          codec context
3242      * @param      avpkt          output AVPacket (may contain a user-provided buffer)
3243      * @param[in]  frame          AVFrame containing the raw data to be encoded
3244      * @param[out] got_packet_ptr encoder sets to 0 or 1 to indicate that a
3245      *                            non-empty packet was returned in avpkt.
3246      * @return 0 on success, negative error code on failure
3247      */
3248     int (*encode2)(AVCodecContext *avctx, AVPacket *avpkt, const AVFrame *frame,
3249                    int *got_packet_ptr);
3250     int (*decode)(AVCodecContext *, void *outdata, int *outdata_size, AVPacket *avpkt);
3251     int (*close)(AVCodecContext *);
3252     /**
3253      * Encode API with decoupled packet/frame dataflow. The API is the
3254      * same as the avcodec_ prefixed APIs (avcodec_send_frame() etc.), except
3255      * that:
3256      * - never called if the codec is closed or the wrong type,
3257      * - if AV_CODEC_CAP_DELAY is not set, drain frames are never sent,
3258      * - only one drain frame is ever passed down,
3259      */
3260     int (*send_frame)(AVCodecContext *avctx, const AVFrame *frame);
3261     int (*receive_packet)(AVCodecContext *avctx, AVPacket *avpkt);
3262
3263     /**
3264      * Decode API with decoupled packet/frame dataflow. This function is called
3265      * to get one output frame. It should call ff_decode_get_packet() to obtain
3266      * input data.
3267      */
3268     int (*receive_frame)(AVCodecContext *avctx, AVFrame *frame);
3269     /**
3270      * Flush buffers.
3271      * Will be called when seeking
3272      */
3273     void (*flush)(AVCodecContext *);
3274     /**
3275      * Internal codec capabilities.
3276      * See FF_CODEC_CAP_* in internal.h
3277      */
3278     int caps_internal;
3279
3280     /**
3281      * Decoding only, a comma-separated list of bitstream filters to apply to
3282      * packets before decoding.
3283      */
3284     const char *bsfs;
3285 } AVCodec;
3286
3287 /**
3288  * @defgroup lavc_hwaccel AVHWAccel
3289  * @{
3290  */
3291 typedef struct AVHWAccel {
3292     /**
3293      * Name of the hardware accelerated codec.
3294      * The name is globally unique among encoders and among decoders (but an
3295      * encoder and a decoder can share the same name).
3296      */
3297     const char *name;
3298
3299     /**
3300      * Type of codec implemented by the hardware accelerator.
3301      *
3302      * See AVMEDIA_TYPE_xxx
3303      */
3304     enum AVMediaType type;
3305
3306     /**
3307      * Codec implemented by the hardware accelerator.
3308      *
3309      * See AV_CODEC_ID_xxx
3310      */
3311     enum AVCodecID id;
3312
3313     /**
3314      * Supported pixel format.
3315      *
3316      * Only hardware accelerated formats are supported here.
3317      */
3318     enum AVPixelFormat pix_fmt;
3319
3320     /**
3321      * Hardware accelerated codec capabilities.
3322      * see FF_HWACCEL_CODEC_CAP_*
3323      */
3324     int capabilities;
3325
3326     /*****************************************************************
3327      * No fields below this line are part of the public API. They
3328      * may not be used outside of libavcodec and can be changed and
3329      * removed at will.
3330      * New public fields should be added right above.
3331      *****************************************************************
3332      */
3333     struct AVHWAccel *next;
3334
3335     /**
3336      * Allocate a custom buffer
3337      */
3338     int (*alloc_frame)(AVCodecContext *avctx, AVFrame *frame);
3339
3340     /**
3341      * Called at the beginning of each frame or field picture.
3342      *
3343      * Meaningful frame information (codec specific) is guaranteed to
3344      * be parsed at this point. This function is mandatory.
3345      *
3346      * Note that buf can be NULL along with buf_size set to 0.
3347      * Otherwise, this means the whole frame is available at this point.
3348      *
3349      * @param avctx the codec context
3350      * @param buf the frame data buffer base
3351      * @param buf_size the size of the frame in bytes
3352      * @return zero if successful, a negative value otherwise
3353      */
3354     int (*start_frame)(AVCodecContext *avctx, const uint8_t *buf, uint32_t buf_size);
3355
3356     /**
3357      * Callback for each slice.
3358      *
3359      * Meaningful slice information (codec specific) is guaranteed to
3360      * be parsed at this point. This function is mandatory.
3361      *
3362      * @param avctx the codec context
3363      * @param buf the slice data buffer base
3364      * @param buf_size the size of the slice in bytes
3365      * @return zero if successful, a negative value otherwise
3366      */
3367     int (*decode_slice)(AVCodecContext *avctx, const uint8_t *buf, uint32_t buf_size);
3368
3369     /**
3370      * Called at the end of each frame or field picture.
3371      *
3372      * The whole picture is parsed at this point and can now be sent
3373      * to the hardware accelerator. This function is mandatory.
3374      *
3375      * @param avctx the codec context
3376      * @return zero if successful, a negative value otherwise
3377      */
3378     int (*end_frame)(AVCodecContext *avctx);
3379
3380     /**
3381      * Size of per-frame hardware accelerator private data.
3382      *
3383      * Private data is allocated with av_mallocz() before
3384      * AVCodecContext.get_buffer() and deallocated after
3385      * AVCodecContext.release_buffer().
3386      */
3387     int frame_priv_data_size;
3388
3389     /**
3390      * Initialize the hwaccel private data.
3391      *
3392      * This will be called from ff_get_format(), after hwaccel and
3393      * hwaccel_context are set and the hwaccel private data in AVCodecInternal
3394      * is allocated.
3395      */
3396     int (*init)(AVCodecContext *avctx);
3397
3398     /**
3399      * Uninitialize the hwaccel private data.
3400      *
3401      * This will be called from get_format() or avcodec_close(), after hwaccel
3402      * and hwaccel_context are already uninitialized.
3403      */
3404     int (*uninit)(AVCodecContext *avctx);
3405
3406     /**
3407      * Size of the private data to allocate in
3408      * AVCodecInternal.hwaccel_priv_data.
3409      */
3410     int priv_data_size;
3411
3412     /**
3413      * Internal hwaccel capabilities.
3414      */
3415     int caps_internal;
3416 } AVHWAccel;
3417
3418 /**
3419  * Hardware acceleration should be used for decoding even if the codec level
3420  * used is unknown or higher than the maximum supported level reported by the
3421  * hardware driver.
3422  */
3423 #define AV_HWACCEL_FLAG_IGNORE_LEVEL (1 << 0)
3424
3425 /**
3426  * Hardware acceleration can output YUV pixel formats with a different chroma
3427  * sampling than 4:2:0 and/or other than 8 bits per component.
3428  */
3429 #define AV_HWACCEL_FLAG_ALLOW_HIGH_DEPTH (1 << 1)
3430
3431 /**
3432  * @}
3433  */
3434
3435 #if FF_API_AVPICTURE
3436 /**
3437  * @defgroup lavc_picture AVPicture
3438  *
3439  * Functions for working with AVPicture
3440  * @{
3441  */
3442
3443 /**
3444  * four components are given, that's all.
3445  * the last component is alpha
3446  * @deprecated Use the imgutils functions
3447  */
3448 typedef struct AVPicture {
3449     attribute_deprecated
3450     uint8_t *data[AV_NUM_DATA_POINTERS];
3451     attribute_deprecated
3452     int linesize[AV_NUM_DATA_POINTERS];     ///< number of bytes per line
3453 } AVPicture;
3454
3455 /**
3456  * @}
3457  */
3458 #endif
3459
3460 #define AVPALETTE_SIZE 1024
3461 #define AVPALETTE_COUNT 256
3462
3463 enum AVSubtitleType {
3464     SUBTITLE_NONE,
3465
3466     SUBTITLE_BITMAP,                ///< A bitmap, pict will be set
3467
3468     /**
3469      * Plain text, the text field must be set by the decoder and is
3470      * authoritative. ass and pict fields may contain approximations.
3471      */
3472     SUBTITLE_TEXT,
3473
3474     /**
3475      * Formatted text, the ass field must be set by the decoder and is
3476      * authoritative. pict and text fields may contain approximations.
3477      */
3478     SUBTITLE_ASS,
3479 };
3480
3481 #define AV_SUBTITLE_FLAG_FORCED 0x00000001
3482
3483 typedef struct AVSubtitleRect {
3484     int x;         ///< top left corner  of pict, undefined when pict is not set
3485     int y;         ///< top left corner  of pict, undefined when pict is not set
3486     int w;         ///< width            of pict, undefined when pict is not set
3487     int h;         ///< height           of pict, undefined when pict is not set
3488     int nb_colors; ///< number of colors in pict, undefined when pict is not set
3489
3490 #if FF_API_AVPICTURE
3491     /**
3492      * @deprecated unused
3493      */
3494     attribute_deprecated
3495     AVPicture pict;
3496 #endif
3497     /**
3498      * data+linesize for the bitmap of this subtitle.
3499      * Can be set for text/ass as well once they are rendered.
3500      */
3501     uint8_t *data[4];
3502     int linesize[4];
3503
3504     enum AVSubtitleType type;
3505
3506     char *text;                     ///< 0 terminated plain UTF-8 text
3507
3508     /**
3509      * 0 terminated ASS/SSA compatible event line.
3510      * The presentation of this is unaffected by the other values in this
3511      * struct.
3512      */
3513     char *ass;
3514     int flags;
3515 } AVSubtitleRect;
3516
3517 typedef struct AVSubtitle {
3518     uint16_t format; /* 0 = graphics */
3519     uint32_t start_display_time; /* relative to packet pts, in ms */
3520     uint32_t end_display_time; /* relative to packet pts, in ms */
3521     unsigned num_rects;
3522     AVSubtitleRect **rects;
3523     int64_t pts;    ///< Same as packet pts, in AV_TIME_BASE
3524 } AVSubtitle;
3525
3526 /**
3527  * This struct describes the properties of an encoded stream.
3528  *
3529  * sizeof(AVCodecParameters) is not a part of the public ABI, this struct must
3530  * be allocated with avcodec_parameters_alloc() and freed with
3531  * avcodec_parameters_free().
3532  */
3533 typedef struct AVCodecParameters {
3534     /**
3535      * General type of the encoded data.
3536      */
3537     enum AVMediaType codec_type;
3538     /**
3539      * Specific type of the encoded data (the codec used).
3540      */
3541     enum AVCodecID   codec_id;
3542     /**
3543      * Additional information about the codec (corresponds to the AVI FOURCC).
3544      */
3545     uint32_t         codec_tag;
3546
3547     /**
3548      * Extra binary data needed for initializing the decoder, codec-dependent.
3549      *
3550      * Must be allocated with av_malloc() and will be freed by
3551      * avcodec_parameters_free(). The allocated size of extradata must be at
3552      * least extradata_size + AV_INPUT_BUFFER_PADDING_SIZE, with the padding
3553      * bytes zeroed.
3554      */
3555     uint8_t *extradata;
3556     /**
3557      * Size of the extradata content in bytes.
3558      */
3559     int      extradata_size;
3560
3561     /**
3562      * - video: the pixel format, the value corresponds to enum AVPixelFormat.
3563      * - audio: the sample format, the value corresponds to enum AVSampleFormat.
3564      */
3565     int format;
3566
3567     /**
3568      * The average bitrate of the encoded data (in bits per second).
3569      */
3570     int bit_rate;
3571
3572     int bits_per_coded_sample;
3573
3574     /**
3575      * Codec-specific bitstream restrictions that the stream conforms to.
3576      */
3577     int profile;
3578     int level;
3579
3580     /**
3581      * Video only. The dimensions of the video frame in pixels.
3582      */
3583     int width;
3584     int height;
3585
3586     /**
3587      * Video only. The aspect ratio (width / height) which a single pixel
3588      * should have when displayed.
3589      *
3590      * When the aspect ratio is unknown / undefined, the numerator should be
3591      * set to 0 (the denominator may have any value).
3592      */
3593     AVRational sample_aspect_ratio;
3594
3595     /**
3596      * Video only. The order of the fields in interlaced video.
3597      */
3598     enum AVFieldOrder                  field_order;
3599
3600     /**
3601      * Video only. Additional colorspace characteristics.
3602      */
3603     enum AVColorRange                  color_range;
3604     enum AVColorPrimaries              color_primaries;
3605     enum AVColorTransferCharacteristic color_trc;
3606     enum AVColorSpace                  color_space;
3607     enum AVChromaLocation              chroma_location;
3608
3609     /**
3610      * Audio only. The channel layout bitmask. May be 0 if the channel layout is
3611      * unknown or unspecified, otherwise the number of bits set must be equal to
3612      * the channels field.
3613      */
3614     uint64_t channel_layout;
3615     /**
3616      * Audio only. The number of audio channels.
3617      */
3618     int      channels;
3619     /**
3620      * Audio only. The number of audio samples per second.
3621      */
3622     int      sample_rate;
3623     /**
3624      * Audio only. The number of bytes per coded audio frame, required by some
3625      * formats.
3626      *
3627      * Corresponds to nBlockAlign in WAVEFORMATEX.
3628      */
3629     int      block_align;
3630
3631     /**
3632      * Audio only. The amount of padding (in samples) inserted by the encoder at
3633      * the beginning of the audio. I.e. this number of leading decoded samples
3634      * must be discarded by the caller to get the original audio without leading
3635      * padding.
3636      */
3637     int initial_padding;
3638     /**
3639      * Audio only. The amount of padding (in samples) appended by the encoder to
3640      * the end of the audio. I.e. this number of decoded samples must be
3641      * discarded by the caller from the end of the stream to get the original
3642      * audio without any trailing padding.
3643      */
3644     int trailing_padding;
3645 } AVCodecParameters;
3646
3647 /**
3648  * If c is NULL, returns the first registered codec,
3649  * if c is non-NULL, returns the next registered codec after c,
3650  * or NULL if c is the last one.
3651  */
3652 AVCodec *av_codec_next(const AVCodec *c);
3653
3654 /**
3655  * Return the LIBAVCODEC_VERSION_INT constant.
3656  */
3657 unsigned avcodec_version(void);
3658
3659 /**
3660  * Return the libavcodec build-time configuration.
3661  */
3662 const char *avcodec_configuration(void);
3663
3664 /**
3665  * Return the libavcodec license.
3666  */
3667 const char *avcodec_license(void);
3668
3669 /**
3670  * Register the codec codec and initialize libavcodec.
3671  *
3672  * @warning either this function or avcodec_register_all() must be called
3673  * before any other libavcodec functions.
3674  *
3675  * @see avcodec_register_all()
3676  */
3677 void avcodec_register(AVCodec *codec);
3678
3679 /**
3680  * Register all the codecs, parsers and bitstream filters which were enabled at
3681  * configuration time. If you do not call this function you can select exactly
3682  * which formats you want to support, by using the individual registration
3683  * functions.
3684  *
3685  * @see avcodec_register
3686  * @see av_register_codec_parser
3687  * @see av_register_bitstream_filter
3688  */
3689 void avcodec_register_all(void);
3690
3691 /**
3692  * Allocate an AVCodecContext and set its fields to default values. The
3693  * resulting struct should be freed with avcodec_free_context().
3694  *
3695  * @param codec if non-NULL, allocate private data and initialize defaults
3696  *              for the given codec. It is illegal to then call avcodec_open2()
3697  *              with a different codec.
3698  *              If NULL, then the codec-specific defaults won't be initialized,
3699  *              which may result in suboptimal default settings (this is
3700  *              important mainly for encoders, e.g. libx264).
3701  *
3702  * @return An AVCodecContext filled with default values or NULL on failure.
3703  */
3704 AVCodecContext *avcodec_alloc_context3(const AVCodec *codec);
3705
3706 /**
3707  * Free the codec context and everything associated with it and write NULL to
3708  * the provided pointer.
3709  */
3710 void avcodec_free_context(AVCodecContext **avctx);
3711
3712 #if FF_API_GET_CONTEXT_DEFAULTS
3713 /**
3714  * @deprecated This function should not be used, as closing and opening a codec
3715  * context multiple time is not supported. A new codec context should be
3716  * allocated for each new use.
3717  */
3718 int avcodec_get_context_defaults3(AVCodecContext *s, const AVCodec *codec);
3719 #endif
3720
3721 /**
3722  * Get the AVClass for AVCodecContext. It can be used in combination with
3723  * AV_OPT_SEARCH_FAKE_OBJ for examining options.
3724  *
3725  * @see av_opt_find().
3726  */
3727 const AVClass *avcodec_get_class(void);
3728
3729 #if FF_API_COPY_CONTEXT
3730 /**
3731  * Copy the settings of the source AVCodecContext into the destination
3732  * AVCodecContext. The resulting destination codec context will be
3733  * unopened, i.e. you are required to call avcodec_open2() before you
3734  * can use this AVCodecContext to decode/encode video/audio data.
3735  *
3736  * @param dest target codec context, should be initialized with
3737  *             avcodec_alloc_context3(), but otherwise uninitialized
3738  * @param src source codec context
3739  * @return AVERROR() on error (e.g. memory allocation error), 0 on success
3740  *
3741  * @deprecated The semantics of this function are ill-defined and it should not
3742  * be used. If you need to transfer the stream parameters from one codec context
3743  * to another, use an intermediate AVCodecParameters instance and the
3744  * avcodec_parameters_from_context() / avcodec_parameters_to_context()
3745  * functions.
3746  */
3747 attribute_deprecated
3748 int avcodec_copy_context(AVCodecContext *dest, const AVCodecContext *src);
3749 #endif
3750
3751 /**
3752  * Allocate a new AVCodecParameters and set its fields to default values
3753  * (unknown/invalid/0). The returned struct must be freed with
3754  * avcodec_parameters_free().
3755  */
3756 AVCodecParameters *avcodec_parameters_alloc(void);
3757
3758 /**
3759  * Free an AVCodecParameters instance and everything associated with it and
3760  * write NULL to the supplied pointer.
3761  */
3762 void avcodec_parameters_free(AVCodecParameters **par);
3763
3764 /**
3765  * Copy the contents of src to dst. Any allocated fields in dst are freed and
3766  * replaced with newly allocated duplicates of the corresponding fields in src.
3767  *
3768  * @return >= 0 on success, a negative AVERROR code on failure.
3769  */
3770 int avcodec_parameters_copy(AVCodecParameters *dst, const AVCodecParameters *src);
3771
3772 /**
3773  * Fill the parameters struct based on the values from the supplied codec
3774  * context. Any allocated fields in par are freed and replaced with duplicates
3775  * of the corresponding fields in codec.
3776  *
3777  * @return >= 0 on success, a negative AVERROR code on failure
3778  */
3779 int avcodec_parameters_from_context(AVCodecParameters *par,
3780                                     const AVCodecContext *codec);
3781
3782 /**
3783  * Fill the codec context based on the values from the supplied codec
3784  * parameters. Any allocated fields in codec that have a corresponding field in
3785  * par are freed and replaced with duplicates of the corresponding field in par.
3786  * Fields in codec that do not have a counterpart in par are not touched.
3787  *
3788  * @return >= 0 on success, a negative AVERROR code on failure.
3789  */
3790 int avcodec_parameters_to_context(AVCodecContext *codec,
3791                                   const AVCodecParameters *par);
3792
3793 /**
3794  * Initialize the AVCodecContext to use the given AVCodec. Prior to using this
3795  * function the context has to be allocated with avcodec_alloc_context3().
3796  *
3797  * The functions avcodec_find_decoder_by_name(), avcodec_find_encoder_by_name(),
3798  * avcodec_find_decoder() and avcodec_find_encoder() provide an easy way for
3799  * retrieving a codec.
3800  *
3801  * @warning This function is not thread safe!
3802  *
3803  * @note Always call this function before using decoding routines (such as
3804  * @ref avcodec_receive_frame()).
3805  *
3806  * @code
3807  * avcodec_register_all();
3808  * av_dict_set(&opts, "b", "2.5M", 0);
3809  * codec = avcodec_find_decoder(AV_CODEC_ID_H264);
3810  * if (!codec)
3811  *     exit(1);
3812  *
3813  * context = avcodec_alloc_context3(codec);
3814  *
3815  * if (avcodec_open2(context, codec, opts) < 0)
3816  *     exit(1);
3817  * @endcode
3818  *
3819  * @param avctx The context to initialize.
3820  * @param codec The codec to open this context for. If a non-NULL codec has been
3821  *              previously passed to avcodec_alloc_context3() or
3822  *              for this context, then this parameter MUST be either NULL or
3823  *              equal to the previously passed codec.
3824  * @param options A dictionary filled with AVCodecContext and codec-private options.
3825  *                On return this object will be filled with options that were not found.
3826  *
3827  * @return zero on success, a negative value on error
3828  * @see avcodec_alloc_context3(), avcodec_find_decoder(), avcodec_find_encoder(),
3829  *      av_dict_set(), av_opt_find().
3830  */
3831 int avcodec_open2(AVCodecContext *avctx, const AVCodec *codec, AVDictionary **options);
3832
3833 /**
3834  * Close a given AVCodecContext and free all the data associated with it
3835  * (but not the AVCodecContext itself).
3836  *
3837  * Calling this function on an AVCodecContext that hasn't been opened will free
3838  * the codec-specific data allocated in avcodec_alloc_context3() with a non-NULL
3839  * codec. Subsequent calls will do nothing.
3840  *
3841  * @note Do not use this function. Use avcodec_free_context() to destroy a
3842  * codec context (either open or closed). Opening and closing a codec context
3843  * multiple times is not supported anymore -- use multiple codec contexts
3844  * instead.
3845  */
3846 int avcodec_close(AVCodecContext *avctx);
3847
3848 /**
3849  * Free all allocated data in the given subtitle struct.
3850  *
3851  * @param sub AVSubtitle to free.
3852  */
3853 void avsubtitle_free(AVSubtitle *sub);
3854
3855 /**
3856  * @}
3857  */
3858
3859 /**
3860  * @addtogroup lavc_packet
3861  * @{
3862  */
3863
3864 /**
3865  * Allocate an AVPacket and set its fields to default values.  The resulting
3866  * struct must be freed using av_packet_free().
3867  *
3868  * @return An AVPacket filled with default values or NULL on failure.
3869  *
3870  * @note this only allocates the AVPacket itself, not the data buffers. Those
3871  * must be allocated through other means such as av_new_packet.
3872  *
3873  * @see av_new_packet
3874  */
3875 AVPacket *av_packet_alloc(void);
3876
3877 /**
3878  * Create a new packet that references the same data as src.
3879  *
3880  * This is a shortcut for av_packet_alloc()+av_packet_ref().
3881  *
3882  * @return newly created AVPacket on success, NULL on error.
3883  *
3884  * @see av_packet_alloc
3885  * @see av_packet_ref
3886  */
3887 AVPacket *av_packet_clone(const AVPacket *src);
3888
3889 /**
3890  * Free the packet, if the packet is reference counted, it will be
3891  * unreferenced first.
3892  *
3893  * @param pkt packet to be freed. The pointer will be set to NULL.
3894  * @note passing NULL is a no-op.
3895  */
3896 void av_packet_free(AVPacket **pkt);
3897
3898 /**
3899  * Initialize optional fields of a packet with default values.
3900  *
3901  * Note, this does not touch the data and size members, which have to be
3902  * initialized separately.
3903  *
3904  * @param pkt packet
3905  */
3906 void av_init_packet(AVPacket *pkt);
3907
3908 /**
3909  * Allocate the payload of a packet and initialize its fields with
3910  * default values.
3911  *
3912  * @param pkt packet
3913  * @param size wanted payload size
3914  * @return 0 if OK, AVERROR_xxx otherwise
3915  */
3916 int av_new_packet(AVPacket *pkt, int size);
3917
3918 /**
3919  * Reduce packet size, correctly zeroing padding
3920  *
3921  * @param pkt packet
3922  * @param size new size
3923  */
3924 void av_shrink_packet(AVPacket *pkt, int size);
3925
3926 /**
3927  * Increase packet size, correctly zeroing padding
3928  *
3929  * @param pkt packet
3930  * @param grow_by number of bytes by which to increase the size of the packet
3931  */
3932 int av_grow_packet(AVPacket *pkt, int grow_by);
3933
3934 /**
3935  * Initialize a reference-counted packet from av_malloc()ed data.
3936  *
3937  * @param pkt packet to be initialized. This function will set the data, size,
3938  *        buf and destruct fields, all others are left untouched.
3939  * @param data Data allocated by av_malloc() to be used as packet data. If this
3940  *        function returns successfully, the data is owned by the underlying AVBuffer.
3941  *        The caller may not access the data through other means.
3942  * @param size size of data in bytes, without the padding. I.e. the full buffer
3943  *        size is assumed to be size + AV_INPUT_BUFFER_PADDING_SIZE.
3944  *
3945  * @return 0 on success, a negative AVERROR on error
3946  */
3947 int av_packet_from_data(AVPacket *pkt, uint8_t *data, int size);
3948
3949 #if FF_API_AVPACKET_OLD_API
3950 /**
3951  * @warning This is a hack - the packet memory allocation stuff is broken. The
3952  * packet is allocated if it was not really allocated.
3953  *
3954  * @deprecated Use av_packet_ref
3955  */
3956 attribute_deprecated
3957 int av_dup_packet(AVPacket *pkt);
3958 /**
3959  * Free a packet.
3960  *
3961  * @deprecated Use av_packet_unref
3962  *
3963  * @param pkt packet to free
3964  */
3965 attribute_deprecated
3966 void av_free_packet(AVPacket *pkt);
3967 #endif
3968 /**
3969  * Allocate new information of a packet.
3970  *
3971  * @param pkt packet
3972  * @param type side information type
3973  * @param size side information size
3974  * @return pointer to fresh allocated data or NULL otherwise
3975  */
3976 uint8_t* av_packet_new_side_data(AVPacket *pkt, enum AVPacketSideDataType type,
3977                                  int size);
3978
3979 /**
3980  * Wrap an existing array as a packet side data.
3981  *
3982  * @param pkt packet
3983  * @param type side information type
3984  * @param data the side data array. It must be allocated with the av_malloc()
3985  *             family of functions. The ownership of the data is transferred to
3986  *             pkt.
3987  * @param size side information size
3988  * @return a non-negative number on success, a negative AVERROR code on
3989  *         failure. On failure, the packet is unchanged and the data remains
3990  *         owned by the caller.
3991  */
3992 int av_packet_add_side_data(AVPacket *pkt, enum AVPacketSideDataType type,
3993                             uint8_t *data, size_t size);
3994
3995 /**
3996  * Shrink the already allocated side data buffer
3997  *
3998  * @param pkt packet
3999  * @param type side information type
4000  * @param size new side information size
4001  * @return 0 on success, < 0 on failure
4002  */
4003 int av_packet_shrink_side_data(AVPacket *pkt, enum AVPacketSideDataType type,
4004                                int size);
4005
4006 /**
4007  * Get side information from packet.
4008  *
4009  * @param pkt packet
4010  * @param type desired side information type
4011  * @param size pointer for side information size to store (optional)
4012  * @return pointer to data if present or NULL otherwise
4013  */
4014 uint8_t* av_packet_get_side_data(AVPacket *pkt, enum AVPacketSideDataType type,
4015                                  int *size);
4016
4017 /**
4018  * Convenience function to free all the side data stored.
4019  * All the other fields stay untouched.
4020  *
4021  * @param pkt packet
4022  */
4023 void av_packet_free_side_data(AVPacket *pkt);
4024
4025 /**
4026  * Setup a new reference to the data described by a given packet
4027  *
4028  * If src is reference-counted, setup dst as a new reference to the
4029  * buffer in src. Otherwise allocate a new buffer in dst and copy the
4030  * data from src into it.
4031  *
4032  * All the other fields are copied from src.
4033  *
4034  * @see av_packet_unref
4035  *
4036  * @param dst Destination packet
4037  * @param src Source packet
4038  *
4039  * @return 0 on success, a negative AVERROR on error.
4040  */
4041 int av_packet_ref(AVPacket *dst, const AVPacket *src);
4042
4043 /**
4044  * Wipe the packet.
4045  *
4046  * Unreference the buffer referenced by the packet and reset the
4047  * remaining packet fields to their default values.
4048  *
4049  * @param pkt The packet to be unreferenced.
4050  */
4051 void av_packet_unref(AVPacket *pkt);
4052
4053 /**
4054  * Move every field in src to dst and reset src.
4055  *
4056  * @see av_packet_unref
4057  *
4058  * @param src Source packet, will be reset
4059  * @param dst Destination packet
4060  */
4061 void av_packet_move_ref(AVPacket *dst, AVPacket *src);
4062
4063 /**
4064  * Copy only "properties" fields from src to dst.
4065  *
4066  * Properties for the purpose of this function are all the fields
4067  * beside those related to the packet data (buf, data, size)
4068  *
4069  * @param dst Destination packet
4070  * @param src Source packet
4071  *
4072  * @return 0 on success AVERROR on failure.
4073  */
4074 int av_packet_copy_props(AVPacket *dst, const AVPacket *src);
4075
4076 /**
4077  * Convert valid timing fields (timestamps / durations) in a packet from one
4078  * timebase to another. Timestamps with unknown values (AV_NOPTS_VALUE) will be
4079  * ignored.
4080  *
4081  * @param pkt packet on which the conversion will be performed
4082  * @param tb_src source timebase, in which the timing fields in pkt are
4083  *               expressed
4084  * @param tb_dst destination timebase, to which the timing fields will be
4085  *               converted
4086  */
4087 void av_packet_rescale_ts(AVPacket *pkt, AVRational tb_src, AVRational tb_dst);
4088
4089 /**
4090  * @}
4091  */
4092
4093 /**
4094  * @addtogroup lavc_decoding
4095  * @{
4096  */
4097
4098 /**
4099  * Find a registered decoder with a matching codec ID.
4100  *
4101  * @param id AVCodecID of the requested decoder
4102  * @return A decoder if one was found, NULL otherwise.
4103  */
4104 AVCodec *avcodec_find_decoder(enum AVCodecID id);
4105
4106 /**
4107  * Find a registered decoder with the specified name.
4108  *
4109  * @param name name of the requested decoder
4110  * @return A decoder if one was found, NULL otherwise.
4111  */
4112 AVCodec *avcodec_find_decoder_by_name(const char *name);
4113
4114 /**
4115  * The default callback for AVCodecContext.get_buffer2(). It is made public so
4116  * it can be called by custom get_buffer2() implementations for decoders without
4117  * AV_CODEC_CAP_DR1 set.
4118  */
4119 int avcodec_default_get_buffer2(AVCodecContext *s, AVFrame *frame, int flags);
4120
4121 #if FF_API_EMU_EDGE
4122 /**
4123  * Return the amount of padding in pixels which the get_buffer callback must
4124  * provide around the edge of the image for codecs which do not have the
4125  * CODEC_FLAG_EMU_EDGE flag.
4126  *
4127  * @return Required padding in pixels.
4128  *
4129  * @deprecated CODEC_FLAG_EMU_EDGE is deprecated, so this function is no longer
4130  * needed
4131  */
4132 attribute_deprecated
4133 unsigned avcodec_get_edge_width(void);
4134 #endif
4135
4136 /**
4137  * Modify width and height values so that they will result in a memory
4138  * buffer that is acceptable for the codec if you do not use any horizontal
4139  * padding.
4140  *
4141  * May only be used if a codec with AV_CODEC_CAP_DR1 has been opened.
4142  */
4143 void avcodec_align_dimensions(AVCodecContext *s, int *width, int *height);
4144
4145 /**
4146  * Modify width and height values so that they will result in a memory
4147  * buffer that is acceptable for the codec if you also ensure that all
4148  * line sizes are a multiple of the respective linesize_align[i].
4149  *
4150  * May only be used if a codec with AV_CODEC_CAP_DR1 has been opened.
4151  */
4152 void avcodec_align_dimensions2(AVCodecContext *s, int *width, int *height,
4153                                int linesize_align[AV_NUM_DATA_POINTERS]);
4154
4155 /**
4156  * Decode the audio frame of size avpkt->size from avpkt->data into frame.
4157  *
4158  * Some decoders may support multiple frames in a single AVPacket. Such
4159  * decoders would then just decode the first frame and the return value would be
4160  * less than the packet size. In this case, avcodec_decode_audio4 has to be
4161  * called again with an AVPacket containing the remaining data in order to
4162  * decode the second frame, etc...  Even if no frames are returned, the packet
4163  * needs to be fed to the decoder with remaining data until it is completely
4164  * consumed or an error occurs.
4165  *
4166  * Some decoders (those marked with AV_CODEC_CAP_DELAY) have a delay between input
4167  * and output. This means that for some packets they will not immediately
4168  * produce decoded output and need to be flushed at the end of decoding to get
4169  * all the decoded data. Flushing is done by calling this function with packets
4170  * with avpkt->data set to NULL and avpkt->size set to 0 until it stops
4171  * returning samples. It is safe to flush even those decoders that are not
4172  * marked with AV_CODEC_CAP_DELAY, then no samples will be returned.
4173  *
4174  * @warning The input buffer, avpkt->data must be AV_INPUT_BUFFER_PADDING_SIZE
4175  *          larger than the actual read bytes because some optimized bitstream
4176  *          readers read 32 or 64 bits at once and could read over the end.
4177  *
4178  * @note The AVCodecContext MUST have been opened with @ref avcodec_open2()
4179  * before packets may be fed to the decoder.
4180  *
4181  * @param      avctx the codec context
4182  * @param[out] frame The AVFrame in which to store decoded audio samples.
4183  *                   The decoder will allocate a buffer for the decoded frame by
4184  *                   calling the AVCodecContext.get_buffer2() callback.
4185  *                   When AVCodecContext.refcounted_frames is set to 1, the frame is
4186  *                   reference counted and the returned reference belongs to the
4187  *                   caller. The caller must release the frame using av_frame_unref()
4188  *                   when the frame is no longer needed. The caller may safely write
4189  *                   to the frame if av_frame_is_writable() returns 1.
4190  *                   When AVCodecContext.refcounted_frames is set to 0, the returned
4191  *                   reference belongs to the decoder and is valid only until the
4192  *                   next call to this function or until closing or flushing the
4193  *                   decoder. The caller may not write to it.
4194  * @param[out] got_frame_ptr Zero if no frame could be decoded, otherwise it is
4195  *                           non-zero. Note that this field being set to zero
4196  *                           does not mean that an error has occurred. For
4197  *                           decoders with AV_CODEC_CAP_DELAY set, no given decode
4198  *                           call is guaranteed to produce a frame.
4199  * @param[in]  avpkt The input AVPacket containing the input buffer.
4200  *                   At least avpkt->data and avpkt->size should be set. Some
4201  *                   decoders might also require additional fields to be set.
4202  * @return A negative error code is returned if an error occurred during
4203  *         decoding, otherwise the number of bytes consumed from the input
4204  *         AVPacket is returned.
4205  *
4206 * @deprecated Use avcodec_send_packet() and avcodec_receive_frame().
4207  */
4208 attribute_deprecated
4209 int avcodec_decode_audio4(AVCodecContext *avctx, AVFrame *frame,
4210                           int *got_frame_ptr, AVPacket *avpkt);
4211
4212 /**
4213  * Decode the video frame of size avpkt->size from avpkt->data into picture.
4214  * Some decoders may support multiple frames in a single AVPacket, such
4215  * decoders would then just decode the first frame.
4216  *
4217  * @warning The input buffer must be AV_INPUT_BUFFER_PADDING_SIZE larger than
4218  * the actual read bytes because some optimized bitstream readers read 32 or 64
4219  * bits at once and could read over the end.
4220  *
4221  * @warning The end of the input buffer buf should be set to 0 to ensure that
4222  * no overreading happens for damaged MPEG streams.
4223  *
4224  * @note Codecs which have the AV_CODEC_CAP_DELAY capability set have a delay
4225  * between input and output, these need to be fed with avpkt->data=NULL,
4226  * avpkt->size=0 at the end to return the remaining frames.
4227  *
4228  * @note The AVCodecContext MUST have been opened with @ref avcodec_open2()
4229  * before packets may be fed to the decoder.
4230  *
4231  * @param avctx the codec context
4232  * @param[out] picture The AVFrame in which the decoded video frame will be stored.
4233  *             Use av_frame_alloc() to get an AVFrame. The codec will
4234  *             allocate memory for the actual bitmap by calling the
4235  *             AVCodecContext.get_buffer2() callback.
4236  *             When AVCodecContext.refcounted_frames is set to 1, the frame is
4237  *             reference counted and the returned reference belongs to the
4238  *             caller. The caller must release the frame using av_frame_unref()
4239  *             when the frame is no longer needed. The caller may safely write
4240  *             to the frame if av_frame_is_writable() returns 1.
4241  *             When AVCodecContext.refcounted_frames is set to 0, the returned
4242  *             reference belongs to the decoder and is valid only until the
4243  *             next call to this function or until closing or flushing the
4244  *             decoder. The caller may not write to it.
4245  *
4246  * @param[in] avpkt The input AVPacket containing the input buffer.
4247  *            You can create such packet with av_init_packet() and by then setting
4248  *            data and size, some decoders might in addition need other fields like
4249  *            flags&AV_PKT_FLAG_KEY. All decoders are designed to use the least
4250  *            fields possible.
4251  * @param[in,out] got_picture_ptr Zero if no frame could be decompressed, otherwise, it is nonzero.
4252  * @return On error a negative value is returned, otherwise the number of bytes
4253  * used or zero if no frame could be decompressed.
4254  *
4255  * @deprecated Use avcodec_send_packet() and avcodec_receive_frame().
4256  */
4257 attribute_deprecated
4258 int avcodec_decode_video2(AVCodecContext *avctx, AVFrame *picture,
4259                          int *got_picture_ptr,
4260                          AVPacket *avpkt);
4261
4262 /**
4263  * Decode a subtitle message.
4264  * Return a negative value on error, otherwise return the number of bytes used.
4265  * If no subtitle could be decompressed, got_sub_ptr is zero.
4266  * Otherwise, the subtitle is stored in *sub.
4267  * Note that AV_CODEC_CAP_DR1 is not available for subtitle codecs. This is for
4268  * simplicity, because the performance difference is expect to be negligible
4269  * and reusing a get_buffer written for video codecs would probably perform badly
4270  * due to a potentially very different allocation pattern.
4271  *
4272  * @note The AVCodecContext MUST have been opened with @ref avcodec_open2()
4273  * before packets may be fed to the decoder.
4274  *
4275  * @param avctx the codec context
4276  * @param[out] sub The AVSubtitle in which the decoded subtitle will be stored, must be
4277                    freed with avsubtitle_free if *got_sub_ptr is set.
4278  * @param[in,out] got_sub_ptr Zero if no subtitle could be decompressed, otherwise, it is nonzero.
4279  * @param[in] avpkt The input AVPacket containing the input buffer.
4280  */
4281 int avcodec_decode_subtitle2(AVCodecContext *avctx, AVSubtitle *sub,
4282                             int *got_sub_ptr,
4283                             AVPacket *avpkt);
4284
4285 /**
4286  * Supply raw packet data as input to a decoder.
4287  *
4288  * Internally, this call will copy relevant AVCodecContext fields, which can
4289  * influence decoding per-packet, and apply them when the packet is actually
4290  * decoded. (For example AVCodecContext.skip_frame, which might direct the
4291  * decoder to drop the frame contained by the packet sent with this function.)
4292  *
4293  * @warning The input buffer, avpkt->data must be AV_INPUT_BUFFER_PADDING_SIZE
4294  *          larger than the actual read bytes because some optimized bitstream
4295  *          readers read 32 or 64 bits at once and could read over the end.
4296  *
4297  * @warning Do not mix this API with the legacy API (like avcodec_decode_video2())
4298  *          on the same AVCodecContext. It will return unexpected results now
4299  *          or in future libavcodec versions.
4300  *
4301  * @note The AVCodecContext MUST have been opened with @ref avcodec_open2()
4302  *       before packets may be fed to the decoder.
4303  *
4304  * @param avctx codec context
4305  * @param[in] avpkt The input AVPacket. Usually, this will be a single video
4306  *                  frame, or several complete audio frames.
4307  *                  Ownership of the packet remains with the caller, and the
4308  *                  decoder will not write to the packet. The decoder may create
4309  *                  a reference to the packet data (or copy it if the packet is
4310  *                  not reference-counted).
4311  *                  Unlike with older APIs, the packet is always fully consumed,
4312  *                  and if it contains multiple frames (e.g. some audio codecs),
4313  *                  will require you to call avcodec_receive_frame() multiple
4314  *                  times afterwards before you can send a new packet.
4315  *                  It can be NULL (or an AVPacket with data set to NULL and
4316  *                  size set to 0); in this case, it is considered a flush
4317  *                  packet, which signals the end of the stream. Sending the
4318  *                  first flush packet will return success. Subsequent ones are
4319  *                  unnecessary and will return AVERROR_EOF. If the decoder
4320  *                  still has frames buffered, it will return them after sending
4321  *                  a flush packet.
4322  *
4323  * @return 0 on success, otherwise negative error code:
4324  *      AVERROR(EAGAIN):   input is not accepted in the current state - user
4325  *                         must read output with avcodec_receive_frame() (once
4326  *                         all output is read, the packet should be resent, and
4327  *                         the call will not fail with EAGAIN).
4328  *      AVERROR_EOF:       the decoder has been flushed, and no new packets can
4329  *                         be sent to it (also returned if more than 1 flush
4330  *                         packet is sent)
4331  *      AVERROR(EINVAL):   codec not opened, it is an encoder, or requires flush
4332  *      AVERROR(ENOMEM):   failed to add packet to internal queue, or similar
4333  *      other errors: legitimate decoding errors
4334  */
4335 int avcodec_send_packet(AVCodecContext *avctx, const AVPacket *avpkt);
4336
4337 /**
4338  * Return decoded output data from a decoder.
4339  *
4340  * @param avctx codec context
4341  * @param frame This will be set to a reference-counted video or audio
4342  *              frame (depending on the decoder type) allocated by the
4343  *              decoder. Note that the function will always call
4344  *              av_frame_unref(frame) before doing anything else.
4345  *
4346  * @return
4347  *      0:                 success, a frame was returned
4348  *      AVERROR(EAGAIN):   output is not available in this state - user must try
4349  *                         to send new input
4350  *      AVERROR_EOF:       the decoder has been fully flushed, and there will be
4351  *                         no more output frames
4352  *      AVERROR(EINVAL):   codec not opened, or it is an encoder
4353  *      other negative values: legitimate decoding errors
4354  */
4355 int avcodec_receive_frame(AVCodecContext *avctx, AVFrame *frame);
4356
4357 /**
4358  * Supply a raw video or audio frame to the encoder. Use avcodec_receive_packet()
4359  * to retrieve buffered output packets.
4360  *
4361  * @param avctx     codec context
4362  * @param[in] frame AVFrame containing the raw audio or video frame to be encoded.
4363  *                  Ownership of the frame remains with the caller, and the
4364  *                  encoder will not write to the frame. The encoder may create
4365  *                  a reference to the frame data (or copy it if the frame is
4366  *                  not reference-counted).
4367  *                  It can be NULL, in which case it is considered a flush
4368  *                  packet.  This signals the end of the stream. If the encoder
4369  *                  still has packets buffered, it will return them after this
4370  *                  call. Once flushing mode has been entered, additional flush
4371  *                  packets are ignored, and sending frames will return
4372  *                  AVERROR_EOF.
4373  *
4374  *                  For audio:
4375  *                  If AV_CODEC_CAP_VARIABLE_FRAME_SIZE is set, then each frame
4376  *                  can have any number of samples.
4377  *                  If it is not set, frame->nb_samples must be equal to
4378  *                  avctx->frame_size for all frames except the last.
4379  *                  The final frame may be smaller than avctx->frame_size.
4380  * @return 0 on success, otherwise negative error code:
4381  *      AVERROR(EAGAIN):   input is not accepted in the current state - user
4382  *                         must read output with avcodec_receive_packet() (once
4383  *                         all output is read, the packet should be resent, and
4384  *                         the call will not fail with EAGAIN).
4385  *      AVERROR_EOF:       the encoder has been flushed, and no new frames can
4386  *                         be sent to it
4387  *      AVERROR(EINVAL):   codec not opened, refcounted_frames not set, it is a
4388  *                         decoder, or requires flush
4389  *      AVERROR(ENOMEM):   failed to add packet to internal queue, or similar
4390  *      other errors: legitimate decoding errors
4391  */
4392 int avcodec_send_frame(AVCodecContext *avctx, const AVFrame *frame);
4393
4394 /**
4395  * Read encoded data from the encoder.
4396  *
4397  * @param avctx codec context
4398  * @param avpkt This will be set to a reference-counted packet allocated by the
4399  *              encoder. Note that the function will always call
4400  *              av_frame_unref(frame) before doing anything else.
4401  * @return 0 on success, otherwise negative error code:
4402  *      AVERROR(EAGAIN):   output is not available in the current state - user
4403  *                         must try to send input
4404  *      AVERROR_EOF:       the encoder has been fully flushed, and there will be
4405  *                         no more output packets
4406  *      AVERROR(EINVAL):   codec not opened, or it is an encoder
4407  *      other errors: legitimate decoding errors
4408  */
4409 int avcodec_receive_packet(AVCodecContext *avctx, AVPacket *avpkt);
4410
4411
4412 /**
4413  * @defgroup lavc_parsing Frame parsing
4414  * @{
4415  */
4416
4417 enum AVPictureStructure {
4418     AV_PICTURE_STRUCTURE_UNKNOWN,      //< unknown
4419     AV_PICTURE_STRUCTURE_TOP_FIELD,    //< coded as top field
4420     AV_PICTURE_STRUCTURE_BOTTOM_FIELD, //< coded as bottom field
4421     AV_PICTURE_STRUCTURE_FRAME,        //< coded as frame
4422 };
4423
4424 typedef struct AVCodecParserContext {
4425     void *priv_data;
4426     struct AVCodecParser *parser;
4427     int64_t frame_offset; /* offset of the current frame */
4428     int64_t cur_offset; /* current offset
4429                            (incremented by each av_parser_parse()) */
4430     int64_t next_frame_offset; /* offset of the next frame */
4431     /* video info */
4432     int pict_type; /* XXX: Put it back in AVCodecContext. */
4433     /**
4434      * This field is used for proper frame duration computation in lavf.
4435      * It signals, how much longer the frame duration of the current frame
4436      * is compared to normal frame duration.
4437      *
4438      * frame_duration = (1 + repeat_pict) * time_base
4439      *
4440      * It is used by codecs like H.264 to display telecined material.
4441      */
4442     int repeat_pict; /* XXX: Put it back in AVCodecContext. */
4443     int64_t pts;     /* pts of the current frame */
4444     int64_t dts;     /* dts of the current frame */
4445
4446     /* private data */
4447     int64_t last_pts;
4448     int64_t last_dts;
4449     int fetch_timestamp;
4450
4451 #define AV_PARSER_PTS_NB 4
4452     int cur_frame_start_index;
4453     int64_t cur_frame_offset[AV_PARSER_PTS_NB];
4454     int64_t cur_frame_pts[AV_PARSER_PTS_NB];
4455     int64_t cur_frame_dts[AV_PARSER_PTS_NB];
4456
4457     int flags;
4458 #define PARSER_FLAG_COMPLETE_FRAMES           0x0001
4459 #define PARSER_FLAG_ONCE                      0x0002
4460 /// Set if the parser has a valid file offset
4461 #define PARSER_FLAG_FETCHED_OFFSET            0x0004
4462
4463     int64_t offset;      ///< byte offset from starting packet start
4464     int64_t cur_frame_end[AV_PARSER_PTS_NB];
4465
4466     /**
4467      * Set by parser to 1 for key frames and 0 for non-key frames.
4468      * It is initialized to -1, so if the parser doesn't set this flag,
4469      * old-style fallback using AV_PICTURE_TYPE_I picture type as key frames
4470      * will be used.
4471      */
4472     int key_frame;
4473
4474 #if FF_API_CONVERGENCE_DURATION
4475     /**
4476      * @deprecated unused
4477      */
4478     attribute_deprecated
4479     int64_t convergence_duration;
4480 #endif
4481
4482     // Timestamp generation support:
4483     /**
4484      * Synchronization point for start of timestamp generation.
4485      *
4486      * Set to >0 for sync point, 0 for no sync point and <0 for undefined
4487      * (default).
4488      *
4489      * For example, this corresponds to presence of H.264 buffering period
4490      * SEI message.
4491      */
4492     int dts_sync_point;
4493
4494     /**
4495      * Offset of the current timestamp against last timestamp sync point in
4496      * units of AVCodecContext.time_base.
4497      *
4498      * Set to INT_MIN when dts_sync_point unused. Otherwise, it must
4499      * contain a valid timestamp offset.
4500      *
4501      * Note that the timestamp of sync point has usually a nonzero
4502      * dts_ref_dts_delta, which refers to the previous sync point. Offset of
4503      * the next frame after timestamp sync point will be usually 1.
4504      *
4505      * For example, this corresponds to H.264 cpb_removal_delay.
4506      */
4507     int dts_ref_dts_delta;
4508
4509     /**
4510      * Presentation delay of current frame in units of AVCodecContext.time_base.
4511      *
4512      * Set to INT_MIN when dts_sync_point unused. Otherwise, it must
4513      * contain valid non-negative timestamp delta (presentation time of a frame
4514      * must not lie in the past).
4515      *
4516      * This delay represents the difference between decoding and presentation
4517      * time of the frame.
4518      *
4519      * For example, this corresponds to H.264 dpb_output_delay.
4520      */
4521     int pts_dts_delta;
4522
4523     /**
4524      * Position of the packet in file.
4525      *
4526      * Analogous to cur_frame_pts/dts
4527      */
4528     int64_t cur_frame_pos[AV_PARSER_PTS_NB];
4529
4530     /**
4531      * Byte position of currently parsed frame in stream.
4532      */
4533     int64_t pos;
4534
4535     /**
4536      * Previous frame byte position.
4537      */
4538     int64_t last_pos;
4539
4540     /**
4541      * Duration of the current frame.
4542      * For audio, this is in units of 1 / AVCodecContext.sample_rate.
4543      * For all other types, this is in units of AVCodecContext.time_base.
4544      */
4545     int duration;
4546
4547     enum AVFieldOrder field_order;
4548
4549     /**
4550      * Indicate whether a picture is coded as a frame, top field or bottom field.
4551      *
4552      * For example, H.264 field_pic_flag equal to 0 corresponds to
4553      * AV_PICTURE_STRUCTURE_FRAME. An H.264 picture with field_pic_flag
4554      * equal to 1 and bottom_field_flag equal to 0 corresponds to
4555      * AV_PICTURE_STRUCTURE_TOP_FIELD.
4556      */
4557     enum AVPictureStructure picture_structure;
4558
4559     /**
4560      * Picture number incremented in presentation or output order.
4561      * This field may be reinitialized at the first picture of a new sequence.
4562      *
4563      * For example, this corresponds to H.264 PicOrderCnt.
4564      */
4565     int output_picture_number;
4566
4567     /**
4568      * Dimensions of the decoded video intended for presentation.
4569      */
4570     int width;
4571     int height;
4572
4573     /**
4574      * Dimensions of the coded video.
4575      */
4576     int coded_width;
4577     int coded_height;
4578
4579     /**
4580      * The format of the coded data, corresponds to enum AVPixelFormat for video
4581      * and for enum AVSampleFormat for audio.
4582      *
4583      * Note that a decoder can have considerable freedom in how exactly it
4584      * decodes the data, so the format reported here might be different from the
4585      * one returned by a decoder.
4586      */
4587     int format;
4588 } AVCodecParserContext;
4589
4590 typedef struct AVCodecParser {
4591     int codec_ids[5]; /* several codec IDs are permitted */
4592     int priv_data_size;
4593     int (*parser_init)(AVCodecParserContext *s);
4594     /* This callback never returns an error, a negative value means that
4595      * the frame start was in a previous packet. */
4596     int (*parser_parse)(AVCodecParserContext *s,
4597                         AVCodecContext *avctx,
4598                         const uint8_t **poutbuf, int *poutbuf_size,
4599                         const uint8_t *buf, int buf_size);
4600     void (*parser_close)(AVCodecParserContext *s);
4601     int (*split)(AVCodecContext *avctx, const uint8_t *buf, int buf_size);
4602     struct AVCodecParser *next;
4603 } AVCodecParser;
4604
4605 AVCodecParser *av_parser_next(const AVCodecParser *c);
4606
4607 void av_register_codec_parser(AVCodecParser *parser);
4608 AVCodecParserContext *av_parser_init(int codec_id);
4609
4610 /**
4611  * Parse a packet.
4612  *
4613  * @param s             parser context.
4614  * @param avctx         codec context.
4615  * @param poutbuf       set to pointer to parsed buffer or NULL if not yet finished.
4616  * @param poutbuf_size  set to size of parsed buffer or zero if not yet finished.
4617  * @param buf           input buffer.
4618  * @param buf_size      input length, to signal EOF, this should be 0 (so that the last frame can be output).
4619  * @param pts           input presentation timestamp.
4620  * @param dts           input decoding timestamp.
4621  * @param pos           input byte position in stream.
4622  * @return the number of bytes of the input bitstream used.
4623  *
4624  * Example:
4625  * @code
4626  *   while(in_len){
4627  *       len = av_parser_parse2(myparser, AVCodecContext, &data, &size,
4628  *                                        in_data, in_len,
4629  *                                        pts, dts, pos);
4630  *       in_data += len;
4631  *       in_len  -= len;
4632  *
4633  *       if(size)
4634  *          decode_frame(data, size);
4635  *   }
4636  * @endcode
4637  */
4638 int av_parser_parse2(AVCodecParserContext *s,
4639                      AVCodecContext *avctx,
4640                      uint8_t **poutbuf, int *poutbuf_size,
4641                      const uint8_t *buf, int buf_size,
4642                      int64_t pts, int64_t dts,
4643                      int64_t pos);
4644
4645 /**
4646  * @return 0 if the output buffer is a subset of the input, 1 if it is allocated and must be freed
4647  * @deprecated use AVBitstreamFilter
4648  */
4649 int av_parser_change(AVCodecParserContext *s,
4650                      AVCodecContext *avctx,
4651                      uint8_t **poutbuf, int *poutbuf_size,
4652                      const uint8_t *buf, int buf_size, int keyframe);
4653 void av_parser_close(AVCodecParserContext *s);
4654
4655 /**
4656  * @}
4657  * @}
4658  */
4659
4660 /**
4661  * @addtogroup lavc_encoding
4662  * @{
4663  */
4664
4665 /**
4666  * Find a registered encoder with a matching codec ID.
4667  *
4668  * @param id AVCodecID of the requested encoder
4669  * @return An encoder if one was found, NULL otherwise.
4670  */
4671 AVCodec *avcodec_find_encoder(enum AVCodecID id);
4672
4673 /**
4674  * Find a registered encoder with the specified name.
4675  *
4676  * @param name name of the requested encoder
4677  * @return An encoder if one was found, NULL otherwise.
4678  */
4679 AVCodec *avcodec_find_encoder_by_name(const char *name);
4680
4681 /**
4682  * Encode a frame of audio.
4683  *
4684  * Takes input samples from frame and writes the next output packet, if
4685  * available, to avpkt. The output packet does not necessarily contain data for
4686  * the most recent frame, as encoders can delay, split, and combine input frames
4687  * internally as needed.
4688  *
4689  * @param avctx     codec context
4690  * @param avpkt     output AVPacket.
4691  *                  The user can supply an output buffer by setting
4692  *                  avpkt->data and avpkt->size prior to calling the
4693  *                  function, but if the size of the user-provided data is not
4694  *                  large enough, encoding will fail. All other AVPacket fields
4695  *                  will be reset by the encoder using av_init_packet(). If
4696  *                  avpkt->data is NULL, the encoder will allocate it.
4697  *                  The encoder will set avpkt->size to the size of the
4698  *                  output packet.
4699  *
4700  *                  If this function fails or produces no output, avpkt will be
4701  *                  freed using av_packet_unref().
4702  * @param[in] frame AVFrame containing the raw audio data to be encoded.
4703  *                  May be NULL when flushing an encoder that has the
4704  *                  AV_CODEC_CAP_DELAY capability set.
4705  *                  If AV_CODEC_CAP_VARIABLE_FRAME_SIZE is set, then each frame
4706  *                  can have any number of samples.
4707  *                  If it is not set, frame->nb_samples must be equal to
4708  *                  avctx->frame_size for all frames except the last.
4709  *                  The final frame may be smaller than avctx->frame_size.
4710  * @param[out] got_packet_ptr This field is set to 1 by libavcodec if the
4711  *                            output packet is non-empty, and to 0 if it is
4712  *                            empty. If the function returns an error, the
4713  *                            packet can be assumed to be invalid, and the
4714  *                            value of got_packet_ptr is undefined and should
4715  *                            not be used.
4716  * @return          0 on success, negative error code on failure
4717  *
4718  * @deprecated use avcodec_send_frame()/avcodec_receive_packet() instead
4719  */
4720 attribute_deprecated
4721 int avcodec_encode_audio2(AVCodecContext *avctx, AVPacket *avpkt,
4722                           const AVFrame *frame, int *got_packet_ptr);
4723
4724 /**
4725  * Encode a frame of video.
4726  *
4727  * Takes input raw video data from frame and writes the next output packet, if
4728  * available, to avpkt. The output packet does not necessarily contain data for
4729  * the most recent frame, as encoders can delay and reorder input frames
4730  * internally as needed.
4731  *
4732  * @param avctx     codec context
4733  * @param avpkt     output AVPacket.
4734  *                  The user can supply an output buffer by setting
4735  *                  avpkt->data and avpkt->size prior to calling the
4736  *                  function, but if the size of the user-provided data is not
4737  *                  large enough, encoding will fail. All other AVPacket fields
4738  *                  will be reset by the encoder using av_init_packet(). If
4739  *                  avpkt->data is NULL, the encoder will allocate it.
4740  *                  The encoder will set avpkt->size to the size of the
4741  *                  output packet. The returned data (if any) belongs to the
4742  *                  caller, he is responsible for freeing it.
4743  *
4744  *                  If this function fails or produces no output, avpkt will be
4745  *                  freed using av_packet_unref().
4746  * @param[in] frame AVFrame containing the raw video data to be encoded.
4747  *                  May be NULL when flushing an encoder that has the
4748  *                  AV_CODEC_CAP_DELAY capability set.
4749  * @param[out] got_packet_ptr This field is set to 1 by libavcodec if the
4750  *                            output packet is non-empty, and to 0 if it is
4751  *                            empty. If the function returns an error, the
4752  *                            packet can be assumed to be invalid, and the
4753  *                            value of got_packet_ptr is undefined and should
4754  *                            not be used.
4755  * @return          0 on success, negative error code on failure
4756  *
4757  * @deprecated use avcodec_send_frame()/avcodec_receive_packet() instead
4758  */
4759 attribute_deprecated
4760 int avcodec_encode_video2(AVCodecContext *avctx, AVPacket *avpkt,
4761                           const AVFrame *frame, int *got_packet_ptr);
4762
4763 int avcodec_encode_subtitle(AVCodecContext *avctx, uint8_t *buf, int buf_size,
4764                             const AVSubtitle *sub);
4765
4766
4767 /**
4768  * @}
4769  */
4770
4771 #if FF_API_AVPICTURE
4772 /**
4773  * @addtogroup lavc_picture
4774  * @{
4775  */
4776
4777 /**
4778  * @deprecated unused
4779  */
4780 attribute_deprecated
4781 int avpicture_alloc(AVPicture *picture, enum AVPixelFormat pix_fmt, int width, int height);
4782
4783 /**
4784  * @deprecated unused
4785  */
4786 attribute_deprecated
4787 void avpicture_free(AVPicture *picture);
4788
4789 /**
4790  * @deprecated use av_image_fill_arrays() instead.
4791  */
4792 attribute_deprecated
4793 int avpicture_fill(AVPicture *picture, uint8_t *ptr,
4794                    enum AVPixelFormat pix_fmt, int width, int height);
4795
4796 /**
4797  * @deprecated use av_image_copy_to_buffer() instead.
4798  */
4799 attribute_deprecated
4800 int avpicture_layout(const AVPicture* src, enum AVPixelFormat pix_fmt,
4801                      int width, int height,
4802                      unsigned char *dest, int dest_size);
4803
4804 /**
4805  * @deprecated use av_image_get_buffer_size() instead.
4806  */
4807 attribute_deprecated
4808 int avpicture_get_size(enum AVPixelFormat pix_fmt, int width, int height);
4809
4810 /**
4811  * @deprecated av_image_copy() instead.
4812  */
4813 attribute_deprecated
4814 void av_picture_copy(AVPicture *dst, const AVPicture *src,
4815                      enum AVPixelFormat pix_fmt, int width, int height);
4816
4817 /**
4818  * @deprecated unused
4819  */
4820 attribute_deprecated
4821 int av_picture_crop(AVPicture *dst, const AVPicture *src,
4822                     enum AVPixelFormat pix_fmt, int top_band, int left_band);
4823
4824 /**
4825  * @deprecated unused
4826  */
4827 attribute_deprecated
4828 int av_picture_pad(AVPicture *dst, const AVPicture *src, int height, int width, enum AVPixelFormat pix_fmt,
4829             int padtop, int padbottom, int padleft, int padright, int *color);
4830
4831 /**
4832  * @}
4833  */
4834 #endif
4835
4836 /**
4837  * @defgroup lavc_misc Utility functions
4838  * @ingroup libavc
4839  *
4840  * Miscellaneous utility functions related to both encoding and decoding
4841  * (or neither).
4842  * @{
4843  */
4844
4845 /**
4846  * @defgroup lavc_misc_pixfmt Pixel formats
4847  *
4848  * Functions for working with pixel formats.
4849  * @{
4850  */
4851
4852 /**
4853  * Return a value representing the fourCC code associated to the
4854  * pixel format pix_fmt, or 0 if no associated fourCC code can be
4855  * found.
4856  */
4857 unsigned int avcodec_pix_fmt_to_codec_tag(enum AVPixelFormat pix_fmt);
4858
4859 #define FF_LOSS_RESOLUTION  0x0001 /**< loss due to resolution change */
4860 #define FF_LOSS_DEPTH       0x0002 /**< loss due to color depth change */
4861 #define FF_LOSS_COLORSPACE  0x0004 /**< loss due to color space conversion */
4862 #define FF_LOSS_ALPHA       0x0008 /**< loss of alpha bits */
4863 #define FF_LOSS_COLORQUANT  0x0010 /**< loss due to color quantization */
4864 #define FF_LOSS_CHROMA      0x0020 /**< loss of chroma (e.g. RGB to gray conversion) */
4865
4866 /**
4867  * Compute what kind of losses will occur when converting from one specific
4868  * pixel format to another.
4869  * When converting from one pixel format to another, information loss may occur.
4870  * For example, when converting from RGB24 to GRAY, the color information will
4871  * be lost. Similarly, other losses occur when converting from some formats to
4872  * other formats. These losses can involve loss of chroma, but also loss of
4873  * resolution, loss of color depth, loss due to the color space conversion, loss
4874  * of the alpha bits or loss due to color quantization.
4875  * avcodec_get_fix_fmt_loss() informs you about the various types of losses
4876  * which will occur when converting from one pixel format to another.
4877  *
4878  * @param[in] dst_pix_fmt destination pixel format
4879  * @param[in] src_pix_fmt source pixel format
4880  * @param[in] has_alpha Whether the source pixel format alpha channel is used.
4881  * @return Combination of flags informing you what kind of losses will occur.
4882  */
4883 int avcodec_get_pix_fmt_loss(enum AVPixelFormat dst_pix_fmt, enum AVPixelFormat src_pix_fmt,
4884                              int has_alpha);
4885
4886 /**
4887  * Find the best pixel format to convert to given a certain source pixel
4888  * format.  When converting from one pixel format to another, information loss
4889  * may occur.  For example, when converting from RGB24 to GRAY, the color
4890  * information will be lost. Similarly, other losses occur when converting from
4891  * some formats to other formats. avcodec_find_best_pix_fmt2() searches which of
4892  * the given pixel formats should be used to suffer the least amount of loss.
4893  * The pixel formats from which it chooses one, are determined by the
4894  * pix_fmt_list parameter.
4895  *
4896  *
4897  * @param[in] pix_fmt_list AV_PIX_FMT_NONE terminated array of pixel formats to choose from
4898  * @param[in] src_pix_fmt source pixel format
4899  * @param[in] has_alpha Whether the source pixel format alpha channel is used.
4900  * @param[out] loss_ptr Combination of flags informing you what kind of losses will occur.
4901  * @return The best pixel format to convert to or -1 if none was found.
4902  */
4903 enum AVPixelFormat avcodec_find_best_pix_fmt2(enum AVPixelFormat *pix_fmt_list,
4904                                               enum AVPixelFormat src_pix_fmt,
4905                                               int has_alpha, int *loss_ptr);
4906
4907 enum AVPixelFormat avcodec_default_get_format(struct AVCodecContext *s, const enum AVPixelFormat * fmt);
4908
4909 /**
4910  * @}
4911  */
4912
4913 /**
4914  * Put a string representing the codec tag codec_tag in buf.
4915  *
4916  * @param buf       buffer to place codec tag in
4917  * @param buf_size size in bytes of buf
4918  * @param codec_tag codec tag to assign
4919  * @return the length of the string that would have been generated if
4920  * enough space had been available, excluding the trailing null
4921  */
4922 size_t av_get_codec_tag_string(char *buf, size_t buf_size, unsigned int codec_tag);
4923
4924 void avcodec_string(char *buf, int buf_size, AVCodecContext *enc, int encode);
4925
4926 /**
4927  * Return a name for the specified profile, if available.
4928  *
4929  * @param codec the codec that is searched for the given profile
4930  * @param profile the profile value for which a name is requested
4931  * @return A name for the profile if found, NULL otherwise.
4932  */
4933 const char *av_get_profile_name(const AVCodec *codec, int profile);
4934
4935 /**
4936  * Return a name for the specified profile, if available.
4937  *
4938  * @param codec_id the ID of the codec to which the requested profile belongs
4939  * @param profile the profile value for which a name is requested
4940  * @return A name for the profile if found, NULL otherwise.
4941  *
4942  * @note unlike av_get_profile_name(), which searches a list of profiles
4943  *       supported by a specific decoder or encoder implementation, this
4944  *       function searches the list of profiles from the AVCodecDescriptor
4945  */
4946 const char *avcodec_profile_name(enum AVCodecID codec_id, int profile);
4947
4948 int avcodec_default_execute(AVCodecContext *c, int (*func)(AVCodecContext *c2, void *arg2),void *arg, int *ret, int count, int size);
4949 int avcodec_default_execute2(AVCodecContext *c, int (*func)(AVCodecContext *c2, void *arg2, int, int),void *arg, int *ret, int count);
4950 //FIXME func typedef
4951
4952 /**
4953  * Fill audio frame data and linesize.
4954  * AVFrame extended_data channel pointers are allocated if necessary for
4955  * planar audio.
4956  *
4957  * @param frame       the AVFrame
4958  *                    frame->nb_samples must be set prior to calling the
4959  *                    function. This function fills in frame->data,
4960  *                    frame->extended_data, frame->linesize[0].
4961  * @param nb_channels channel count
4962  * @param sample_fmt  sample format
4963  * @param buf         buffer to use for frame data
4964  * @param buf_size    size of buffer
4965  * @param align       plane size sample alignment (0 = default)
4966  * @return            0 on success, negative error code on failure
4967  */
4968 int avcodec_fill_audio_frame(AVFrame *frame, int nb_channels,
4969                              enum AVSampleFormat sample_fmt, const uint8_t *buf,
4970                              int buf_size, int align);
4971
4972 /**
4973  * Reset the internal decoder state / flush internal buffers. Should be called
4974  * e.g. when seeking or when switching to a different stream.
4975  *
4976  * @note when refcounted frames are not used (i.e. avctx->refcounted_frames is 0),
4977  * this invalidates the frames previously returned from the decoder. When
4978  * refcounted frames are used, the decoder just releases any references it might
4979  * keep internally, but the caller's reference remains valid.
4980  */
4981 void avcodec_flush_buffers(AVCodecContext *avctx);
4982
4983 /**
4984  * Return codec bits per sample.
4985  *
4986  * @param[in] codec_id the codec
4987  * @return Number of bits per sample or zero if unknown for the given codec.
4988  */
4989 int av_get_bits_per_sample(enum AVCodecID codec_id);
4990
4991 /**
4992  * Return codec bits per sample.
4993  * Only return non-zero if the bits per sample is exactly correct, not an
4994  * approximation.
4995  *
4996  * @param[in] codec_id the codec
4997  * @return Number of bits per sample or zero if unknown for the given codec.
4998  */
4999 int av_get_exact_bits_per_sample(enum AVCodecID codec_id);
5000
5001 /**
5002  * Return audio frame duration.
5003  *
5004  * @param avctx        codec context
5005  * @param frame_bytes  size of the frame, or 0 if unknown
5006  * @return             frame duration, in samples, if known. 0 if not able to
5007  *                     determine.
5008  */
5009 int av_get_audio_frame_duration(AVCodecContext *avctx, int frame_bytes);
5010
5011 /**
5012  * This function is the same as av_get_audio_frame_duration(), except it works
5013  * with AVCodecParameters instead of an AVCodecContext.
5014  */
5015 int av_get_audio_frame_duration2(AVCodecParameters *par, int frame_bytes);
5016
5017 #if FF_API_OLD_BSF
5018 typedef struct AVBitStreamFilterContext {
5019     void *priv_data;
5020     struct AVBitStreamFilter *filter;
5021     AVCodecParserContext *parser;
5022     struct AVBitStreamFilterContext *next;
5023 } AVBitStreamFilterContext;
5024 #endif
5025
5026 typedef struct AVBSFInternal AVBSFInternal;
5027
5028 /**
5029  * The bitstream filter state.
5030  *
5031  * This struct must be allocated with av_bsf_alloc() and freed with
5032  * av_bsf_free().
5033  *
5034  * The fields in the struct will only be changed (by the caller or by the
5035  * filter) as described in their documentation, and are to be considered
5036  * immutable otherwise.
5037  */
5038 typedef struct AVBSFContext {
5039     /**
5040      * A class for logging and AVOptions
5041      */
5042     const AVClass *av_class;
5043
5044     /**
5045      * The bitstream filter this context is an instance of.
5046      */
5047     const struct AVBitStreamFilter *filter;
5048
5049     /**
5050      * Opaque libavcodec internal data. Must not be touched by the caller in any
5051      * way.
5052      */
5053     AVBSFInternal *internal;
5054
5055     /**
5056      * Opaque filter-specific private data. If filter->priv_class is non-NULL,
5057      * this is an AVOptions-enabled struct.
5058      */
5059     void *priv_data;
5060
5061     /**
5062      * Parameters of the input stream. This field is allocated in
5063      * av_bsf_alloc(), it needs to be filled by the caller before
5064      * av_bsf_init().
5065      */
5066     AVCodecParameters *par_in;
5067
5068     /**
5069      * Parameters of the output stream. This field is allocated in
5070      * av_bsf_alloc(), it is set by the filter in av_bsf_init().
5071      */
5072     AVCodecParameters *par_out;
5073
5074     /**
5075      * The timebase used for the timestamps of the input packets. Set by the
5076      * caller before av_bsf_init().
5077      */
5078     AVRational time_base_in;
5079
5080     /**
5081      * The timebase used for the timestamps of the output packets. Set by the
5082      * filter in av_bsf_init().
5083      */
5084     AVRational time_base_out;
5085 } AVBSFContext;
5086
5087 typedef struct AVBitStreamFilter {
5088     const char *name;
5089
5090     /**
5091      * A list of codec ids supported by the filter, terminated by
5092      * AV_CODEC_ID_NONE.
5093      * May be NULL, in that case the bitstream filter works with any codec id.
5094      */
5095     const enum AVCodecID *codec_ids;
5096
5097     /**
5098      * A class for the private data, used to declare bitstream filter private
5099      * AVOptions. This field is NULL for bitstream filters that do not declare
5100      * any options.
5101      *
5102      * If this field is non-NULL, the first member of the filter private data
5103      * must be a pointer to AVClass, which will be set by libavcodec generic
5104      * code to this class.
5105      */
5106     const AVClass *priv_class;
5107
5108     /*****************************************************************
5109      * No fields below this line are part of the public API. They
5110      * may not be used outside of libavcodec and can be changed and
5111      * removed at will.
5112      * New public fields should be added right above.
5113      *****************************************************************
5114      */
5115
5116     int priv_data_size;
5117     int (*init)(AVBSFContext *ctx);
5118     int (*filter)(AVBSFContext *ctx, AVPacket *pkt);
5119     void (*close)(AVBSFContext *ctx);
5120 } AVBitStreamFilter;
5121
5122 #if FF_API_OLD_BSF
5123 /**
5124  * @deprecated the old bitstream filtering API (using AVBitStreamFilterContext)
5125  * is deprecated. Use the new bitstream filtering API (using AVBSFContext).
5126  */
5127 attribute_deprecated
5128 void av_register_bitstream_filter(AVBitStreamFilter *bsf);
5129 attribute_deprecated
5130 AVBitStreamFilterContext *av_bitstream_filter_init(const char *name);
5131 attribute_deprecated
5132 int av_bitstream_filter_filter(AVBitStreamFilterContext *bsfc,
5133                                AVCodecContext *avctx, const char *args,
5134                                uint8_t **poutbuf, int *poutbuf_size,
5135                                const uint8_t *buf, int buf_size, int keyframe);
5136 attribute_deprecated
5137 void av_bitstream_filter_close(AVBitStreamFilterContext *bsf);
5138 attribute_deprecated
5139 AVBitStreamFilter *av_bitstream_filter_next(const AVBitStreamFilter *f);
5140 #endif
5141
5142 /**
5143  * @return a bitstream filter with the specified name or NULL if no such
5144  *         bitstream filter exists.
5145  */
5146 const AVBitStreamFilter *av_bsf_get_by_name(const char *name);
5147
5148 /**
5149  * Iterate over all registered bitstream filters.
5150  *
5151  * @param opaque a pointer where libavcodec will store the iteration state. Must
5152  *               point to NULL to start the iteration.
5153  *
5154  * @return the next registered bitstream filter or NULL when the iteration is
5155  *         finished
5156  */
5157 const AVBitStreamFilter *av_bsf_next(void **opaque);
5158
5159 /**
5160  * Allocate a context for a given bitstream filter. The caller must fill in the
5161  * context parameters as described in the documentation and then call
5162  * av_bsf_init() before sending any data to the filter.
5163  *
5164  * @param filter the filter for which to allocate an instance.
5165  * @param ctx a pointer into which the pointer to the newly-allocated context
5166  *            will be written. It must be freed with av_bsf_free() after the
5167  *            filtering is done.
5168  *
5169  * @return 0 on success, a negative AVERROR code on failure
5170  */
5171 int av_bsf_alloc(const AVBitStreamFilter *filter, AVBSFContext **ctx);
5172
5173 /**
5174  * Prepare the filter for use, after all the parameters and options have been
5175  * set.
5176  */
5177 int av_bsf_init(AVBSFContext *ctx);
5178
5179 /**
5180  * Submit a packet for filtering.
5181  *
5182  * After sending each packet, the filter must be completely drained by calling
5183  * av_bsf_receive_packet() repeatedly until it returns AVERROR(EAGAIN) or
5184  * AVERROR_EOF.
5185  *
5186  * @param pkt the packet to filter. The bitstream filter will take ownership of
5187  * the packet and reset the contents of pkt. pkt is not touched if an error occurs.
5188  * This parameter may be NULL, which signals the end of the stream (i.e. no more
5189  * packets will be sent). That will cause the filter to output any packets it
5190  * may have buffered internally.
5191  *
5192  * @return 0 on success, a negative AVERROR on error.
5193  */
5194 int av_bsf_send_packet(AVBSFContext *ctx, AVPacket *pkt);
5195
5196 /**
5197  * Retrieve a filtered packet.
5198  *
5199  * @param[out] pkt this struct will be filled with the contents of the filtered
5200  *                 packet. It is owned by the caller and must be freed using
5201  *                 av_packet_unref() when it is no longer needed.
5202  *                 This parameter should be "clean" (i.e. freshly allocated
5203  *                 with av_packet_alloc() or unreffed with av_packet_unref())
5204  *                 when this function is called. If this function returns
5205  *                 successfully, the contents of pkt will be completely
5206  *                 overwritten by the returned data. On failure, pkt is not
5207  *                 touched.
5208  *
5209  * @return 0 on success. AVERROR(EAGAIN) if more packets need to be sent to the
5210  * filter (using av_bsf_send_packet()) to get more output. AVERROR_EOF if there
5211  * will be no further output from the filter. Another negative AVERROR value if
5212  * an error occurs.
5213  *
5214  * @note one input packet may result in several output packets, so after sending
5215  * a packet with av_bsf_send_packet(), this function needs to be called
5216  * repeatedly until it stops returning 0. It is also possible for a filter to
5217  * output fewer packets than were sent to it, so this function may return
5218  * AVERROR(EAGAIN) immediately after a successful av_bsf_send_packet() call.
5219  */
5220 int av_bsf_receive_packet(AVBSFContext *ctx, AVPacket *pkt);
5221
5222 /**
5223  * Free a bitstream filter context and everything associated with it; write NULL
5224  * into the supplied pointer.
5225  */
5226 void av_bsf_free(AVBSFContext **ctx);
5227
5228 /**
5229  * Get the AVClass for AVBSFContext. It can be used in combination with
5230  * AV_OPT_SEARCH_FAKE_OBJ for examining options.
5231  *
5232  * @see av_opt_find().
5233  */
5234 const AVClass *av_bsf_get_class(void);
5235
5236 /* memory */
5237
5238 /**
5239  * Allocate a buffer with padding, reusing the given one if large enough.
5240  *
5241  * Same behaviour av_fast_malloc but the buffer has additional
5242  * AV_INPUT_PADDING_SIZE at the end which will always memset to 0.
5243  */
5244 void av_fast_padded_malloc(void *ptr, unsigned int *size, size_t min_size);
5245
5246 /**
5247  * Encode extradata length to a buffer. Used by xiph codecs.
5248  *
5249  * @param s buffer to write to; must be at least (v/255+1) bytes long
5250  * @param v size of extradata in bytes
5251  * @return number of bytes written to the buffer.
5252  */
5253 unsigned int av_xiphlacing(unsigned char *s, unsigned int v);
5254
5255 /**
5256  * Register the hardware accelerator hwaccel.
5257  */
5258 void av_register_hwaccel(AVHWAccel *hwaccel);
5259
5260 /**
5261  * If hwaccel is NULL, returns the first registered hardware accelerator,
5262  * if hwaccel is non-NULL, returns the next registered hardware accelerator
5263  * after hwaccel, or NULL if hwaccel is the last one.
5264  */
5265 AVHWAccel *av_hwaccel_next(const AVHWAccel *hwaccel);
5266
5267
5268 /**
5269  * Lock operation used by lockmgr
5270  */
5271 enum AVLockOp {
5272   AV_LOCK_CREATE,  ///< Create a mutex
5273   AV_LOCK_OBTAIN,  ///< Lock the mutex
5274   AV_LOCK_RELEASE, ///< Unlock the mutex
5275   AV_LOCK_DESTROY, ///< Free mutex resources
5276 };
5277
5278 /**
5279  * Register a user provided lock manager supporting the operations
5280  * specified by AVLockOp. The "mutex" argument to the function points
5281  * to a (void *) where the lockmgr should store/get a pointer to a user
5282  * allocated mutex. It is NULL upon AV_LOCK_CREATE and equal to the
5283  * value left by the last call for all other ops. If the lock manager is
5284  * unable to perform the op then it should leave the mutex in the same
5285  * state as when it was called and return a non-zero value. However,
5286  * when called with AV_LOCK_DESTROY the mutex will always be assumed to
5287  * have been successfully destroyed. If av_lockmgr_register succeeds
5288  * it will return a non-negative value, if it fails it will return a
5289  * negative value and destroy all mutex and unregister all callbacks.
5290  * av_lockmgr_register is not thread-safe, it must be called from a
5291  * single thread before any calls which make use of locking are used.
5292  *
5293  * @param cb User defined callback. av_lockmgr_register invokes calls
5294  *           to this callback and the previously registered callback.
5295  *           The callback will be used to create more than one mutex
5296  *           each of which must be backed by its own underlying locking
5297  *           mechanism (i.e. do not use a single static object to
5298  *           implement your lock manager). If cb is set to NULL the
5299  *           lockmgr will be unregistered.
5300  */
5301 int av_lockmgr_register(int (*cb)(void **mutex, enum AVLockOp op));
5302
5303 /**
5304  * Get the type of the given codec.
5305  */
5306 enum AVMediaType avcodec_get_type(enum AVCodecID codec_id);
5307
5308 /**
5309  * @return a positive value if s is open (i.e. avcodec_open2() was called on it
5310  * with no corresponding avcodec_close()), 0 otherwise.
5311  */
5312 int avcodec_is_open(AVCodecContext *s);
5313
5314 /**
5315  * @return a non-zero number if codec is an encoder, zero otherwise
5316  */
5317 int av_codec_is_encoder(const AVCodec *codec);
5318
5319 /**
5320  * @return a non-zero number if codec is a decoder, zero otherwise
5321  */
5322 int av_codec_is_decoder(const AVCodec *codec);
5323
5324 /**
5325  * @return descriptor for given codec ID or NULL if no descriptor exists.
5326  */
5327 const AVCodecDescriptor *avcodec_descriptor_get(enum AVCodecID id);
5328
5329 /**
5330  * Iterate over all codec descriptors known to libavcodec.
5331  *
5332  * @param prev previous descriptor. NULL to get the first descriptor.
5333  *
5334  * @return next descriptor or NULL after the last descriptor
5335  */
5336 const AVCodecDescriptor *avcodec_descriptor_next(const AVCodecDescriptor *prev);
5337
5338 /**
5339  * @return codec descriptor with the given name or NULL if no such descriptor
5340  *         exists.
5341  */
5342 const AVCodecDescriptor *avcodec_descriptor_get_by_name(const char *name);
5343
5344 /**
5345  * Allocate a CPB properties structure and initialize its fields to default
5346  * values.
5347  *
5348  * @param size if non-NULL, the size of the allocated struct will be written
5349  *             here. This is useful for embedding it in side data.
5350  *
5351  * @return the newly allocated struct or NULL on failure
5352  */
5353 AVCPBProperties *av_cpb_properties_alloc(size_t *size);
5354
5355 /**
5356  * @}
5357  */
5358
5359 #endif /* AVCODEC_AVCODEC_H */