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