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