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