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