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