]> git.sesse.net Git - ffmpeg/blob - libavcodec/avcodec.h
lavc: shedule old encoding/decoding API for removal
[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/hwcontext.h"
40 #include "libavutil/log.h"
41 #include "libavutil/pixfmt.h"
42 #include "libavutil/rational.h"
43
44 #include "bsf.h"
45 #include "codec.h"
46 #include "codec_desc.h"
47 #include "codec_par.h"
48 #include "codec_id.h"
49 #include "packet.h"
50 #include "version.h"
51
52 /**
53  * @defgroup libavc libavcodec
54  * Encoding/Decoding Library
55  *
56  * @{
57  *
58  * @defgroup lavc_decoding Decoding
59  * @{
60  * @}
61  *
62  * @defgroup lavc_encoding Encoding
63  * @{
64  * @}
65  *
66  * @defgroup lavc_codec Codecs
67  * @{
68  * @defgroup lavc_codec_native Native Codecs
69  * @{
70  * @}
71  * @defgroup lavc_codec_wrappers External library wrappers
72  * @{
73  * @}
74  * @defgroup lavc_codec_hwaccel Hardware Accelerators bridge
75  * @{
76  * @}
77  * @}
78  * @defgroup lavc_internal Internal
79  * @{
80  * @}
81  * @}
82  */
83
84 /**
85  * @ingroup libavc
86  * @defgroup lavc_encdec send/receive encoding and decoding API overview
87  * @{
88  *
89  * The avcodec_send_packet()/avcodec_receive_frame()/avcodec_send_frame()/
90  * avcodec_receive_packet() functions provide an encode/decode API, which
91  * decouples input and output.
92  *
93  * The API is very similar for encoding/decoding and audio/video, and works as
94  * follows:
95  * - Set up and open the AVCodecContext as usual.
96  * - Send valid input:
97  *   - For decoding, call avcodec_send_packet() to give the decoder raw
98  *     compressed data in an AVPacket.
99  *   - For encoding, call avcodec_send_frame() to give the encoder an AVFrame
100  *     containing uncompressed audio or video.
101  *
102  *   In both cases, it is recommended that AVPackets and AVFrames are
103  *   refcounted, or libavcodec might have to copy the input data. (libavformat
104  *   always returns refcounted AVPackets, and av_frame_get_buffer() allocates
105  *   refcounted AVFrames.)
106  * - Receive output in a loop. Periodically call one of the avcodec_receive_*()
107  *   functions and process their output:
108  *   - For decoding, call avcodec_receive_frame(). On success, it will return
109  *     an AVFrame containing uncompressed audio or video data.
110  *   - For encoding, call avcodec_receive_packet(). On success, it will return
111  *     an AVPacket with a compressed frame.
112  *
113  *   Repeat this call until it returns AVERROR(EAGAIN) or an error. The
114  *   AVERROR(EAGAIN) return value means that new input data is required to
115  *   return new output. In this case, continue with sending input. For each
116  *   input frame/packet, the codec will typically return 1 output frame/packet,
117  *   but it can also be 0 or more than 1.
118  *
119  * At the beginning of decoding or encoding, the codec might accept multiple
120  * input frames/packets without returning a frame, until its internal buffers
121  * are filled. This situation is handled transparently if you follow the steps
122  * outlined above.
123  *
124  * In theory, sending input can result in EAGAIN - this should happen only if
125  * not all output was received. You can use this to structure alternative decode
126  * or encode loops other than the one suggested above. For example, you could
127  * try sending new input on each iteration, and try to receive output if that
128  * returns EAGAIN.
129  *
130  * End of stream situations. These require "flushing" (aka draining) the codec,
131  * as the codec might buffer multiple frames or packets internally for
132  * performance or out of necessity (consider B-frames).
133  * This is handled as follows:
134  * - Instead of valid input, send NULL to the avcodec_send_packet() (decoding)
135  *   or avcodec_send_frame() (encoding) functions. This will enter draining
136  *   mode.
137  * - Call avcodec_receive_frame() (decoding) or avcodec_receive_packet()
138  *   (encoding) in a loop until AVERROR_EOF is returned. The functions will
139  *   not return AVERROR(EAGAIN), unless you forgot to enter draining mode.
140  * - Before decoding can be resumed again, the codec has to be reset with
141  *   avcodec_flush_buffers().
142  *
143  * Using the API as outlined above is highly recommended. But it is also
144  * possible to call functions outside of this rigid schema. For example, you can
145  * call avcodec_send_packet() repeatedly without calling
146  * avcodec_receive_frame(). In this case, avcodec_send_packet() will succeed
147  * until the codec's internal buffer has been filled up (which is typically of
148  * size 1 per output frame, after initial input), and then reject input with
149  * AVERROR(EAGAIN). Once it starts rejecting input, you have no choice but to
150  * read at least some output.
151  *
152  * Not all codecs will follow a rigid and predictable dataflow; the only
153  * guarantee is that an AVERROR(EAGAIN) return value on a send/receive call on
154  * one end implies that a receive/send call on the other end will succeed, or
155  * at least will not fail with AVERROR(EAGAIN). In general, no codec will
156  * permit unlimited buffering of input or output.
157  *
158  * This API replaces the following legacy functions:
159  * - avcodec_decode_video2() and avcodec_decode_audio4():
160  *   Use avcodec_send_packet() to feed input to the decoder, then use
161  *   avcodec_receive_frame() to receive decoded frames after each packet.
162  *   Unlike with the old video decoding API, multiple frames might result from
163  *   a packet. For audio, splitting the input packet into frames by partially
164  *   decoding packets becomes transparent to the API user. You never need to
165  *   feed an AVPacket to the API twice (unless it is rejected with AVERROR(EAGAIN) - then
166  *   no data was read from the packet).
167  *   Additionally, sending a flush/draining packet is required only once.
168  * - avcodec_encode_video2()/avcodec_encode_audio2():
169  *   Use avcodec_send_frame() to feed input to the encoder, then use
170  *   avcodec_receive_packet() to receive encoded packets.
171  *   Providing user-allocated buffers for avcodec_receive_packet() is not
172  *   possible.
173  * - The new API does not handle subtitles yet.
174  *
175  * Mixing new and old function calls on the same AVCodecContext is not allowed,
176  * and will result in undefined behavior.
177  *
178  * Some codecs might require using the new API; using the old API will return
179  * an error when calling it. All codecs support the new API.
180  *
181  * A codec is not allowed to return AVERROR(EAGAIN) for both sending and receiving. This
182  * would be an invalid state, which could put the codec user into an endless
183  * loop. The API has no concept of time either: it cannot happen that trying to
184  * do avcodec_send_packet() results in AVERROR(EAGAIN), but a repeated call 1 second
185  * later accepts the packet (with no other receive/flush API calls involved).
186  * The API is a strict state machine, and the passage of time is not supposed
187  * to influence it. Some timing-dependent behavior might still be deemed
188  * acceptable in certain cases. But it must never result in both send/receive
189  * returning EAGAIN at the same time at any point. It must also absolutely be
190  * avoided that the current state is "unstable" and can "flip-flop" between
191  * the send/receive APIs allowing progress. For example, it's not allowed that
192  * the codec randomly decides that it actually wants to consume a packet now
193  * instead of returning a frame, after it just returned AVERROR(EAGAIN) on an
194  * avcodec_send_packet() call.
195  * @}
196  */
197
198 /**
199  * @defgroup lavc_core Core functions/structures.
200  * @ingroup libavc
201  *
202  * Basic definitions, functions for querying libavcodec capabilities,
203  * allocating core structures, etc.
204  * @{
205  */
206
207 /**
208  * @ingroup lavc_decoding
209  * Required number of additionally allocated bytes at the end of the input bitstream for decoding.
210  * This is mainly needed because some optimized bitstream readers read
211  * 32 or 64 bit at once and could read over the end.<br>
212  * Note: If the first 23 bits of the additional bytes are not 0, then damaged
213  * MPEG bitstreams could cause overread and segfault.
214  */
215 #define AV_INPUT_BUFFER_PADDING_SIZE 64
216
217 /**
218  * @ingroup lavc_encoding
219  * minimum encoding buffer size
220  * Used to avoid some checks during header writing.
221  */
222 #define AV_INPUT_BUFFER_MIN_SIZE 16384
223
224 /**
225  * @ingroup lavc_decoding
226  */
227 enum AVDiscard{
228     /* We leave some space between them for extensions (drop some
229      * keyframes for intra-only or drop just some bidir frames). */
230     AVDISCARD_NONE    =-16, ///< discard nothing
231     AVDISCARD_DEFAULT =  0, ///< discard useless packets like 0 size packets in avi
232     AVDISCARD_NONREF  =  8, ///< discard all non reference
233     AVDISCARD_BIDIR   = 16, ///< discard all bidirectional frames
234     AVDISCARD_NONINTRA= 24, ///< discard all non intra frames
235     AVDISCARD_NONKEY  = 32, ///< discard all frames except keyframes
236     AVDISCARD_ALL     = 48, ///< discard all
237 };
238
239 enum AVAudioServiceType {
240     AV_AUDIO_SERVICE_TYPE_MAIN              = 0,
241     AV_AUDIO_SERVICE_TYPE_EFFECTS           = 1,
242     AV_AUDIO_SERVICE_TYPE_VISUALLY_IMPAIRED = 2,
243     AV_AUDIO_SERVICE_TYPE_HEARING_IMPAIRED  = 3,
244     AV_AUDIO_SERVICE_TYPE_DIALOGUE          = 4,
245     AV_AUDIO_SERVICE_TYPE_COMMENTARY        = 5,
246     AV_AUDIO_SERVICE_TYPE_EMERGENCY         = 6,
247     AV_AUDIO_SERVICE_TYPE_VOICE_OVER        = 7,
248     AV_AUDIO_SERVICE_TYPE_KARAOKE           = 8,
249     AV_AUDIO_SERVICE_TYPE_NB                   , ///< Not part of ABI
250 };
251
252 /**
253  * @ingroup lavc_encoding
254  */
255 typedef struct RcOverride{
256     int start_frame;
257     int end_frame;
258     int qscale; // If this is 0 then quality_factor will be used instead.
259     float quality_factor;
260 } RcOverride;
261
262 /* encoding support
263    These flags can be passed in AVCodecContext.flags before initialization.
264    Note: Not everything is supported yet.
265 */
266
267 /**
268  * Allow decoders to produce frames with data planes that are not aligned
269  * to CPU requirements (e.g. due to cropping).
270  */
271 #define AV_CODEC_FLAG_UNALIGNED       (1 <<  0)
272 /**
273  * Use fixed qscale.
274  */
275 #define AV_CODEC_FLAG_QSCALE          (1 <<  1)
276 /**
277  * 4 MV per MB allowed / advanced prediction for H.263.
278  */
279 #define AV_CODEC_FLAG_4MV             (1 <<  2)
280 /**
281  * Output even those frames that might be corrupted.
282  */
283 #define AV_CODEC_FLAG_OUTPUT_CORRUPT  (1 <<  3)
284 /**
285  * Use qpel MC.
286  */
287 #define AV_CODEC_FLAG_QPEL            (1 <<  4)
288 /**
289  * Don't output frames whose parameters differ from first
290  * decoded frame in stream.
291  */
292 #define AV_CODEC_FLAG_DROPCHANGED     (1 <<  5)
293 /**
294  * Use internal 2pass ratecontrol in first pass mode.
295  */
296 #define AV_CODEC_FLAG_PASS1           (1 <<  9)
297 /**
298  * Use internal 2pass ratecontrol in second pass mode.
299  */
300 #define AV_CODEC_FLAG_PASS2           (1 << 10)
301 /**
302  * loop filter.
303  */
304 #define AV_CODEC_FLAG_LOOP_FILTER     (1 << 11)
305 /**
306  * Only decode/encode grayscale.
307  */
308 #define AV_CODEC_FLAG_GRAY            (1 << 13)
309 /**
310  * error[?] variables will be set during encoding.
311  */
312 #define AV_CODEC_FLAG_PSNR            (1 << 15)
313 /**
314  * Input bitstream might be truncated at a random location
315  * instead of only at frame boundaries.
316  */
317 #define AV_CODEC_FLAG_TRUNCATED       (1 << 16)
318 /**
319  * Use interlaced DCT.
320  */
321 #define AV_CODEC_FLAG_INTERLACED_DCT  (1 << 18)
322 /**
323  * Force low delay.
324  */
325 #define AV_CODEC_FLAG_LOW_DELAY       (1 << 19)
326 /**
327  * Place global headers in extradata instead of every keyframe.
328  */
329 #define AV_CODEC_FLAG_GLOBAL_HEADER   (1 << 22)
330 /**
331  * Use only bitexact stuff (except (I)DCT).
332  */
333 #define AV_CODEC_FLAG_BITEXACT        (1 << 23)
334 /* Fx : Flag for H.263+ extra options */
335 /**
336  * H.263 advanced intra coding / MPEG-4 AC prediction
337  */
338 #define AV_CODEC_FLAG_AC_PRED         (1 << 24)
339 /**
340  * interlaced motion estimation
341  */
342 #define AV_CODEC_FLAG_INTERLACED_ME   (1 << 29)
343 #define AV_CODEC_FLAG_CLOSED_GOP      (1U << 31)
344
345 /**
346  * Allow non spec compliant speedup tricks.
347  */
348 #define AV_CODEC_FLAG2_FAST           (1 <<  0)
349 /**
350  * Skip bitstream encoding.
351  */
352 #define AV_CODEC_FLAG2_NO_OUTPUT      (1 <<  2)
353 /**
354  * Place global headers at every keyframe instead of in extradata.
355  */
356 #define AV_CODEC_FLAG2_LOCAL_HEADER   (1 <<  3)
357
358 /**
359  * timecode is in drop frame format. DEPRECATED!!!!
360  */
361 #define AV_CODEC_FLAG2_DROP_FRAME_TIMECODE (1 << 13)
362
363 /**
364  * Input bitstream might be truncated at a packet boundaries
365  * instead of only at frame boundaries.
366  */
367 #define AV_CODEC_FLAG2_CHUNKS         (1 << 15)
368 /**
369  * Discard cropping information from SPS.
370  */
371 #define AV_CODEC_FLAG2_IGNORE_CROP    (1 << 16)
372
373 /**
374  * Show all frames before the first keyframe
375  */
376 #define AV_CODEC_FLAG2_SHOW_ALL       (1 << 22)
377 /**
378  * Export motion vectors through frame side data
379  */
380 #define AV_CODEC_FLAG2_EXPORT_MVS     (1 << 28)
381 /**
382  * Do not skip samples and export skip information as frame side data
383  */
384 #define AV_CODEC_FLAG2_SKIP_MANUAL    (1 << 29)
385 /**
386  * Do not reset ASS ReadOrder field on flush (subtitles decoding)
387  */
388 #define AV_CODEC_FLAG2_RO_FLUSH_NOOP  (1 << 30)
389
390 /* Unsupported options :
391  *              Syntax Arithmetic coding (SAC)
392  *              Reference Picture Selection
393  *              Independent Segment Decoding */
394 /* /Fx */
395 /* codec capabilities */
396
397 /* Exported side data.
398    These flags can be passed in AVCodecContext.export_side_data before initialization.
399 */
400 /**
401  * Export motion vectors through frame side data
402  */
403 #define AV_CODEC_EXPORT_DATA_MVS         (1 << 0)
404 /**
405  * Export encoder Producer Reference Time through packet side data
406  */
407 #define AV_CODEC_EXPORT_DATA_PRFT        (1 << 1)
408 /**
409  * Decoding only.
410  * Export the AVVideoEncParams structure through frame side data.
411  */
412 #define AV_CODEC_EXPORT_DATA_VIDEO_ENC_PARAMS (1 << 2)
413 /**
414  * Decoding only.
415  * Do not apply film grain, export it instead.
416  */
417 #define AV_CODEC_EXPORT_DATA_FILM_GRAIN (1 << 3)
418
419 /**
420  * Pan Scan area.
421  * This specifies the area which should be displayed.
422  * Note there may be multiple such areas for one frame.
423  */
424 typedef struct AVPanScan {
425     /**
426      * id
427      * - encoding: Set by user.
428      * - decoding: Set by libavcodec.
429      */
430     int id;
431
432     /**
433      * width and height in 1/16 pel
434      * - encoding: Set by user.
435      * - decoding: Set by libavcodec.
436      */
437     int width;
438     int height;
439
440     /**
441      * position of the top left corner in 1/16 pel for up to 3 fields/frames
442      * - encoding: Set by user.
443      * - decoding: Set by libavcodec.
444      */
445     int16_t position[3][2];
446 } AVPanScan;
447
448 /**
449  * This structure describes the bitrate properties of an encoded bitstream. It
450  * roughly corresponds to a subset the VBV parameters for MPEG-2 or HRD
451  * parameters for H.264/HEVC.
452  */
453 typedef struct AVCPBProperties {
454     /**
455      * Maximum bitrate of the stream, in bits per second.
456      * Zero if unknown or unspecified.
457      */
458 #if FF_API_UNSANITIZED_BITRATES
459     int max_bitrate;
460 #else
461     int64_t max_bitrate;
462 #endif
463     /**
464      * Minimum bitrate of the stream, in bits per second.
465      * Zero if unknown or unspecified.
466      */
467 #if FF_API_UNSANITIZED_BITRATES
468     int min_bitrate;
469 #else
470     int64_t min_bitrate;
471 #endif
472     /**
473      * Average bitrate of the stream, in bits per second.
474      * Zero if unknown or unspecified.
475      */
476 #if FF_API_UNSANITIZED_BITRATES
477     int avg_bitrate;
478 #else
479     int64_t avg_bitrate;
480 #endif
481
482     /**
483      * The size of the buffer to which the ratecontrol is applied, in bits.
484      * Zero if unknown or unspecified.
485      */
486     int buffer_size;
487
488     /**
489      * The delay between the time the packet this structure is associated with
490      * is received and the time when it should be decoded, in periods of a 27MHz
491      * clock.
492      *
493      * UINT64_MAX when unknown or unspecified.
494      */
495     uint64_t vbv_delay;
496 } AVCPBProperties;
497
498 /**
499  * This structure supplies correlation between a packet timestamp and a wall clock
500  * production time. The definition follows the Producer Reference Time ('prft')
501  * as defined in ISO/IEC 14496-12
502  */
503 typedef struct AVProducerReferenceTime {
504     /**
505      * A UTC timestamp, in microseconds, since Unix epoch (e.g, av_gettime()).
506      */
507     int64_t wallclock;
508     int flags;
509 } AVProducerReferenceTime;
510
511 /**
512  * The decoder will keep a reference to the frame and may reuse it later.
513  */
514 #define AV_GET_BUFFER_FLAG_REF (1 << 0)
515
516 struct AVCodecInternal;
517
518 /**
519  * main external API structure.
520  * New fields can be added to the end with minor version bumps.
521  * Removal, reordering and changes to existing fields require a major
522  * version bump.
523  * You can use AVOptions (av_opt* / av_set/get*()) to access these fields from user
524  * applications.
525  * The name string for AVOptions options matches the associated command line
526  * parameter name and can be found in libavcodec/options_table.h
527  * The AVOption/command line parameter names differ in some cases from the C
528  * structure field names for historic reasons or brevity.
529  * sizeof(AVCodecContext) must not be used outside libav*.
530  */
531 typedef struct AVCodecContext {
532     /**
533      * information on struct for av_log
534      * - set by avcodec_alloc_context3
535      */
536     const AVClass *av_class;
537     int log_level_offset;
538
539     enum AVMediaType codec_type; /* see AVMEDIA_TYPE_xxx */
540     const struct AVCodec  *codec;
541     enum AVCodecID     codec_id; /* see AV_CODEC_ID_xxx */
542
543     /**
544      * fourcc (LSB first, so "ABCD" -> ('D'<<24) + ('C'<<16) + ('B'<<8) + 'A').
545      * This is used to work around some encoder bugs.
546      * A demuxer should set this to what is stored in the field used to identify the codec.
547      * If there are multiple such fields in a container then the demuxer should choose the one
548      * which maximizes the information about the used codec.
549      * If the codec tag field in a container is larger than 32 bits then the demuxer should
550      * remap the longer ID to 32 bits with a table or other structure. Alternatively a new
551      * extra_codec_tag + size could be added but for this a clear advantage must be demonstrated
552      * first.
553      * - encoding: Set by user, if not then the default based on codec_id will be used.
554      * - decoding: Set by user, will be converted to uppercase by libavcodec during init.
555      */
556     unsigned int codec_tag;
557
558     void *priv_data;
559
560     /**
561      * Private context used for internal data.
562      *
563      * Unlike priv_data, this is not codec-specific. It is used in general
564      * libavcodec functions.
565      */
566     struct AVCodecInternal *internal;
567
568     /**
569      * Private data of the user, can be used to carry app specific stuff.
570      * - encoding: Set by user.
571      * - decoding: Set by user.
572      */
573     void *opaque;
574
575     /**
576      * the average bitrate
577      * - encoding: Set by user; unused for constant quantizer encoding.
578      * - decoding: Set by user, may be overwritten by libavcodec
579      *             if this info is available in the stream
580      */
581     int64_t bit_rate;
582
583     /**
584      * number of bits the bitstream is allowed to diverge from the reference.
585      *           the reference can be CBR (for CBR pass1) or VBR (for pass2)
586      * - encoding: Set by user; unused for constant quantizer encoding.
587      * - decoding: unused
588      */
589     int bit_rate_tolerance;
590
591     /**
592      * Global quality for codecs which cannot change it per frame.
593      * This should be proportional to MPEG-1/2/4 qscale.
594      * - encoding: Set by user.
595      * - decoding: unused
596      */
597     int global_quality;
598
599     /**
600      * - encoding: Set by user.
601      * - decoding: unused
602      */
603     int compression_level;
604 #define FF_COMPRESSION_DEFAULT -1
605
606     /**
607      * AV_CODEC_FLAG_*.
608      * - encoding: Set by user.
609      * - decoding: Set by user.
610      */
611     int flags;
612
613     /**
614      * AV_CODEC_FLAG2_*
615      * - encoding: Set by user.
616      * - decoding: Set by user.
617      */
618     int flags2;
619
620     /**
621      * some codecs need / can use extradata like Huffman tables.
622      * MJPEG: Huffman tables
623      * rv10: additional flags
624      * MPEG-4: global headers (they can be in the bitstream or here)
625      * The allocated memory should be AV_INPUT_BUFFER_PADDING_SIZE bytes larger
626      * than extradata_size to avoid problems if it is read with the bitstream reader.
627      * The bytewise contents of extradata must not depend on the architecture or CPU endianness.
628      * Must be allocated with the av_malloc() family of functions.
629      * - encoding: Set/allocated/freed by libavcodec.
630      * - decoding: Set/allocated/freed by user.
631      */
632     uint8_t *extradata;
633     int extradata_size;
634
635     /**
636      * This is the fundamental unit of time (in seconds) in terms
637      * of which frame timestamps are represented. For fixed-fps content,
638      * timebase should be 1/framerate and timestamp increments should be
639      * identically 1.
640      * This often, but not always is the inverse of the frame rate or field rate
641      * for video. 1/time_base is not the average frame rate if the frame rate is not
642      * constant.
643      *
644      * Like containers, elementary streams also can store timestamps, 1/time_base
645      * is the unit in which these timestamps are specified.
646      * As example of such codec time base see ISO/IEC 14496-2:2001(E)
647      * vop_time_increment_resolution and fixed_vop_rate
648      * (fixed_vop_rate == 0 implies that it is different from the framerate)
649      *
650      * - encoding: MUST be set by user.
651      * - decoding: the use of this field for decoding is deprecated.
652      *             Use framerate instead.
653      */
654     AVRational time_base;
655
656     /**
657      * For some codecs, the time base is closer to the field rate than the frame rate.
658      * Most notably, H.264 and MPEG-2 specify time_base as half of frame duration
659      * if no telecine is used ...
660      *
661      * Set to time_base ticks per frame. Default 1, e.g., H.264/MPEG-2 set it to 2.
662      */
663     int ticks_per_frame;
664
665     /**
666      * Codec delay.
667      *
668      * Encoding: Number of frames delay there will be from the encoder input to
669      *           the decoder output. (we assume the decoder matches the spec)
670      * Decoding: Number of frames delay in addition to what a standard decoder
671      *           as specified in the spec would produce.
672      *
673      * Video:
674      *   Number of frames the decoded output will be delayed relative to the
675      *   encoded input.
676      *
677      * Audio:
678      *   For encoding, this field is unused (see initial_padding).
679      *
680      *   For decoding, this is the number of samples the decoder needs to
681      *   output before the decoder's output is valid. When seeking, you should
682      *   start decoding this many samples prior to your desired seek point.
683      *
684      * - encoding: Set by libavcodec.
685      * - decoding: Set by libavcodec.
686      */
687     int delay;
688
689
690     /* video only */
691     /**
692      * picture width / height.
693      *
694      * @note Those fields may not match the values of the last
695      * AVFrame output by avcodec_decode_video2 due frame
696      * reordering.
697      *
698      * - encoding: MUST be set by user.
699      * - decoding: May be set by the user before opening the decoder if known e.g.
700      *             from the container. Some decoders will require the dimensions
701      *             to be set by the caller. During decoding, the decoder may
702      *             overwrite those values as required while parsing the data.
703      */
704     int width, height;
705
706     /**
707      * Bitstream width / height, may be different from width/height e.g. when
708      * the decoded frame is cropped before being output or lowres is enabled.
709      *
710      * @note Those field may not match the value of the last
711      * AVFrame output by avcodec_receive_frame() due frame
712      * reordering.
713      *
714      * - encoding: unused
715      * - decoding: May be set by the user before opening the decoder if known
716      *             e.g. from the container. During decoding, the decoder may
717      *             overwrite those values as required while parsing the data.
718      */
719     int coded_width, coded_height;
720
721     /**
722      * the number of pictures in a group of pictures, or 0 for intra_only
723      * - encoding: Set by user.
724      * - decoding: unused
725      */
726     int gop_size;
727
728     /**
729      * Pixel format, see AV_PIX_FMT_xxx.
730      * May be set by the demuxer if known from headers.
731      * May be overridden by the decoder if it knows better.
732      *
733      * @note This field may not match the value of the last
734      * AVFrame output by avcodec_receive_frame() due frame
735      * reordering.
736      *
737      * - encoding: Set by user.
738      * - decoding: Set by user if known, overridden by libavcodec while
739      *             parsing the data.
740      */
741     enum AVPixelFormat pix_fmt;
742
743     /**
744      * If non NULL, 'draw_horiz_band' is called by the libavcodec
745      * decoder to draw a horizontal band. It improves cache usage. Not
746      * all codecs can do that. You must check the codec capabilities
747      * beforehand.
748      * When multithreading is used, it may be called from multiple threads
749      * at the same time; threads might draw different parts of the same AVFrame,
750      * or multiple AVFrames, and there is no guarantee that slices will be drawn
751      * in order.
752      * The function is also used by hardware acceleration APIs.
753      * It is called at least once during frame decoding to pass
754      * the data needed for hardware render.
755      * In that mode instead of pixel data, AVFrame points to
756      * a structure specific to the acceleration API. The application
757      * reads the structure and can change some fields to indicate progress
758      * or mark state.
759      * - encoding: unused
760      * - decoding: Set by user.
761      * @param height the height of the slice
762      * @param y the y position of the slice
763      * @param type 1->top field, 2->bottom field, 3->frame
764      * @param offset offset into the AVFrame.data from which the slice should be read
765      */
766     void (*draw_horiz_band)(struct AVCodecContext *s,
767                             const AVFrame *src, int offset[AV_NUM_DATA_POINTERS],
768                             int y, int type, int height);
769
770     /**
771      * callback to negotiate the pixelFormat
772      * @param fmt is the list of formats which are supported by the codec,
773      * it is terminated by -1 as 0 is a valid format, the formats are ordered by quality.
774      * The first is always the native one.
775      * @note The callback may be called again immediately if initialization for
776      * the selected (hardware-accelerated) pixel format failed.
777      * @warning Behavior is undefined if the callback returns a value not
778      * in the fmt list of formats.
779      * @return the chosen format
780      * - encoding: unused
781      * - decoding: Set by user, if not set the native format will be chosen.
782      */
783     enum AVPixelFormat (*get_format)(struct AVCodecContext *s, const enum AVPixelFormat * fmt);
784
785     /**
786      * maximum number of B-frames between non-B-frames
787      * Note: The output will be delayed by max_b_frames+1 relative to the input.
788      * - encoding: Set by user.
789      * - decoding: unused
790      */
791     int max_b_frames;
792
793     /**
794      * qscale factor between IP and B-frames
795      * If > 0 then the last P-frame quantizer will be used (q= lastp_q*factor+offset).
796      * If < 0 then normal ratecontrol will be done (q= -normal_q*factor+offset).
797      * - encoding: Set by user.
798      * - decoding: unused
799      */
800     float b_quant_factor;
801
802 #if FF_API_PRIVATE_OPT
803     /** @deprecated use encoder private options instead */
804     attribute_deprecated
805     int b_frame_strategy;
806 #endif
807
808     /**
809      * qscale offset between IP and B-frames
810      * - encoding: Set by user.
811      * - decoding: unused
812      */
813     float b_quant_offset;
814
815     /**
816      * Size of the frame reordering buffer in the decoder.
817      * For MPEG-2 it is 1 IPB or 0 low delay IP.
818      * - encoding: Set by libavcodec.
819      * - decoding: Set by libavcodec.
820      */
821     int has_b_frames;
822
823 #if FF_API_PRIVATE_OPT
824     /** @deprecated use encoder private options instead */
825     attribute_deprecated
826     int mpeg_quant;
827 #endif
828
829     /**
830      * qscale factor between P- and I-frames
831      * If > 0 then the last P-frame quantizer will be used (q = lastp_q * factor + offset).
832      * If < 0 then normal ratecontrol will be done (q= -normal_q*factor+offset).
833      * - encoding: Set by user.
834      * - decoding: unused
835      */
836     float i_quant_factor;
837
838     /**
839      * qscale offset between P and I-frames
840      * - encoding: Set by user.
841      * - decoding: unused
842      */
843     float i_quant_offset;
844
845     /**
846      * luminance masking (0-> disabled)
847      * - encoding: Set by user.
848      * - decoding: unused
849      */
850     float lumi_masking;
851
852     /**
853      * temporary complexity masking (0-> disabled)
854      * - encoding: Set by user.
855      * - decoding: unused
856      */
857     float temporal_cplx_masking;
858
859     /**
860      * spatial complexity masking (0-> disabled)
861      * - encoding: Set by user.
862      * - decoding: unused
863      */
864     float spatial_cplx_masking;
865
866     /**
867      * p block masking (0-> disabled)
868      * - encoding: Set by user.
869      * - decoding: unused
870      */
871     float p_masking;
872
873     /**
874      * darkness masking (0-> disabled)
875      * - encoding: Set by user.
876      * - decoding: unused
877      */
878     float dark_masking;
879
880     /**
881      * slice count
882      * - encoding: Set by libavcodec.
883      * - decoding: Set by user (or 0).
884      */
885     int slice_count;
886
887 #if FF_API_PRIVATE_OPT
888     /** @deprecated use encoder private options instead */
889     attribute_deprecated
890      int prediction_method;
891 #define FF_PRED_LEFT   0
892 #define FF_PRED_PLANE  1
893 #define FF_PRED_MEDIAN 2
894 #endif
895
896     /**
897      * slice offsets in the frame in bytes
898      * - encoding: Set/allocated by libavcodec.
899      * - decoding: Set/allocated by user (or NULL).
900      */
901     int *slice_offset;
902
903     /**
904      * sample aspect ratio (0 if unknown)
905      * That is the width of a pixel divided by the height of the pixel.
906      * Numerator and denominator must be relatively prime and smaller than 256 for some video standards.
907      * - encoding: Set by user.
908      * - decoding: Set by libavcodec.
909      */
910     AVRational sample_aspect_ratio;
911
912     /**
913      * motion estimation comparison function
914      * - encoding: Set by user.
915      * - decoding: unused
916      */
917     int me_cmp;
918     /**
919      * subpixel motion estimation comparison function
920      * - encoding: Set by user.
921      * - decoding: unused
922      */
923     int me_sub_cmp;
924     /**
925      * macroblock comparison function (not supported yet)
926      * - encoding: Set by user.
927      * - decoding: unused
928      */
929     int mb_cmp;
930     /**
931      * interlaced DCT comparison function
932      * - encoding: Set by user.
933      * - decoding: unused
934      */
935     int ildct_cmp;
936 #define FF_CMP_SAD          0
937 #define FF_CMP_SSE          1
938 #define FF_CMP_SATD         2
939 #define FF_CMP_DCT          3
940 #define FF_CMP_PSNR         4
941 #define FF_CMP_BIT          5
942 #define FF_CMP_RD           6
943 #define FF_CMP_ZERO         7
944 #define FF_CMP_VSAD         8
945 #define FF_CMP_VSSE         9
946 #define FF_CMP_NSSE         10
947 #define FF_CMP_W53          11
948 #define FF_CMP_W97          12
949 #define FF_CMP_DCTMAX       13
950 #define FF_CMP_DCT264       14
951 #define FF_CMP_MEDIAN_SAD   15
952 #define FF_CMP_CHROMA       256
953
954     /**
955      * ME diamond size & shape
956      * - encoding: Set by user.
957      * - decoding: unused
958      */
959     int dia_size;
960
961     /**
962      * amount of previous MV predictors (2a+1 x 2a+1 square)
963      * - encoding: Set by user.
964      * - decoding: unused
965      */
966     int last_predictor_count;
967
968 #if FF_API_PRIVATE_OPT
969     /** @deprecated use encoder private options instead */
970     attribute_deprecated
971     int pre_me;
972 #endif
973
974     /**
975      * motion estimation prepass comparison function
976      * - encoding: Set by user.
977      * - decoding: unused
978      */
979     int me_pre_cmp;
980
981     /**
982      * ME prepass diamond size & shape
983      * - encoding: Set by user.
984      * - decoding: unused
985      */
986     int pre_dia_size;
987
988     /**
989      * subpel ME quality
990      * - encoding: Set by user.
991      * - decoding: unused
992      */
993     int me_subpel_quality;
994
995     /**
996      * maximum motion estimation search range in subpel units
997      * If 0 then no limit.
998      *
999      * - encoding: Set by user.
1000      * - decoding: unused
1001      */
1002     int me_range;
1003
1004     /**
1005      * slice flags
1006      * - encoding: unused
1007      * - decoding: Set by user.
1008      */
1009     int slice_flags;
1010 #define SLICE_FLAG_CODED_ORDER    0x0001 ///< draw_horiz_band() is called in coded order instead of display
1011 #define SLICE_FLAG_ALLOW_FIELD    0x0002 ///< allow draw_horiz_band() with field slices (MPEG-2 field pics)
1012 #define SLICE_FLAG_ALLOW_PLANE    0x0004 ///< allow draw_horiz_band() with 1 component at a time (SVQ1)
1013
1014     /**
1015      * macroblock decision mode
1016      * - encoding: Set by user.
1017      * - decoding: unused
1018      */
1019     int mb_decision;
1020 #define FF_MB_DECISION_SIMPLE 0        ///< uses mb_cmp
1021 #define FF_MB_DECISION_BITS   1        ///< chooses the one which needs the fewest bits
1022 #define FF_MB_DECISION_RD     2        ///< rate distortion
1023
1024     /**
1025      * custom intra quantization matrix
1026      * Must be allocated with the av_malloc() family of functions, and will be freed in
1027      * avcodec_free_context().
1028      * - encoding: Set/allocated by user, freed by libavcodec. Can be NULL.
1029      * - decoding: Set/allocated/freed by libavcodec.
1030      */
1031     uint16_t *intra_matrix;
1032
1033     /**
1034      * custom inter quantization matrix
1035      * Must be allocated with the av_malloc() family of functions, and will be freed in
1036      * avcodec_free_context().
1037      * - encoding: Set/allocated by user, freed by libavcodec. Can be NULL.
1038      * - decoding: Set/allocated/freed by libavcodec.
1039      */
1040     uint16_t *inter_matrix;
1041
1042 #if FF_API_PRIVATE_OPT
1043     /** @deprecated use encoder private options instead */
1044     attribute_deprecated
1045     int scenechange_threshold;
1046
1047     /** @deprecated use encoder private options instead */
1048     attribute_deprecated
1049     int noise_reduction;
1050 #endif
1051
1052     /**
1053      * precision of the intra DC coefficient - 8
1054      * - encoding: Set by user.
1055      * - decoding: Set by libavcodec
1056      */
1057     int intra_dc_precision;
1058
1059     /**
1060      * Number of macroblock rows at the top which are skipped.
1061      * - encoding: unused
1062      * - decoding: Set by user.
1063      */
1064     int skip_top;
1065
1066     /**
1067      * Number of macroblock rows at the bottom which are skipped.
1068      * - encoding: unused
1069      * - decoding: Set by user.
1070      */
1071     int skip_bottom;
1072
1073     /**
1074      * minimum MB Lagrange multiplier
1075      * - encoding: Set by user.
1076      * - decoding: unused
1077      */
1078     int mb_lmin;
1079
1080     /**
1081      * maximum MB Lagrange multiplier
1082      * - encoding: Set by user.
1083      * - decoding: unused
1084      */
1085     int mb_lmax;
1086
1087 #if FF_API_PRIVATE_OPT
1088     /**
1089      * @deprecated use encoder private options instead
1090      */
1091     attribute_deprecated
1092     int me_penalty_compensation;
1093 #endif
1094
1095     /**
1096      * - encoding: Set by user.
1097      * - decoding: unused
1098      */
1099     int bidir_refine;
1100
1101 #if FF_API_PRIVATE_OPT
1102     /** @deprecated use encoder private options instead */
1103     attribute_deprecated
1104     int brd_scale;
1105 #endif
1106
1107     /**
1108      * minimum GOP size
1109      * - encoding: Set by user.
1110      * - decoding: unused
1111      */
1112     int keyint_min;
1113
1114     /**
1115      * number of reference frames
1116      * - encoding: Set by user.
1117      * - decoding: Set by lavc.
1118      */
1119     int refs;
1120
1121 #if FF_API_PRIVATE_OPT
1122     /** @deprecated use encoder private options instead */
1123     attribute_deprecated
1124     int chromaoffset;
1125 #endif
1126
1127     /**
1128      * Note: Value depends upon the compare function used for fullpel ME.
1129      * - encoding: Set by user.
1130      * - decoding: unused
1131      */
1132     int mv0_threshold;
1133
1134 #if FF_API_PRIVATE_OPT
1135     /** @deprecated use encoder private options instead */
1136     attribute_deprecated
1137     int b_sensitivity;
1138 #endif
1139
1140     /**
1141      * Chromaticity coordinates of the source primaries.
1142      * - encoding: Set by user
1143      * - decoding: Set by libavcodec
1144      */
1145     enum AVColorPrimaries color_primaries;
1146
1147     /**
1148      * Color Transfer Characteristic.
1149      * - encoding: Set by user
1150      * - decoding: Set by libavcodec
1151      */
1152     enum AVColorTransferCharacteristic color_trc;
1153
1154     /**
1155      * YUV colorspace type.
1156      * - encoding: Set by user
1157      * - decoding: Set by libavcodec
1158      */
1159     enum AVColorSpace colorspace;
1160
1161     /**
1162      * MPEG vs JPEG YUV range.
1163      * - encoding: Set by user
1164      * - decoding: Set by libavcodec
1165      */
1166     enum AVColorRange color_range;
1167
1168     /**
1169      * This defines the location of chroma samples.
1170      * - encoding: Set by user
1171      * - decoding: Set by libavcodec
1172      */
1173     enum AVChromaLocation chroma_sample_location;
1174
1175     /**
1176      * Number of slices.
1177      * Indicates number of picture subdivisions. Used for parallelized
1178      * decoding.
1179      * - encoding: Set by user
1180      * - decoding: unused
1181      */
1182     int slices;
1183
1184     /** Field order
1185      * - encoding: set by libavcodec
1186      * - decoding: Set by user.
1187      */
1188     enum AVFieldOrder field_order;
1189
1190     /* audio only */
1191     int sample_rate; ///< samples per second
1192     int channels;    ///< number of audio channels
1193
1194     /**
1195      * audio sample format
1196      * - encoding: Set by user.
1197      * - decoding: Set by libavcodec.
1198      */
1199     enum AVSampleFormat sample_fmt;  ///< sample format
1200
1201     /* The following data should not be initialized. */
1202     /**
1203      * Number of samples per channel in an audio frame.
1204      *
1205      * - encoding: set by libavcodec in avcodec_open2(). Each submitted frame
1206      *   except the last must contain exactly frame_size samples per channel.
1207      *   May be 0 when the codec has AV_CODEC_CAP_VARIABLE_FRAME_SIZE set, then the
1208      *   frame size is not restricted.
1209      * - decoding: may be set by some decoders to indicate constant frame size
1210      */
1211     int frame_size;
1212
1213     /**
1214      * Frame counter, set by libavcodec.
1215      *
1216      * - decoding: total number of frames returned from the decoder so far.
1217      * - encoding: total number of frames passed to the encoder so far.
1218      *
1219      *   @note the counter is not incremented if encoding/decoding resulted in
1220      *   an error.
1221      */
1222     int frame_number;
1223
1224     /**
1225      * number of bytes per packet if constant and known or 0
1226      * Used by some WAV based audio codecs.
1227      */
1228     int block_align;
1229
1230     /**
1231      * Audio cutoff bandwidth (0 means "automatic")
1232      * - encoding: Set by user.
1233      * - decoding: unused
1234      */
1235     int cutoff;
1236
1237     /**
1238      * Audio channel layout.
1239      * - encoding: set by user.
1240      * - decoding: set by user, may be overwritten by libavcodec.
1241      */
1242     uint64_t channel_layout;
1243
1244     /**
1245      * Request decoder to use this channel layout if it can (0 for default)
1246      * - encoding: unused
1247      * - decoding: Set by user.
1248      */
1249     uint64_t request_channel_layout;
1250
1251     /**
1252      * Type of service that the audio stream conveys.
1253      * - encoding: Set by user.
1254      * - decoding: Set by libavcodec.
1255      */
1256     enum AVAudioServiceType audio_service_type;
1257
1258     /**
1259      * desired sample format
1260      * - encoding: Not used.
1261      * - decoding: Set by user.
1262      * Decoder will decode to this format if it can.
1263      */
1264     enum AVSampleFormat request_sample_fmt;
1265
1266     /**
1267      * This callback is called at the beginning of each frame to get data
1268      * buffer(s) for it. There may be one contiguous buffer for all the data or
1269      * there may be a buffer per each data plane or anything in between. What
1270      * this means is, you may set however many entries in buf[] you feel necessary.
1271      * Each buffer must be reference-counted using the AVBuffer API (see description
1272      * of buf[] below).
1273      *
1274      * The following fields will be set in the frame before this callback is
1275      * called:
1276      * - format
1277      * - width, height (video only)
1278      * - sample_rate, channel_layout, nb_samples (audio only)
1279      * Their values may differ from the corresponding values in
1280      * AVCodecContext. This callback must use the frame values, not the codec
1281      * context values, to calculate the required buffer size.
1282      *
1283      * This callback must fill the following fields in the frame:
1284      * - data[]
1285      * - linesize[]
1286      * - extended_data:
1287      *   * if the data is planar audio with more than 8 channels, then this
1288      *     callback must allocate and fill extended_data to contain all pointers
1289      *     to all data planes. data[] must hold as many pointers as it can.
1290      *     extended_data must be allocated with av_malloc() and will be freed in
1291      *     av_frame_unref().
1292      *   * otherwise extended_data must point to data
1293      * - buf[] must contain one or more pointers to AVBufferRef structures. Each of
1294      *   the frame's data and extended_data pointers must be contained in these. That
1295      *   is, one AVBufferRef for each allocated chunk of memory, not necessarily one
1296      *   AVBufferRef per data[] entry. See: av_buffer_create(), av_buffer_alloc(),
1297      *   and av_buffer_ref().
1298      * - extended_buf and nb_extended_buf must be allocated with av_malloc() by
1299      *   this callback and filled with the extra buffers if there are more
1300      *   buffers than buf[] can hold. extended_buf will be freed in
1301      *   av_frame_unref().
1302      *
1303      * If AV_CODEC_CAP_DR1 is not set then get_buffer2() must call
1304      * avcodec_default_get_buffer2() instead of providing buffers allocated by
1305      * some other means.
1306      *
1307      * Each data plane must be aligned to the maximum required by the target
1308      * CPU.
1309      *
1310      * @see avcodec_default_get_buffer2()
1311      *
1312      * Video:
1313      *
1314      * If AV_GET_BUFFER_FLAG_REF is set in flags then the frame may be reused
1315      * (read and/or written to if it is writable) later by libavcodec.
1316      *
1317      * avcodec_align_dimensions2() should be used to find the required width and
1318      * height, as they normally need to be rounded up to the next multiple of 16.
1319      *
1320      * Some decoders do not support linesizes changing between frames.
1321      *
1322      * If frame multithreading is used, this callback may be called from a
1323      * different thread, but not from more than one at once. Does not need to be
1324      * reentrant.
1325      *
1326      * @see avcodec_align_dimensions2()
1327      *
1328      * Audio:
1329      *
1330      * Decoders request a buffer of a particular size by setting
1331      * AVFrame.nb_samples prior to calling get_buffer2(). The decoder may,
1332      * however, utilize only part of the buffer by setting AVFrame.nb_samples
1333      * to a smaller value in the output frame.
1334      *
1335      * As a convenience, av_samples_get_buffer_size() and
1336      * av_samples_fill_arrays() in libavutil may be used by custom get_buffer2()
1337      * functions to find the required data size and to fill data pointers and
1338      * linesize. In AVFrame.linesize, only linesize[0] may be set for audio
1339      * since all planes must be the same size.
1340      *
1341      * @see av_samples_get_buffer_size(), av_samples_fill_arrays()
1342      *
1343      * - encoding: unused
1344      * - decoding: Set by libavcodec, user can override.
1345      */
1346     int (*get_buffer2)(struct AVCodecContext *s, AVFrame *frame, int flags);
1347
1348 #if FF_API_OLD_ENCDEC
1349     /**
1350      * If non-zero, the decoded audio and video frames returned from
1351      * avcodec_decode_video2() and avcodec_decode_audio4() are reference-counted
1352      * and are valid indefinitely. The caller must free them with
1353      * av_frame_unref() when they are not needed anymore.
1354      * Otherwise, the decoded frames must not be freed by the caller and are
1355      * only valid until the next decode call.
1356      *
1357      * This is always automatically enabled if avcodec_receive_frame() is used.
1358      *
1359      * - encoding: unused
1360      * - decoding: set by the caller before avcodec_open2().
1361      */
1362     attribute_deprecated
1363     int refcounted_frames;
1364 #endif
1365
1366     /* - encoding parameters */
1367     float qcompress;  ///< amount of qscale change between easy & hard scenes (0.0-1.0)
1368     float qblur;      ///< amount of qscale smoothing over time (0.0-1.0)
1369
1370     /**
1371      * minimum quantizer
1372      * - encoding: Set by user.
1373      * - decoding: unused
1374      */
1375     int qmin;
1376
1377     /**
1378      * maximum quantizer
1379      * - encoding: Set by user.
1380      * - decoding: unused
1381      */
1382     int qmax;
1383
1384     /**
1385      * maximum quantizer difference between frames
1386      * - encoding: Set by user.
1387      * - decoding: unused
1388      */
1389     int max_qdiff;
1390
1391     /**
1392      * decoder bitstream buffer size
1393      * - encoding: Set by user.
1394      * - decoding: unused
1395      */
1396     int rc_buffer_size;
1397
1398     /**
1399      * ratecontrol override, see RcOverride
1400      * - encoding: Allocated/set/freed by user.
1401      * - decoding: unused
1402      */
1403     int rc_override_count;
1404     RcOverride *rc_override;
1405
1406     /**
1407      * maximum bitrate
1408      * - encoding: Set by user.
1409      * - decoding: Set by user, may be overwritten by libavcodec.
1410      */
1411     int64_t rc_max_rate;
1412
1413     /**
1414      * minimum bitrate
1415      * - encoding: Set by user.
1416      * - decoding: unused
1417      */
1418     int64_t rc_min_rate;
1419
1420     /**
1421      * Ratecontrol attempt to use, at maximum, <value> of what can be used without an underflow.
1422      * - encoding: Set by user.
1423      * - decoding: unused.
1424      */
1425     float rc_max_available_vbv_use;
1426
1427     /**
1428      * Ratecontrol attempt to use, at least, <value> times the amount needed to prevent a vbv overflow.
1429      * - encoding: Set by user.
1430      * - decoding: unused.
1431      */
1432     float rc_min_vbv_overflow_use;
1433
1434     /**
1435      * Number of bits which should be loaded into the rc buffer before decoding starts.
1436      * - encoding: Set by user.
1437      * - decoding: unused
1438      */
1439     int rc_initial_buffer_occupancy;
1440
1441 #if FF_API_CODER_TYPE
1442 #define FF_CODER_TYPE_VLC       0
1443 #define FF_CODER_TYPE_AC        1
1444 #define FF_CODER_TYPE_RAW       2
1445 #define FF_CODER_TYPE_RLE       3
1446     /**
1447      * @deprecated use encoder private options instead
1448      */
1449     attribute_deprecated
1450     int coder_type;
1451 #endif /* FF_API_CODER_TYPE */
1452
1453 #if FF_API_PRIVATE_OPT
1454     /** @deprecated use encoder private options instead */
1455     attribute_deprecated
1456     int context_model;
1457 #endif
1458
1459 #if FF_API_PRIVATE_OPT
1460     /** @deprecated use encoder private options instead */
1461     attribute_deprecated
1462     int frame_skip_threshold;
1463
1464     /** @deprecated use encoder private options instead */
1465     attribute_deprecated
1466     int frame_skip_factor;
1467
1468     /** @deprecated use encoder private options instead */
1469     attribute_deprecated
1470     int frame_skip_exp;
1471
1472     /** @deprecated use encoder private options instead */
1473     attribute_deprecated
1474     int frame_skip_cmp;
1475 #endif /* FF_API_PRIVATE_OPT */
1476
1477     /**
1478      * trellis RD quantization
1479      * - encoding: Set by user.
1480      * - decoding: unused
1481      */
1482     int trellis;
1483
1484 #if FF_API_PRIVATE_OPT
1485     /** @deprecated use encoder private options instead */
1486     attribute_deprecated
1487     int min_prediction_order;
1488
1489     /** @deprecated use encoder private options instead */
1490     attribute_deprecated
1491     int max_prediction_order;
1492
1493     /** @deprecated use encoder private options instead */
1494     attribute_deprecated
1495     int64_t timecode_frame_start;
1496 #endif
1497
1498 #if FF_API_RTP_CALLBACK
1499     /**
1500      * @deprecated unused
1501      */
1502     /* The RTP callback: This function is called    */
1503     /* every time the encoder has a packet to send. */
1504     /* It depends on the encoder if the data starts */
1505     /* with a Start Code (it should). H.263 does.   */
1506     /* mb_nb contains the number of macroblocks     */
1507     /* encoded in the RTP payload.                  */
1508     attribute_deprecated
1509     void (*rtp_callback)(struct AVCodecContext *avctx, void *data, int size, int mb_nb);
1510 #endif
1511
1512 #if FF_API_PRIVATE_OPT
1513     /** @deprecated use encoder private options instead */
1514     attribute_deprecated
1515     int rtp_payload_size;   /* The size of the RTP payload: the coder will  */
1516                             /* do its best to deliver a chunk with size     */
1517                             /* below rtp_payload_size, the chunk will start */
1518                             /* with a start code on some codecs like H.263. */
1519                             /* This doesn't take account of any particular  */
1520                             /* headers inside the transmitted RTP payload.  */
1521 #endif
1522
1523 #if FF_API_STAT_BITS
1524     /* statistics, used for 2-pass encoding */
1525     attribute_deprecated
1526     int mv_bits;
1527     attribute_deprecated
1528     int header_bits;
1529     attribute_deprecated
1530     int i_tex_bits;
1531     attribute_deprecated
1532     int p_tex_bits;
1533     attribute_deprecated
1534     int i_count;
1535     attribute_deprecated
1536     int p_count;
1537     attribute_deprecated
1538     int skip_count;
1539     attribute_deprecated
1540     int misc_bits;
1541
1542     /** @deprecated this field is unused */
1543     attribute_deprecated
1544     int frame_bits;
1545 #endif
1546
1547     /**
1548      * pass1 encoding statistics output buffer
1549      * - encoding: Set by libavcodec.
1550      * - decoding: unused
1551      */
1552     char *stats_out;
1553
1554     /**
1555      * pass2 encoding statistics input buffer
1556      * Concatenated stuff from stats_out of pass1 should be placed here.
1557      * - encoding: Allocated/set/freed by user.
1558      * - decoding: unused
1559      */
1560     char *stats_in;
1561
1562     /**
1563      * Work around bugs in encoders which sometimes cannot be detected automatically.
1564      * - encoding: Set by user
1565      * - decoding: Set by user
1566      */
1567     int workaround_bugs;
1568 #define FF_BUG_AUTODETECT       1  ///< autodetection
1569 #define FF_BUG_XVID_ILACE       4
1570 #define FF_BUG_UMP4             8
1571 #define FF_BUG_NO_PADDING       16
1572 #define FF_BUG_AMV              32
1573 #define FF_BUG_QPEL_CHROMA      64
1574 #define FF_BUG_STD_QPEL         128
1575 #define FF_BUG_QPEL_CHROMA2     256
1576 #define FF_BUG_DIRECT_BLOCKSIZE 512
1577 #define FF_BUG_EDGE             1024
1578 #define FF_BUG_HPEL_CHROMA      2048
1579 #define FF_BUG_DC_CLIP          4096
1580 #define FF_BUG_MS               8192 ///< Work around various bugs in Microsoft's broken decoders.
1581 #define FF_BUG_TRUNCATED       16384
1582 #define FF_BUG_IEDGE           32768
1583
1584     /**
1585      * strictly follow the standard (MPEG-4, ...).
1586      * - encoding: Set by user.
1587      * - decoding: Set by user.
1588      * Setting this to STRICT or higher means the encoder and decoder will
1589      * generally do stupid things, whereas setting it to unofficial or lower
1590      * will mean the encoder might produce output that is not supported by all
1591      * spec-compliant decoders. Decoders don't differentiate between normal,
1592      * unofficial and experimental (that is, they always try to decode things
1593      * when they can) unless they are explicitly asked to behave stupidly
1594      * (=strictly conform to the specs)
1595      */
1596     int strict_std_compliance;
1597 #define FF_COMPLIANCE_VERY_STRICT   2 ///< Strictly conform to an older more strict version of the spec or reference software.
1598 #define FF_COMPLIANCE_STRICT        1 ///< Strictly conform to all the things in the spec no matter what consequences.
1599 #define FF_COMPLIANCE_NORMAL        0
1600 #define FF_COMPLIANCE_UNOFFICIAL   -1 ///< Allow unofficial extensions
1601 #define FF_COMPLIANCE_EXPERIMENTAL -2 ///< Allow nonstandardized experimental things.
1602
1603     /**
1604      * error concealment flags
1605      * - encoding: unused
1606      * - decoding: Set by user.
1607      */
1608     int error_concealment;
1609 #define FF_EC_GUESS_MVS   1
1610 #define FF_EC_DEBLOCK     2
1611 #define FF_EC_FAVOR_INTER 256
1612
1613     /**
1614      * debug
1615      * - encoding: Set by user.
1616      * - decoding: Set by user.
1617      */
1618     int debug;
1619 #define FF_DEBUG_PICT_INFO   1
1620 #define FF_DEBUG_RC          2
1621 #define FF_DEBUG_BITSTREAM   4
1622 #define FF_DEBUG_MB_TYPE     8
1623 #define FF_DEBUG_QP          16
1624 #define FF_DEBUG_DCT_COEFF   0x00000040
1625 #define FF_DEBUG_SKIP        0x00000080
1626 #define FF_DEBUG_STARTCODE   0x00000100
1627 #define FF_DEBUG_ER          0x00000400
1628 #define FF_DEBUG_MMCO        0x00000800
1629 #define FF_DEBUG_BUGS        0x00001000
1630 #define FF_DEBUG_BUFFERS     0x00008000
1631 #define FF_DEBUG_THREADS     0x00010000
1632 #define FF_DEBUG_GREEN_MD    0x00800000
1633 #define FF_DEBUG_NOMC        0x01000000
1634
1635     /**
1636      * Error recognition; may misdetect some more or less valid parts as errors.
1637      * - encoding: unused
1638      * - decoding: Set by user.
1639      */
1640     int err_recognition;
1641
1642 /**
1643  * Verify checksums embedded in the bitstream (could be of either encoded or
1644  * decoded data, depending on the codec) and print an error message on mismatch.
1645  * If AV_EF_EXPLODE is also set, a mismatching checksum will result in the
1646  * decoder returning an error.
1647  */
1648 #define AV_EF_CRCCHECK  (1<<0)
1649 #define AV_EF_BITSTREAM (1<<1)          ///< detect bitstream specification deviations
1650 #define AV_EF_BUFFER    (1<<2)          ///< detect improper bitstream length
1651 #define AV_EF_EXPLODE   (1<<3)          ///< abort decoding on minor error detection
1652
1653 #define AV_EF_IGNORE_ERR (1<<15)        ///< ignore errors and continue
1654 #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
1655 #define AV_EF_COMPLIANT  (1<<17)        ///< consider all spec non compliances as errors
1656 #define AV_EF_AGGRESSIVE (1<<18)        ///< consider things that a sane encoder should not do as an error
1657
1658
1659     /**
1660      * opaque 64-bit number (generally a PTS) that will be reordered and
1661      * output in AVFrame.reordered_opaque
1662      * - encoding: Set by libavcodec to the reordered_opaque of the input
1663      *             frame corresponding to the last returned packet. Only
1664      *             supported by encoders with the
1665      *             AV_CODEC_CAP_ENCODER_REORDERED_OPAQUE capability.
1666      * - decoding: Set by user.
1667      */
1668     int64_t reordered_opaque;
1669
1670     /**
1671      * Hardware accelerator in use
1672      * - encoding: unused.
1673      * - decoding: Set by libavcodec
1674      */
1675     const struct AVHWAccel *hwaccel;
1676
1677     /**
1678      * Hardware accelerator context.
1679      * For some hardware accelerators, a global context needs to be
1680      * provided by the user. In that case, this holds display-dependent
1681      * data FFmpeg cannot instantiate itself. Please refer to the
1682      * FFmpeg HW accelerator documentation to know how to fill this
1683      * is. e.g. for VA API, this is a struct vaapi_context.
1684      * - encoding: unused
1685      * - decoding: Set by user
1686      */
1687     void *hwaccel_context;
1688
1689     /**
1690      * error
1691      * - encoding: Set by libavcodec if flags & AV_CODEC_FLAG_PSNR.
1692      * - decoding: unused
1693      */
1694     uint64_t error[AV_NUM_DATA_POINTERS];
1695
1696     /**
1697      * DCT algorithm, see FF_DCT_* below
1698      * - encoding: Set by user.
1699      * - decoding: unused
1700      */
1701     int dct_algo;
1702 #define FF_DCT_AUTO    0
1703 #define FF_DCT_FASTINT 1
1704 #define FF_DCT_INT     2
1705 #define FF_DCT_MMX     3
1706 #define FF_DCT_ALTIVEC 5
1707 #define FF_DCT_FAAN    6
1708
1709     /**
1710      * IDCT algorithm, see FF_IDCT_* below.
1711      * - encoding: Set by user.
1712      * - decoding: Set by user.
1713      */
1714     int idct_algo;
1715 #define FF_IDCT_AUTO          0
1716 #define FF_IDCT_INT           1
1717 #define FF_IDCT_SIMPLE        2
1718 #define FF_IDCT_SIMPLEMMX     3
1719 #define FF_IDCT_ARM           7
1720 #define FF_IDCT_ALTIVEC       8
1721 #define FF_IDCT_SIMPLEARM     10
1722 #define FF_IDCT_XVID          14
1723 #define FF_IDCT_SIMPLEARMV5TE 16
1724 #define FF_IDCT_SIMPLEARMV6   17
1725 #define FF_IDCT_FAAN          20
1726 #define FF_IDCT_SIMPLENEON    22
1727 #define FF_IDCT_NONE          24 /* Used by XvMC to extract IDCT coefficients with FF_IDCT_PERM_NONE */
1728 #define FF_IDCT_SIMPLEAUTO    128
1729
1730     /**
1731      * bits per sample/pixel from the demuxer (needed for huffyuv).
1732      * - encoding: Set by libavcodec.
1733      * - decoding: Set by user.
1734      */
1735      int bits_per_coded_sample;
1736
1737     /**
1738      * Bits per sample/pixel of internal libavcodec pixel/sample format.
1739      * - encoding: set by user.
1740      * - decoding: set by libavcodec.
1741      */
1742     int bits_per_raw_sample;
1743
1744 #if FF_API_LOWRES
1745     /**
1746      * low resolution decoding, 1-> 1/2 size, 2->1/4 size
1747      * - encoding: unused
1748      * - decoding: Set by user.
1749      */
1750      int lowres;
1751 #endif
1752
1753 #if FF_API_CODED_FRAME
1754     /**
1755      * the picture in the bitstream
1756      * - encoding: Set by libavcodec.
1757      * - decoding: unused
1758      *
1759      * @deprecated use the quality factor packet side data instead
1760      */
1761     attribute_deprecated AVFrame *coded_frame;
1762 #endif
1763
1764     /**
1765      * thread count
1766      * is used to decide how many independent tasks should be passed to execute()
1767      * - encoding: Set by user.
1768      * - decoding: Set by user.
1769      */
1770     int thread_count;
1771
1772     /**
1773      * Which multithreading methods to use.
1774      * Use of FF_THREAD_FRAME will increase decoding delay by one frame per thread,
1775      * so clients which cannot provide future frames should not use it.
1776      *
1777      * - encoding: Set by user, otherwise the default is used.
1778      * - decoding: Set by user, otherwise the default is used.
1779      */
1780     int thread_type;
1781 #define FF_THREAD_FRAME   1 ///< Decode more than one frame at once
1782 #define FF_THREAD_SLICE   2 ///< Decode more than one part of a single frame at once
1783
1784     /**
1785      * Which multithreading methods are in use by the codec.
1786      * - encoding: Set by libavcodec.
1787      * - decoding: Set by libavcodec.
1788      */
1789     int active_thread_type;
1790
1791 #if FF_API_THREAD_SAFE_CALLBACKS
1792     /**
1793      * Set by the client if its custom get_buffer() callback can be called
1794      * synchronously from another thread, which allows faster multithreaded decoding.
1795      * draw_horiz_band() will be called from other threads regardless of this setting.
1796      * Ignored if the default get_buffer() is used.
1797      * - encoding: Set by user.
1798      * - decoding: Set by user.
1799      *
1800      * @deprecated the custom get_buffer2() callback should always be
1801      *   thread-safe. Thread-unsafe get_buffer2() implementations will be
1802      *   invalid once this field is removed.
1803      */
1804     attribute_deprecated
1805     int thread_safe_callbacks;
1806 #endif
1807
1808     /**
1809      * The codec may call this to execute several independent things.
1810      * It will return only after finishing all tasks.
1811      * The user may replace this with some multithreaded implementation,
1812      * the default implementation will execute the parts serially.
1813      * @param count the number of things to execute
1814      * - encoding: Set by libavcodec, user can override.
1815      * - decoding: Set by libavcodec, user can override.
1816      */
1817     int (*execute)(struct AVCodecContext *c, int (*func)(struct AVCodecContext *c2, void *arg), void *arg2, int *ret, int count, int size);
1818
1819     /**
1820      * The codec may call this to execute several independent things.
1821      * It will return only after finishing all tasks.
1822      * The user may replace this with some multithreaded implementation,
1823      * the default implementation will execute the parts serially.
1824      * Also see avcodec_thread_init and e.g. the --enable-pthread configure option.
1825      * @param c context passed also to func
1826      * @param count the number of things to execute
1827      * @param arg2 argument passed unchanged to func
1828      * @param ret return values of executed functions, must have space for "count" values. May be NULL.
1829      * @param func function that will be called count times, with jobnr from 0 to count-1.
1830      *             threadnr will be in the range 0 to c->thread_count-1 < MAX_THREADS and so that no
1831      *             two instances of func executing at the same time will have the same threadnr.
1832      * @return always 0 currently, but code should handle a future improvement where when any call to func
1833      *         returns < 0 no further calls to func may be done and < 0 is returned.
1834      * - encoding: Set by libavcodec, user can override.
1835      * - decoding: Set by libavcodec, user can override.
1836      */
1837     int (*execute2)(struct AVCodecContext *c, int (*func)(struct AVCodecContext *c2, void *arg, int jobnr, int threadnr), void *arg2, int *ret, int count);
1838
1839     /**
1840      * noise vs. sse weight for the nsse comparison function
1841      * - encoding: Set by user.
1842      * - decoding: unused
1843      */
1844      int nsse_weight;
1845
1846     /**
1847      * profile
1848      * - encoding: Set by user.
1849      * - decoding: Set by libavcodec.
1850      */
1851      int profile;
1852 #define FF_PROFILE_UNKNOWN -99
1853 #define FF_PROFILE_RESERVED -100
1854
1855 #define FF_PROFILE_AAC_MAIN 0
1856 #define FF_PROFILE_AAC_LOW  1
1857 #define FF_PROFILE_AAC_SSR  2
1858 #define FF_PROFILE_AAC_LTP  3
1859 #define FF_PROFILE_AAC_HE   4
1860 #define FF_PROFILE_AAC_HE_V2 28
1861 #define FF_PROFILE_AAC_LD   22
1862 #define FF_PROFILE_AAC_ELD  38
1863 #define FF_PROFILE_MPEG2_AAC_LOW 128
1864 #define FF_PROFILE_MPEG2_AAC_HE  131
1865
1866 #define FF_PROFILE_DNXHD         0
1867 #define FF_PROFILE_DNXHR_LB      1
1868 #define FF_PROFILE_DNXHR_SQ      2
1869 #define FF_PROFILE_DNXHR_HQ      3
1870 #define FF_PROFILE_DNXHR_HQX     4
1871 #define FF_PROFILE_DNXHR_444     5
1872
1873 #define FF_PROFILE_DTS         20
1874 #define FF_PROFILE_DTS_ES      30
1875 #define FF_PROFILE_DTS_96_24   40
1876 #define FF_PROFILE_DTS_HD_HRA  50
1877 #define FF_PROFILE_DTS_HD_MA   60
1878 #define FF_PROFILE_DTS_EXPRESS 70
1879
1880 #define FF_PROFILE_MPEG2_422    0
1881 #define FF_PROFILE_MPEG2_HIGH   1
1882 #define FF_PROFILE_MPEG2_SS     2
1883 #define FF_PROFILE_MPEG2_SNR_SCALABLE  3
1884 #define FF_PROFILE_MPEG2_MAIN   4
1885 #define FF_PROFILE_MPEG2_SIMPLE 5
1886
1887 #define FF_PROFILE_H264_CONSTRAINED  (1<<9)  // 8+1; constraint_set1_flag
1888 #define FF_PROFILE_H264_INTRA        (1<<11) // 8+3; constraint_set3_flag
1889
1890 #define FF_PROFILE_H264_BASELINE             66
1891 #define FF_PROFILE_H264_CONSTRAINED_BASELINE (66|FF_PROFILE_H264_CONSTRAINED)
1892 #define FF_PROFILE_H264_MAIN                 77
1893 #define FF_PROFILE_H264_EXTENDED             88
1894 #define FF_PROFILE_H264_HIGH                 100
1895 #define FF_PROFILE_H264_HIGH_10              110
1896 #define FF_PROFILE_H264_HIGH_10_INTRA        (110|FF_PROFILE_H264_INTRA)
1897 #define FF_PROFILE_H264_MULTIVIEW_HIGH       118
1898 #define FF_PROFILE_H264_HIGH_422             122
1899 #define FF_PROFILE_H264_HIGH_422_INTRA       (122|FF_PROFILE_H264_INTRA)
1900 #define FF_PROFILE_H264_STEREO_HIGH          128
1901 #define FF_PROFILE_H264_HIGH_444             144
1902 #define FF_PROFILE_H264_HIGH_444_PREDICTIVE  244
1903 #define FF_PROFILE_H264_HIGH_444_INTRA       (244|FF_PROFILE_H264_INTRA)
1904 #define FF_PROFILE_H264_CAVLC_444            44
1905
1906 #define FF_PROFILE_VC1_SIMPLE   0
1907 #define FF_PROFILE_VC1_MAIN     1
1908 #define FF_PROFILE_VC1_COMPLEX  2
1909 #define FF_PROFILE_VC1_ADVANCED 3
1910
1911 #define FF_PROFILE_MPEG4_SIMPLE                     0
1912 #define FF_PROFILE_MPEG4_SIMPLE_SCALABLE            1
1913 #define FF_PROFILE_MPEG4_CORE                       2
1914 #define FF_PROFILE_MPEG4_MAIN                       3
1915 #define FF_PROFILE_MPEG4_N_BIT                      4
1916 #define FF_PROFILE_MPEG4_SCALABLE_TEXTURE           5
1917 #define FF_PROFILE_MPEG4_SIMPLE_FACE_ANIMATION      6
1918 #define FF_PROFILE_MPEG4_BASIC_ANIMATED_TEXTURE     7
1919 #define FF_PROFILE_MPEG4_HYBRID                     8
1920 #define FF_PROFILE_MPEG4_ADVANCED_REAL_TIME         9
1921 #define FF_PROFILE_MPEG4_CORE_SCALABLE             10
1922 #define FF_PROFILE_MPEG4_ADVANCED_CODING           11
1923 #define FF_PROFILE_MPEG4_ADVANCED_CORE             12
1924 #define FF_PROFILE_MPEG4_ADVANCED_SCALABLE_TEXTURE 13
1925 #define FF_PROFILE_MPEG4_SIMPLE_STUDIO             14
1926 #define FF_PROFILE_MPEG4_ADVANCED_SIMPLE           15
1927
1928 #define FF_PROFILE_JPEG2000_CSTREAM_RESTRICTION_0   1
1929 #define FF_PROFILE_JPEG2000_CSTREAM_RESTRICTION_1   2
1930 #define FF_PROFILE_JPEG2000_CSTREAM_NO_RESTRICTION  32768
1931 #define FF_PROFILE_JPEG2000_DCINEMA_2K              3
1932 #define FF_PROFILE_JPEG2000_DCINEMA_4K              4
1933
1934 #define FF_PROFILE_VP9_0                            0
1935 #define FF_PROFILE_VP9_1                            1
1936 #define FF_PROFILE_VP9_2                            2
1937 #define FF_PROFILE_VP9_3                            3
1938
1939 #define FF_PROFILE_HEVC_MAIN                        1
1940 #define FF_PROFILE_HEVC_MAIN_10                     2
1941 #define FF_PROFILE_HEVC_MAIN_STILL_PICTURE          3
1942 #define FF_PROFILE_HEVC_REXT                        4
1943
1944 #define FF_PROFILE_VVC_MAIN_10                      1
1945 #define FF_PROFILE_VVC_MAIN_10_444                 33
1946
1947 #define FF_PROFILE_AV1_MAIN                         0
1948 #define FF_PROFILE_AV1_HIGH                         1
1949 #define FF_PROFILE_AV1_PROFESSIONAL                 2
1950
1951 #define FF_PROFILE_MJPEG_HUFFMAN_BASELINE_DCT            0xc0
1952 #define FF_PROFILE_MJPEG_HUFFMAN_EXTENDED_SEQUENTIAL_DCT 0xc1
1953 #define FF_PROFILE_MJPEG_HUFFMAN_PROGRESSIVE_DCT         0xc2
1954 #define FF_PROFILE_MJPEG_HUFFMAN_LOSSLESS                0xc3
1955 #define FF_PROFILE_MJPEG_JPEG_LS                         0xf7
1956
1957 #define FF_PROFILE_SBC_MSBC                         1
1958
1959 #define FF_PROFILE_PRORES_PROXY     0
1960 #define FF_PROFILE_PRORES_LT        1
1961 #define FF_PROFILE_PRORES_STANDARD  2
1962 #define FF_PROFILE_PRORES_HQ        3
1963 #define FF_PROFILE_PRORES_4444      4
1964 #define FF_PROFILE_PRORES_XQ        5
1965
1966 #define FF_PROFILE_ARIB_PROFILE_A 0
1967 #define FF_PROFILE_ARIB_PROFILE_C 1
1968
1969 #define FF_PROFILE_KLVA_SYNC 0
1970 #define FF_PROFILE_KLVA_ASYNC 1
1971
1972     /**
1973      * level
1974      * - encoding: Set by user.
1975      * - decoding: Set by libavcodec.
1976      */
1977      int level;
1978 #define FF_LEVEL_UNKNOWN -99
1979
1980     /**
1981      * Skip loop filtering for selected frames.
1982      * - encoding: unused
1983      * - decoding: Set by user.
1984      */
1985     enum AVDiscard skip_loop_filter;
1986
1987     /**
1988      * Skip IDCT/dequantization for selected frames.
1989      * - encoding: unused
1990      * - decoding: Set by user.
1991      */
1992     enum AVDiscard skip_idct;
1993
1994     /**
1995      * Skip decoding for selected frames.
1996      * - encoding: unused
1997      * - decoding: Set by user.
1998      */
1999     enum AVDiscard skip_frame;
2000
2001     /**
2002      * Header containing style information for text subtitles.
2003      * For SUBTITLE_ASS subtitle type, it should contain the whole ASS
2004      * [Script Info] and [V4+ Styles] section, plus the [Events] line and
2005      * the Format line following. It shouldn't include any Dialogue line.
2006      * - encoding: Set/allocated/freed by user (before avcodec_open2())
2007      * - decoding: Set/allocated/freed by libavcodec (by avcodec_open2())
2008      */
2009     uint8_t *subtitle_header;
2010     int subtitle_header_size;
2011
2012 #if FF_API_VBV_DELAY
2013     /**
2014      * VBV delay coded in the last frame (in periods of a 27 MHz clock).
2015      * Used for compliant TS muxing.
2016      * - encoding: Set by libavcodec.
2017      * - decoding: unused.
2018      * @deprecated this value is now exported as a part of
2019      * AV_PKT_DATA_CPB_PROPERTIES packet side data
2020      */
2021     attribute_deprecated
2022     uint64_t vbv_delay;
2023 #endif
2024
2025 #if FF_API_SIDEDATA_ONLY_PKT
2026     /**
2027      * Encoding only and set by default. Allow encoders to output packets
2028      * that do not contain any encoded data, only side data.
2029      *
2030      * Some encoders need to output such packets, e.g. to update some stream
2031      * parameters at the end of encoding.
2032      *
2033      * @deprecated this field disables the default behaviour and
2034      *             it is kept only for compatibility.
2035      */
2036     attribute_deprecated
2037     int side_data_only_packets;
2038 #endif
2039
2040     /**
2041      * Audio only. The number of "priming" samples (padding) inserted by the
2042      * encoder at the beginning of the audio. I.e. this number of leading
2043      * decoded samples must be discarded by the caller to get the original audio
2044      * without leading padding.
2045      *
2046      * - decoding: unused
2047      * - encoding: Set by libavcodec. The timestamps on the output packets are
2048      *             adjusted by the encoder so that they always refer to the
2049      *             first sample of the data actually contained in the packet,
2050      *             including any added padding.  E.g. if the timebase is
2051      *             1/samplerate and the timestamp of the first input sample is
2052      *             0, the timestamp of the first output packet will be
2053      *             -initial_padding.
2054      */
2055     int initial_padding;
2056
2057     /**
2058      * - decoding: For codecs that store a framerate value in the compressed
2059      *             bitstream, the decoder may export it here. { 0, 1} when
2060      *             unknown.
2061      * - encoding: May be used to signal the framerate of CFR content to an
2062      *             encoder.
2063      */
2064     AVRational framerate;
2065
2066     /**
2067      * Nominal unaccelerated pixel format, see AV_PIX_FMT_xxx.
2068      * - encoding: unused.
2069      * - decoding: Set by libavcodec before calling get_format()
2070      */
2071     enum AVPixelFormat sw_pix_fmt;
2072
2073     /**
2074      * Timebase in which pkt_dts/pts and AVPacket.dts/pts are.
2075      * - encoding unused.
2076      * - decoding set by user.
2077      */
2078     AVRational pkt_timebase;
2079
2080     /**
2081      * AVCodecDescriptor
2082      * - encoding: unused.
2083      * - decoding: set by libavcodec.
2084      */
2085     const AVCodecDescriptor *codec_descriptor;
2086
2087 #if !FF_API_LOWRES
2088     /**
2089      * low resolution decoding, 1-> 1/2 size, 2->1/4 size
2090      * - encoding: unused
2091      * - decoding: Set by user.
2092      */
2093      int lowres;
2094 #endif
2095
2096     /**
2097      * Current statistics for PTS correction.
2098      * - decoding: maintained and used by libavcodec, not intended to be used by user apps
2099      * - encoding: unused
2100      */
2101     int64_t pts_correction_num_faulty_pts; /// Number of incorrect PTS values so far
2102     int64_t pts_correction_num_faulty_dts; /// Number of incorrect DTS values so far
2103     int64_t pts_correction_last_pts;       /// PTS of the last frame
2104     int64_t pts_correction_last_dts;       /// DTS of the last frame
2105
2106     /**
2107      * Character encoding of the input subtitles file.
2108      * - decoding: set by user
2109      * - encoding: unused
2110      */
2111     char *sub_charenc;
2112
2113     /**
2114      * Subtitles character encoding mode. Formats or codecs might be adjusting
2115      * this setting (if they are doing the conversion themselves for instance).
2116      * - decoding: set by libavcodec
2117      * - encoding: unused
2118      */
2119     int sub_charenc_mode;
2120 #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)
2121 #define FF_SUB_CHARENC_MODE_AUTOMATIC    0  ///< libavcodec will select the mode itself
2122 #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
2123 #define FF_SUB_CHARENC_MODE_IGNORE       2  ///< neither convert the subtitles, nor check them for valid UTF-8
2124
2125     /**
2126      * Skip processing alpha if supported by codec.
2127      * Note that if the format uses pre-multiplied alpha (common with VP6,
2128      * and recommended due to better video quality/compression)
2129      * the image will look as if alpha-blended onto a black background.
2130      * However for formats that do not use pre-multiplied alpha
2131      * there might be serious artefacts (though e.g. libswscale currently
2132      * assumes pre-multiplied alpha anyway).
2133      *
2134      * - decoding: set by user
2135      * - encoding: unused
2136      */
2137     int skip_alpha;
2138
2139     /**
2140      * Number of samples to skip after a discontinuity
2141      * - decoding: unused
2142      * - encoding: set by libavcodec
2143      */
2144     int seek_preroll;
2145
2146 #if FF_API_DEBUG_MV
2147     /**
2148      * @deprecated unused
2149      */
2150     attribute_deprecated
2151     int debug_mv;
2152 #define FF_DEBUG_VIS_MV_P_FOR  0x00000001 //visualize forward predicted MVs of P frames
2153 #define FF_DEBUG_VIS_MV_B_FOR  0x00000002 //visualize forward predicted MVs of B frames
2154 #define FF_DEBUG_VIS_MV_B_BACK 0x00000004 //visualize backward predicted MVs of B frames
2155 #endif
2156
2157     /**
2158      * custom intra quantization matrix
2159      * - encoding: Set by user, can be NULL.
2160      * - decoding: unused.
2161      */
2162     uint16_t *chroma_intra_matrix;
2163
2164     /**
2165      * dump format separator.
2166      * can be ", " or "\n      " or anything else
2167      * - encoding: Set by user.
2168      * - decoding: Set by user.
2169      */
2170     uint8_t *dump_separator;
2171
2172     /**
2173      * ',' separated list of allowed decoders.
2174      * If NULL then all are allowed
2175      * - encoding: unused
2176      * - decoding: set by user
2177      */
2178     char *codec_whitelist;
2179
2180     /**
2181      * Properties of the stream that gets decoded
2182      * - encoding: unused
2183      * - decoding: set by libavcodec
2184      */
2185     unsigned properties;
2186 #define FF_CODEC_PROPERTY_LOSSLESS        0x00000001
2187 #define FF_CODEC_PROPERTY_CLOSED_CAPTIONS 0x00000002
2188
2189     /**
2190      * Additional data associated with the entire coded stream.
2191      *
2192      * - decoding: unused
2193      * - encoding: may be set by libavcodec after avcodec_open2().
2194      */
2195     AVPacketSideData *coded_side_data;
2196     int            nb_coded_side_data;
2197
2198     /**
2199      * A reference to the AVHWFramesContext describing the input (for encoding)
2200      * or output (decoding) frames. The reference is set by the caller and
2201      * afterwards owned (and freed) by libavcodec - it should never be read by
2202      * the caller after being set.
2203      *
2204      * - decoding: This field should be set by the caller from the get_format()
2205      *             callback. The previous reference (if any) will always be
2206      *             unreffed by libavcodec before the get_format() call.
2207      *
2208      *             If the default get_buffer2() is used with a hwaccel pixel
2209      *             format, then this AVHWFramesContext will be used for
2210      *             allocating the frame buffers.
2211      *
2212      * - encoding: For hardware encoders configured to use a hwaccel pixel
2213      *             format, this field should be set by the caller to a reference
2214      *             to the AVHWFramesContext describing input frames.
2215      *             AVHWFramesContext.format must be equal to
2216      *             AVCodecContext.pix_fmt.
2217      *
2218      *             This field should be set before avcodec_open2() is called.
2219      */
2220     AVBufferRef *hw_frames_ctx;
2221
2222     /**
2223      * Control the form of AVSubtitle.rects[N]->ass
2224      * - decoding: set by user
2225      * - encoding: unused
2226      */
2227     int sub_text_format;
2228 #define FF_SUB_TEXT_FMT_ASS              0
2229 #if FF_API_ASS_TIMING
2230 #define FF_SUB_TEXT_FMT_ASS_WITH_TIMINGS 1
2231 #endif
2232
2233     /**
2234      * Audio only. The amount of padding (in samples) appended by the encoder to
2235      * the end of the audio. I.e. this number of decoded samples must be
2236      * discarded by the caller from the end of the stream to get the original
2237      * audio without any trailing padding.
2238      *
2239      * - decoding: unused
2240      * - encoding: unused
2241      */
2242     int trailing_padding;
2243
2244     /**
2245      * The number of pixels per image to maximally accept.
2246      *
2247      * - decoding: set by user
2248      * - encoding: set by user
2249      */
2250     int64_t max_pixels;
2251
2252     /**
2253      * A reference to the AVHWDeviceContext describing the device which will
2254      * be used by a hardware encoder/decoder.  The reference is set by the
2255      * caller and afterwards owned (and freed) by libavcodec.
2256      *
2257      * This should be used if either the codec device does not require
2258      * hardware frames or any that are used are to be allocated internally by
2259      * libavcodec.  If the user wishes to supply any of the frames used as
2260      * encoder input or decoder output then hw_frames_ctx should be used
2261      * instead.  When hw_frames_ctx is set in get_format() for a decoder, this
2262      * field will be ignored while decoding the associated stream segment, but
2263      * may again be used on a following one after another get_format() call.
2264      *
2265      * For both encoders and decoders this field should be set before
2266      * avcodec_open2() is called and must not be written to thereafter.
2267      *
2268      * Note that some decoders may require this field to be set initially in
2269      * order to support hw_frames_ctx at all - in that case, all frames
2270      * contexts used must be created on the same device.
2271      */
2272     AVBufferRef *hw_device_ctx;
2273
2274     /**
2275      * Bit set of AV_HWACCEL_FLAG_* flags, which affect hardware accelerated
2276      * decoding (if active).
2277      * - encoding: unused
2278      * - decoding: Set by user (either before avcodec_open2(), or in the
2279      *             AVCodecContext.get_format callback)
2280      */
2281     int hwaccel_flags;
2282
2283     /**
2284      * Video decoding only. Certain video codecs support cropping, meaning that
2285      * only a sub-rectangle of the decoded frame is intended for display.  This
2286      * option controls how cropping is handled by libavcodec.
2287      *
2288      * When set to 1 (the default), libavcodec will apply cropping internally.
2289      * I.e. it will modify the output frame width/height fields and offset the
2290      * data pointers (only by as much as possible while preserving alignment, or
2291      * by the full amount if the AV_CODEC_FLAG_UNALIGNED flag is set) so that
2292      * the frames output by the decoder refer only to the cropped area. The
2293      * crop_* fields of the output frames will be zero.
2294      *
2295      * When set to 0, the width/height fields of the output frames will be set
2296      * to the coded dimensions and the crop_* fields will describe the cropping
2297      * rectangle. Applying the cropping is left to the caller.
2298      *
2299      * @warning When hardware acceleration with opaque output frames is used,
2300      * libavcodec is unable to apply cropping from the top/left border.
2301      *
2302      * @note when this option is set to zero, the width/height fields of the
2303      * AVCodecContext and output AVFrames have different meanings. The codec
2304      * context fields store display dimensions (with the coded dimensions in
2305      * coded_width/height), while the frame fields store the coded dimensions
2306      * (with the display dimensions being determined by the crop_* fields).
2307      */
2308     int apply_cropping;
2309
2310     /*
2311      * Video decoding only.  Sets the number of extra hardware frames which
2312      * the decoder will allocate for use by the caller.  This must be set
2313      * before avcodec_open2() is called.
2314      *
2315      * Some hardware decoders require all frames that they will use for
2316      * output to be defined in advance before decoding starts.  For such
2317      * decoders, the hardware frame pool must therefore be of a fixed size.
2318      * The extra frames set here are on top of any number that the decoder
2319      * needs internally in order to operate normally (for example, frames
2320      * used as reference pictures).
2321      */
2322     int extra_hw_frames;
2323
2324     /**
2325      * The percentage of damaged samples to discard a frame.
2326      *
2327      * - decoding: set by user
2328      * - encoding: unused
2329      */
2330     int discard_damaged_percentage;
2331
2332     /**
2333      * The number of samples per frame to maximally accept.
2334      *
2335      * - decoding: set by user
2336      * - encoding: set by user
2337      */
2338     int64_t max_samples;
2339
2340     /**
2341      * Bit set of AV_CODEC_EXPORT_DATA_* flags, which affects the kind of
2342      * metadata exported in frame, packet, or coded stream side data by
2343      * decoders and encoders.
2344      *
2345      * - decoding: set by user
2346      * - encoding: set by user
2347      */
2348     int export_side_data;
2349 } AVCodecContext;
2350
2351 #if FF_API_CODEC_GET_SET
2352 /**
2353  * Accessors for some AVCodecContext fields. These used to be provided for ABI
2354  * compatibility, and do not need to be used anymore.
2355  */
2356 attribute_deprecated
2357 AVRational av_codec_get_pkt_timebase         (const AVCodecContext *avctx);
2358 attribute_deprecated
2359 void       av_codec_set_pkt_timebase         (AVCodecContext *avctx, AVRational val);
2360
2361 attribute_deprecated
2362 const AVCodecDescriptor *av_codec_get_codec_descriptor(const AVCodecContext *avctx);
2363 attribute_deprecated
2364 void                     av_codec_set_codec_descriptor(AVCodecContext *avctx, const AVCodecDescriptor *desc);
2365
2366 attribute_deprecated
2367 unsigned av_codec_get_codec_properties(const AVCodecContext *avctx);
2368
2369 #if FF_API_LOWRES
2370 attribute_deprecated
2371 int  av_codec_get_lowres(const AVCodecContext *avctx);
2372 attribute_deprecated
2373 void av_codec_set_lowres(AVCodecContext *avctx, int val);
2374 #endif
2375
2376 attribute_deprecated
2377 int  av_codec_get_seek_preroll(const AVCodecContext *avctx);
2378 attribute_deprecated
2379 void av_codec_set_seek_preroll(AVCodecContext *avctx, int val);
2380
2381 attribute_deprecated
2382 uint16_t *av_codec_get_chroma_intra_matrix(const AVCodecContext *avctx);
2383 attribute_deprecated
2384 void av_codec_set_chroma_intra_matrix(AVCodecContext *avctx, uint16_t *val);
2385 #endif
2386
2387 struct AVSubtitle;
2388
2389 #if FF_API_CODEC_GET_SET
2390 attribute_deprecated
2391 int av_codec_get_max_lowres(const AVCodec *codec);
2392 #endif
2393
2394 struct MpegEncContext;
2395
2396 /**
2397  * @defgroup lavc_hwaccel AVHWAccel
2398  *
2399  * @note  Nothing in this structure should be accessed by the user.  At some
2400  *        point in future it will not be externally visible at all.
2401  *
2402  * @{
2403  */
2404 typedef struct AVHWAccel {
2405     /**
2406      * Name of the hardware accelerated codec.
2407      * The name is globally unique among encoders and among decoders (but an
2408      * encoder and a decoder can share the same name).
2409      */
2410     const char *name;
2411
2412     /**
2413      * Type of codec implemented by the hardware accelerator.
2414      *
2415      * See AVMEDIA_TYPE_xxx
2416      */
2417     enum AVMediaType type;
2418
2419     /**
2420      * Codec implemented by the hardware accelerator.
2421      *
2422      * See AV_CODEC_ID_xxx
2423      */
2424     enum AVCodecID id;
2425
2426     /**
2427      * Supported pixel format.
2428      *
2429      * Only hardware accelerated formats are supported here.
2430      */
2431     enum AVPixelFormat pix_fmt;
2432
2433     /**
2434      * Hardware accelerated codec capabilities.
2435      * see AV_HWACCEL_CODEC_CAP_*
2436      */
2437     int capabilities;
2438
2439     /*****************************************************************
2440      * No fields below this line are part of the public API. They
2441      * may not be used outside of libavcodec and can be changed and
2442      * removed at will.
2443      * New public fields should be added right above.
2444      *****************************************************************
2445      */
2446
2447     /**
2448      * Allocate a custom buffer
2449      */
2450     int (*alloc_frame)(AVCodecContext *avctx, AVFrame *frame);
2451
2452     /**
2453      * Called at the beginning of each frame or field picture.
2454      *
2455      * Meaningful frame information (codec specific) is guaranteed to
2456      * be parsed at this point. This function is mandatory.
2457      *
2458      * Note that buf can be NULL along with buf_size set to 0.
2459      * Otherwise, this means the whole frame is available at this point.
2460      *
2461      * @param avctx the codec context
2462      * @param buf the frame data buffer base
2463      * @param buf_size the size of the frame in bytes
2464      * @return zero if successful, a negative value otherwise
2465      */
2466     int (*start_frame)(AVCodecContext *avctx, const uint8_t *buf, uint32_t buf_size);
2467
2468     /**
2469      * Callback for parameter data (SPS/PPS/VPS etc).
2470      *
2471      * Useful for hardware decoders which keep persistent state about the
2472      * video parameters, and need to receive any changes to update that state.
2473      *
2474      * @param avctx the codec context
2475      * @param type the nal unit type
2476      * @param buf the nal unit data buffer
2477      * @param buf_size the size of the nal unit in bytes
2478      * @return zero if successful, a negative value otherwise
2479      */
2480     int (*decode_params)(AVCodecContext *avctx, int type, const uint8_t *buf, uint32_t buf_size);
2481
2482     /**
2483      * Callback for each slice.
2484      *
2485      * Meaningful slice information (codec specific) is guaranteed to
2486      * be parsed at this point. This function is mandatory.
2487      * The only exception is XvMC, that works on MB level.
2488      *
2489      * @param avctx the codec context
2490      * @param buf the slice data buffer base
2491      * @param buf_size the size of the slice in bytes
2492      * @return zero if successful, a negative value otherwise
2493      */
2494     int (*decode_slice)(AVCodecContext *avctx, const uint8_t *buf, uint32_t buf_size);
2495
2496     /**
2497      * Called at the end of each frame or field picture.
2498      *
2499      * The whole picture is parsed at this point and can now be sent
2500      * to the hardware accelerator. This function is mandatory.
2501      *
2502      * @param avctx the codec context
2503      * @return zero if successful, a negative value otherwise
2504      */
2505     int (*end_frame)(AVCodecContext *avctx);
2506
2507     /**
2508      * Size of per-frame hardware accelerator private data.
2509      *
2510      * Private data is allocated with av_mallocz() before
2511      * AVCodecContext.get_buffer() and deallocated after
2512      * AVCodecContext.release_buffer().
2513      */
2514     int frame_priv_data_size;
2515
2516     /**
2517      * Called for every Macroblock in a slice.
2518      *
2519      * XvMC uses it to replace the ff_mpv_reconstruct_mb().
2520      * Instead of decoding to raw picture, MB parameters are
2521      * stored in an array provided by the video driver.
2522      *
2523      * @param s the mpeg context
2524      */
2525     void (*decode_mb)(struct MpegEncContext *s);
2526
2527     /**
2528      * Initialize the hwaccel private data.
2529      *
2530      * This will be called from ff_get_format(), after hwaccel and
2531      * hwaccel_context are set and the hwaccel private data in AVCodecInternal
2532      * is allocated.
2533      */
2534     int (*init)(AVCodecContext *avctx);
2535
2536     /**
2537      * Uninitialize the hwaccel private data.
2538      *
2539      * This will be called from get_format() or avcodec_close(), after hwaccel
2540      * and hwaccel_context are already uninitialized.
2541      */
2542     int (*uninit)(AVCodecContext *avctx);
2543
2544     /**
2545      * Size of the private data to allocate in
2546      * AVCodecInternal.hwaccel_priv_data.
2547      */
2548     int priv_data_size;
2549
2550     /**
2551      * Internal hwaccel capabilities.
2552      */
2553     int caps_internal;
2554
2555     /**
2556      * Fill the given hw_frames context with current codec parameters. Called
2557      * from get_format. Refer to avcodec_get_hw_frames_parameters() for
2558      * details.
2559      *
2560      * This CAN be called before AVHWAccel.init is called, and you must assume
2561      * that avctx->hwaccel_priv_data is invalid.
2562      */
2563     int (*frame_params)(AVCodecContext *avctx, AVBufferRef *hw_frames_ctx);
2564 } AVHWAccel;
2565
2566 /**
2567  * HWAccel is experimental and is thus avoided in favor of non experimental
2568  * codecs
2569  */
2570 #define AV_HWACCEL_CODEC_CAP_EXPERIMENTAL 0x0200
2571
2572 /**
2573  * Hardware acceleration should be used for decoding even if the codec level
2574  * used is unknown or higher than the maximum supported level reported by the
2575  * hardware driver.
2576  *
2577  * It's generally a good idea to pass this flag unless you have a specific
2578  * reason not to, as hardware tends to under-report supported levels.
2579  */
2580 #define AV_HWACCEL_FLAG_IGNORE_LEVEL (1 << 0)
2581
2582 /**
2583  * Hardware acceleration can output YUV pixel formats with a different chroma
2584  * sampling than 4:2:0 and/or other than 8 bits per component.
2585  */
2586 #define AV_HWACCEL_FLAG_ALLOW_HIGH_DEPTH (1 << 1)
2587
2588 /**
2589  * Hardware acceleration should still be attempted for decoding when the
2590  * codec profile does not match the reported capabilities of the hardware.
2591  *
2592  * For example, this can be used to try to decode baseline profile H.264
2593  * streams in hardware - it will often succeed, because many streams marked
2594  * as baseline profile actually conform to constrained baseline profile.
2595  *
2596  * @warning If the stream is actually not supported then the behaviour is
2597  *          undefined, and may include returning entirely incorrect output
2598  *          while indicating success.
2599  */
2600 #define AV_HWACCEL_FLAG_ALLOW_PROFILE_MISMATCH (1 << 2)
2601
2602 /**
2603  * @}
2604  */
2605
2606 #if FF_API_AVPICTURE
2607 /**
2608  * @defgroup lavc_picture AVPicture
2609  *
2610  * Functions for working with AVPicture
2611  * @{
2612  */
2613
2614 /**
2615  * Picture data structure.
2616  *
2617  * Up to four components can be stored into it, the last component is
2618  * alpha.
2619  * @deprecated use AVFrame or imgutils functions instead
2620  */
2621 typedef struct AVPicture {
2622     attribute_deprecated
2623     uint8_t *data[AV_NUM_DATA_POINTERS];    ///< pointers to the image data planes
2624     attribute_deprecated
2625     int linesize[AV_NUM_DATA_POINTERS];     ///< number of bytes per line
2626 } AVPicture;
2627
2628 /**
2629  * @}
2630  */
2631 #endif
2632
2633 enum AVSubtitleType {
2634     SUBTITLE_NONE,
2635
2636     SUBTITLE_BITMAP,                ///< A bitmap, pict will be set
2637
2638     /**
2639      * Plain text, the text field must be set by the decoder and is
2640      * authoritative. ass and pict fields may contain approximations.
2641      */
2642     SUBTITLE_TEXT,
2643
2644     /**
2645      * Formatted text, the ass field must be set by the decoder and is
2646      * authoritative. pict and text fields may contain approximations.
2647      */
2648     SUBTITLE_ASS,
2649 };
2650
2651 #define AV_SUBTITLE_FLAG_FORCED 0x00000001
2652
2653 typedef struct AVSubtitleRect {
2654     int x;         ///< top left corner  of pict, undefined when pict is not set
2655     int y;         ///< top left corner  of pict, undefined when pict is not set
2656     int w;         ///< width            of pict, undefined when pict is not set
2657     int h;         ///< height           of pict, undefined when pict is not set
2658     int nb_colors; ///< number of colors in pict, undefined when pict is not set
2659
2660 #if FF_API_AVPICTURE
2661     /**
2662      * @deprecated unused
2663      */
2664     attribute_deprecated
2665     AVPicture pict;
2666 #endif
2667     /**
2668      * data+linesize for the bitmap of this subtitle.
2669      * Can be set for text/ass as well once they are rendered.
2670      */
2671     uint8_t *data[4];
2672     int linesize[4];
2673
2674     enum AVSubtitleType type;
2675
2676     char *text;                     ///< 0 terminated plain UTF-8 text
2677
2678     /**
2679      * 0 terminated ASS/SSA compatible event line.
2680      * The presentation of this is unaffected by the other values in this
2681      * struct.
2682      */
2683     char *ass;
2684
2685     int flags;
2686 } AVSubtitleRect;
2687
2688 typedef struct AVSubtitle {
2689     uint16_t format; /* 0 = graphics */
2690     uint32_t start_display_time; /* relative to packet pts, in ms */
2691     uint32_t end_display_time; /* relative to packet pts, in ms */
2692     unsigned num_rects;
2693     AVSubtitleRect **rects;
2694     int64_t pts;    ///< Same as packet pts, in AV_TIME_BASE
2695 } AVSubtitle;
2696
2697 #if FF_API_NEXT
2698 /**
2699  * If c is NULL, returns the first registered codec,
2700  * if c is non-NULL, returns the next registered codec after c,
2701  * or NULL if c is the last one.
2702  */
2703 attribute_deprecated
2704 AVCodec *av_codec_next(const AVCodec *c);
2705 #endif
2706
2707 /**
2708  * Return the LIBAVCODEC_VERSION_INT constant.
2709  */
2710 unsigned avcodec_version(void);
2711
2712 /**
2713  * Return the libavcodec build-time configuration.
2714  */
2715 const char *avcodec_configuration(void);
2716
2717 /**
2718  * Return the libavcodec license.
2719  */
2720 const char *avcodec_license(void);
2721
2722 #if FF_API_NEXT
2723 /**
2724  * Register the codec codec and initialize libavcodec.
2725  *
2726  * @warning either this function or avcodec_register_all() must be called
2727  * before any other libavcodec functions.
2728  *
2729  * @see avcodec_register_all()
2730  */
2731 attribute_deprecated
2732 void avcodec_register(AVCodec *codec);
2733
2734 /**
2735  * Register all the codecs, parsers and bitstream filters which were enabled at
2736  * configuration time. If you do not call this function you can select exactly
2737  * which formats you want to support, by using the individual registration
2738  * functions.
2739  *
2740  * @see avcodec_register
2741  * @see av_register_codec_parser
2742  * @see av_register_bitstream_filter
2743  */
2744 attribute_deprecated
2745 void avcodec_register_all(void);
2746 #endif
2747
2748 /**
2749  * Allocate an AVCodecContext and set its fields to default values. The
2750  * resulting struct should be freed with avcodec_free_context().
2751  *
2752  * @param codec if non-NULL, allocate private data and initialize defaults
2753  *              for the given codec. It is illegal to then call avcodec_open2()
2754  *              with a different codec.
2755  *              If NULL, then the codec-specific defaults won't be initialized,
2756  *              which may result in suboptimal default settings (this is
2757  *              important mainly for encoders, e.g. libx264).
2758  *
2759  * @return An AVCodecContext filled with default values or NULL on failure.
2760  */
2761 AVCodecContext *avcodec_alloc_context3(const AVCodec *codec);
2762
2763 /**
2764  * Free the codec context and everything associated with it and write NULL to
2765  * the provided pointer.
2766  */
2767 void avcodec_free_context(AVCodecContext **avctx);
2768
2769 #if FF_API_GET_CONTEXT_DEFAULTS
2770 /**
2771  * @deprecated This function should not be used, as closing and opening a codec
2772  * context multiple time is not supported. A new codec context should be
2773  * allocated for each new use.
2774  */
2775 int avcodec_get_context_defaults3(AVCodecContext *s, const AVCodec *codec);
2776 #endif
2777
2778 /**
2779  * Get the AVClass for AVCodecContext. It can be used in combination with
2780  * AV_OPT_SEARCH_FAKE_OBJ for examining options.
2781  *
2782  * @see av_opt_find().
2783  */
2784 const AVClass *avcodec_get_class(void);
2785
2786 #if FF_API_COPY_CONTEXT
2787 /**
2788  * Get the AVClass for AVFrame. It can be used in combination with
2789  * AV_OPT_SEARCH_FAKE_OBJ for examining options.
2790  *
2791  * @see av_opt_find().
2792  */
2793 const AVClass *avcodec_get_frame_class(void);
2794
2795 /**
2796  * Get the AVClass for AVSubtitleRect. It can be used in combination with
2797  * AV_OPT_SEARCH_FAKE_OBJ for examining options.
2798  *
2799  * @see av_opt_find().
2800  */
2801 const AVClass *avcodec_get_subtitle_rect_class(void);
2802
2803 /**
2804  * Copy the settings of the source AVCodecContext into the destination
2805  * AVCodecContext. The resulting destination codec context will be
2806  * unopened, i.e. you are required to call avcodec_open2() before you
2807  * can use this AVCodecContext to decode/encode video/audio data.
2808  *
2809  * @param dest target codec context, should be initialized with
2810  *             avcodec_alloc_context3(NULL), but otherwise uninitialized
2811  * @param src source codec context
2812  * @return AVERROR() on error (e.g. memory allocation error), 0 on success
2813  *
2814  * @deprecated The semantics of this function are ill-defined and it should not
2815  * be used. If you need to transfer the stream parameters from one codec context
2816  * to another, use an intermediate AVCodecParameters instance and the
2817  * avcodec_parameters_from_context() / avcodec_parameters_to_context()
2818  * functions.
2819  */
2820 attribute_deprecated
2821 int avcodec_copy_context(AVCodecContext *dest, const AVCodecContext *src);
2822 #endif
2823
2824 /**
2825  * Fill the parameters struct based on the values from the supplied codec
2826  * context. Any allocated fields in par are freed and replaced with duplicates
2827  * of the corresponding fields in codec.
2828  *
2829  * @return >= 0 on success, a negative AVERROR code on failure
2830  */
2831 int avcodec_parameters_from_context(AVCodecParameters *par,
2832                                     const AVCodecContext *codec);
2833
2834 /**
2835  * Fill the codec context based on the values from the supplied codec
2836  * parameters. Any allocated fields in codec that have a corresponding field in
2837  * par are freed and replaced with duplicates of the corresponding field in par.
2838  * Fields in codec that do not have a counterpart in par are not touched.
2839  *
2840  * @return >= 0 on success, a negative AVERROR code on failure.
2841  */
2842 int avcodec_parameters_to_context(AVCodecContext *codec,
2843                                   const AVCodecParameters *par);
2844
2845 /**
2846  * Initialize the AVCodecContext to use the given AVCodec. Prior to using this
2847  * function the context has to be allocated with avcodec_alloc_context3().
2848  *
2849  * The functions avcodec_find_decoder_by_name(), avcodec_find_encoder_by_name(),
2850  * avcodec_find_decoder() and avcodec_find_encoder() provide an easy way for
2851  * retrieving a codec.
2852  *
2853  * @warning This function is not thread safe!
2854  *
2855  * @note Always call this function before using decoding routines (such as
2856  * @ref avcodec_receive_frame()).
2857  *
2858  * @code
2859  * avcodec_register_all();
2860  * av_dict_set(&opts, "b", "2.5M", 0);
2861  * codec = avcodec_find_decoder(AV_CODEC_ID_H264);
2862  * if (!codec)
2863  *     exit(1);
2864  *
2865  * context = avcodec_alloc_context3(codec);
2866  *
2867  * if (avcodec_open2(context, codec, opts) < 0)
2868  *     exit(1);
2869  * @endcode
2870  *
2871  * @param avctx The context to initialize.
2872  * @param codec The codec to open this context for. If a non-NULL codec has been
2873  *              previously passed to avcodec_alloc_context3() or
2874  *              for this context, then this parameter MUST be either NULL or
2875  *              equal to the previously passed codec.
2876  * @param options A dictionary filled with AVCodecContext and codec-private options.
2877  *                On return this object will be filled with options that were not found.
2878  *
2879  * @return zero on success, a negative value on error
2880  * @see avcodec_alloc_context3(), avcodec_find_decoder(), avcodec_find_encoder(),
2881  *      av_dict_set(), av_opt_find().
2882  */
2883 int avcodec_open2(AVCodecContext *avctx, const AVCodec *codec, AVDictionary **options);
2884
2885 /**
2886  * Close a given AVCodecContext and free all the data associated with it
2887  * (but not the AVCodecContext itself).
2888  *
2889  * Calling this function on an AVCodecContext that hasn't been opened will free
2890  * the codec-specific data allocated in avcodec_alloc_context3() with a non-NULL
2891  * codec. Subsequent calls will do nothing.
2892  *
2893  * @note Do not use this function. Use avcodec_free_context() to destroy a
2894  * codec context (either open or closed). Opening and closing a codec context
2895  * multiple times is not supported anymore -- use multiple codec contexts
2896  * instead.
2897  */
2898 int avcodec_close(AVCodecContext *avctx);
2899
2900 /**
2901  * Free all allocated data in the given subtitle struct.
2902  *
2903  * @param sub AVSubtitle to free.
2904  */
2905 void avsubtitle_free(AVSubtitle *sub);
2906
2907 /**
2908  * @}
2909  */
2910
2911 /**
2912  * @addtogroup lavc_decoding
2913  * @{
2914  */
2915
2916 /**
2917  * The default callback for AVCodecContext.get_buffer2(). It is made public so
2918  * it can be called by custom get_buffer2() implementations for decoders without
2919  * AV_CODEC_CAP_DR1 set.
2920  */
2921 int avcodec_default_get_buffer2(AVCodecContext *s, AVFrame *frame, int flags);
2922
2923 /**
2924  * Modify width and height values so that they will result in a memory
2925  * buffer that is acceptable for the codec if you do not use any horizontal
2926  * padding.
2927  *
2928  * May only be used if a codec with AV_CODEC_CAP_DR1 has been opened.
2929  */
2930 void avcodec_align_dimensions(AVCodecContext *s, int *width, int *height);
2931
2932 /**
2933  * Modify width and height values so that they will result in a memory
2934  * buffer that is acceptable for the codec if you also ensure that all
2935  * line sizes are a multiple of the respective linesize_align[i].
2936  *
2937  * May only be used if a codec with AV_CODEC_CAP_DR1 has been opened.
2938  */
2939 void avcodec_align_dimensions2(AVCodecContext *s, int *width, int *height,
2940                                int linesize_align[AV_NUM_DATA_POINTERS]);
2941
2942 /**
2943  * Converts AVChromaLocation to swscale x/y chroma position.
2944  *
2945  * The positions represent the chroma (0,0) position in a coordinates system
2946  * with luma (0,0) representing the origin and luma(1,1) representing 256,256
2947  *
2948  * @param xpos  horizontal chroma sample position
2949  * @param ypos  vertical   chroma sample position
2950  */
2951 int avcodec_enum_to_chroma_pos(int *xpos, int *ypos, enum AVChromaLocation pos);
2952
2953 /**
2954  * Converts swscale x/y chroma position to AVChromaLocation.
2955  *
2956  * The positions represent the chroma (0,0) position in a coordinates system
2957  * with luma (0,0) representing the origin and luma(1,1) representing 256,256
2958  *
2959  * @param xpos  horizontal chroma sample position
2960  * @param ypos  vertical   chroma sample position
2961  */
2962 enum AVChromaLocation avcodec_chroma_pos_to_enum(int xpos, int ypos);
2963
2964 #if FF_API_OLD_ENCDEC
2965 /**
2966  * Decode the audio frame of size avpkt->size from avpkt->data into frame.
2967  *
2968  * Some decoders may support multiple frames in a single AVPacket. Such
2969  * decoders would then just decode the first frame and the return value would be
2970  * less than the packet size. In this case, avcodec_decode_audio4 has to be
2971  * called again with an AVPacket containing the remaining data in order to
2972  * decode the second frame, etc...  Even if no frames are returned, the packet
2973  * needs to be fed to the decoder with remaining data until it is completely
2974  * consumed or an error occurs.
2975  *
2976  * Some decoders (those marked with AV_CODEC_CAP_DELAY) have a delay between input
2977  * and output. This means that for some packets they will not immediately
2978  * produce decoded output and need to be flushed at the end of decoding to get
2979  * all the decoded data. Flushing is done by calling this function with packets
2980  * with avpkt->data set to NULL and avpkt->size set to 0 until it stops
2981  * returning samples. It is safe to flush even those decoders that are not
2982  * marked with AV_CODEC_CAP_DELAY, then no samples will be returned.
2983  *
2984  * @warning The input buffer, avpkt->data must be AV_INPUT_BUFFER_PADDING_SIZE
2985  *          larger than the actual read bytes because some optimized bitstream
2986  *          readers read 32 or 64 bits at once and could read over the end.
2987  *
2988  * @note The AVCodecContext MUST have been opened with @ref avcodec_open2()
2989  * before packets may be fed to the decoder.
2990  *
2991  * @param      avctx the codec context
2992  * @param[out] frame The AVFrame in which to store decoded audio samples.
2993  *                   The decoder will allocate a buffer for the decoded frame by
2994  *                   calling the AVCodecContext.get_buffer2() callback.
2995  *                   When AVCodecContext.refcounted_frames is set to 1, the frame is
2996  *                   reference counted and the returned reference belongs to the
2997  *                   caller. The caller must release the frame using av_frame_unref()
2998  *                   when the frame is no longer needed. The caller may safely write
2999  *                   to the frame if av_frame_is_writable() returns 1.
3000  *                   When AVCodecContext.refcounted_frames is set to 0, the returned
3001  *                   reference belongs to the decoder and is valid only until the
3002  *                   next call to this function or until closing or flushing the
3003  *                   decoder. The caller may not write to it.
3004  * @param[out] got_frame_ptr Zero if no frame could be decoded, otherwise it is
3005  *                           non-zero. Note that this field being set to zero
3006  *                           does not mean that an error has occurred. For
3007  *                           decoders with AV_CODEC_CAP_DELAY set, no given decode
3008  *                           call is guaranteed to produce a frame.
3009  * @param[in]  avpkt The input AVPacket containing the input buffer.
3010  *                   At least avpkt->data and avpkt->size should be set. Some
3011  *                   decoders might also require additional fields to be set.
3012  * @return A negative error code is returned if an error occurred during
3013  *         decoding, otherwise the number of bytes consumed from the input
3014  *         AVPacket is returned.
3015  *
3016 * @deprecated Use avcodec_send_packet() and avcodec_receive_frame().
3017  */
3018 attribute_deprecated
3019 int avcodec_decode_audio4(AVCodecContext *avctx, AVFrame *frame,
3020                           int *got_frame_ptr, const AVPacket *avpkt);
3021
3022 /**
3023  * Decode the video frame of size avpkt->size from avpkt->data into picture.
3024  * Some decoders may support multiple frames in a single AVPacket, such
3025  * decoders would then just decode the first frame.
3026  *
3027  * @warning The input buffer must be AV_INPUT_BUFFER_PADDING_SIZE larger than
3028  * the actual read bytes because some optimized bitstream readers read 32 or 64
3029  * bits at once and could read over the end.
3030  *
3031  * @warning The end of the input buffer buf should be set to 0 to ensure that
3032  * no overreading happens for damaged MPEG streams.
3033  *
3034  * @note Codecs which have the AV_CODEC_CAP_DELAY capability set have a delay
3035  * between input and output, these need to be fed with avpkt->data=NULL,
3036  * avpkt->size=0 at the end to return the remaining frames.
3037  *
3038  * @note The AVCodecContext MUST have been opened with @ref avcodec_open2()
3039  * before packets may be fed to the decoder.
3040  *
3041  * @param avctx the codec context
3042  * @param[out] picture The AVFrame in which the decoded video frame will be stored.
3043  *             Use av_frame_alloc() to get an AVFrame. The codec will
3044  *             allocate memory for the actual bitmap by calling the
3045  *             AVCodecContext.get_buffer2() callback.
3046  *             When AVCodecContext.refcounted_frames is set to 1, the frame is
3047  *             reference counted and the returned reference belongs to the
3048  *             caller. The caller must release the frame using av_frame_unref()
3049  *             when the frame is no longer needed. The caller may safely write
3050  *             to the frame if av_frame_is_writable() returns 1.
3051  *             When AVCodecContext.refcounted_frames is set to 0, the returned
3052  *             reference belongs to the decoder and is valid only until the
3053  *             next call to this function or until closing or flushing the
3054  *             decoder. The caller may not write to it.
3055  *
3056  * @param[in] avpkt The input AVPacket containing the input buffer.
3057  *            You can create such packet with av_init_packet() and by then setting
3058  *            data and size, some decoders might in addition need other fields like
3059  *            flags&AV_PKT_FLAG_KEY. All decoders are designed to use the least
3060  *            fields possible.
3061  * @param[in,out] got_picture_ptr Zero if no frame could be decompressed, otherwise, it is nonzero.
3062  * @return On error a negative value is returned, otherwise the number of bytes
3063  * used or zero if no frame could be decompressed.
3064  *
3065  * @deprecated Use avcodec_send_packet() and avcodec_receive_frame().
3066  */
3067 attribute_deprecated
3068 int avcodec_decode_video2(AVCodecContext *avctx, AVFrame *picture,
3069                          int *got_picture_ptr,
3070                          const AVPacket *avpkt);
3071 #endif
3072
3073 /**
3074  * Decode a subtitle message.
3075  * Return a negative value on error, otherwise return the number of bytes used.
3076  * If no subtitle could be decompressed, got_sub_ptr is zero.
3077  * Otherwise, the subtitle is stored in *sub.
3078  * Note that AV_CODEC_CAP_DR1 is not available for subtitle codecs. This is for
3079  * simplicity, because the performance difference is expected to be negligible
3080  * and reusing a get_buffer written for video codecs would probably perform badly
3081  * due to a potentially very different allocation pattern.
3082  *
3083  * Some decoders (those marked with AV_CODEC_CAP_DELAY) have a delay between input
3084  * and output. This means that for some packets they will not immediately
3085  * produce decoded output and need to be flushed at the end of decoding to get
3086  * all the decoded data. Flushing is done by calling this function with packets
3087  * with avpkt->data set to NULL and avpkt->size set to 0 until it stops
3088  * returning subtitles. It is safe to flush even those decoders that are not
3089  * marked with AV_CODEC_CAP_DELAY, then no subtitles will be returned.
3090  *
3091  * @note The AVCodecContext MUST have been opened with @ref avcodec_open2()
3092  * before packets may be fed to the decoder.
3093  *
3094  * @param avctx the codec context
3095  * @param[out] sub The preallocated AVSubtitle in which the decoded subtitle will be stored,
3096  *                 must be freed with avsubtitle_free if *got_sub_ptr is set.
3097  * @param[in,out] got_sub_ptr Zero if no subtitle could be decompressed, otherwise, it is nonzero.
3098  * @param[in] avpkt The input AVPacket containing the input buffer.
3099  */
3100 int avcodec_decode_subtitle2(AVCodecContext *avctx, AVSubtitle *sub,
3101                             int *got_sub_ptr,
3102                             AVPacket *avpkt);
3103
3104 /**
3105  * Supply raw packet data as input to a decoder.
3106  *
3107  * Internally, this call will copy relevant AVCodecContext fields, which can
3108  * influence decoding per-packet, and apply them when the packet is actually
3109  * decoded. (For example AVCodecContext.skip_frame, which might direct the
3110  * decoder to drop the frame contained by the packet sent with this function.)
3111  *
3112  * @warning The input buffer, avpkt->data must be AV_INPUT_BUFFER_PADDING_SIZE
3113  *          larger than the actual read bytes because some optimized bitstream
3114  *          readers read 32 or 64 bits at once and could read over the end.
3115  *
3116  * @warning Do not mix this API with the legacy API (like avcodec_decode_video2())
3117  *          on the same AVCodecContext. It will return unexpected results now
3118  *          or in future libavcodec versions.
3119  *
3120  * @note The AVCodecContext MUST have been opened with @ref avcodec_open2()
3121  *       before packets may be fed to the decoder.
3122  *
3123  * @param avctx codec context
3124  * @param[in] avpkt The input AVPacket. Usually, this will be a single video
3125  *                  frame, or several complete audio frames.
3126  *                  Ownership of the packet remains with the caller, and the
3127  *                  decoder will not write to the packet. The decoder may create
3128  *                  a reference to the packet data (or copy it if the packet is
3129  *                  not reference-counted).
3130  *                  Unlike with older APIs, the packet is always fully consumed,
3131  *                  and if it contains multiple frames (e.g. some audio codecs),
3132  *                  will require you to call avcodec_receive_frame() multiple
3133  *                  times afterwards before you can send a new packet.
3134  *                  It can be NULL (or an AVPacket with data set to NULL and
3135  *                  size set to 0); in this case, it is considered a flush
3136  *                  packet, which signals the end of the stream. Sending the
3137  *                  first flush packet will return success. Subsequent ones are
3138  *                  unnecessary and will return AVERROR_EOF. If the decoder
3139  *                  still has frames buffered, it will return them after sending
3140  *                  a flush packet.
3141  *
3142  * @return 0 on success, otherwise negative error code:
3143  *      AVERROR(EAGAIN):   input is not accepted in the current state - user
3144  *                         must read output with avcodec_receive_frame() (once
3145  *                         all output is read, the packet should be resent, and
3146  *                         the call will not fail with EAGAIN).
3147  *      AVERROR_EOF:       the decoder has been flushed, and no new packets can
3148  *                         be sent to it (also returned if more than 1 flush
3149  *                         packet is sent)
3150  *      AVERROR(EINVAL):   codec not opened, it is an encoder, or requires flush
3151  *      AVERROR(ENOMEM):   failed to add packet to internal queue, or similar
3152  *      other errors: legitimate decoding errors
3153  */
3154 int avcodec_send_packet(AVCodecContext *avctx, const AVPacket *avpkt);
3155
3156 /**
3157  * Return decoded output data from a decoder.
3158  *
3159  * @param avctx codec context
3160  * @param frame This will be set to a reference-counted video or audio
3161  *              frame (depending on the decoder type) allocated by the
3162  *              decoder. Note that the function will always call
3163  *              av_frame_unref(frame) before doing anything else.
3164  *
3165  * @return
3166  *      0:                 success, a frame was returned
3167  *      AVERROR(EAGAIN):   output is not available in this state - user must try
3168  *                         to send new input
3169  *      AVERROR_EOF:       the decoder has been fully flushed, and there will be
3170  *                         no more output frames
3171  *      AVERROR(EINVAL):   codec not opened, or it is an encoder
3172  *      AVERROR_INPUT_CHANGED:   current decoded frame has changed parameters
3173  *                               with respect to first decoded frame. Applicable
3174  *                               when flag AV_CODEC_FLAG_DROPCHANGED is set.
3175  *      other negative values: legitimate decoding errors
3176  */
3177 int avcodec_receive_frame(AVCodecContext *avctx, AVFrame *frame);
3178
3179 /**
3180  * Supply a raw video or audio frame to the encoder. Use avcodec_receive_packet()
3181  * to retrieve buffered output packets.
3182  *
3183  * @param avctx     codec context
3184  * @param[in] frame AVFrame containing the raw audio or video frame to be encoded.
3185  *                  Ownership of the frame remains with the caller, and the
3186  *                  encoder will not write to the frame. The encoder may create
3187  *                  a reference to the frame data (or copy it if the frame is
3188  *                  not reference-counted).
3189  *                  It can be NULL, in which case it is considered a flush
3190  *                  packet.  This signals the end of the stream. If the encoder
3191  *                  still has packets buffered, it will return them after this
3192  *                  call. Once flushing mode has been entered, additional flush
3193  *                  packets are ignored, and sending frames will return
3194  *                  AVERROR_EOF.
3195  *
3196  *                  For audio:
3197  *                  If AV_CODEC_CAP_VARIABLE_FRAME_SIZE is set, then each frame
3198  *                  can have any number of samples.
3199  *                  If it is not set, frame->nb_samples must be equal to
3200  *                  avctx->frame_size for all frames except the last.
3201  *                  The final frame may be smaller than avctx->frame_size.
3202  * @return 0 on success, otherwise negative error code:
3203  *      AVERROR(EAGAIN):   input is not accepted in the current state - user
3204  *                         must read output with avcodec_receive_packet() (once
3205  *                         all output is read, the packet should be resent, and
3206  *                         the call will not fail with EAGAIN).
3207  *      AVERROR_EOF:       the encoder has been flushed, and no new frames can
3208  *                         be sent to it
3209  *      AVERROR(EINVAL):   codec not opened, refcounted_frames not set, it is a
3210  *                         decoder, or requires flush
3211  *      AVERROR(ENOMEM):   failed to add packet to internal queue, or similar
3212  *      other errors: legitimate encoding errors
3213  */
3214 int avcodec_send_frame(AVCodecContext *avctx, const AVFrame *frame);
3215
3216 /**
3217  * Read encoded data from the encoder.
3218  *
3219  * @param avctx codec context
3220  * @param avpkt This will be set to a reference-counted packet allocated by the
3221  *              encoder. Note that the function will always call
3222  *              av_packet_unref(avpkt) before doing anything else.
3223  * @return 0 on success, otherwise negative error code:
3224  *      AVERROR(EAGAIN):   output is not available in the current state - user
3225  *                         must try to send input
3226  *      AVERROR_EOF:       the encoder has been fully flushed, and there will be
3227  *                         no more output packets
3228  *      AVERROR(EINVAL):   codec not opened, or it is a decoder
3229  *      other errors: legitimate encoding errors
3230  */
3231 int avcodec_receive_packet(AVCodecContext *avctx, AVPacket *avpkt);
3232
3233 /**
3234  * Create and return a AVHWFramesContext with values adequate for hardware
3235  * decoding. This is meant to get called from the get_format callback, and is
3236  * a helper for preparing a AVHWFramesContext for AVCodecContext.hw_frames_ctx.
3237  * This API is for decoding with certain hardware acceleration modes/APIs only.
3238  *
3239  * The returned AVHWFramesContext is not initialized. The caller must do this
3240  * with av_hwframe_ctx_init().
3241  *
3242  * Calling this function is not a requirement, but makes it simpler to avoid
3243  * codec or hardware API specific details when manually allocating frames.
3244  *
3245  * Alternatively to this, an API user can set AVCodecContext.hw_device_ctx,
3246  * which sets up AVCodecContext.hw_frames_ctx fully automatically, and makes
3247  * it unnecessary to call this function or having to care about
3248  * AVHWFramesContext initialization at all.
3249  *
3250  * There are a number of requirements for calling this function:
3251  *
3252  * - It must be called from get_format with the same avctx parameter that was
3253  *   passed to get_format. Calling it outside of get_format is not allowed, and
3254  *   can trigger undefined behavior.
3255  * - The function is not always supported (see description of return values).
3256  *   Even if this function returns successfully, hwaccel initialization could
3257  *   fail later. (The degree to which implementations check whether the stream
3258  *   is actually supported varies. Some do this check only after the user's
3259  *   get_format callback returns.)
3260  * - The hw_pix_fmt must be one of the choices suggested by get_format. If the
3261  *   user decides to use a AVHWFramesContext prepared with this API function,
3262  *   the user must return the same hw_pix_fmt from get_format.
3263  * - The device_ref passed to this function must support the given hw_pix_fmt.
3264  * - After calling this API function, it is the user's responsibility to
3265  *   initialize the AVHWFramesContext (returned by the out_frames_ref parameter),
3266  *   and to set AVCodecContext.hw_frames_ctx to it. If done, this must be done
3267  *   before returning from get_format (this is implied by the normal
3268  *   AVCodecContext.hw_frames_ctx API rules).
3269  * - The AVHWFramesContext parameters may change every time time get_format is
3270  *   called. Also, AVCodecContext.hw_frames_ctx is reset before get_format. So
3271  *   you are inherently required to go through this process again on every
3272  *   get_format call.
3273  * - It is perfectly possible to call this function without actually using
3274  *   the resulting AVHWFramesContext. One use-case might be trying to reuse a
3275  *   previously initialized AVHWFramesContext, and calling this API function
3276  *   only to test whether the required frame parameters have changed.
3277  * - Fields that use dynamically allocated values of any kind must not be set
3278  *   by the user unless setting them is explicitly allowed by the documentation.
3279  *   If the user sets AVHWFramesContext.free and AVHWFramesContext.user_opaque,
3280  *   the new free callback must call the potentially set previous free callback.
3281  *   This API call may set any dynamically allocated fields, including the free
3282  *   callback.
3283  *
3284  * The function will set at least the following fields on AVHWFramesContext
3285  * (potentially more, depending on hwaccel API):
3286  *
3287  * - All fields set by av_hwframe_ctx_alloc().
3288  * - Set the format field to hw_pix_fmt.
3289  * - Set the sw_format field to the most suited and most versatile format. (An
3290  *   implication is that this will prefer generic formats over opaque formats
3291  *   with arbitrary restrictions, if possible.)
3292  * - Set the width/height fields to the coded frame size, rounded up to the
3293  *   API-specific minimum alignment.
3294  * - Only _if_ the hwaccel requires a pre-allocated pool: set the initial_pool_size
3295  *   field to the number of maximum reference surfaces possible with the codec,
3296  *   plus 1 surface for the user to work (meaning the user can safely reference
3297  *   at most 1 decoded surface at a time), plus additional buffering introduced
3298  *   by frame threading. If the hwaccel does not require pre-allocation, the
3299  *   field is left to 0, and the decoder will allocate new surfaces on demand
3300  *   during decoding.
3301  * - Possibly AVHWFramesContext.hwctx fields, depending on the underlying
3302  *   hardware API.
3303  *
3304  * Essentially, out_frames_ref returns the same as av_hwframe_ctx_alloc(), but
3305  * with basic frame parameters set.
3306  *
3307  * The function is stateless, and does not change the AVCodecContext or the
3308  * device_ref AVHWDeviceContext.
3309  *
3310  * @param avctx The context which is currently calling get_format, and which
3311  *              implicitly contains all state needed for filling the returned
3312  *              AVHWFramesContext properly.
3313  * @param device_ref A reference to the AVHWDeviceContext describing the device
3314  *                   which will be used by the hardware decoder.
3315  * @param hw_pix_fmt The hwaccel format you are going to return from get_format.
3316  * @param out_frames_ref On success, set to a reference to an _uninitialized_
3317  *                       AVHWFramesContext, created from the given device_ref.
3318  *                       Fields will be set to values required for decoding.
3319  *                       Not changed if an error is returned.
3320  * @return zero on success, a negative value on error. The following error codes
3321  *         have special semantics:
3322  *      AVERROR(ENOENT): the decoder does not support this functionality. Setup
3323  *                       is always manual, or it is a decoder which does not
3324  *                       support setting AVCodecContext.hw_frames_ctx at all,
3325  *                       or it is a software format.
3326  *      AVERROR(EINVAL): it is known that hardware decoding is not supported for
3327  *                       this configuration, or the device_ref is not supported
3328  *                       for the hwaccel referenced by hw_pix_fmt.
3329  */
3330 int avcodec_get_hw_frames_parameters(AVCodecContext *avctx,
3331                                      AVBufferRef *device_ref,
3332                                      enum AVPixelFormat hw_pix_fmt,
3333                                      AVBufferRef **out_frames_ref);
3334
3335
3336
3337 /**
3338  * @defgroup lavc_parsing Frame parsing
3339  * @{
3340  */
3341
3342 enum AVPictureStructure {
3343     AV_PICTURE_STRUCTURE_UNKNOWN,      //< unknown
3344     AV_PICTURE_STRUCTURE_TOP_FIELD,    //< coded as top field
3345     AV_PICTURE_STRUCTURE_BOTTOM_FIELD, //< coded as bottom field
3346     AV_PICTURE_STRUCTURE_FRAME,        //< coded as frame
3347 };
3348
3349 typedef struct AVCodecParserContext {
3350     void *priv_data;
3351     struct AVCodecParser *parser;
3352     int64_t frame_offset; /* offset of the current frame */
3353     int64_t cur_offset; /* current offset
3354                            (incremented by each av_parser_parse()) */
3355     int64_t next_frame_offset; /* offset of the next frame */
3356     /* video info */
3357     int pict_type; /* XXX: Put it back in AVCodecContext. */
3358     /**
3359      * This field is used for proper frame duration computation in lavf.
3360      * It signals, how much longer the frame duration of the current frame
3361      * is compared to normal frame duration.
3362      *
3363      * frame_duration = (1 + repeat_pict) * time_base
3364      *
3365      * It is used by codecs like H.264 to display telecined material.
3366      */
3367     int repeat_pict; /* XXX: Put it back in AVCodecContext. */
3368     int64_t pts;     /* pts of the current frame */
3369     int64_t dts;     /* dts of the current frame */
3370
3371     /* private data */
3372     int64_t last_pts;
3373     int64_t last_dts;
3374     int fetch_timestamp;
3375
3376 #define AV_PARSER_PTS_NB 4
3377     int cur_frame_start_index;
3378     int64_t cur_frame_offset[AV_PARSER_PTS_NB];
3379     int64_t cur_frame_pts[AV_PARSER_PTS_NB];
3380     int64_t cur_frame_dts[AV_PARSER_PTS_NB];
3381
3382     int flags;
3383 #define PARSER_FLAG_COMPLETE_FRAMES           0x0001
3384 #define PARSER_FLAG_ONCE                      0x0002
3385 /// Set if the parser has a valid file offset
3386 #define PARSER_FLAG_FETCHED_OFFSET            0x0004
3387 #define PARSER_FLAG_USE_CODEC_TS              0x1000
3388
3389     int64_t offset;      ///< byte offset from starting packet start
3390     int64_t cur_frame_end[AV_PARSER_PTS_NB];
3391
3392     /**
3393      * Set by parser to 1 for key frames and 0 for non-key frames.
3394      * It is initialized to -1, so if the parser doesn't set this flag,
3395      * old-style fallback using AV_PICTURE_TYPE_I picture type as key frames
3396      * will be used.
3397      */
3398     int key_frame;
3399
3400 #if FF_API_CONVERGENCE_DURATION
3401     /**
3402      * @deprecated unused
3403      */
3404     attribute_deprecated
3405     int64_t convergence_duration;
3406 #endif
3407
3408     // Timestamp generation support:
3409     /**
3410      * Synchronization point for start of timestamp generation.
3411      *
3412      * Set to >0 for sync point, 0 for no sync point and <0 for undefined
3413      * (default).
3414      *
3415      * For example, this corresponds to presence of H.264 buffering period
3416      * SEI message.
3417      */
3418     int dts_sync_point;
3419
3420     /**
3421      * Offset of the current timestamp against last timestamp sync point in
3422      * units of AVCodecContext.time_base.
3423      *
3424      * Set to INT_MIN when dts_sync_point unused. Otherwise, it must
3425      * contain a valid timestamp offset.
3426      *
3427      * Note that the timestamp of sync point has usually a nonzero
3428      * dts_ref_dts_delta, which refers to the previous sync point. Offset of
3429      * the next frame after timestamp sync point will be usually 1.
3430      *
3431      * For example, this corresponds to H.264 cpb_removal_delay.
3432      */
3433     int dts_ref_dts_delta;
3434
3435     /**
3436      * Presentation delay of current frame in units of AVCodecContext.time_base.
3437      *
3438      * Set to INT_MIN when dts_sync_point unused. Otherwise, it must
3439      * contain valid non-negative timestamp delta (presentation time of a frame
3440      * must not lie in the past).
3441      *
3442      * This delay represents the difference between decoding and presentation
3443      * time of the frame.
3444      *
3445      * For example, this corresponds to H.264 dpb_output_delay.
3446      */
3447     int pts_dts_delta;
3448
3449     /**
3450      * Position of the packet in file.
3451      *
3452      * Analogous to cur_frame_pts/dts
3453      */
3454     int64_t cur_frame_pos[AV_PARSER_PTS_NB];
3455
3456     /**
3457      * Byte position of currently parsed frame in stream.
3458      */
3459     int64_t pos;
3460
3461     /**
3462      * Previous frame byte position.
3463      */
3464     int64_t last_pos;
3465
3466     /**
3467      * Duration of the current frame.
3468      * For audio, this is in units of 1 / AVCodecContext.sample_rate.
3469      * For all other types, this is in units of AVCodecContext.time_base.
3470      */
3471     int duration;
3472
3473     enum AVFieldOrder field_order;
3474
3475     /**
3476      * Indicate whether a picture is coded as a frame, top field or bottom field.
3477      *
3478      * For example, H.264 field_pic_flag equal to 0 corresponds to
3479      * AV_PICTURE_STRUCTURE_FRAME. An H.264 picture with field_pic_flag
3480      * equal to 1 and bottom_field_flag equal to 0 corresponds to
3481      * AV_PICTURE_STRUCTURE_TOP_FIELD.
3482      */
3483     enum AVPictureStructure picture_structure;
3484
3485     /**
3486      * Picture number incremented in presentation or output order.
3487      * This field may be reinitialized at the first picture of a new sequence.
3488      *
3489      * For example, this corresponds to H.264 PicOrderCnt.
3490      */
3491     int output_picture_number;
3492
3493     /**
3494      * Dimensions of the decoded video intended for presentation.
3495      */
3496     int width;
3497     int height;
3498
3499     /**
3500      * Dimensions of the coded video.
3501      */
3502     int coded_width;
3503     int coded_height;
3504
3505     /**
3506      * The format of the coded data, corresponds to enum AVPixelFormat for video
3507      * and for enum AVSampleFormat for audio.
3508      *
3509      * Note that a decoder can have considerable freedom in how exactly it
3510      * decodes the data, so the format reported here might be different from the
3511      * one returned by a decoder.
3512      */
3513     int format;
3514 } AVCodecParserContext;
3515
3516 typedef struct AVCodecParser {
3517     int codec_ids[5]; /* several codec IDs are permitted */
3518     int priv_data_size;
3519     int (*parser_init)(AVCodecParserContext *s);
3520     /* This callback never returns an error, a negative value means that
3521      * the frame start was in a previous packet. */
3522     int (*parser_parse)(AVCodecParserContext *s,
3523                         AVCodecContext *avctx,
3524                         const uint8_t **poutbuf, int *poutbuf_size,
3525                         const uint8_t *buf, int buf_size);
3526     void (*parser_close)(AVCodecParserContext *s);
3527     int (*split)(AVCodecContext *avctx, const uint8_t *buf, int buf_size);
3528     struct AVCodecParser *next;
3529 } AVCodecParser;
3530
3531 /**
3532  * Iterate over all registered codec parsers.
3533  *
3534  * @param opaque a pointer where libavcodec will store the iteration state. Must
3535  *               point to NULL to start the iteration.
3536  *
3537  * @return the next registered codec parser or NULL when the iteration is
3538  *         finished
3539  */
3540 const AVCodecParser *av_parser_iterate(void **opaque);
3541
3542 #if FF_API_NEXT
3543 attribute_deprecated
3544 AVCodecParser *av_parser_next(const AVCodecParser *c);
3545
3546 attribute_deprecated
3547 void av_register_codec_parser(AVCodecParser *parser);
3548 #endif
3549 AVCodecParserContext *av_parser_init(int codec_id);
3550
3551 /**
3552  * Parse a packet.
3553  *
3554  * @param s             parser context.
3555  * @param avctx         codec context.
3556  * @param poutbuf       set to pointer to parsed buffer or NULL if not yet finished.
3557  * @param poutbuf_size  set to size of parsed buffer or zero if not yet finished.
3558  * @param buf           input buffer.
3559  * @param buf_size      buffer size in bytes without the padding. I.e. the full buffer
3560                         size is assumed to be buf_size + AV_INPUT_BUFFER_PADDING_SIZE.
3561                         To signal EOF, this should be 0 (so that the last frame
3562                         can be output).
3563  * @param pts           input presentation timestamp.
3564  * @param dts           input decoding timestamp.
3565  * @param pos           input byte position in stream.
3566  * @return the number of bytes of the input bitstream used.
3567  *
3568  * Example:
3569  * @code
3570  *   while(in_len){
3571  *       len = av_parser_parse2(myparser, AVCodecContext, &data, &size,
3572  *                                        in_data, in_len,
3573  *                                        pts, dts, pos);
3574  *       in_data += len;
3575  *       in_len  -= len;
3576  *
3577  *       if(size)
3578  *          decode_frame(data, size);
3579  *   }
3580  * @endcode
3581  */
3582 int av_parser_parse2(AVCodecParserContext *s,
3583                      AVCodecContext *avctx,
3584                      uint8_t **poutbuf, int *poutbuf_size,
3585                      const uint8_t *buf, int buf_size,
3586                      int64_t pts, int64_t dts,
3587                      int64_t pos);
3588
3589 /**
3590  * @return 0 if the output buffer is a subset of the input, 1 if it is allocated and must be freed
3591  * @deprecated use AVBitStreamFilter
3592  */
3593 int av_parser_change(AVCodecParserContext *s,
3594                      AVCodecContext *avctx,
3595                      uint8_t **poutbuf, int *poutbuf_size,
3596                      const uint8_t *buf, int buf_size, int keyframe);
3597 void av_parser_close(AVCodecParserContext *s);
3598
3599 /**
3600  * @}
3601  * @}
3602  */
3603
3604 /**
3605  * @addtogroup lavc_encoding
3606  * @{
3607  */
3608
3609 #if FF_API_OLD_ENCDEC
3610 /**
3611  * Encode a frame of audio.
3612  *
3613  * Takes input samples from frame and writes the next output packet, if
3614  * available, to avpkt. The output packet does not necessarily contain data for
3615  * the most recent frame, as encoders can delay, split, and combine input frames
3616  * internally as needed.
3617  *
3618  * @param avctx     codec context
3619  * @param avpkt     output AVPacket.
3620  *                  The user can supply an output buffer by setting
3621  *                  avpkt->data and avpkt->size prior to calling the
3622  *                  function, but if the size of the user-provided data is not
3623  *                  large enough, encoding will fail. If avpkt->data and
3624  *                  avpkt->size are set, avpkt->destruct must also be set. All
3625  *                  other AVPacket fields will be reset by the encoder using
3626  *                  av_init_packet(). If avpkt->data is NULL, the encoder will
3627  *                  allocate it. The encoder will set avpkt->size to the size
3628  *                  of the output packet.
3629  *
3630  *                  If this function fails or produces no output, avpkt will be
3631  *                  freed using av_packet_unref().
3632  * @param[in] frame AVFrame containing the raw audio data to be encoded.
3633  *                  May be NULL when flushing an encoder that has the
3634  *                  AV_CODEC_CAP_DELAY capability set.
3635  *                  If AV_CODEC_CAP_VARIABLE_FRAME_SIZE is set, then each frame
3636  *                  can have any number of samples.
3637  *                  If it is not set, frame->nb_samples must be equal to
3638  *                  avctx->frame_size for all frames except the last.
3639  *                  The final frame may be smaller than avctx->frame_size.
3640  * @param[out] got_packet_ptr This field is set to 1 by libavcodec if the
3641  *                            output packet is non-empty, and to 0 if it is
3642  *                            empty. If the function returns an error, the
3643  *                            packet can be assumed to be invalid, and the
3644  *                            value of got_packet_ptr is undefined and should
3645  *                            not be used.
3646  * @return          0 on success, negative error code on failure
3647  *
3648  * @deprecated use avcodec_send_frame()/avcodec_receive_packet() instead
3649  */
3650 attribute_deprecated
3651 int avcodec_encode_audio2(AVCodecContext *avctx, AVPacket *avpkt,
3652                           const AVFrame *frame, int *got_packet_ptr);
3653
3654 /**
3655  * Encode a frame of video.
3656  *
3657  * Takes input raw video data from frame and writes the next output packet, if
3658  * available, to avpkt. The output packet does not necessarily contain data for
3659  * the most recent frame, as encoders can delay and reorder input frames
3660  * internally as needed.
3661  *
3662  * @param avctx     codec context
3663  * @param avpkt     output AVPacket.
3664  *                  The user can supply an output buffer by setting
3665  *                  avpkt->data and avpkt->size prior to calling the
3666  *                  function, but if the size of the user-provided data is not
3667  *                  large enough, encoding will fail. All other AVPacket fields
3668  *                  will be reset by the encoder using av_init_packet(). If
3669  *                  avpkt->data is NULL, the encoder will allocate it.
3670  *                  The encoder will set avpkt->size to the size of the
3671  *                  output packet. The returned data (if any) belongs to the
3672  *                  caller, he is responsible for freeing it.
3673  *
3674  *                  If this function fails or produces no output, avpkt will be
3675  *                  freed using av_packet_unref().
3676  * @param[in] frame AVFrame containing the raw video data to be encoded.
3677  *                  May be NULL when flushing an encoder that has the
3678  *                  AV_CODEC_CAP_DELAY capability set.
3679  * @param[out] got_packet_ptr This field is set to 1 by libavcodec if the
3680  *                            output packet is non-empty, and to 0 if it is
3681  *                            empty. If the function returns an error, the
3682  *                            packet can be assumed to be invalid, and the
3683  *                            value of got_packet_ptr is undefined and should
3684  *                            not be used.
3685  * @return          0 on success, negative error code on failure
3686  *
3687  * @deprecated use avcodec_send_frame()/avcodec_receive_packet() instead
3688  */
3689 attribute_deprecated
3690 int avcodec_encode_video2(AVCodecContext *avctx, AVPacket *avpkt,
3691                           const AVFrame *frame, int *got_packet_ptr);
3692 #endif
3693
3694 int avcodec_encode_subtitle(AVCodecContext *avctx, uint8_t *buf, int buf_size,
3695                             const AVSubtitle *sub);
3696
3697
3698 /**
3699  * @}
3700  */
3701
3702 #if FF_API_AVPICTURE
3703 /**
3704  * @addtogroup lavc_picture
3705  * @{
3706  */
3707
3708 /**
3709  * @deprecated unused
3710  */
3711 attribute_deprecated
3712 int avpicture_alloc(AVPicture *picture, enum AVPixelFormat pix_fmt, int width, int height);
3713
3714 /**
3715  * @deprecated unused
3716  */
3717 attribute_deprecated
3718 void avpicture_free(AVPicture *picture);
3719
3720 /**
3721  * @deprecated use av_image_fill_arrays() instead.
3722  */
3723 attribute_deprecated
3724 int avpicture_fill(AVPicture *picture, const uint8_t *ptr,
3725                    enum AVPixelFormat pix_fmt, int width, int height);
3726
3727 /**
3728  * @deprecated use av_image_copy_to_buffer() instead.
3729  */
3730 attribute_deprecated
3731 int avpicture_layout(const AVPicture *src, enum AVPixelFormat pix_fmt,
3732                      int width, int height,
3733                      unsigned char *dest, int dest_size);
3734
3735 /**
3736  * @deprecated use av_image_get_buffer_size() instead.
3737  */
3738 attribute_deprecated
3739 int avpicture_get_size(enum AVPixelFormat pix_fmt, int width, int height);
3740
3741 /**
3742  * @deprecated av_image_copy() instead.
3743  */
3744 attribute_deprecated
3745 void av_picture_copy(AVPicture *dst, const AVPicture *src,
3746                      enum AVPixelFormat pix_fmt, int width, int height);
3747
3748 /**
3749  * @deprecated unused
3750  */
3751 attribute_deprecated
3752 int av_picture_crop(AVPicture *dst, const AVPicture *src,
3753                     enum AVPixelFormat pix_fmt, int top_band, int left_band);
3754
3755 /**
3756  * @deprecated unused
3757  */
3758 attribute_deprecated
3759 int av_picture_pad(AVPicture *dst, const AVPicture *src, int height, int width, enum AVPixelFormat pix_fmt,
3760             int padtop, int padbottom, int padleft, int padright, int *color);
3761
3762 /**
3763  * @}
3764  */
3765 #endif
3766
3767 /**
3768  * @defgroup lavc_misc Utility functions
3769  * @ingroup libavc
3770  *
3771  * Miscellaneous utility functions related to both encoding and decoding
3772  * (or neither).
3773  * @{
3774  */
3775
3776 /**
3777  * @defgroup lavc_misc_pixfmt Pixel formats
3778  *
3779  * Functions for working with pixel formats.
3780  * @{
3781  */
3782
3783 #if FF_API_GETCHROMA
3784 /**
3785  * @deprecated Use av_pix_fmt_get_chroma_sub_sample
3786  */
3787
3788 attribute_deprecated
3789 void avcodec_get_chroma_sub_sample(enum AVPixelFormat pix_fmt, int *h_shift, int *v_shift);
3790 #endif
3791
3792 /**
3793  * Return a value representing the fourCC code associated to the
3794  * pixel format pix_fmt, or 0 if no associated fourCC code can be
3795  * found.
3796  */
3797 unsigned int avcodec_pix_fmt_to_codec_tag(enum AVPixelFormat pix_fmt);
3798
3799 /**
3800  * @deprecated see av_get_pix_fmt_loss()
3801  */
3802 int avcodec_get_pix_fmt_loss(enum AVPixelFormat dst_pix_fmt, enum AVPixelFormat src_pix_fmt,
3803                              int has_alpha);
3804
3805 /**
3806  * Find the best pixel format to convert to given a certain source pixel
3807  * format.  When converting from one pixel format to another, information loss
3808  * may occur.  For example, when converting from RGB24 to GRAY, the color
3809  * information will be lost. Similarly, other losses occur when converting from
3810  * some formats to other formats. avcodec_find_best_pix_fmt_of_2() searches which of
3811  * the given pixel formats should be used to suffer the least amount of loss.
3812  * The pixel formats from which it chooses one, are determined by the
3813  * pix_fmt_list parameter.
3814  *
3815  *
3816  * @param[in] pix_fmt_list AV_PIX_FMT_NONE terminated array of pixel formats to choose from
3817  * @param[in] src_pix_fmt source pixel format
3818  * @param[in] has_alpha Whether the source pixel format alpha channel is used.
3819  * @param[out] loss_ptr Combination of flags informing you what kind of losses will occur.
3820  * @return The best pixel format to convert to or -1 if none was found.
3821  */
3822 enum AVPixelFormat avcodec_find_best_pix_fmt_of_list(const enum AVPixelFormat *pix_fmt_list,
3823                                             enum AVPixelFormat src_pix_fmt,
3824                                             int has_alpha, int *loss_ptr);
3825
3826 /**
3827  * @deprecated see av_find_best_pix_fmt_of_2()
3828  */
3829 enum AVPixelFormat avcodec_find_best_pix_fmt_of_2(enum AVPixelFormat dst_pix_fmt1, enum AVPixelFormat dst_pix_fmt2,
3830                                             enum AVPixelFormat src_pix_fmt, int has_alpha, int *loss_ptr);
3831
3832 attribute_deprecated
3833 enum AVPixelFormat avcodec_find_best_pix_fmt2(enum AVPixelFormat dst_pix_fmt1, enum AVPixelFormat dst_pix_fmt2,
3834                                             enum AVPixelFormat src_pix_fmt, int has_alpha, int *loss_ptr);
3835
3836 enum AVPixelFormat avcodec_default_get_format(struct AVCodecContext *s, const enum AVPixelFormat * fmt);
3837
3838 /**
3839  * @}
3840  */
3841
3842 #if FF_API_TAG_STRING
3843 /**
3844  * Put a string representing the codec tag codec_tag in buf.
3845  *
3846  * @param buf       buffer to place codec tag in
3847  * @param buf_size size in bytes of buf
3848  * @param codec_tag codec tag to assign
3849  * @return the length of the string that would have been generated if
3850  * enough space had been available, excluding the trailing null
3851  *
3852  * @deprecated see av_fourcc_make_string() and av_fourcc2str().
3853  */
3854 attribute_deprecated
3855 size_t av_get_codec_tag_string(char *buf, size_t buf_size, unsigned int codec_tag);
3856 #endif
3857
3858 void avcodec_string(char *buf, int buf_size, AVCodecContext *enc, int encode);
3859
3860 /**
3861  * Return a name for the specified profile, if available.
3862  *
3863  * @param codec the codec that is searched for the given profile
3864  * @param profile the profile value for which a name is requested
3865  * @return A name for the profile if found, NULL otherwise.
3866  */
3867 const char *av_get_profile_name(const AVCodec *codec, int profile);
3868
3869 /**
3870  * Return a name for the specified profile, if available.
3871  *
3872  * @param codec_id the ID of the codec to which the requested profile belongs
3873  * @param profile the profile value for which a name is requested
3874  * @return A name for the profile if found, NULL otherwise.
3875  *
3876  * @note unlike av_get_profile_name(), which searches a list of profiles
3877  *       supported by a specific decoder or encoder implementation, this
3878  *       function searches the list of profiles from the AVCodecDescriptor
3879  */
3880 const char *avcodec_profile_name(enum AVCodecID codec_id, int profile);
3881
3882 int avcodec_default_execute(AVCodecContext *c, int (*func)(AVCodecContext *c2, void *arg2),void *arg, int *ret, int count, int size);
3883 int avcodec_default_execute2(AVCodecContext *c, int (*func)(AVCodecContext *c2, void *arg2, int, int),void *arg, int *ret, int count);
3884 //FIXME func typedef
3885
3886 /**
3887  * Fill AVFrame audio data and linesize pointers.
3888  *
3889  * The buffer buf must be a preallocated buffer with a size big enough
3890  * to contain the specified samples amount. The filled AVFrame data
3891  * pointers will point to this buffer.
3892  *
3893  * AVFrame extended_data channel pointers are allocated if necessary for
3894  * planar audio.
3895  *
3896  * @param frame       the AVFrame
3897  *                    frame->nb_samples must be set prior to calling the
3898  *                    function. This function fills in frame->data,
3899  *                    frame->extended_data, frame->linesize[0].
3900  * @param nb_channels channel count
3901  * @param sample_fmt  sample format
3902  * @param buf         buffer to use for frame data
3903  * @param buf_size    size of buffer
3904  * @param align       plane size sample alignment (0 = default)
3905  * @return            >=0 on success, negative error code on failure
3906  * @todo return the size in bytes required to store the samples in
3907  * case of success, at the next libavutil bump
3908  */
3909 int avcodec_fill_audio_frame(AVFrame *frame, int nb_channels,
3910                              enum AVSampleFormat sample_fmt, const uint8_t *buf,
3911                              int buf_size, int align);
3912
3913 /**
3914  * Reset the internal codec state / flush internal buffers. Should be called
3915  * e.g. when seeking or when switching to a different stream.
3916  *
3917  * @note for decoders, when refcounted frames are not used
3918  * (i.e. avctx->refcounted_frames is 0), this invalidates the frames previously
3919  * returned from the decoder. When refcounted frames are used, the decoder just
3920  * releases any references it might keep internally, but the caller's reference
3921  * remains valid.
3922  *
3923  * @note for encoders, this function will only do something if the encoder
3924  * declares support for AV_CODEC_CAP_ENCODER_FLUSH. When called, the encoder
3925  * will drain any remaining packets, and can then be re-used for a different
3926  * stream (as opposed to sending a null frame which will leave the encoder
3927  * in a permanent EOF state after draining). This can be desirable if the
3928  * cost of tearing down and replacing the encoder instance is high.
3929  */
3930 void avcodec_flush_buffers(AVCodecContext *avctx);
3931
3932 /**
3933  * Return codec bits per sample.
3934  *
3935  * @param[in] codec_id the codec
3936  * @return Number of bits per sample or zero if unknown for the given codec.
3937  */
3938 int av_get_bits_per_sample(enum AVCodecID codec_id);
3939
3940 /**
3941  * Return the PCM codec associated with a sample format.
3942  * @param be  endianness, 0 for little, 1 for big,
3943  *            -1 (or anything else) for native
3944  * @return  AV_CODEC_ID_PCM_* or AV_CODEC_ID_NONE
3945  */
3946 enum AVCodecID av_get_pcm_codec(enum AVSampleFormat fmt, int be);
3947
3948 /**
3949  * Return codec bits per sample.
3950  * Only return non-zero if the bits per sample is exactly correct, not an
3951  * approximation.
3952  *
3953  * @param[in] codec_id the codec
3954  * @return Number of bits per sample or zero if unknown for the given codec.
3955  */
3956 int av_get_exact_bits_per_sample(enum AVCodecID codec_id);
3957
3958 /**
3959  * Return audio frame duration.
3960  *
3961  * @param avctx        codec context
3962  * @param frame_bytes  size of the frame, or 0 if unknown
3963  * @return             frame duration, in samples, if known. 0 if not able to
3964  *                     determine.
3965  */
3966 int av_get_audio_frame_duration(AVCodecContext *avctx, int frame_bytes);
3967
3968 /**
3969  * This function is the same as av_get_audio_frame_duration(), except it works
3970  * with AVCodecParameters instead of an AVCodecContext.
3971  */
3972 int av_get_audio_frame_duration2(AVCodecParameters *par, int frame_bytes);
3973
3974 #if FF_API_OLD_BSF
3975 typedef struct AVBitStreamFilterContext {
3976     void *priv_data;
3977     const struct AVBitStreamFilter *filter;
3978     AVCodecParserContext *parser;
3979     struct AVBitStreamFilterContext *next;
3980     /**
3981      * Internal default arguments, used if NULL is passed to av_bitstream_filter_filter().
3982      * Not for access by library users.
3983      */
3984     char *args;
3985 } AVBitStreamFilterContext;
3986
3987 /**
3988  * @deprecated the old bitstream filtering API (using AVBitStreamFilterContext)
3989  * is deprecated. Use the new bitstream filtering API (using AVBSFContext).
3990  */
3991 attribute_deprecated
3992 void av_register_bitstream_filter(AVBitStreamFilter *bsf);
3993 /**
3994  * @deprecated the old bitstream filtering API (using AVBitStreamFilterContext)
3995  * is deprecated. Use av_bsf_get_by_name(), av_bsf_alloc(), and av_bsf_init()
3996  * from the new bitstream filtering API (using AVBSFContext).
3997  */
3998 attribute_deprecated
3999 AVBitStreamFilterContext *av_bitstream_filter_init(const char *name);
4000 /**
4001  * @deprecated the old bitstream filtering API (using AVBitStreamFilterContext)
4002  * is deprecated. Use av_bsf_send_packet() and av_bsf_receive_packet() from the
4003  * new bitstream filtering API (using AVBSFContext).
4004  */
4005 attribute_deprecated
4006 int av_bitstream_filter_filter(AVBitStreamFilterContext *bsfc,
4007                                AVCodecContext *avctx, const char *args,
4008                                uint8_t **poutbuf, int *poutbuf_size,
4009                                const uint8_t *buf, int buf_size, int keyframe);
4010 /**
4011  * @deprecated the old bitstream filtering API (using AVBitStreamFilterContext)
4012  * is deprecated. Use av_bsf_free() from the new bitstream filtering API (using
4013  * AVBSFContext).
4014  */
4015 attribute_deprecated
4016 void av_bitstream_filter_close(AVBitStreamFilterContext *bsf);
4017 /**
4018  * @deprecated the old bitstream filtering API (using AVBitStreamFilterContext)
4019  * is deprecated. Use av_bsf_iterate() from the new bitstream filtering API (using
4020  * AVBSFContext).
4021  */
4022 attribute_deprecated
4023 const AVBitStreamFilter *av_bitstream_filter_next(const AVBitStreamFilter *f);
4024 #endif
4025
4026 #if FF_API_NEXT
4027 attribute_deprecated
4028 const AVBitStreamFilter *av_bsf_next(void **opaque);
4029 #endif
4030
4031 /* memory */
4032
4033 /**
4034  * Same behaviour av_fast_malloc but the buffer has additional
4035  * AV_INPUT_BUFFER_PADDING_SIZE at the end which will always be 0.
4036  *
4037  * In addition the whole buffer will initially and after resizes
4038  * be 0-initialized so that no uninitialized data will ever appear.
4039  */
4040 void av_fast_padded_malloc(void *ptr, unsigned int *size, size_t min_size);
4041
4042 /**
4043  * Same behaviour av_fast_padded_malloc except that buffer will always
4044  * be 0-initialized after call.
4045  */
4046 void av_fast_padded_mallocz(void *ptr, unsigned int *size, size_t min_size);
4047
4048 /**
4049  * Encode extradata length to a buffer. Used by xiph codecs.
4050  *
4051  * @param s buffer to write to; must be at least (v/255+1) bytes long
4052  * @param v size of extradata in bytes
4053  * @return number of bytes written to the buffer.
4054  */
4055 unsigned int av_xiphlacing(unsigned char *s, unsigned int v);
4056
4057 #if FF_API_USER_VISIBLE_AVHWACCEL
4058 /**
4059  * Register the hardware accelerator hwaccel.
4060  *
4061  * @deprecated  This function doesn't do anything.
4062  */
4063 attribute_deprecated
4064 void av_register_hwaccel(AVHWAccel *hwaccel);
4065
4066 /**
4067  * If hwaccel is NULL, returns the first registered hardware accelerator,
4068  * if hwaccel is non-NULL, returns the next registered hardware accelerator
4069  * after hwaccel, or NULL if hwaccel is the last one.
4070  *
4071  * @deprecated  AVHWaccel structures contain no user-serviceable parts, so
4072  *              this function should not be used.
4073  */
4074 attribute_deprecated
4075 AVHWAccel *av_hwaccel_next(const AVHWAccel *hwaccel);
4076 #endif
4077
4078 #if FF_API_LOCKMGR
4079 /**
4080  * Lock operation used by lockmgr
4081  *
4082  * @deprecated Deprecated together with av_lockmgr_register().
4083  */
4084 enum AVLockOp {
4085   AV_LOCK_CREATE,  ///< Create a mutex
4086   AV_LOCK_OBTAIN,  ///< Lock the mutex
4087   AV_LOCK_RELEASE, ///< Unlock the mutex
4088   AV_LOCK_DESTROY, ///< Free mutex resources
4089 };
4090
4091 /**
4092  * Register a user provided lock manager supporting the operations
4093  * specified by AVLockOp. The "mutex" argument to the function points
4094  * to a (void *) where the lockmgr should store/get a pointer to a user
4095  * allocated mutex. It is NULL upon AV_LOCK_CREATE and equal to the
4096  * value left by the last call for all other ops. If the lock manager is
4097  * unable to perform the op then it should leave the mutex in the same
4098  * state as when it was called and return a non-zero value. However,
4099  * when called with AV_LOCK_DESTROY the mutex will always be assumed to
4100  * have been successfully destroyed. If av_lockmgr_register succeeds
4101  * it will return a non-negative value, if it fails it will return a
4102  * negative value and destroy all mutex and unregister all callbacks.
4103  * av_lockmgr_register is not thread-safe, it must be called from a
4104  * single thread before any calls which make use of locking are used.
4105  *
4106  * @param cb User defined callback. av_lockmgr_register invokes calls
4107  *           to this callback and the previously registered callback.
4108  *           The callback will be used to create more than one mutex
4109  *           each of which must be backed by its own underlying locking
4110  *           mechanism (i.e. do not use a single static object to
4111  *           implement your lock manager). If cb is set to NULL the
4112  *           lockmgr will be unregistered.
4113  *
4114  * @deprecated This function does nothing, and always returns 0. Be sure to
4115  *             build with thread support to get basic thread safety.
4116  */
4117 attribute_deprecated
4118 int av_lockmgr_register(int (*cb)(void **mutex, enum AVLockOp op));
4119 #endif
4120
4121 /**
4122  * @return a positive value if s is open (i.e. avcodec_open2() was called on it
4123  * with no corresponding avcodec_close()), 0 otherwise.
4124  */
4125 int avcodec_is_open(AVCodecContext *s);
4126
4127 /**
4128  * Allocate a CPB properties structure and initialize its fields to default
4129  * values.
4130  *
4131  * @param size if non-NULL, the size of the allocated struct will be written
4132  *             here. This is useful for embedding it in side data.
4133  *
4134  * @return the newly allocated struct or NULL on failure
4135  */
4136 AVCPBProperties *av_cpb_properties_alloc(size_t *size);
4137
4138 /**
4139  * @}
4140  */
4141
4142 #endif /* AVCODEC_AVCODEC_H */