FFmpeg
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 "libavutil/samplefmt.h"
32#include "libavutil/avutil.h"
33#include "libavutil/buffer.h"
35#include "libavutil/dict.h"
36#include "libavutil/frame.h"
37#include "libavutil/log.h"
38#include "libavutil/pixfmt.h"
39#include "libavutil/rational.h"
40
41#include "codec.h"
42#include "codec_id.h"
43#include "defs.h"
44#include "packet.h"
45#include "version_major.h"
46#ifndef HAVE_AV_CONFIG_H
47/* When included as part of the ffmpeg build, only include the major version
48 * to avoid unnecessary rebuilds. When included externally, keep including
49 * the full version information. */
50#include "version.h"
51
52#include "codec_desc.h"
53#include "codec_par.h"
54#endif
55
57
58/**
59 * @defgroup libavc libavcodec
60 * Encoding/Decoding Library
61 *
62 * @{
63 *
64 * @defgroup lavc_decoding Decoding
65 * @{
66 * @}
67 *
68 * @defgroup lavc_encoding Encoding
69 * @{
70 * @}
71 *
72 * @defgroup lavc_codec Codecs
73 * @{
74 * @defgroup lavc_codec_native Native Codecs
75 * @{
76 * @}
77 * @defgroup lavc_codec_wrappers External library wrappers
78 * @{
79 * @}
80 * @defgroup lavc_codec_hwaccel Hardware Accelerators bridge
81 * @{
82 * @}
83 * @}
84 * @defgroup lavc_internal Internal
85 * @{
86 * @}
87 * @}
88 */
89
90/**
91 * @ingroup libavc
92 * @defgroup lavc_encdec send/receive encoding and decoding API overview
93 * @{
94 *
95 * The avcodec_send_packet()/avcodec_receive_frame()/avcodec_send_frame()/
96 * avcodec_receive_packet() functions provide an encode/decode API, which
97 * decouples input and output.
98 *
99 * The API is very similar for encoding/decoding and audio/video, and works as
100 * follows:
101 * - Set up and open the AVCodecContext as usual.
102 * - Send valid input:
103 * - For decoding, call avcodec_send_packet() to give the decoder raw
104 * compressed data in an AVPacket.
105 * - For encoding, call avcodec_send_frame() to give the encoder an AVFrame
106 * containing uncompressed audio or video.
107 *
108 * In both cases, it is recommended that AVPackets and AVFrames are
109 * refcounted, or libavcodec might have to copy the input data. (libavformat
110 * always returns refcounted AVPackets, and av_frame_get_buffer() allocates
111 * refcounted AVFrames.)
112 * - Receive output in a loop. Periodically call one of the avcodec_receive_*()
113 * functions and process their output:
114 * - For decoding, call avcodec_receive_frame(). On success, it will return
115 * an AVFrame containing uncompressed audio or video data.
116 * - For encoding, call avcodec_receive_packet(). On success, it will return
117 * an AVPacket with a compressed frame.
118 *
119 * Repeat this call until it returns AVERROR(EAGAIN) or an error. The
120 * AVERROR(EAGAIN) return value means that new input data is required to
121 * return new output. In this case, continue with sending input. For each
122 * input frame/packet, the codec will typically return 1 output frame/packet,
123 * but it can also be 0 or more than 1.
124 *
125 * At the beginning of decoding or encoding, the codec might accept multiple
126 * input frames/packets without returning a frame, until its internal buffers
127 * are filled. This situation is handled transparently if you follow the steps
128 * outlined above.
129 *
130 * In theory, sending input can result in EAGAIN - this should happen only if
131 * not all output was received. You can use this to structure alternative decode
132 * or encode loops other than the one suggested above. For example, you could
133 * try sending new input on each iteration, and try to receive output if that
134 * returns EAGAIN.
135 *
136 * End of stream situations. These require "flushing" (aka draining) the codec,
137 * as the codec might buffer multiple frames or packets internally for
138 * performance or out of necessity (consider B-frames).
139 * This is handled as follows:
140 * - Instead of valid input, send NULL to the avcodec_send_packet() (decoding)
141 * or avcodec_send_frame() (encoding) functions. This will enter draining
142 * mode.
143 * - Call avcodec_receive_frame() (decoding) or avcodec_receive_packet()
144 * (encoding) in a loop until AVERROR_EOF is returned. The functions will
145 * not return AVERROR(EAGAIN), unless you forgot to enter draining mode.
146 * - Before decoding can be resumed again, the codec has to be reset with
147 * avcodec_flush_buffers().
148 *
149 * Using the API as outlined above is highly recommended. But it is also
150 * possible to call functions outside of this rigid schema. For example, you can
151 * call avcodec_send_packet() repeatedly without calling
152 * avcodec_receive_frame(). In this case, avcodec_send_packet() will succeed
153 * until the codec's internal buffer has been filled up (which is typically of
154 * size 1 per output frame, after initial input), and then reject input with
155 * AVERROR(EAGAIN). Once it starts rejecting input, you have no choice but to
156 * read at least some output.
157 *
158 * Not all codecs will follow a rigid and predictable dataflow; the only
159 * guarantee is that an AVERROR(EAGAIN) return value on a send/receive call on
160 * one end implies that a receive/send call on the other end will succeed, or
161 * at least will not fail with AVERROR(EAGAIN). In general, no codec will
162 * permit unlimited buffering of input or output.
163 *
164 * A codec is not allowed to return AVERROR(EAGAIN) for both sending and receiving. This
165 * would be an invalid state, which could put the codec user into an endless
166 * loop. The API has no concept of time either: it cannot happen that trying to
167 * do avcodec_send_packet() results in AVERROR(EAGAIN), but a repeated call 1 second
168 * later accepts the packet (with no other receive/flush API calls involved).
169 * The API is a strict state machine, and the passage of time is not supposed
170 * to influence it. Some timing-dependent behavior might still be deemed
171 * acceptable in certain cases. But it must never result in both send/receive
172 * returning EAGAIN at the same time at any point. It must also absolutely be
173 * avoided that the current state is "unstable" and can "flip-flop" between
174 * the send/receive APIs allowing progress. For example, it's not allowed that
175 * the codec randomly decides that it actually wants to consume a packet now
176 * instead of returning a frame, after it just returned AVERROR(EAGAIN) on an
177 * avcodec_send_packet() call.
178 * @}
179 */
180
181/**
182 * @defgroup lavc_core Core functions/structures.
183 * @ingroup libavc
184 *
185 * Basic definitions, functions for querying libavcodec capabilities,
186 * allocating core structures, etc.
187 * @{
188 */
189
190/**
191 * @ingroup lavc_encoding
192 */
193typedef struct RcOverride{
196 int qscale; // If this is 0 then quality_factor will be used instead.
198} RcOverride;
199
200/* encoding support
201 These flags can be passed in AVCodecContext.flags before initialization.
202 Note: Not everything is supported yet.
203*/
204
205/**
206 * Allow decoders to produce frames with data planes that are not aligned
207 * to CPU requirements (e.g. due to cropping).
208 */
209#define AV_CODEC_FLAG_UNALIGNED (1 << 0)
210/**
211 * Use fixed qscale.
212 */
213#define AV_CODEC_FLAG_QSCALE (1 << 1)
214/**
215 * 4 MV per MB allowed / advanced prediction for H.263.
216 */
217#define AV_CODEC_FLAG_4MV (1 << 2)
218/**
219 * Output even those frames that might be corrupted.
220 */
221#define AV_CODEC_FLAG_OUTPUT_CORRUPT (1 << 3)
222/**
223 * Use qpel MC.
224 */
225#define AV_CODEC_FLAG_QPEL (1 << 4)
226/**
227 * Request the encoder to output reconstructed frames, i.e.\ frames that would
228 * be produced by decoding the encoded bitstream. These frames may be retrieved
229 * by calling avcodec_receive_frame() immediately after a successful call to
230 * avcodec_receive_packet().
231 *
232 * Should only be used with encoders flagged with the
233 * @ref AV_CODEC_CAP_ENCODER_RECON_FRAME capability.
234 *
235 * @note
236 * Each reconstructed frame returned by the encoder corresponds to the last
237 * encoded packet, i.e. the frames are returned in coded order rather than
238 * presentation order.
239 *
240 * @note
241 * Frame parameters (like pixel format or dimensions) do not have to match the
242 * AVCodecContext values. Make sure to use the values from the returned frame.
243 */
244#define AV_CODEC_FLAG_RECON_FRAME (1 << 6)
245/**
246 * @par decoding
247 * Request the decoder to propagate each packet's AVPacket.opaque and
248 * AVPacket.opaque_ref to its corresponding output AVFrame.
249 *
250 * @par encoding:
251 * Request the encoder to propagate each frame's AVFrame.opaque and
252 * AVFrame.opaque_ref values to its corresponding output AVPacket.
253 *
254 * @par
255 * May only be set on encoders that have the
256 * @ref AV_CODEC_CAP_ENCODER_REORDERED_OPAQUE capability flag.
257 *
258 * @note
259 * While in typical cases one input frame produces exactly one output packet
260 * (perhaps after a delay), in general the mapping of frames to packets is
261 * M-to-N, so
262 * - Any number of input frames may be associated with any given output packet.
263 * This includes zero - e.g. some encoders may output packets that carry only
264 * metadata about the whole stream.
265 * - A given input frame may be associated with any number of output packets.
266 * Again this includes zero - e.g. some encoders may drop frames under certain
267 * conditions.
268 * .
269 * This implies that when using this flag, the caller must NOT assume that
270 * - a given input frame's opaques will necessarily appear on some output packet;
271 * - every output packet will have some non-NULL opaque value.
272 * .
273 * When an output packet contains multiple frames, the opaque values will be
274 * taken from the first of those.
275 *
276 * @note
277 * The converse holds for decoders, with frames and packets switched.
278 */
279#define AV_CODEC_FLAG_COPY_OPAQUE (1 << 7)
280/**
281 * Signal to the encoder that the values of AVFrame.duration are valid and
282 * should be used (typically for transferring them to output packets).
283 *
284 * If this flag is not set, frame durations are ignored.
285 */
286#define AV_CODEC_FLAG_FRAME_DURATION (1 << 8)
287/**
288 * Use internal 2pass ratecontrol in first pass mode.
289 */
290#define AV_CODEC_FLAG_PASS1 (1 << 9)
291/**
292 * Use internal 2pass ratecontrol in second pass mode.
293 */
294#define AV_CODEC_FLAG_PASS2 (1 << 10)
295/**
296 * loop filter.
297 */
298#define AV_CODEC_FLAG_LOOP_FILTER (1 << 11)
299/**
300 * Only decode/encode grayscale.
301 */
302#define AV_CODEC_FLAG_GRAY (1 << 13)
303/**
304 * error[?] variables will be set during encoding.
305 */
306#define AV_CODEC_FLAG_PSNR (1 << 15)
307/**
308 * Use interlaced DCT.
309 */
310#define AV_CODEC_FLAG_INTERLACED_DCT (1 << 18)
311/**
312 * Force low delay.
313 */
314#define AV_CODEC_FLAG_LOW_DELAY (1 << 19)
315/**
316 * Place global headers in extradata instead of every keyframe.
317 */
318#define AV_CODEC_FLAG_GLOBAL_HEADER (1 << 22)
319/**
320 * Use only bitexact stuff (except (I)DCT).
321 */
322#define AV_CODEC_FLAG_BITEXACT (1 << 23)
323/* Fx : Flag for H.263+ extra options */
324/**
325 * H.263 advanced intra coding / MPEG-4 AC prediction
326 */
327#define AV_CODEC_FLAG_AC_PRED (1 << 24)
328/**
329 * interlaced motion estimation
330 */
331#define AV_CODEC_FLAG_INTERLACED_ME (1 << 29)
332#define AV_CODEC_FLAG_CLOSED_GOP (1U << 31)
333
334/**
335 * Allow non spec compliant speedup tricks.
336 */
337#define AV_CODEC_FLAG2_FAST (1 << 0)
338/**
339 * Skip bitstream encoding.
340 */
341#define AV_CODEC_FLAG2_NO_OUTPUT (1 << 2)
342/**
343 * Place global headers at every keyframe instead of in extradata.
344 */
345#define AV_CODEC_FLAG2_LOCAL_HEADER (1 << 3)
346
347/**
348 * Input bitstream might be truncated at a packet boundaries
349 * instead of only at frame boundaries.
350 */
351#define AV_CODEC_FLAG2_CHUNKS (1 << 15)
352/**
353 * Discard cropping information from SPS.
354 */
355#define AV_CODEC_FLAG2_IGNORE_CROP (1 << 16)
356/**
357 * Force audio encoders to use a fixed frame size.
358 */
359#define AV_CODEC_FLAG2_FIXED_FRAME_SIZE (1 << 17)
360
361/**
362 * Show all frames before the first keyframe
363 */
364#define AV_CODEC_FLAG2_SHOW_ALL (1 << 22)
365/**
366 * Export motion vectors through frame side data
367 */
368#define AV_CODEC_FLAG2_EXPORT_MVS (1 << 28)
369/**
370 * Do not skip samples and export skip information as frame side data
371 */
372#define AV_CODEC_FLAG2_SKIP_MANUAL (1 << 29)
373/**
374 * Do not reset ASS ReadOrder field on flush (subtitles decoding)
375 */
376#define AV_CODEC_FLAG2_RO_FLUSH_NOOP (1 << 30)
377/**
378 * Generate/parse ICC profiles on encode/decode, as appropriate for the type of
379 * file. No effect on codecs which cannot contain embedded ICC profiles, or
380 * when compiled without support for lcms2.
381 */
382#define AV_CODEC_FLAG2_ICC_PROFILES (1U << 31)
383
384/* Exported side data.
385 These flags can be passed in AVCodecContext.export_side_data before initialization.
386*/
387/**
388 * Export motion vectors through frame side data
389 */
390#define AV_CODEC_EXPORT_DATA_MVS (1 << 0)
391/**
392 * Export encoder Producer Reference Time through packet side data
393 */
394#define AV_CODEC_EXPORT_DATA_PRFT (1 << 1)
395/**
396 * Decoding only.
397 * Export the AVVideoEncParams structure through frame side data.
398 */
399#define AV_CODEC_EXPORT_DATA_VIDEO_ENC_PARAMS (1 << 2)
400/**
401 * Decoding only.
402 * Do not apply film grain, export it instead.
403 */
404#define AV_CODEC_EXPORT_DATA_FILM_GRAIN (1 << 3)
405
406/**
407 * Decoding only.
408 * Do not apply picture enhancement layers, export them instead.
409 */
410#define AV_CODEC_EXPORT_DATA_ENHANCEMENTS (1 << 4)
411
412/**
413 * The decoder will keep a reference to the frame and may reuse it later.
414 */
415#define AV_GET_BUFFER_FLAG_REF (1 << 0)
416
417/**
418 * The encoder will keep a reference to the packet and may reuse it later.
419 */
420#define AV_GET_ENCODE_BUFFER_FLAG_REF (1 << 0)
421
422/**
423 * The decoder will bypass frame threading and return the next frame as soon as
424 * possible. Note that this may deliver frames earlier than the advertised
425 * `AVCodecContext.delay`. No effect when frame threading is disabled, or on
426 * encoding.
427 */
428#define AV_CODEC_RECEIVE_FRAME_FLAG_SYNCHRONOUS (1 << 0)
429
430/**
431 * main external API structure.
432 * New fields can be added to the end with minor version bumps.
433 * Removal, reordering and changes to existing fields require a major
434 * version bump.
435 * You can use AVOptions (av_opt* / av_set/get*()) to access these fields from user
436 * applications.
437 * The name string for AVOptions options matches the associated command line
438 * parameter name and can be found in libavcodec/options_table.h
439 * The AVOption/command line parameter names differ in some cases from the C
440 * structure field names for historic reasons or brevity.
441 * sizeof(AVCodecContext) must not be used outside libav*.
442 */
443typedef struct AVCodecContext {
444 /**
445 * information on struct for av_log
446 * - set by avcodec_alloc_context3
447 */
450
451 enum AVMediaType codec_type; /* see AVMEDIA_TYPE_xxx */
452 const struct AVCodec *codec;
453 enum AVCodecID codec_id; /* see AV_CODEC_ID_xxx */
454
455 /**
456 * fourcc (LSB first, so "ABCD" -> ('D'<<24) + ('C'<<16) + ('B'<<8) + 'A').
457 * This is used to work around some encoder bugs.
458 * A demuxer should set this to what is stored in the field used to identify the codec.
459 * If there are multiple such fields in a container then the demuxer should choose the one
460 * which maximizes the information about the used codec.
461 * If the codec tag field in a container is larger than 32 bits then the demuxer should
462 * remap the longer ID to 32 bits with a table or other structure. Alternatively a new
463 * extra_codec_tag + size could be added but for this a clear advantage must be demonstrated
464 * first.
465 * - encoding: Set by user, if not then the default based on codec_id will be used.
466 * - decoding: Set by user, will be converted to uppercase by libavcodec during init.
467 */
468 unsigned int codec_tag;
469
471
472 /**
473 * Private context used for internal data.
474 *
475 * Unlike priv_data, this is not codec-specific. It is used in general
476 * libavcodec functions.
477 */
479
480 /**
481 * Private data of the user, can be used to carry app specific stuff.
482 * - encoding: Set by user.
483 * - decoding: Set by user.
484 */
485 void *opaque;
486
487 /**
488 * the average bitrate
489 * - encoding: Set by user; unused for constant quantizer encoding.
490 * - decoding: Set by user, may be overwritten by libavcodec
491 * if this info is available in the stream
492 */
494
495 /**
496 * AV_CODEC_FLAG_*.
497 * - encoding: Set by user.
498 * - decoding: Set by user.
499 */
500 int flags;
501
502 /**
503 * AV_CODEC_FLAG2_*
504 * - encoding: Set by user.
505 * - decoding: Set by user.
506 */
508
509 /**
510 * Out-of-band global headers that may be used by some codecs.
511 *
512 * - decoding: Should be set by the caller when available (typically from a
513 * demuxer) before opening the decoder; some decoders require this to be
514 * set and will fail to initialize otherwise.
515 *
516 * The array must be allocated with the av_malloc() family of functions;
517 * allocated size must be at least AV_INPUT_BUFFER_PADDING_SIZE bytes
518 * larger than extradata_size.
519 *
520 * - encoding: May be set by the encoder in avcodec_open2() (possibly
521 * depending on whether the AV_CODEC_FLAG_GLOBAL_HEADER flag is set).
522 *
523 * After being set, the array is owned by the codec and freed in
524 * avcodec_free_context().
525 */
526 uint8_t *extradata;
528
529 /**
530 * This is the fundamental unit of time (in seconds) in terms
531 * of which frame timestamps are represented. For fixed-fps content,
532 * timebase should be 1/framerate and timestamp increments should be
533 * identically 1.
534 * This often, but not always is the inverse of the frame rate or field rate
535 * for video. 1/time_base is not the average frame rate if the frame rate is not
536 * constant.
537 *
538 * Like containers, elementary streams also can store timestamps, 1/time_base
539 * is the unit in which these timestamps are specified.
540 * As example of such codec time base see ISO/IEC 14496-2:2001(E)
541 * vop_time_increment_resolution and fixed_vop_rate
542 * (fixed_vop_rate == 0 implies that it is different from the framerate)
543 *
544 * - encoding: MUST be set by user.
545 * - decoding: unused.
546 */
548
549 /**
550 * Timebase in which pkt_dts/pts and AVPacket.dts/pts are expressed.
551 * - encoding: unused.
552 * - decoding: set by user.
553 */
555
556 /**
557 * - decoding: For codecs that store a framerate value in the compressed
558 * bitstream, the decoder may export it here. { 0, 1} when
559 * unknown.
560 * - encoding: May be used to signal the framerate of CFR content to an
561 * encoder.
562 */
564
565 /**
566 * Codec delay.
567 *
568 * Encoding: Number of frames delay there will be from the encoder input to
569 * the decoder output. (we assume the decoder matches the spec)
570 * Decoding: Number of frames delay in addition to what a standard decoder
571 * as specified in the spec would produce.
572 *
573 * Video:
574 * Number of frames the decoded output will be delayed relative to the
575 * encoded input.
576 *
577 * Audio:
578 * For encoding, this field is unused (see initial_padding).
579 *
580 * For decoding, this is the number of samples the decoder needs to
581 * output before the decoder's output is valid. When seeking, you should
582 * start decoding this many samples prior to your desired seek point.
583 *
584 * - encoding: Set by libavcodec.
585 * - decoding: Set by libavcodec.
586 */
587 int delay;
588
589
590 /* video only */
591 /**
592 * picture width / height.
593 *
594 * @note Those fields may not match the values of the last
595 * AVFrame output by avcodec_receive_frame() due frame
596 * reordering.
597 *
598 * - encoding: MUST be set by user.
599 * - decoding: May be set by the user before opening the decoder if known e.g.
600 * from the container. Some decoders will require the dimensions
601 * to be set by the caller. During decoding, the decoder may
602 * overwrite those values as required while parsing the data.
603 */
605
606 /**
607 * Bitstream width / height, may be different from width/height e.g. when
608 * the decoded frame is cropped before being output or lowres is enabled.
609 *
610 * @note Those field may not match the value of the last
611 * AVFrame output by avcodec_receive_frame() due frame
612 * reordering.
613 *
614 * - encoding: unused
615 * - decoding: May be set by the user before opening the decoder if known
616 * e.g. from the container. During decoding, the decoder may
617 * overwrite those values as required while parsing the data.
618 */
620
621 /**
622 * sample aspect ratio (0 if unknown)
623 * That is the width of a pixel divided by the height of the pixel.
624 * Numerator and denominator must be relatively prime and smaller than 256 for some video standards.
625 * - encoding: Set by user.
626 * - decoding: Set by libavcodec.
627 */
629
630 /**
631 * Pixel format, see AV_PIX_FMT_xxx.
632 * May be set by the demuxer if known from headers.
633 * May be overridden by the decoder if it knows better.
634 *
635 * @note This field may not match the value of the last
636 * AVFrame output by avcodec_receive_frame() due frame
637 * reordering.
638 *
639 * - encoding: Set by user.
640 * - decoding: Set by user if known, overridden by libavcodec while
641 * parsing the data.
642 */
644
645 /**
646 * Nominal unaccelerated pixel format, see AV_PIX_FMT_xxx.
647 * - encoding: unused.
648 * - decoding: Set by libavcodec before calling get_format()
649 */
651
652 /**
653 * Chromaticity coordinates of the source primaries.
654 * - encoding: Set by user
655 * - decoding: Set by libavcodec
656 */
658
659 /**
660 * Color Transfer Characteristic.
661 * - encoding: Set by user
662 * - decoding: Set by libavcodec
663 */
665
666 /**
667 * YUV colorspace type.
668 * - encoding: Set by user
669 * - decoding: Set by libavcodec
670 */
672
673 /**
674 * MPEG vs JPEG YUV range.
675 * - encoding: Set by user to override the default output color range value,
676 * If not specified, libavcodec sets the color range depending on the
677 * output format.
678 * - decoding: Set by libavcodec, can be set by the user to propagate the
679 * color range to components reading from the decoder context.
680 */
682
683 /**
684 * This defines the location of chroma samples.
685 * - encoding: Set by user
686 * - decoding: Set by libavcodec
687 */
689
690 /** Field order
691 * - encoding: set by libavcodec
692 * - decoding: Set by user.
693 */
695
696 /**
697 * number of reference frames
698 * - encoding: Set by user.
699 * - decoding: Set by lavc.
700 */
701 int refs;
702
703 /**
704 * Size of the frame reordering buffer in the decoder.
705 * For MPEG-2 it is 1 IPB or 0 low delay IP.
706 * - encoding: Set by libavcodec.
707 * - decoding: Set by libavcodec.
708 */
710
711 /**
712 * slice flags
713 * - encoding: unused
714 * - decoding: Set by user.
715 */
717#define SLICE_FLAG_CODED_ORDER 0x0001 ///< draw_horiz_band() is called in coded order instead of display
718#define SLICE_FLAG_ALLOW_FIELD 0x0002 ///< allow draw_horiz_band() with field slices (MPEG-2 field pics)
719#define SLICE_FLAG_ALLOW_PLANE 0x0004 ///< allow draw_horiz_band() with 1 component at a time (SVQ1)
720
721 /**
722 * If non NULL, 'draw_horiz_band' is called by the libavcodec
723 * decoder to draw a horizontal band. It improves cache usage. Not
724 * all codecs can do that. You must check the codec capabilities
725 * beforehand.
726 * When multithreading is used, it may be called from multiple threads
727 * at the same time; threads might draw different parts of the same AVFrame,
728 * or multiple AVFrames, and there is no guarantee that slices will be drawn
729 * in order.
730 * The function is also used by hardware acceleration APIs.
731 * It is called at least once during frame decoding to pass
732 * the data needed for hardware render.
733 * In that mode instead of pixel data, AVFrame points to
734 * a structure specific to the acceleration API. The application
735 * reads the structure and can change some fields to indicate progress
736 * or mark state.
737 * - encoding: unused
738 * - decoding: Set by user.
739 * @param height the height of the slice
740 * @param y the y position of the slice
741 * @param type 1->top field, 2->bottom field, 3->frame
742 * @param offset offset into the AVFrame.data from which the slice should be read
743 */
746 int y, int type, int height);
747
748 /**
749 * Callback to negotiate the pixel format. Decoding only, may be set by the
750 * caller before avcodec_open2().
751 *
752 * Called by some decoders to select the pixel format that will be used for
753 * the output frames. This is mainly used to set up hardware acceleration,
754 * then the provided format list contains the corresponding hwaccel pixel
755 * formats alongside the "software" one. The software pixel format may also
756 * be retrieved from \ref sw_pix_fmt.
757 *
758 * This callback will be called when the coded frame properties (such as
759 * resolution, pixel format, etc.) change and more than one output format is
760 * supported for those new properties. If a hardware pixel format is chosen
761 * and initialization for it fails, the callback may be called again
762 * immediately.
763 *
764 * This callback may be called from different threads if the decoder is
765 * multi-threaded, but not from more than one thread simultaneously.
766 *
767 * @param fmt list of formats which may be used in the current
768 * configuration, terminated by AV_PIX_FMT_NONE.
769 * @warning Behavior is undefined if the callback returns a value other
770 * than one of the formats in fmt or AV_PIX_FMT_NONE.
771 * @return the chosen format or AV_PIX_FMT_NONE
772 */
773 enum AVPixelFormat (*get_format)(struct AVCodecContext *s, const enum AVPixelFormat * fmt);
774
775 /**
776 * maximum number of B-frames between non-B-frames
777 * Note: The output will be delayed by max_b_frames+1 relative to the input.
778 * - encoding: Set by user.
779 * - decoding: unused
780 */
782
783 /**
784 * qscale factor between IP and B-frames
785 * If > 0 then the last P-frame quantizer will be used (q= lastp_q*factor+offset).
786 * If < 0 then normal ratecontrol will be done (q= -normal_q*factor+offset).
787 * - encoding: Set by user.
788 * - decoding: unused
789 */
791
792 /**
793 * qscale offset between IP and B-frames
794 * - encoding: Set by user.
795 * - decoding: unused
796 */
798
799 /**
800 * qscale factor between P- and I-frames
801 * If > 0 then the last P-frame quantizer will be used (q = lastp_q * factor + offset).
802 * If < 0 then normal ratecontrol will be done (q= -normal_q*factor+offset).
803 * - encoding: Set by user.
804 * - decoding: unused
805 */
807
808 /**
809 * qscale offset between P and I-frames
810 * - encoding: Set by user.
811 * - decoding: unused
812 */
814
815 /**
816 * luminance masking (0-> disabled)
817 * - encoding: Set by user.
818 * - decoding: unused
819 */
821
822 /**
823 * temporary complexity masking (0-> disabled)
824 * - encoding: Set by user.
825 * - decoding: unused
826 */
828
829 /**
830 * spatial complexity masking (0-> disabled)
831 * - encoding: Set by user.
832 * - decoding: unused
833 */
835
836 /**
837 * p block masking (0-> disabled)
838 * - encoding: Set by user.
839 * - decoding: unused
840 */
842
843 /**
844 * darkness masking (0-> disabled)
845 * - encoding: Set by user.
846 * - decoding: unused
847 */
849
850 /**
851 * noise vs. sse weight for the nsse comparison function
852 * - encoding: Set by user.
853 * - decoding: unused
854 */
856
857 /**
858 * motion estimation comparison function
859 * - encoding: Set by user.
860 * - decoding: unused
861 */
863 /**
864 * subpixel motion estimation comparison function
865 * - encoding: Set by user.
866 * - decoding: unused
867 */
869 /**
870 * macroblock comparison function (not supported yet)
871 * - encoding: Set by user.
872 * - decoding: unused
873 */
875 /**
876 * interlaced DCT comparison function
877 * - encoding: Set by user.
878 * - decoding: unused
879 */
881#define FF_CMP_SAD 0
882#define FF_CMP_SSE 1
883#define FF_CMP_SATD 2
884#define FF_CMP_DCT 3
885#define FF_CMP_PSNR 4
886#define FF_CMP_BIT 5
887#define FF_CMP_RD 6
888#define FF_CMP_ZERO 7
889#define FF_CMP_VSAD 8
890#define FF_CMP_VSSE 9
891#define FF_CMP_NSSE 10
892#define FF_CMP_W53 11
893#define FF_CMP_W97 12
894#define FF_CMP_DCTMAX 13
895#define FF_CMP_DCT264 14
896#define FF_CMP_MEDIAN_SAD 15
897#define FF_CMP_CHROMA 256
898
899 /**
900 * ME diamond size & shape
901 * - encoding: Set by user.
902 * - decoding: unused
903 */
905
906 /**
907 * amount of previous MV predictors (2a+1 x 2a+1 square)
908 * - encoding: Set by user.
909 * - decoding: unused
910 */
912
913 /**
914 * motion estimation prepass comparison function
915 * - encoding: Set by user.
916 * - decoding: unused
917 */
919
920 /**
921 * ME prepass diamond size & shape
922 * - encoding: Set by user.
923 * - decoding: unused
924 */
926
927 /**
928 * subpel ME quality
929 * - encoding: Set by user.
930 * - decoding: unused
931 */
933
934 /**
935 * maximum motion estimation search range in subpel units
936 * If 0 then no limit.
937 *
938 * - encoding: Set by user.
939 * - decoding: unused
940 */
942
943 /**
944 * macroblock decision mode
945 * - encoding: Set by user.
946 * - decoding: unused
947 */
949#define FF_MB_DECISION_SIMPLE 0 ///< uses mb_cmp
950#define FF_MB_DECISION_BITS 1 ///< chooses the one which needs the fewest bits
951#define FF_MB_DECISION_RD 2 ///< rate distortion
952
953 /**
954 * custom intra quantization matrix
955 * Must be allocated with the av_malloc() family of functions, and will be freed in
956 * avcodec_free_context().
957 * - encoding: Set/allocated by user, freed by libavcodec. Can be NULL.
958 * - decoding: Set/allocated/freed by libavcodec.
959 */
960 uint16_t *intra_matrix;
961
962 /**
963 * custom inter quantization matrix
964 * Must be allocated with the av_malloc() family of functions, and will be freed in
965 * avcodec_free_context().
966 * - encoding: Set/allocated by user, freed by libavcodec. Can be NULL.
967 * - decoding: Set/allocated/freed by libavcodec.
968 */
969 uint16_t *inter_matrix;
970
971 /**
972 * custom intra quantization matrix
973 * - encoding: Set by user, can be NULL.
974 * - decoding: unused.
975 */
977
978#if FF_API_INTRA_DC_PRECISION
979 /**
980 * precision of the intra DC coefficient - 8
981 * - encoding: Set by user.
982 * - decoding: Set by libavcodec
983 * @deprecated Use the MPEG-2 encoder's private option "intra_dc_precision" instead.
984 */
986 int intra_dc_precision;
987#endif
988
989 /**
990 * minimum MB Lagrange multiplier
991 * - encoding: Set by user.
992 * - decoding: unused
993 */
995
996 /**
997 * maximum MB Lagrange multiplier
998 * - encoding: Set by user.
999 * - decoding: unused
1000 */
1002
1003 /**
1004 * - encoding: Set by user.
1005 * - decoding: unused
1006 */
1008
1009 /**
1010 * minimum GOP size
1011 * - encoding: Set by user.
1012 * - decoding: unused
1013 */
1015
1016 /**
1017 * the number of pictures in a group of pictures, or 0 for intra_only
1018 * - encoding: Set by user.
1019 * - decoding: unused
1020 */
1022
1023 /**
1024 * Note: Value depends upon the compare function used for fullpel ME.
1025 * - encoding: Set by user.
1026 * - decoding: unused
1027 */
1029
1030 /**
1031 * Number of slices.
1032 * Indicates number of picture subdivisions. Used for parallelized
1033 * decoding.
1034 * - encoding: Set by user
1035 * - decoding: unused
1036 */
1038
1039 /* audio only */
1040 int sample_rate; ///< samples per second
1041
1042 /**
1043 * audio sample format
1044 * - encoding: Set by user.
1045 * - decoding: Set by libavcodec.
1046 */
1047 enum AVSampleFormat sample_fmt; ///< sample format
1048
1049 /**
1050 * Audio channel layout.
1051 * - encoding: must be set by the caller, to one of AVCodec.ch_layouts.
1052 * - decoding: may be set by the caller if known e.g. from the container.
1053 * The decoder can then override during decoding as needed.
1054 */
1056
1057 /**
1058 * Number of samples per channel in an audio frame.
1059 *
1060 * - encoding: may be set by the user before calling avcodec_open2(), and
1061 * libavcodec may then overwrite it if needed. Each submitted frame
1062 * except the last must contain exactly frame_size samples per channel.
1063 * May be 0 when the codec has AV_CODEC_CAP_VARIABLE_FRAME_SIZE set, except
1064 * when AV_CODEC_FLAG2_FIXED_FRAME_SIZE is requested, then the
1065 * frame size is not restricted.
1066 * - decoding: may be set by some decoders to indicate constant frame size
1067 */
1069
1070 /* The following data should not be initialized. */
1071 /**
1072 * number of bytes per packet if constant and known or 0
1073 * Used by some WAV based audio codecs.
1074 */
1076
1077 /**
1078 * Audio cutoff bandwidth (0 means "automatic")
1079 * - encoding: Set by user.
1080 * - decoding: unused
1081 */
1083
1084 /**
1085 * Type of service that the audio stream conveys.
1086 * - encoding: Set by user.
1087 * - decoding: Set by libavcodec.
1088 */
1090
1091 /**
1092 * desired sample format
1093 * - encoding: Not used.
1094 * - decoding: Set by user.
1095 * Decoder will decode to this format if it can.
1096 */
1098
1099 /**
1100 * Audio only. The number of "priming" samples (padding) inserted by the
1101 * encoder at the beginning of the audio. I.e. this number of leading
1102 * decoded samples must be discarded by the caller to get the original audio
1103 * without leading padding.
1104 *
1105 * - decoding: unused
1106 * - encoding: Set by libavcodec. The timestamps on the output packets are
1107 * adjusted by the encoder so that they always refer to the
1108 * first sample of the data actually contained in the packet,
1109 * including any added padding. E.g. if the timebase is
1110 * 1/samplerate and the timestamp of the first input sample is
1111 * 0, the timestamp of the first output packet will be
1112 * -initial_padding.
1113 */
1115
1116 /**
1117 * Audio only. The amount of padding (in samples) appended by the encoder to
1118 * the end of the audio. I.e. this number of decoded samples must be
1119 * discarded by the caller from the end of the stream to get the original
1120 * audio without any trailing padding.
1121 *
1122 * - decoding: unused
1123 * - encoding: unused
1124 */
1126
1127 /**
1128 * Number of samples to skip after a discontinuity
1129 * - decoding: unused
1130 * - encoding: set by libavcodec
1131 */
1133
1134 /**
1135 * This callback is called at the beginning of each frame to get data
1136 * buffer(s) for it. There may be one contiguous buffer for all the data or
1137 * there may be a buffer per each data plane or anything in between. What
1138 * this means is, you may set however many entries in buf[] you feel necessary.
1139 * Each buffer must be reference-counted using the AVBuffer API (see description
1140 * of buf[] below).
1141 *
1142 * The following fields will be set in the frame before this callback is
1143 * called:
1144 * - format
1145 * - width, height (video only)
1146 * - sample_rate, channel_layout, nb_samples (audio only)
1147 * Their values may differ from the corresponding values in
1148 * AVCodecContext. This callback must use the frame values, not the codec
1149 * context values, to calculate the required buffer size.
1150 *
1151 * This callback must fill the following fields in the frame:
1152 * - data[]
1153 * - linesize[]
1154 * - extended_data:
1155 * * if the data is planar audio with more than 8 channels, then this
1156 * callback must allocate and fill extended_data to contain all pointers
1157 * to all data planes. data[] must hold as many pointers as it can.
1158 * extended_data must be allocated with av_malloc() and will be freed in
1159 * av_frame_unref().
1160 * * otherwise extended_data must point to data
1161 * - buf[] must contain one or more pointers to AVBufferRef structures. Each of
1162 * the frame's data and extended_data pointers must be contained in these. That
1163 * is, one AVBufferRef for each allocated chunk of memory, not necessarily one
1164 * AVBufferRef per data[] entry. See: av_buffer_create(), av_buffer_alloc(),
1165 * and av_buffer_ref().
1166 * - extended_buf and nb_extended_buf must be allocated with av_malloc() by
1167 * this callback and filled with the extra buffers if there are more
1168 * buffers than buf[] can hold. extended_buf will be freed in
1169 * av_frame_unref().
1170 * Decoders will generally initialize the whole buffer before it is output
1171 * but it can in rare error conditions happen that uninitialized data is passed
1172 * through. \important The buffers returned by get_buffer* should thus not contain sensitive
1173 * data.
1174 *
1175 * If AV_CODEC_CAP_DR1 is not set then get_buffer2() must call
1176 * avcodec_default_get_buffer2() instead of providing buffers allocated by
1177 * some other means.
1178 *
1179 * Each data plane must be aligned to the maximum required by the target
1180 * CPU.
1181 *
1182 * @see avcodec_default_get_buffer2()
1183 *
1184 * Video:
1185 *
1186 * If AV_GET_BUFFER_FLAG_REF is set in flags then the frame may be reused
1187 * (read and/or written to if it is writable) later by libavcodec.
1188 *
1189 * avcodec_align_dimensions2() should be used to find the required width and
1190 * height, as they normally need to be rounded up to the next multiple of 16.
1191 *
1192 * Some decoders do not support linesizes changing between frames.
1193 *
1194 * If frame multithreading is used, this callback may be called from a
1195 * different thread, but not from more than one at once. Does not need to be
1196 * reentrant.
1197 *
1198 * @see avcodec_align_dimensions2()
1199 *
1200 * Audio:
1201 *
1202 * Decoders request a buffer of a particular size by setting
1203 * AVFrame.nb_samples prior to calling get_buffer2(). The decoder may,
1204 * however, utilize only part of the buffer by setting AVFrame.nb_samples
1205 * to a smaller value in the output frame.
1206 *
1207 * As a convenience, av_samples_get_buffer_size() and
1208 * av_samples_fill_arrays() in libavutil may be used by custom get_buffer2()
1209 * functions to find the required data size and to fill data pointers and
1210 * linesize. In AVFrame.linesize, only linesize[0] may be set for audio
1211 * since all planes must be the same size.
1212 *
1213 * @see av_samples_get_buffer_size(), av_samples_fill_arrays()
1214 *
1215 * - encoding: unused
1216 * - decoding: Set by libavcodec, user can override.
1217 */
1219
1220 /* - encoding parameters */
1221 /**
1222 * number of bits the bitstream is allowed to diverge from the reference.
1223 * the reference can be CBR (for CBR pass1) or VBR (for pass2)
1224 * - encoding: Set by user; unused for constant quantizer encoding.
1225 * - decoding: unused
1226 */
1228
1229 /**
1230 * Global quality for codecs which cannot change it per frame.
1231 * This should be proportional to MPEG-1/2/4 qscale.
1232 * - encoding: Set by user.
1233 * - decoding: unused
1234 */
1236
1237 /**
1238 * - encoding: Set by user.
1239 * - decoding: unused
1240 */
1242#define FF_COMPRESSION_DEFAULT -1
1243
1244 float qcompress; ///< amount of qscale change between easy & hard scenes (0.0-1.0)
1245 float qblur; ///< amount of qscale smoothing over time (0.0-1.0)
1246
1247 /**
1248 * minimum quantizer
1249 * - encoding: Set by user.
1250 * - decoding: unused
1251 */
1252 int qmin;
1253
1254 /**
1255 * maximum quantizer
1256 * - encoding: Set by user.
1257 * - decoding: unused
1258 */
1259 int qmax;
1260
1261 /**
1262 * maximum quantizer difference between frames
1263 * - encoding: Set by user.
1264 * - decoding: unused
1265 */
1267
1268 /**
1269 * decoder bitstream buffer size
1270 * - encoding: Set by user.
1271 * - decoding: May be set by libavcodec.
1272 */
1274
1275 /**
1276 * ratecontrol override, see RcOverride
1277 * - encoding: Allocated/set/freed by user.
1278 * - decoding: unused
1279 */
1282
1283 /**
1284 * maximum bitrate
1285 * - encoding: Set by user.
1286 * - decoding: Set by user, may be overwritten by libavcodec.
1287 */
1289
1290 /**
1291 * minimum bitrate
1292 * - encoding: Set by user.
1293 * - decoding: unused
1294 */
1296
1297 /**
1298 * Ratecontrol attempt to use, at maximum, <value> of what can be used without an underflow.
1299 * - encoding: Set by user.
1300 * - decoding: unused.
1301 */
1303
1304 /**
1305 * Ratecontrol attempt to use, at least, <value> times the amount needed to prevent a vbv overflow.
1306 * - encoding: Set by user.
1307 * - decoding: unused.
1308 */
1310
1311 /**
1312 * Number of bits which should be loaded into the rc buffer before decoding starts.
1313 * - encoding: Set by user.
1314 * - decoding: unused
1315 */
1317
1318 /**
1319 * trellis RD quantization
1320 * - encoding: Set by user.
1321 * - decoding: unused
1322 */
1324
1325 /**
1326 * pass1 encoding statistics output buffer
1327 * - encoding: Set by libavcodec.
1328 * - decoding: unused
1329 */
1331
1332 /**
1333 * pass2 encoding statistics input buffer
1334 * Concatenated stuff from stats_out of pass1 should be placed here.
1335 * - encoding: Allocated/set/freed by user.
1336 * - decoding: unused
1337 */
1339
1340 /**
1341 * Work around bugs in encoders which sometimes cannot be detected automatically.
1342 * - encoding: Set by user
1343 * - decoding: Set by user
1344 */
1346#define FF_BUG_AUTODETECT 1 ///< autodetection
1347#define FF_BUG_XVID_ILACE 4
1348#define FF_BUG_UMP4 8
1349#define FF_BUG_NO_PADDING 16
1350#define FF_BUG_AMV 32
1351#define FF_BUG_QPEL_CHROMA 64
1352#define FF_BUG_STD_QPEL 128
1353#define FF_BUG_QPEL_CHROMA2 256
1354#define FF_BUG_DIRECT_BLOCKSIZE 512
1355#define FF_BUG_EDGE 1024
1356#define FF_BUG_HPEL_CHROMA 2048
1357#define FF_BUG_DC_CLIP 4096
1358#define FF_BUG_MS 8192 ///< Work around various bugs in Microsoft's broken decoders.
1359#define FF_BUG_TRUNCATED 16384
1360#define FF_BUG_IEDGE 32768
1361#define FF_BUG_H264_DP_NNZ 65536 ///< H.264: JM's nC derivation for partitioned slices.
1362
1363 /**
1364 * strictly follow the standard (MPEG-4, ...).
1365 * - encoding: Set by user.
1366 * - decoding: Set by user.
1367 * Setting this to STRICT or higher means the encoder and decoder will
1368 * generally do stupid things, whereas setting it to unofficial or lower
1369 * will mean the encoder might produce output that is not supported by all
1370 * spec-compliant decoders. Decoders don't differentiate between normal,
1371 * unofficial and experimental (that is, they always try to decode things
1372 * when they can) unless they are explicitly asked to behave stupidly
1373 * (=strictly conform to the specs)
1374 * This may only be set to one of the FF_COMPLIANCE_* values in defs.h.
1375 */
1377
1378 /**
1379 * error concealment flags
1380 * - encoding: unused
1381 * - decoding: Set by user.
1382 */
1384#define FF_EC_GUESS_MVS 1
1385#define FF_EC_DEBLOCK 2
1386#define FF_EC_FAVOR_INTER 256
1387
1388 /**
1389 * debug
1390 * - encoding: Set by user.
1391 * - decoding: Set by user.
1392 */
1394#define FF_DEBUG_PICT_INFO 1
1395#define FF_DEBUG_RC 2
1396#define FF_DEBUG_BITSTREAM 4
1397#define FF_DEBUG_MB_TYPE 8
1398#define FF_DEBUG_QP 16
1399#define FF_DEBUG_DCT_COEFF 0x00000040
1400#define FF_DEBUG_SKIP 0x00000080
1401#define FF_DEBUG_STARTCODE 0x00000100
1402#define FF_DEBUG_ER 0x00000400
1403#define FF_DEBUG_MMCO 0x00000800
1404#define FF_DEBUG_BUGS 0x00001000
1405#define FF_DEBUG_BUFFERS 0x00008000
1406#define FF_DEBUG_THREADS 0x00010000
1407#define FF_DEBUG_GREEN_MD 0x00800000
1408#define FF_DEBUG_NOMC 0x01000000
1409
1410 /**
1411 * Error recognition; may misdetect some more or less valid parts as errors.
1412 * This is a bitfield of the AV_EF_* values defined in defs.h.
1413 *
1414 * - encoding: Set by user.
1415 * - decoding: Set by user.
1416 */
1418
1419 /**
1420 * Hardware accelerator in use
1421 * - encoding: unused.
1422 * - decoding: Set by libavcodec
1423 */
1424 const struct AVHWAccel *hwaccel;
1425
1426 /**
1427 * Legacy hardware accelerator context.
1428 *
1429 * For some hardware acceleration methods, the caller may use this field to
1430 * signal hwaccel-specific data to the codec. The struct pointed to by this
1431 * pointer is hwaccel-dependent and defined in the respective header. Please
1432 * refer to the FFmpeg HW accelerator documentation to know how to fill
1433 * this.
1434 *
1435 * In most cases this field is optional - the necessary information may also
1436 * be provided to libavcodec through @ref hw_frames_ctx or @ref
1437 * hw_device_ctx (see avcodec_get_hw_config()). However, in some cases it
1438 * may be the only method of signalling some (optional) information.
1439 *
1440 * The struct and its contents are owned by the caller.
1441 *
1442 * - encoding: May be set by the caller before avcodec_open2(). Must remain
1443 * valid until avcodec_free_context().
1444 * - decoding: May be set by the caller in the get_format() callback.
1445 * Must remain valid until the next get_format() call,
1446 * or avcodec_free_context() (whichever comes first).
1447 */
1449
1450 /**
1451 * A reference to the AVHWFramesContext describing the input (for encoding)
1452 * or output (decoding) frames. The reference is set by the caller and
1453 * afterwards owned (and freed) by libavcodec - it should never be read by
1454 * the caller after being set.
1455 *
1456 * - decoding: This field should be set by the caller from the get_format()
1457 * callback. The previous reference (if any) will always be
1458 * unreffed by libavcodec before the get_format() call.
1459 *
1460 * If the default get_buffer2() is used with a hwaccel pixel
1461 * format, then this AVHWFramesContext will be used for
1462 * allocating the frame buffers.
1463 *
1464 * - encoding: For hardware encoders configured to use a hwaccel pixel
1465 * format, this field should be set by the caller to a reference
1466 * to the AVHWFramesContext describing input frames.
1467 * AVHWFramesContext.format must be equal to
1468 * AVCodecContext.pix_fmt.
1469 *
1470 * This field should be set before avcodec_open2() is called.
1471 */
1473
1474 /**
1475 * A reference to the AVHWDeviceContext describing the device which will
1476 * be used by a hardware encoder/decoder. The reference is set by the
1477 * caller and afterwards owned (and freed) by libavcodec.
1478 *
1479 * This should be used if either the codec device does not require
1480 * hardware frames or any that are used are to be allocated internally by
1481 * libavcodec. If the user wishes to supply any of the frames used as
1482 * encoder input or decoder output then hw_frames_ctx should be used
1483 * instead. When hw_frames_ctx is set in get_format() for a decoder, this
1484 * field will be ignored while decoding the associated stream segment, but
1485 * may again be used on a following one after another get_format() call.
1486 *
1487 * For both encoders and decoders this field should be set before
1488 * avcodec_open2() is called and must not be written to thereafter.
1489 *
1490 * Note that some decoders may require this field to be set initially in
1491 * order to support hw_frames_ctx at all - in that case, all frames
1492 * contexts used must be created on the same device.
1493 */
1495
1496 /**
1497 * Bit set of AV_HWACCEL_FLAG_* flags, which affect hardware accelerated
1498 * decoding (if active).
1499 * - encoding: unused
1500 * - decoding: Set by user (either before avcodec_open2(), or in the
1501 * AVCodecContext.get_format callback)
1502 */
1504
1505 /**
1506 * Video decoding only. Sets the number of extra hardware frames which
1507 * the decoder will allocate for use by the caller. This must be set
1508 * before avcodec_open2() is called.
1509 *
1510 * Some hardware decoders require all frames that they will use for
1511 * output to be defined in advance before decoding starts. For such
1512 * decoders, the hardware frame pool must therefore be of a fixed size.
1513 * The extra frames set here are on top of any number that the decoder
1514 * needs internally in order to operate normally (for example, frames
1515 * used as reference pictures).
1516 */
1518
1519 /**
1520 * error
1521 * - encoding: Set by libavcodec if flags & AV_CODEC_FLAG_PSNR.
1522 * - decoding: unused
1523 */
1525
1526 /**
1527 * DCT algorithm, see FF_DCT_* below
1528 * - encoding: Set by user.
1529 * - decoding: unused
1530 */
1532#define FF_DCT_AUTO 0
1533#define FF_DCT_FASTINT 1
1534#define FF_DCT_INT 2
1535#define FF_DCT_MMX 3
1536#define FF_DCT_ALTIVEC 5
1537#define FF_DCT_FAAN 6
1538#define FF_DCT_NEON 7
1539/**
1540 * Select a RISC-V Vector implementation of the forward DCT when available.
1541 */
1542#define FF_DCT_RVV 8
1543
1544 /**
1545 * IDCT algorithm, see FF_IDCT_* below.
1546 * - encoding: Set by user.
1547 * - decoding: Set by user.
1548 */
1550#define FF_IDCT_AUTO 0
1551#define FF_IDCT_INT 1
1552#define FF_IDCT_SIMPLE 2
1553#define FF_IDCT_SIMPLEMMX 3
1554#define FF_IDCT_ARM 7
1555#define FF_IDCT_ALTIVEC 8
1556#define FF_IDCT_SIMPLEARM 10
1557#define FF_IDCT_XVID 14
1558#define FF_IDCT_SIMPLEARMV5TE 16
1559#define FF_IDCT_SIMPLEARMV6 17
1560#define FF_IDCT_FAAN 20
1561#define FF_IDCT_SIMPLENEON 22
1562#define FF_IDCT_SIMPLEAUTO 128
1563
1564 /**
1565 * bits per sample/pixel from the demuxer (needed for huffyuv).
1566 * - encoding: Set by libavcodec.
1567 * - decoding: Set by user.
1568 */
1570
1571 /**
1572 * Bits per sample/pixel of internal libavcodec pixel/sample format.
1573 * - encoding: set by user.
1574 * - decoding: set by libavcodec.
1575 */
1577
1578 /**
1579 * thread count
1580 * is used to decide how many independent tasks should be passed to execute()
1581 * - encoding: Set by user.
1582 * - decoding: Set by user.
1583 */
1585
1586 /**
1587 * Which multithreading methods to use.
1588 * Use of FF_THREAD_FRAME will increase decoding delay by one frame per thread,
1589 * so clients which cannot provide future frames should not use it.
1590 *
1591 * - encoding: Set by user, otherwise the default is used.
1592 * - decoding: Set by user, otherwise the default is used.
1593 */
1595#define FF_THREAD_FRAME 1 ///< Decode more than one frame at once
1596#define FF_THREAD_SLICE 2 ///< Decode more than one part of a single frame at once
1597
1598 /**
1599 * Which multithreading methods are in use by the codec.
1600 * - encoding: Set by libavcodec.
1601 * - decoding: Set by libavcodec.
1602 */
1604
1605 /**
1606 * The codec may call this to execute several independent things.
1607 * It will return only after finishing all tasks.
1608 * The user may replace this with some multithreaded implementation,
1609 * the default implementation will execute the parts serially.
1610 * @param count the number of things to execute
1611 * - encoding: Set by libavcodec, user can override.
1612 * - decoding: Set by libavcodec, user can override.
1613 */
1614 int (*execute)(struct AVCodecContext *c, int (*func)(struct AVCodecContext *c2, void *arg), void *arg2, int *ret, int count, int size);
1615
1616 /**
1617 * The codec may call this to execute several independent things.
1618 * It will return only after finishing all tasks.
1619 * The user may replace this with some multithreaded implementation,
1620 * the default implementation will execute the parts serially.
1621 * @param c context passed also to func
1622 * @param count the number of things to execute
1623 * @param arg2 argument passed unchanged to func
1624 * @param ret return values of executed functions, must have space for "count" values. May be NULL.
1625 * @param func function that will be called count times, with jobnr from 0 to count-1.
1626 * threadnr will be in the range 0 to c->thread_count-1 < MAX_THREADS and so that no
1627 * two instances of func executing at the same time will have the same threadnr.
1628 * @return always 0 currently, but code should handle a future improvement where when any call to func
1629 * returns < 0 no further calls to func may be done and < 0 is returned.
1630 * - encoding: Set by libavcodec, user can override.
1631 * - decoding: Set by libavcodec, user can override.
1632 */
1633 int (*execute2)(struct AVCodecContext *c, int (*func)(struct AVCodecContext *c2, void *arg, int jobnr, int threadnr), void *arg2, int *ret, int count);
1634
1635 /**
1636 * profile
1637 * - encoding: Set by user.
1638 * - decoding: Set by libavcodec.
1639 * See the AV_PROFILE_* defines in defs.h.
1640 */
1642
1643 /**
1644 * Encoding level descriptor.
1645 * - encoding: Set by user, corresponds to a specific level defined by the
1646 * codec, usually corresponding to the profile level, if not specified it
1647 * is set to AV_LEVEL_UNKNOWN.
1648 * - decoding: Set by libavcodec.
1649 * See AV_LEVEL_* in defs.h.
1650 */
1652
1653 /**
1654 * Skip loop filtering for selected frames.
1655 * - encoding: unused
1656 * - decoding: Set by user.
1657 */
1659
1660 /**
1661 * Skip IDCT/dequantization for selected frames.
1662 * - encoding: unused
1663 * - decoding: Set by user.
1664 */
1666
1667 /**
1668 * Skip decoding for selected frames.
1669 * - encoding: unused
1670 * - decoding: Set by user.
1671 */
1673
1674 /**
1675 * Skip processing alpha if supported by codec.
1676 * Note that if the format uses pre-multiplied alpha (common with VP6,
1677 * and recommended due to better video quality/compression)
1678 * the image will look as if alpha-blended onto a black background.
1679 * However for formats that do not use pre-multiplied alpha
1680 * there might be serious artefacts (though e.g. libswscale currently
1681 * assumes pre-multiplied alpha anyway).
1682 *
1683 * - decoding: set by user
1684 * - encoding: unused
1685 */
1687
1688 /**
1689 * Number of macroblock rows at the top which are skipped.
1690 * - encoding: unused
1691 * - decoding: Set by user.
1692 */
1694
1695 /**
1696 * Number of macroblock rows at the bottom which are skipped.
1697 * - encoding: unused
1698 * - decoding: Set by user.
1699 */
1701
1702 /**
1703 * low resolution decoding, 1-> 1/2 size, 2->1/4 size
1704 * - encoding: unused
1705 * - decoding: Set by user.
1706 */
1708
1709 /**
1710 * AVCodecDescriptor
1711 * - encoding: unused.
1712 * - decoding: set by libavcodec.
1713 */
1715
1716 /**
1717 * Character encoding of the input subtitles file.
1718 * - decoding: set by user
1719 * - encoding: unused
1720 */
1722
1723 /**
1724 * Subtitles character encoding mode. Formats or codecs might be adjusting
1725 * this setting (if they are doing the conversion themselves for instance).
1726 * - decoding: set by libavcodec
1727 * - encoding: unused
1728 */
1730#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)
1731#define FF_SUB_CHARENC_MODE_AUTOMATIC 0 ///< libavcodec will select the mode itself
1732#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
1733#define FF_SUB_CHARENC_MODE_IGNORE 2 ///< neither convert the subtitles, nor check them for valid UTF-8
1734
1735 /**
1736 * Header containing style information for text subtitles.
1737 * For SUBTITLE_ASS subtitle type, it should contain the whole ASS
1738 * [Script Info] and [V4+ Styles] section, plus the [Events] line and
1739 * the Format line following. It shouldn't include any Dialogue line.
1740 *
1741 * - encoding: May be set by the caller before avcodec_open2() to an array
1742 * allocated with the av_malloc() family of functions.
1743 * - decoding: May be set by libavcodec in avcodec_open2().
1744 *
1745 * After being set, the array is owned by the codec and freed in
1746 * avcodec_free_context().
1747 */
1750
1751 /**
1752 * dump format separator.
1753 * can be ", " or "\n " or anything else
1754 * - encoding: Set by user.
1755 * - decoding: Set by user.
1756 */
1758
1759 /**
1760 * ',' separated list of allowed decoders.
1761 * If NULL then all are allowed
1762 * - encoding: unused
1763 * - decoding: set by user
1764 */
1766
1767 /**
1768 * Additional data associated with the entire coded stream.
1769 *
1770 * - decoding: may be set by user before calling avcodec_open2().
1771 * - encoding: may be set by libavcodec after avcodec_open2().
1772 */
1775
1776 /**
1777 * Bit set of AV_CODEC_EXPORT_DATA_* flags, which affects the kind of
1778 * metadata exported in frame, packet, or coded stream side data by
1779 * decoders and encoders.
1780 *
1781 * - decoding: set by user
1782 * - encoding: set by user
1783 */
1785
1786 /**
1787 * The number of pixels per image to maximally accept.
1788 *
1789 * - decoding: set by user
1790 * - encoding: set by user
1791 */
1793
1794 /**
1795 * Video decoding only. Certain video codecs support cropping, meaning that
1796 * only a sub-rectangle of the decoded frame is intended for display. This
1797 * option controls how cropping is handled by libavcodec.
1798 *
1799 * When set to 1 (the default), libavcodec will apply cropping internally.
1800 * I.e. it will modify the output frame width/height fields and offset the
1801 * data pointers (only by as much as possible while preserving alignment, or
1802 * by the full amount if the AV_CODEC_FLAG_UNALIGNED flag is set) so that
1803 * the frames output by the decoder refer only to the cropped area. The
1804 * crop_* fields of the output frames will be zero.
1805 *
1806 * When set to 0, the width/height fields of the output frames will be set
1807 * to the coded dimensions and the crop_* fields will describe the cropping
1808 * rectangle. Applying the cropping is left to the caller.
1809 *
1810 * @warning When hardware acceleration with opaque output frames is used,
1811 * libavcodec is unable to apply cropping from the top/left border.
1812 *
1813 * @note when this option is set to zero, the width/height fields of the
1814 * AVCodecContext and output AVFrames have different meanings. The codec
1815 * context fields store display dimensions (with the coded dimensions in
1816 * coded_width/height), while the frame fields store the coded dimensions
1817 * (with the display dimensions being determined by the crop_* fields).
1818 */
1820
1821 /**
1822 * The percentage of damaged samples to discard a frame.
1823 *
1824 * - decoding: set by user
1825 * - encoding: unused
1826 */
1828
1829 /**
1830 * The number of samples per frame to maximally accept.
1831 *
1832 * - decoding: set by user
1833 * - encoding: set by user
1834 */
1836
1837 /**
1838 * This callback is called at the beginning of each packet to get a data
1839 * buffer for it.
1840 *
1841 * The following field will be set in the packet before this callback is
1842 * called:
1843 * - size
1844 * This callback must use the above value to calculate the required buffer size,
1845 * which must padded by at least AV_INPUT_BUFFER_PADDING_SIZE bytes.
1846 *
1847 * In some specific cases, the encoder may not use the entire buffer allocated by this
1848 * callback. This will be reflected in the size value in the packet once returned by
1849 * avcodec_receive_packet().
1850 *
1851 * This callback must fill the following fields in the packet:
1852 * - data: alignment requirements for AVPacket apply, if any. Some architectures and
1853 * encoders may benefit from having aligned data.
1854 * - buf: must contain a pointer to an AVBufferRef structure. The packet's
1855 * data pointer must be contained in it. See: av_buffer_create(), av_buffer_alloc(),
1856 * and av_buffer_ref().
1857 *
1858 * If AV_CODEC_CAP_DR1 is not set then get_encode_buffer() must call
1859 * avcodec_default_get_encode_buffer() instead of providing a buffer allocated by
1860 * some other means.
1861 *
1862 * The flags field may contain a combination of AV_GET_ENCODE_BUFFER_FLAG_ flags.
1863 * They may be used for example to hint what use the buffer may get after being
1864 * created.
1865 * Implementations of this callback may ignore flags they don't understand.
1866 * If AV_GET_ENCODE_BUFFER_FLAG_REF is set in flags then the packet may be reused
1867 * (read and/or written to if it is writable) later by libavcodec.
1868 *
1869 * This callback must be thread-safe, as when frame threading is used, it may
1870 * be called from multiple threads simultaneously.
1871 *
1872 * @see avcodec_default_get_encode_buffer()
1873 *
1874 * - encoding: Set by libavcodec, user can override.
1875 * - decoding: unused
1876 */
1878
1879 /**
1880 * Frame counter, set by libavcodec.
1881 *
1882 * - decoding: total number of frames returned from the decoder so far.
1883 * - encoding: total number of frames passed to the encoder so far.
1884 *
1885 * @note the counter is not incremented if encoding/decoding resulted in
1886 * an error.
1887 */
1889
1890 /**
1891 * Decoding only. May be set by the caller before avcodec_open2() to an
1892 * av_malloc()'ed array (or via AVOptions). Owned and freed by the decoder
1893 * afterwards.
1894 *
1895 * Side data attached to decoded frames may come from several sources:
1896 * 1. coded_side_data, which the decoder will for certain types translate
1897 * from packet-type to frame-type and attach to frames;
1898 * 2. side data attached to an AVPacket sent for decoding (same
1899 * considerations as above);
1900 * 3. extracted from the coded bytestream.
1901 * The first two cases are supplied by the caller and typically come from a
1902 * container.
1903 *
1904 * This array configures decoder behaviour in cases when side data of the
1905 * same type is present both in the coded bytestream and in the
1906 * user-supplied side data (items 1. and 2. above). In all cases, at most
1907 * one instance of each side data type will be attached to output frames. By
1908 * default it will be the bytestream side data. Adding an
1909 * AVPacketSideDataType value to this array will flip the preference for
1910 * this type, thus making the decoder prefer user-supplied side data over
1911 * bytestream. In case side data of the same type is present both in
1912 * coded_data and attacked to a packet, the packet instance always has
1913 * priority.
1914 *
1915 * The array may also contain a single -1, in which case the preference is
1916 * switched for all side data types.
1917 */
1919 /**
1920 * Number of entries in side_data_prefer_packet.
1921 */
1923
1924 /**
1925 * Array containing static side data, such as HDR10 CLL / MDCV structures.
1926 * Side data entries should be allocated by usage of helpers defined in
1927 * libavutil/frame.h.
1928 *
1929 * - encoding: may be set by user before calling avcodec_open2() for
1930 * encoder configuration. Afterwards owned and freed by the
1931 * encoder.
1932 * - decoding: may be set by libavcodec in avcodec_open2().
1933 */
1936
1937 /**
1938 * Indicates how the alpha channel of the video is represented.
1939 * - encoding: Set by user
1940 * - decoding: Set by libavcodec
1941 */
1943
1944 /**
1945 * Skip prediction (intra prediction and motion compensation) for
1946 * selected frames. When skip_pred and skip_idct both discard a frame,
1947 * the decoder may skip all pixel operations for it and output it with
1948 * valid metadata and undefined pixels.
1949 * - encoding: unused
1950 * - decoding: Set by user.
1951 */
1954
1955/**
1956 * @defgroup lavc_hwaccel AVHWAccel
1957 *
1958 * @note Nothing in this structure should be accessed by the user. At some
1959 * point in future it will not be externally visible at all.
1960 *
1961 * @{
1962 */
1963typedef struct AVHWAccel {
1964 /**
1965 * Name of the hardware accelerated codec.
1966 * The name is globally unique among encoders and among decoders (but an
1967 * encoder and a decoder can share the same name).
1968 */
1969 const char *name;
1970
1971 /**
1972 * Type of codec implemented by the hardware accelerator.
1973 *
1974 * See AVMEDIA_TYPE_xxx
1975 */
1977
1978 /**
1979 * Codec implemented by the hardware accelerator.
1980 *
1981 * See AV_CODEC_ID_xxx
1982 */
1984
1985 /**
1986 * Supported pixel format.
1987 *
1988 * Only hardware accelerated formats are supported here.
1989 */
1991
1992 /**
1993 * Hardware accelerated codec capabilities.
1994 * see AV_HWACCEL_CODEC_CAP_*
1995 */
1997} AVHWAccel;
1998
1999/**
2000 * HWAccel is experimental and is thus avoided in favor of non experimental
2001 * codecs
2002 */
2003#define AV_HWACCEL_CODEC_CAP_EXPERIMENTAL 0x0200
2004
2005/**
2006 * Hardware acceleration should be used for decoding even if the codec level
2007 * used is unknown or higher than the maximum supported level reported by the
2008 * hardware driver.
2009 *
2010 * It's generally a good idea to pass this flag unless you have a specific
2011 * reason not to, as hardware tends to under-report supported levels.
2012 */
2013#define AV_HWACCEL_FLAG_IGNORE_LEVEL (1 << 0)
2014
2015/**
2016 * Hardware acceleration can output YUV pixel formats with a different chroma
2017 * sampling than 4:2:0 and/or other than 8 bits per component.
2018 */
2019#define AV_HWACCEL_FLAG_ALLOW_HIGH_DEPTH (1 << 1)
2020
2021/**
2022 * Hardware acceleration should still be attempted for decoding when the
2023 * codec profile does not match the reported capabilities of the hardware.
2024 *
2025 * For example, this can be used to try to decode baseline profile H.264
2026 * streams in hardware - it will often succeed, because many streams marked
2027 * as baseline profile actually conform to constrained baseline profile.
2028 *
2029 * @warning If the stream is actually not supported then the behaviour is
2030 * undefined, and may include returning entirely incorrect output
2031 * while indicating success.
2032 */
2033#define AV_HWACCEL_FLAG_ALLOW_PROFILE_MISMATCH (1 << 2)
2034
2035/**
2036 * Some hardware decoders (namely nvdec) can either output direct decoder
2037 * surfaces, or make an on-device copy and return said copy.
2038 * There is a hard limit on how many decoder surfaces there can be, and it
2039 * cannot be accurately guessed ahead of time.
2040 * For some processing chains, this can be okay, but others will run into the
2041 * limit and in turn produce very confusing errors that require fine tuning of
2042 * more or less obscure options by the user, or in extreme cases cannot be
2043 * resolved at all without inserting an avfilter that forces a copy.
2044 *
2045 * Thus, the hwaccel will by default make a copy for safety and resilience.
2046 * If a users really wants to minimize the amount of copies, they can set this
2047 * flag and ensure their processing chain does not exhaust the surface pool.
2048 */
2049#define AV_HWACCEL_FLAG_UNSAFE_OUTPUT (1 << 3)
2050
2051/**
2052 * @}
2053 */
2054
2057
2058 SUBTITLE_BITMAP, ///< A bitmap, pict will be set
2059
2060 /**
2061 * Plain text, the text field must be set by the decoder and is
2062 * authoritative. ass and pict fields may contain approximations.
2063 */
2065
2066 /**
2067 * Formatted text, the ass field must be set by the decoder and is
2068 * authoritative. pict and text fields may contain approximations.
2069 */
2071};
2072
2073#define AV_SUBTITLE_FLAG_FORCED 0x00000001
2074
2075typedef struct AVSubtitleRect {
2076 int x; ///< top left corner of pict, undefined when pict is not set
2077 int y; ///< top left corner of pict, undefined when pict is not set
2078 int w; ///< width of pict, undefined when pict is not set
2079 int h; ///< height of pict, undefined when pict is not set
2080 int nb_colors; ///< number of colors in pict, undefined when pict is not set
2081
2082 /**
2083 * data+linesize for the bitmap of this subtitle.
2084 * Can be set for text/ass as well once they are rendered.
2085 */
2086 uint8_t *data[4];
2087 int linesize[4];
2088
2091
2092 char *text; ///< 0 terminated plain UTF-8 text
2093
2094 /**
2095 * 0 terminated ASS/SSA compatible event line.
2096 * The presentation of this is unaffected by the other values in this
2097 * struct.
2098 */
2099 char *ass;
2101
2102typedef struct AVSubtitle {
2103 uint16_t format; /* 0 = graphics */
2104 uint32_t start_display_time; /* relative to packet pts, in ms */
2105 uint32_t end_display_time; /* relative to packet pts, in ms */
2106 unsigned num_rects;
2108 int64_t pts; ///< Same as packet pts, in AV_TIME_BASE
2109} AVSubtitle;
2110
2111/**
2112 * Return the LIBAVCODEC_VERSION_INT constant.
2113 */
2114unsigned avcodec_version(void);
2115
2116/**
2117 * Return the libavcodec build-time configuration.
2118 */
2119const char *avcodec_configuration(void);
2120
2121/**
2122 * Return the libavcodec license.
2123 */
2124const char *avcodec_license(void);
2125
2126/**
2127 * Allocate an AVCodecContext and set its fields to default values. The
2128 * resulting struct should be freed with avcodec_free_context().
2129 *
2130 * @param codec if non-NULL, allocate private data and initialize defaults
2131 * for the given codec. It is illegal to then call avcodec_open2()
2132 * with a different codec.
2133 * If NULL, then the codec-specific defaults won't be initialized,
2134 * which may result in suboptimal default settings (this is
2135 * important mainly for encoders, e.g. libx264).
2136 *
2137 * @return An AVCodecContext filled with default values or NULL on failure.
2138 */
2140
2141/**
2142 * Free the codec context and everything associated with it and write NULL to
2143 * the provided pointer.
2144 */
2146
2147/**
2148 * Get the AVClass for AVCodecContext. It can be used in combination with
2149 * AV_OPT_SEARCH_FAKE_OBJ for examining options.
2150 *
2151 * @see av_opt_find().
2152 */
2153const AVClass *avcodec_get_class(void);
2154
2155/**
2156 * Get the AVClass for AVSubtitleRect. It can be used in combination with
2157 * AV_OPT_SEARCH_FAKE_OBJ for examining options.
2158 *
2159 * @see av_opt_find().
2160 */
2162
2163/**
2164 * Fill the parameters struct based on the values from the supplied codec
2165 * context. Any allocated fields in par are freed and replaced with duplicates
2166 * of the corresponding fields in codec.
2167 *
2168 * @return >= 0 on success, a negative AVERROR code on failure
2169 *
2170 * @relates AVCodecParameters
2171 */
2173 const AVCodecContext *codec);
2174
2175/**
2176 * Fill the codec context based on the values from the supplied codec
2177 * parameters. Any allocated fields in codec that have a corresponding field in
2178 * par are freed and replaced with duplicates of the corresponding field in par.
2179 * Fields in codec that do not have a counterpart in par are not touched.
2180 *
2181 * @return >= 0 on success, a negative AVERROR code on failure.
2182 *
2183 * @relates AVCodecParameters
2184 */
2186 const struct AVCodecParameters *par);
2187
2188/**
2189 * Initialize the AVCodecContext to use the given AVCodec. Prior to using this
2190 * function the context has to be allocated with avcodec_alloc_context3().
2191 *
2192 * The functions avcodec_find_decoder_by_name(), avcodec_find_encoder_by_name(),
2193 * avcodec_find_decoder() and avcodec_find_encoder() provide an easy way for
2194 * retrieving a codec.
2195 *
2196 * Depending on the codec, you might need to set options in the codec context
2197 * also for decoding (e.g. width, height, or the pixel or audio sample format in
2198 * the case the information is not available in the bitstream, as when decoding
2199 * raw audio or video).
2200 *
2201 * Options in the codec context can be set either by setting them in the options
2202 * AVDictionary, or by setting the values in the context itself, directly or by
2203 * using the av_opt_set() API before calling this function.
2204 *
2205 * Example:
2206 * @code
2207 * av_dict_set(&opts, "b", "2.5M", 0);
2208 * codec = avcodec_find_decoder(AV_CODEC_ID_H264);
2209 * if (!codec)
2210 * exit(1);
2211 *
2212 * context = avcodec_alloc_context3(codec);
2213 *
2214 * if (avcodec_open2(context, codec, opts) < 0)
2215 * exit(1);
2216 * @endcode
2217 *
2218 * In the case AVCodecParameters are available (e.g. when demuxing a stream
2219 * using libavformat, and accessing the AVStream contained in the demuxer), the
2220 * codec parameters can be copied to the codec context using
2221 * avcodec_parameters_to_context(), as in the following example:
2222 *
2223 * @code
2224 * AVStream *stream = ...;
2225 * context = avcodec_alloc_context3(codec);
2226 * if (avcodec_parameters_to_context(context, stream->codecpar) < 0)
2227 * exit(1);
2228 * if (avcodec_open2(context, codec, NULL) < 0)
2229 * exit(1);
2230 * @endcode
2231 *
2232 * @note Always call this function before using decoding routines (such as
2233 * @ref avcodec_receive_frame()).
2234 *
2235 * @param avctx The context to initialize.
2236 * @param codec The codec to open this context for. If a non-NULL codec has been
2237 * previously passed to avcodec_alloc_context3() or
2238 * for this context, then this parameter MUST be either NULL or
2239 * equal to the previously passed codec.
2240 * @param options A dictionary filled with AVCodecContext and codec-private
2241 * options, which are set on top of the options already set in
2242 * avctx, can be NULL. On return this object will be filled with
2243 * options that were not found in the avctx codec context.
2244 *
2245 * @return zero on success, a negative value on error
2246 * @see avcodec_alloc_context3(), avcodec_find_decoder(), avcodec_find_encoder(),
2247 * av_dict_set(), av_opt_set(), av_opt_find(), avcodec_parameters_to_context()
2248 */
2249int avcodec_open2(AVCodecContext *avctx, const AVCodec *codec, AVDictionary **options);
2250
2251/**
2252 * Try to reconfigure the encoder with the provided dictionary. May only be used
2253 * if a codec with AV_CODEC_CAP_ENCODER_RECONF has been opened.
2254 *
2255 * Not all options can be changed, and it depends on the encoder. If any of the
2256 * options can't be applied (Either because the option can't be changed, because
2257 * invalid values for them were passed, or other errors), it is not guaranteed that
2258 * the state of the encoder is the same as prior to calling this function, but in
2259 * most cases it should.
2260 * Unapplied options will remain in *dict, and owned by the caller.
2261 *
2262 * @param avctx The context to reconfigure.
2263 * @param options A dictionary filled with AVCodecContext and codec-private
2264 * options, which are set on top of the options already set in
2265 * avctx. Can't be NULL.
2266 *
2267 * @retval 0 success
2268 * @retval AVERROR_OPTION_NOT_FOUND an entry with an invalid key was passed. The
2269 * context is untouched.
2270 * @retval AVERROR(EINVAL) an entry with an invalid value or an invalid
2271 * argument was passed.
2272 * @retval AVERROR(ENOSYS) unsupported encoder. The context is untouched.
2273 * @retval "another negative error code" other errors.
2274 */
2276
2277/**
2278 * Free all allocated data in the given subtitle struct.
2279 *
2280 * @param sub AVSubtitle to free.
2281 */
2282void avsubtitle_free(AVSubtitle *sub);
2283
2284/**
2285 * @}
2286 */
2287
2288/**
2289 * @addtogroup lavc_decoding
2290 * @{
2291 */
2292
2293/**
2294 * The default callback for AVCodecContext.get_buffer2(). It is made public so
2295 * it can be called by custom get_buffer2() implementations for decoders without
2296 * AV_CODEC_CAP_DR1 set.
2297 */
2299
2300/**
2301 * The default callback for AVCodecContext.get_encode_buffer(). It is made public so
2302 * it can be called by custom get_encode_buffer() implementations for encoders without
2303 * AV_CODEC_CAP_DR1 set.
2304 */
2306
2307/**
2308 * Modify width and height values so that they will result in a memory
2309 * buffer that is acceptable for the codec if you do not use any horizontal
2310 * padding.
2311 *
2312 * May only be used if a codec with AV_CODEC_CAP_DR1 has been opened.
2313 */
2315
2316/**
2317 * Modify width and height values so that they will result in a memory
2318 * buffer that is acceptable for the codec if you also ensure that all
2319 * line sizes are a multiple of the respective linesize_align[i].
2320 *
2321 * May only be used if a codec with AV_CODEC_CAP_DR1 has been opened.
2322 */
2324 int linesize_align[AV_NUM_DATA_POINTERS]);
2325
2326/**
2327 * Decode a subtitle message.
2328 * Return a negative value on error, otherwise return the number of bytes used.
2329 * If no subtitle could be decompressed, got_sub_ptr is zero.
2330 * Otherwise, the subtitle is stored in *sub.
2331 * Note that AV_CODEC_CAP_DR1 is not available for subtitle codecs. This is for
2332 * simplicity, because the performance difference is expected to be negligible
2333 * and reusing a get_buffer written for video codecs would probably perform badly
2334 * due to a potentially very different allocation pattern.
2335 *
2336 * Some decoders (those marked with AV_CODEC_CAP_DELAY) have a delay between input
2337 * and output. This means that for some packets they will not immediately
2338 * produce decoded output and need to be flushed at the end of decoding to get
2339 * all the decoded data. Flushing is done by calling this function with packets
2340 * with avpkt->data set to NULL and avpkt->size set to 0 until it stops
2341 * returning subtitles. It is safe to flush even those decoders that are not
2342 * marked with AV_CODEC_CAP_DELAY, then no subtitles will be returned.
2343 *
2344 * @note The AVCodecContext MUST have been opened with @ref avcodec_open2()
2345 * before packets may be fed to the decoder.
2346 *
2347 * @param avctx the codec context
2348 * @param[out] sub The preallocated AVSubtitle in which the decoded subtitle will be stored,
2349 * must be freed with avsubtitle_free if *got_sub_ptr is set.
2350 * @param[in,out] got_sub_ptr Zero if no subtitle could be decompressed, otherwise, it is nonzero.
2351 * @param[in] avpkt The input AVPacket containing the input buffer.
2352 */
2354 int *got_sub_ptr, const AVPacket *avpkt);
2355
2356/**
2357 * Supply raw packet data as input to a decoder.
2358 *
2359 * Internally, this call will copy relevant AVCodecContext fields, which can
2360 * influence decoding per-packet, and apply them when the packet is actually
2361 * decoded. (For example AVCodecContext.skip_frame, which might direct the
2362 * decoder to drop the frame contained by the packet sent with this function.)
2363 *
2364 * @warning The input buffer, avpkt->data must be AV_INPUT_BUFFER_PADDING_SIZE
2365 * larger than the actual read bytes because some optimized bitstream
2366 * readers read 32 or 64 bits at once and could read over the end.
2367 *
2368 * @note The AVCodecContext MUST have been opened with @ref avcodec_open2()
2369 * before packets may be fed to the decoder.
2370 *
2371 * @param avctx codec context
2372 * @param[in] avpkt The input AVPacket. Usually, this will be a single video
2373 * frame, or several complete audio frames.
2374 * Ownership of the packet remains with the caller, and the
2375 * decoder will not write to the packet. The decoder may create
2376 * a reference to the packet data (or copy it if the packet is
2377 * not reference-counted).
2378 * Unlike with older APIs, the packet is always fully consumed,
2379 * and if it contains multiple frames (e.g. some audio codecs),
2380 * will require you to call avcodec_receive_frame() multiple
2381 * times afterwards before you can send a new packet.
2382 * It can be NULL (or an AVPacket with data set to NULL and
2383 * size set to 0); in this case, it is considered a flush
2384 * packet, which signals the end of the stream. Sending the
2385 * first flush packet will return success. Subsequent ones are
2386 * unnecessary and will return AVERROR_EOF. If the decoder
2387 * still has frames buffered, it will return them after sending
2388 * a flush packet.
2389 *
2390 * @retval 0 success
2391 * @retval AVERROR(EAGAIN) input is not accepted in the current state - user
2392 * must read output with avcodec_receive_frame() (once
2393 * all output is read, the packet should be resent,
2394 * and the call will not fail with EAGAIN).
2395 * @retval AVERROR_EOF the decoder has been flushed, and no new packets can be
2396 * sent to it (also returned if more than 1 flush
2397 * packet is sent)
2398 * @retval AVERROR(EINVAL) codec not opened, it is an encoder, or requires flush
2399 * @retval AVERROR(ENOMEM) failed to add packet to internal queue, or similar
2400 * @retval "another negative error code" legitimate decoding errors
2401 */
2402int avcodec_send_packet(AVCodecContext *avctx, const AVPacket *avpkt);
2403
2404/**
2405 * Return decoded output data from a decoder or encoder (when the
2406 * @ref AV_CODEC_FLAG_RECON_FRAME flag is used).
2407 *
2408 * @param avctx codec context
2409 * @param frame This will be set to a reference-counted video or audio
2410 * frame (depending on the decoder type) allocated by the
2411 * codec. Note that the function will always call
2412 * av_frame_unref(frame) before doing anything else.
2413 * @param flags Combination of AV_CODEC_RECEIVE_FRAME_FLAG_* flags.
2414 *
2415 * @retval 0 success, a frame was returned
2416 * @retval AVERROR(EAGAIN) output is not available in this state - user must
2417 * try to send new input
2418 * @retval AVERROR_EOF the codec has been fully flushed, and there will be
2419 * no more output frames
2420 * @retval AVERROR(EINVAL) codec not opened, or it is an encoder without the
2421 * @ref AV_CODEC_FLAG_RECON_FRAME flag enabled
2422 * @retval "other negative error code" legitimate decoding errors
2423 */
2425
2426/**
2427 * Alias for `avcodec_receive_frame_flags(avctx, frame, 0)`.
2428 */
2430
2431/**
2432 * Supply a raw video or audio frame to the encoder. Use avcodec_receive_packet()
2433 * to retrieve buffered output packets.
2434 *
2435 * @param avctx codec context
2436 * @param[in] frame AVFrame containing the raw audio or video frame to be encoded.
2437 * Ownership of the frame remains with the caller, and the
2438 * encoder will not write to the frame. The encoder may create
2439 * a reference to the frame data (or copy it if the frame is
2440 * not reference-counted).
2441 * It can be NULL, in which case it is considered a flush
2442 * packet. This signals the end of the stream. If the encoder
2443 * still has packets buffered, it will return them after this
2444 * call. Once flushing mode has been entered, additional flush
2445 * packets are ignored, and sending frames will return
2446 * AVERROR_EOF.
2447 *
2448 * For audio:
2449 * If AV_CODEC_CAP_VARIABLE_FRAME_SIZE is set, then each frame
2450 * can have any number of samples.
2451 * If it is not set, or AV_CODEC_FLAG2_FIXED_FRAME_SIZE was
2452 * requested, then frame->nb_samples must be equal to
2453 * avctx->frame_size for all frames except the last.
2454 * The final frame may be smaller than avctx->frame_size.
2455 * @retval 0 success
2456 * @retval AVERROR(EAGAIN) input is not accepted in the current state - user must
2457 * read output with avcodec_receive_packet() (once all
2458 * output is read, the packet should be resent, and the
2459 * call will not fail with EAGAIN).
2460 * @retval AVERROR_EOF the encoder has been flushed, and no new frames can
2461 * be sent to it
2462 * @retval AVERROR(EINVAL) codec not opened, it is a decoder, or requires flush
2463 * @retval AVERROR(ENOMEM) failed to add packet to internal queue, or similar
2464 * @retval "another negative error code" legitimate encoding errors
2465 */
2467
2468/**
2469 * Read encoded data from the encoder.
2470 *
2471 * @param avctx codec context
2472 * @param avpkt This will be set to a reference-counted packet allocated by the
2473 * encoder. Note that the function will always call
2474 * av_packet_unref(avpkt) before doing anything else.
2475 * @retval 0 success
2476 * @retval AVERROR(EAGAIN) output is not available in the current state - user must
2477 * try to send input
2478 * @retval AVERROR_EOF the encoder has been fully flushed, and there will be no
2479 * more output packets
2480 * @retval AVERROR(EINVAL) codec not opened, or it is a decoder
2481 * @retval "another negative error code" legitimate encoding errors
2482 */
2484
2485/**
2486 * Create and return a AVHWFramesContext with values adequate for hardware
2487 * decoding. This is meant to get called from the get_format callback, and is
2488 * a helper for preparing a AVHWFramesContext for AVCodecContext.hw_frames_ctx.
2489 * This API is for decoding with certain hardware acceleration modes/APIs only.
2490 *
2491 * The returned AVHWFramesContext is not initialized. The caller must do this
2492 * with av_hwframe_ctx_init().
2493 *
2494 * Calling this function is not a requirement, but makes it simpler to avoid
2495 * codec or hardware API specific details when manually allocating frames.
2496 *
2497 * Alternatively to this, an API user can set AVCodecContext.hw_device_ctx,
2498 * which sets up AVCodecContext.hw_frames_ctx fully automatically, and makes
2499 * it unnecessary to call this function or having to care about
2500 * AVHWFramesContext initialization at all.
2501 *
2502 * There are a number of requirements for calling this function:
2503 *
2504 * - It must be called from get_format with the same avctx parameter that was
2505 * passed to get_format. Calling it outside of get_format is not allowed, and
2506 * can trigger undefined behavior.
2507 * - The function is not always supported (see description of return values).
2508 * Even if this function returns successfully, hwaccel initialization could
2509 * fail later. (The degree to which implementations check whether the stream
2510 * is actually supported varies. Some do this check only after the user's
2511 * get_format callback returns.)
2512 * - The hw_pix_fmt must be one of the choices suggested by get_format. If the
2513 * user decides to use a AVHWFramesContext prepared with this API function,
2514 * the user must return the same hw_pix_fmt from get_format.
2515 * - The device_ref passed to this function must support the given hw_pix_fmt.
2516 * - After calling this API function, it is the user's responsibility to
2517 * initialize the AVHWFramesContext (returned by the out_frames_ref parameter),
2518 * and to set AVCodecContext.hw_frames_ctx to it. If done, this must be done
2519 * before returning from get_format (this is implied by the normal
2520 * AVCodecContext.hw_frames_ctx API rules).
2521 * - The AVHWFramesContext parameters may change every time time get_format is
2522 * called. Also, AVCodecContext.hw_frames_ctx is reset before get_format. So
2523 * you are inherently required to go through this process again on every
2524 * get_format call.
2525 * - It is perfectly possible to call this function without actually using
2526 * the resulting AVHWFramesContext. One use-case might be trying to reuse a
2527 * previously initialized AVHWFramesContext, and calling this API function
2528 * only to test whether the required frame parameters have changed.
2529 * - Fields that use dynamically allocated values of any kind must not be set
2530 * by the user unless setting them is explicitly allowed by the documentation.
2531 * If the user sets AVHWFramesContext.free and AVHWFramesContext.user_opaque,
2532 * the new free callback must call the potentially set previous free callback.
2533 * This API call may set any dynamically allocated fields, including the free
2534 * callback.
2535 *
2536 * The function will set at least the following fields on AVHWFramesContext
2537 * (potentially more, depending on hwaccel API):
2538 *
2539 * - All fields set by av_hwframe_ctx_alloc().
2540 * - Set the format field to hw_pix_fmt.
2541 * - Set the sw_format field to the most suited and most versatile format. (An
2542 * implication is that this will prefer generic formats over opaque formats
2543 * with arbitrary restrictions, if possible.)
2544 * - Set the width/height fields to the coded frame size, rounded up to the
2545 * API-specific minimum alignment.
2546 * - Only _if_ the hwaccel requires a pre-allocated pool: set the initial_pool_size
2547 * field to the number of maximum reference surfaces possible with the codec,
2548 * plus 1 surface for the user to work (meaning the user can safely reference
2549 * at most 1 decoded surface at a time), plus additional buffering introduced
2550 * by frame threading. If the hwaccel does not require pre-allocation, the
2551 * field is left to 0, and the decoder will allocate new surfaces on demand
2552 * during decoding.
2553 * - Possibly AVHWFramesContext.hwctx fields, depending on the underlying
2554 * hardware API.
2555 *
2556 * Essentially, out_frames_ref returns the same as av_hwframe_ctx_alloc(), but
2557 * with basic frame parameters set.
2558 *
2559 * The function is stateless, and does not change the AVCodecContext or the
2560 * device_ref AVHWDeviceContext.
2561 *
2562 * @param avctx The context which is currently calling get_format, and which
2563 * implicitly contains all state needed for filling the returned
2564 * AVHWFramesContext properly.
2565 * @param device_ref A reference to the AVHWDeviceContext describing the device
2566 * which will be used by the hardware decoder.
2567 * @param hw_pix_fmt The hwaccel format you are going to return from get_format.
2568 * @param out_frames_ref On success, set to a reference to an _uninitialized_
2569 * AVHWFramesContext, created from the given device_ref.
2570 * Fields will be set to values required for decoding.
2571 * Not changed if an error is returned.
2572 * @return zero on success, a negative value on error. The following error codes
2573 * have special semantics:
2574 * AVERROR(ENOENT): the decoder does not support this functionality. Setup
2575 * is always manual, or it is a decoder which does not
2576 * support setting AVCodecContext.hw_frames_ctx at all,
2577 * or it is a software format.
2578 * AVERROR(EINVAL): it is known that hardware decoding is not supported for
2579 * this configuration, or the device_ref is not supported
2580 * for the hwaccel referenced by hw_pix_fmt.
2581 */
2583 AVBufferRef *device_ref,
2585 AVBufferRef **out_frames_ref);
2586
2588 AV_CODEC_CONFIG_PIX_FORMAT, ///< AVPixelFormat, terminated by AV_PIX_FMT_NONE
2589 AV_CODEC_CONFIG_FRAME_RATE, ///< AVRational, terminated by {0, 0}
2590 AV_CODEC_CONFIG_SAMPLE_RATE, ///< int, terminated by 0
2591 AV_CODEC_CONFIG_SAMPLE_FORMAT, ///< AVSampleFormat, terminated by AV_SAMPLE_FMT_NONE
2592 AV_CODEC_CONFIG_CHANNEL_LAYOUT, ///< AVChannelLayout, terminated by {0}
2593 AV_CODEC_CONFIG_COLOR_RANGE, ///< AVColorRange, terminated by AVCOL_RANGE_UNSPECIFIED
2594 AV_CODEC_CONFIG_COLOR_SPACE, ///< AVColorSpace, terminated by AVCOL_SPC_UNSPECIFIED
2595 AV_CODEC_CONFIG_ALPHA_MODE, ///< AVAlphaMode, terminated by AVALPHA_MODE_UNSPECIFIED
2596};
2597
2598/**
2599 * Retrieve a list of all supported values for a given configuration type.
2600 *
2601 * @param avctx An optional context to use. Values such as
2602 * `strict_std_compliance` may affect the result. If NULL,
2603 * default values are used.
2604 * @param codec The codec to query, or NULL to use avctx->codec.
2605 * @param config The configuration to query.
2606 * @param flags Currently unused; should be set to zero.
2607 * @param out_configs On success, set to a list of configurations, terminated
2608 * by a config-specific terminator, or NULL if all
2609 * possible values are supported.
2610 * @param out_num_configs On success, set to the number of elements in
2611 *out_configs, excluding the terminator. Optional.
2612 */
2614 const AVCodec *codec, enum AVCodecConfig config,
2615 unsigned flags, const void **out_configs,
2616 int *out_num_configs);
2617
2618
2619
2620/**
2621 * @defgroup lavc_parsing Frame parsing
2622 * @{
2623 */
2624
2627 AV_PICTURE_STRUCTURE_TOP_FIELD, ///< coded as top field
2628 AV_PICTURE_STRUCTURE_BOTTOM_FIELD, ///< coded as bottom field
2629 AV_PICTURE_STRUCTURE_FRAME, ///< coded as frame
2630};
2631
2632typedef struct AVCodecParserContext {
2634 const struct AVCodecParser *parser;
2635 int64_t frame_offset; /* offset of the current frame */
2636 int64_t cur_offset; /* current offset
2637 (incremented by each av_parser_parse()) */
2638 int64_t next_frame_offset; /* offset of the next frame */
2639 /* video info */
2640 int pict_type; /* XXX: Put it back in AVCodecContext. */
2641 /**
2642 * This field is used for proper frame duration computation in lavf.
2643 * It signals, how much longer the frame duration of the current frame
2644 * is compared to normal frame duration.
2645 *
2646 * frame_duration = (1 + repeat_pict) * time_base
2647 *
2648 * It is used by codecs like H.264 to display telecined material.
2649 */
2650 int repeat_pict; /* XXX: Put it back in AVCodecContext. */
2651 int64_t pts; /* pts of the current frame */
2652 int64_t dts; /* dts of the current frame */
2653
2654 /* private data */
2658
2659#define AV_PARSER_PTS_NB 4
2664
2666#define PARSER_FLAG_COMPLETE_FRAMES 0x0001
2667#define PARSER_FLAG_ONCE 0x0002
2668/// Set if the parser has a valid file offset
2669#define PARSER_FLAG_FETCHED_OFFSET 0x0004
2670#define PARSER_FLAG_USE_CODEC_TS 0x1000
2671
2672 int64_t offset; ///< byte offset from starting packet start
2674
2675 /**
2676 * Set by parser to 1 for key frames and 0 for non-key frames.
2677 * It is initialized to -1, so if the parser doesn't set this flag,
2678 * old-style fallback using AV_PICTURE_TYPE_I picture type as key frames
2679 * will be used.
2680 */
2682
2683 // Timestamp generation support:
2684 /**
2685 * Synchronization point for start of timestamp generation.
2686 *
2687 * Set to >0 for sync point, 0 for no sync point and <0 for undefined
2688 * (default).
2689 *
2690 * For example, this corresponds to presence of H.264 buffering period
2691 * SEI message.
2692 */
2694
2695 /**
2696 * Offset of the current timestamp against last timestamp sync point in
2697 * units of AVCodecContext.time_base.
2698 *
2699 * Set to INT_MIN when dts_sync_point unused. Otherwise, it must
2700 * contain a valid timestamp offset.
2701 *
2702 * Note that the timestamp of sync point has usually a nonzero
2703 * dts_ref_dts_delta, which refers to the previous sync point. Offset of
2704 * the next frame after timestamp sync point will be usually 1.
2705 *
2706 * For example, this corresponds to H.264 cpb_removal_delay.
2707 */
2709
2710 /**
2711 * Presentation delay of current frame in units of AVCodecContext.time_base.
2712 *
2713 * Set to INT_MIN when dts_sync_point unused. Otherwise, it must
2714 * contain valid non-negative timestamp delta (presentation time of a frame
2715 * must not lie in the past).
2716 *
2717 * This delay represents the difference between decoding and presentation
2718 * time of the frame.
2719 *
2720 * For example, this corresponds to H.264 dpb_output_delay.
2721 */
2723
2724 /**
2725 * Position of the packet in file.
2726 *
2727 * Analogous to cur_frame_pts/dts
2728 */
2730
2731 /**
2732 * Byte position of currently parsed frame in stream.
2733 */
2735
2736 /**
2737 * Previous frame byte position.
2738 */
2740
2741 /**
2742 * Duration of the current frame.
2743 * For audio, this is in units of 1 / AVCodecContext.sample_rate.
2744 * For all other types, this is in units of AVCodecContext.time_base.
2745 */
2747
2749
2750 /**
2751 * Indicate whether a picture is coded as a frame, top field or bottom field.
2752 *
2753 * For example, H.264 field_pic_flag equal to 0 corresponds to
2754 * AV_PICTURE_STRUCTURE_FRAME. An H.264 picture with field_pic_flag
2755 * equal to 1 and bottom_field_flag equal to 0 corresponds to
2756 * AV_PICTURE_STRUCTURE_TOP_FIELD.
2757 */
2759
2760 /**
2761 * Picture number incremented in presentation or output order.
2762 * This field may be reinitialized at the first picture of a new sequence.
2763 *
2764 * For example, this corresponds to H.264 PicOrderCnt.
2765 */
2767
2768 /**
2769 * Dimensions of the decoded video intended for presentation.
2770 */
2773
2774 /**
2775 * Dimensions of the coded video.
2776 */
2779
2780 /**
2781 * The format of the coded data, corresponds to enum AVPixelFormat for video
2782 * and for enum AVSampleFormat for audio.
2783 *
2784 * Note that a decoder can have considerable freedom in how exactly it
2785 * decodes the data, so the format reported here might be different from the
2786 * one returned by a decoder.
2787 */
2790
2791typedef struct AVCodecParser {
2792 enum AVCodecID codec_ids[7]; /* several codec IDs are permitted */
2794
2795/**
2796 * Iterate over all registered codec parsers.
2797 *
2798 * @param opaque a pointer where libavcodec will store the iteration state. Must
2799 * point to NULL to start the iteration.
2800 *
2801 * @return the next registered codec parser or NULL when the iteration is
2802 * finished
2803 */
2804const AVCodecParser *av_parser_iterate(void **opaque);
2805
2807
2808/**
2809 * Parse a packet.
2810 *
2811 * @param s parser context.
2812 * @param avctx codec context.
2813 * @param poutbuf set to pointer to parsed buffer or NULL if not yet finished.
2814 * @param poutbuf_size set to size of parsed buffer or zero if not yet finished.
2815 * @param buf input buffer.
2816 * @param buf_size buffer size in bytes without the padding. I.e. the full buffer
2817 size is assumed to be buf_size + AV_INPUT_BUFFER_PADDING_SIZE.
2818 To signal EOF, this should be 0 (so that the last frame
2819 can be output).
2820 * @param pts input presentation timestamp.
2821 * @param dts input decoding timestamp.
2822 * @param pos input byte position in stream.
2823 * @return the number of bytes of the input bitstream used.
2824 *
2825 * Example:
2826 * @code
2827 * while(in_len){
2828 * len = av_parser_parse2(myparser, AVCodecContext, &data, &size,
2829 * in_data, in_len,
2830 * pts, dts, pos);
2831 * in_data += len;
2832 * in_len -= len;
2833 *
2834 * if(size)
2835 * decode_frame(data, size);
2836 * }
2837 * @endcode
2838 */
2840 AVCodecContext *avctx,
2841 uint8_t **poutbuf, int *poutbuf_size,
2842 const uint8_t *buf, int buf_size,
2843 int64_t pts, int64_t dts,
2844 int64_t pos);
2845
2847
2848/**
2849 * @}
2850 * @}
2851 */
2852
2853/**
2854 * @addtogroup lavc_encoding
2855 * @{
2856 */
2857
2858int avcodec_encode_subtitle(AVCodecContext *avctx, uint8_t *buf, int buf_size,
2859 const AVSubtitle *sub);
2860
2861
2862/**
2863 * @}
2864 */
2865
2866/**
2867 * @defgroup lavc_misc Utility functions
2868 * @ingroup libavc
2869 *
2870 * Miscellaneous utility functions related to both encoding and decoding
2871 * (or neither).
2872 * @{
2873 */
2874
2875/**
2876 * @defgroup lavc_misc_pixfmt Pixel formats
2877 *
2878 * Functions for working with pixel formats.
2879 * @{
2880 */
2881
2882/**
2883 * Return a value representing the fourCC code associated to the
2884 * pixel format pix_fmt, or 0 if no associated fourCC code can be
2885 * found.
2886 */
2888
2889/**
2890 * Find the best pixel format to convert to given a certain source pixel
2891 * format. When converting from one pixel format to another, information loss
2892 * may occur. For example, when converting from RGB24 to GRAY, the color
2893 * information will be lost. Similarly, other losses occur when converting from
2894 * some formats to other formats. avcodec_find_best_pix_fmt_of_2() searches which of
2895 * the given pixel formats should be used to suffer the least amount of loss.
2896 * The pixel formats from which it chooses one, are determined by the
2897 * pix_fmt_list parameter.
2898 *
2899 *
2900 * @param[in] pix_fmt_list AV_PIX_FMT_NONE terminated array of pixel formats to choose from
2901 * @param[in] src_pix_fmt source pixel format
2902 * @param[in] has_alpha Whether the source pixel format alpha channel is used.
2903 * @param[out] loss_ptr Combination of flags informing you what kind of losses will occur.
2904 * @return The best pixel format to convert to or -1 if none was found.
2905 */
2907 enum AVPixelFormat src_pix_fmt,
2908 int has_alpha, int *loss_ptr);
2909
2911
2912/**
2913 * @}
2914 */
2915
2916void avcodec_string(char *buf, int buf_size, AVCodecContext *enc, int encode);
2917
2918int avcodec_default_execute(AVCodecContext *c, int (*func)(AVCodecContext *c2, void *arg2),void *arg, int *ret, int count, int size);
2919int avcodec_default_execute2(AVCodecContext *c, int (*func)(AVCodecContext *c2, void *arg2, int, int),void *arg, int *ret, int count);
2920//FIXME func typedef
2921
2922/**
2923 * Fill AVFrame audio data and linesize pointers.
2924 *
2925 * The buffer buf must be a preallocated buffer with a size big enough
2926 * to contain the specified samples amount. The filled AVFrame data
2927 * pointers will point to this buffer.
2928 *
2929 * AVFrame extended_data channel pointers are allocated if necessary for
2930 * planar audio.
2931 *
2932 * @param frame the AVFrame
2933 * frame->nb_samples must be set prior to calling the
2934 * function. This function fills in frame->data,
2935 * frame->extended_data, frame->linesize[0].
2936 * @param nb_channels channel count
2937 * @param sample_fmt sample format
2938 * @param buf buffer to use for frame data
2939 * @param buf_size size of buffer
2940 * @param align plane size sample alignment (0 = default)
2941 * @return >=0 on success, negative error code on failure
2942 * @todo return the size in bytes required to store the samples in
2943 * case of success, at the next libavutil bump
2944 */
2945int avcodec_fill_audio_frame(AVFrame *frame, int nb_channels,
2946 enum AVSampleFormat sample_fmt, const uint8_t *buf,
2947 int buf_size, int align);
2948
2949/**
2950 * Reset the internal codec state / flush internal buffers. Should be called
2951 * e.g. when seeking or when switching to a different stream.
2952 *
2953 * @note for decoders, this function just releases any references the decoder
2954 * might keep internally, but the caller's references remain valid.
2955 *
2956 * @note for encoders, this function will only do something if the encoder
2957 * declares support for AV_CODEC_CAP_ENCODER_FLUSH. When called, the encoder
2958 * will drain any remaining packets, and can then be reused for a different
2959 * stream (as opposed to sending a null frame which will leave the encoder
2960 * in a permanent EOF state after draining). This can be desirable if the
2961 * cost of tearing down and replacing the encoder instance is high.
2962 */
2964
2965/**
2966 * Return audio frame duration.
2967 *
2968 * @param avctx codec context
2969 * @param frame_bytes size of the frame, or 0 if unknown
2970 * @return frame duration, in samples, if known. 0 if not able to
2971 * determine.
2972 */
2973int av_get_audio_frame_duration(AVCodecContext *avctx, int frame_bytes);
2974
2975/* memory */
2976
2977/**
2978 * Same behaviour av_fast_malloc but the buffer has additional
2979 * AV_INPUT_BUFFER_PADDING_SIZE at the end which will always be 0.
2980 *
2981 * In addition the whole buffer will initially and after resizes
2982 * be 0-initialized so that no uninitialized data will ever appear.
2983 */
2984void av_fast_padded_malloc(void *ptr, unsigned int *size, size_t min_size);
2985
2986/**
2987 * Same behaviour av_fast_padded_malloc except that buffer will always
2988 * be 0-initialized after call.
2989 */
2990void av_fast_padded_mallocz(void *ptr, unsigned int *size, size_t min_size);
2991
2992/**
2993 * @return a positive value if s is open (i.e. avcodec_open2() was called on it),
2994 * 0 otherwise.
2995 */
2997
2998/**
2999 * @}
3000 */
3001
3002#endif /* AVCODEC_AVCODEC_H */
#define AV_PARSER_PTS_NB
Definition avcodec.h:2659
Convenience header that includes libavutil's core.
static const uint8_t *BS_FUNC align(BSCTX *bc)
Skip bits to a byte boundary.
refcounted data buffer API
#define flags(name, subs,...)
Definition cbs_h264.c:74
#define s(width, name)
Definition cbs_vp9.c:198
Public libavutil channel layout APIs header.
int avcodec_parameters_from_context(AVCodecParameters *par, const AVCodecContext *codec)
Definition codec_par.c:138
long long int64_t
Definition coverity.c:34
Misc types and constants that do not belong anywhere else.
AVFieldOrder
Definition defs.h:220
AVAudioServiceType
Definition defs.h:244
static AVPacket * pkt
static enum AVPixelFormat pix_fmt
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:473
int avcodec_encode_reconfigure(AVCodecContext *avctx, AVDictionary **options)
Try to reconfigure the encoder with the provided dictionary.
Definition encode.c:673
int avcodec_open2(AVCodecContext *avctx, const AVCodec *codec, AVDictionary **options)
Initialize the AVCodecContext to use the given AVCodec.
Definition avcodec.c:144
const AVClass * avcodec_get_class(void)
Get the AVClass for AVCodecContext.
Definition options.c:184
const AVClass * avcodec_get_subtitle_rect_class(void)
Get the AVClass for AVSubtitleRect.
Definition options.c:209
AVCodecContext * avcodec_alloc_context3(const AVCodec *codec)
Allocate an AVCodecContext and set its fields to default values.
Definition options.c:149
AVSubtitleType
Definition avcodec.h:2055
int avcodec_parameters_to_context(AVCodecContext *codec, const struct AVCodecParameters *par)
Fill the codec context based on the values from the supplied codec parameters.
void avsubtitle_free(AVSubtitle *sub)
Free all allocated data in the given subtitle struct.
Definition avcodec.c:421
AVCodecID
Identify the syntax and semantics of the bitstream.
Definition codec_id.h:47
const char * avcodec_license(void)
Return the libavcodec license.
Definition version.c:52
unsigned avcodec_version(void)
Return the LIBAVCODEC_VERSION_INT constant.
Definition version.c:32
const char * avcodec_configuration(void)
Return the libavcodec build-time configuration.
Definition version.c:47
void avcodec_free_context(AVCodecContext **avctx)
Free the codec context and everything associated with it and write NULL to the provided pointer.
Definition options.c:164
@ SUBTITLE_BITMAP
A bitmap, pict will be set.
Definition avcodec.h:2058
@ SUBTITLE_ASS
Formatted text, the ass field must be set by the decoder and is authoritative.
Definition avcodec.h:2070
@ SUBTITLE_TEXT
Plain text, the text field must be set by the decoder and is authoritative.
Definition avcodec.h:2064
@ SUBTITLE_NONE
Definition avcodec.h:2056
int avcodec_default_get_buffer2(AVCodecContext *s, AVFrame *frame, int flags)
The default callback for AVCodecContext.get_buffer2().
Definition get_buffer.c:253
int avcodec_receive_frame(AVCodecContext *avctx, AVFrame *frame)
Alias for avcodec_receive_frame_flags(avctx, frame, 0).
Definition avcodec.c:720
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...
Definition utils.c:141
AVDiscard
Definition defs.h:232
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...
Definition utils.c:366
int avcodec_send_packet(AVCodecContext *avctx, const AVPacket *avpkt)
Supply raw packet data as input to a decoder.
Definition decode.c:733
int avcodec_receive_packet(AVCodecContext *avctx, AVPacket *avpkt)
Read encoded data from the encoder.
Definition encode.c:578
int avcodec_decode_subtitle2(AVCodecContext *avctx, AVSubtitle *sub, int *got_sub_ptr, const AVPacket *avpkt)
Decode a subtitle message.
Definition decode.c:938
int avcodec_receive_frame_flags(AVCodecContext *avctx, AVFrame *frame, unsigned flags)
Return decoded output data from a decoder or encoder (when the AV_CODEC_FLAG_RECON_FRAME flag is used...
Definition avcodec.c:707
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.
Definition decode.c:1123
int avcodec_send_frame(AVCodecContext *avctx, const AVFrame *frame)
Supply a raw video or audio frame to the encoder.
Definition encode.c:545
AVCodecConfig
Definition avcodec.h:2587
int avcodec_default_get_encode_buffer(AVCodecContext *s, AVPacket *pkt, int flags)
The default callback for AVCodecContext.get_encode_buffer().
Definition encode.c:84
int avcodec_get_supported_config(const AVCodecContext *avctx, const AVCodec *codec, enum AVCodecConfig config, unsigned flags, const void **out_configs, int *out_num_configs)
Retrieve a list of all supported values for a given configuration type.
Definition avcodec.c:818
@ AV_CODEC_CONFIG_PIX_FORMAT
AVPixelFormat, terminated by AV_PIX_FMT_NONE.
Definition avcodec.h:2588
@ AV_CODEC_CONFIG_SAMPLE_FORMAT
AVSampleFormat, terminated by AV_SAMPLE_FMT_NONE.
Definition avcodec.h:2591
@ AV_CODEC_CONFIG_ALPHA_MODE
AVAlphaMode, terminated by AVALPHA_MODE_UNSPECIFIED.
Definition avcodec.h:2595
@ AV_CODEC_CONFIG_FRAME_RATE
AVRational, terminated by {0, 0}.
Definition avcodec.h:2589
@ AV_CODEC_CONFIG_COLOR_SPACE
AVColorSpace, terminated by AVCOL_SPC_UNSPECIFIED.
Definition avcodec.h:2594
@ AV_CODEC_CONFIG_COLOR_RANGE
AVColorRange, terminated by AVCOL_RANGE_UNSPECIFIED.
Definition avcodec.h:2593
@ AV_CODEC_CONFIG_SAMPLE_RATE
int, terminated by 0
Definition avcodec.h:2590
@ AV_CODEC_CONFIG_CHANNEL_LAYOUT
AVChannelLayout, terminated by {0}.
Definition avcodec.h:2592
int avcodec_encode_subtitle(AVCodecContext *avctx, uint8_t *buf, int buf_size, const AVSubtitle *sub)
Definition encode.c:204
enum AVPixelFormat avcodec_default_get_format(struct AVCodecContext *s, const enum AVPixelFormat *fmt)
Definition decode.c:1009
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,...
Definition raw.c:31
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.
Definition imgconvert.c:31
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...
Definition utils.c:53
int av_get_audio_frame_duration(AVCodecContext *avctx, int frame_bytes)
Return audio frame duration.
Definition utils.c:810
int avcodec_default_execute2(AVCodecContext *c, int(*func)(AVCodecContext *c2, void *arg2, int, int), void *arg, int *ret, int count)
Definition avcodec.c:87
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.
Definition utils.c:381
void avcodec_string(char *buf, int buf_size, AVCodecContext *enc, int encode)
Definition avcodec.c:514
int avcodec_is_open(AVCodecContext *s)
Definition avcodec.c:702
int avcodec_default_execute(AVCodecContext *c, int(*func)(AVCodecContext *c2, void *arg2), void *arg, int *ret, int count, int size)
Definition avcodec.c:73
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.
Definition utils.c:66
void avcodec_flush_buffers(AVCodecContext *avctx)
Reset the internal codec state / flush internal buffers.
Definition avcodec.c:389
AVCodecParserContext * av_parser_init(enum AVCodecID codec_id)
Definition parser.c:35
void av_parser_close(AVCodecParserContext *s)
Definition parser.c:203
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.
Definition parser.c:120
const AVCodecParser * av_parser_iterate(void **opaque)
Iterate over all registered codec parsers.
Definition parsers.c:95
AVPictureStructure
Definition avcodec.h:2625
@ AV_PICTURE_STRUCTURE_FRAME
coded as frame
Definition avcodec.h:2629
@ AV_PICTURE_STRUCTURE_BOTTOM_FIELD
coded as bottom field
Definition avcodec.h:2628
@ AV_PICTURE_STRUCTURE_TOP_FIELD
coded as top field
Definition avcodec.h:2627
@ AV_PICTURE_STRUCTURE_UNKNOWN
unknown
Definition avcodec.h:2626
AVMediaType
Definition avutil.h:198
AVSampleFormat
Audio sample formats.
Definition samplefmt.h:55
static enum AVPixelFormat hw_pix_fmt
Definition hw_decode.c:46
cl_device_type type
unsigned offset
Definition libaomenc.c:763
int(* func)(AVBPrint *dst, const char *in, const char *arg)
Definition jacosubdec.c:66
const char * arg
Definition jacosubdec.c:65
Libavcodec version macros.
Libavcodec version macros.
Macro definitions for various function/variable attributes.
static const uint64_t c2
Definition murmur3.c:53
pixel format definitions
AVChromaLocation
Location of chroma samples.
Definition pixfmt.h:802
AVColorRange
Visual content value range.
Definition pixfmt.h:748
AVAlphaMode
Correlation between the alpha channel and color values.
Definition pixfmt.h:816
AVPixelFormat
Pixel format.
Definition pixfmt.h:71
AVColorPrimaries
Chromaticity coordinates of the source primaries.
Definition pixfmt.h:642
AVColorTransferCharacteristic
Color Transfer Characteristic.
Definition pixfmt.h:672
AVColorSpace
YUV colorspace type.
Definition pixfmt.h:706
#define attribute_deprecated
Utilities for rational number calculation.
unsigned int pos
Definition spdifenc.c:431
A reference to a data buffer.
Definition buffer.h:82
An AVChannelLayout holds information about the channel layout of audio data.
Describe the class of an AVClass context structure.
Definition log.h:76
main external API structure.
Definition avcodec.h:443
int nsse_weight
noise vs.
Definition avcodec.h:855
float rc_max_available_vbv_use
Ratecontrol attempt to use, at maximum, of what can be used without an underflow.
Definition avcodec.h:1302
int skip_top
Number of macroblock rows at the top which are skipped.
Definition avcodec.h:1693
int trellis
trellis RD quantization
Definition avcodec.h:1323
int * side_data_prefer_packet
Decoding only.
Definition avcodec.h:1918
enum AVPixelFormat pix_fmt
Pixel format, see AV_PIX_FMT_xxx.
Definition avcodec.h:643
int max_qdiff
maximum quantizer difference between frames
Definition avcodec.h:1266
uint16_t * chroma_intra_matrix
custom intra quantization matrix
Definition avcodec.h:976
int hwaccel_flags
Bit set of AV_HWACCEL_FLAG_* flags, which affect hardware accelerated decoding (if active).
Definition avcodec.h:1503
int subtitle_header_size
Header containing style information for text subtitles.
Definition avcodec.h:1748
int width
picture width / height.
Definition avcodec.h:604
AVPacketSideData * coded_side_data
Additional data associated with the entire coded stream.
Definition avcodec.h:1773
char * stats_out
pass1 encoding statistics output buffer
Definition avcodec.h:1330
const struct AVCodecDescriptor * codec_descriptor
AVCodecDescriptor.
Definition avcodec.h:1714
int rc_buffer_size
decoder bitstream buffer size
Definition avcodec.h:1273
AVChannelLayout ch_layout
Audio channel layout.
Definition avcodec.h:1055
int me_cmp
motion estimation comparison function
Definition avcodec.h:862
int flags2
AV_CODEC_FLAG2_*.
Definition avcodec.h:507
enum AVSampleFormat sample_fmt
audio sample format
Definition avcodec.h:1047
int debug
debug
Definition avcodec.h:1393
enum AVPixelFormat sw_pix_fmt
Nominal unaccelerated pixel format, see AV_PIX_FMT_xxx.
Definition avcodec.h:650
int global_quality
Global quality for codecs which cannot change it per frame.
Definition avcodec.h:1235
int64_t max_pixels
The number of pixels per image to maximally accept.
Definition avcodec.h:1792
enum AVColorRange color_range
MPEG vs JPEG YUV range.
Definition avcodec.h:681
char * sub_charenc
Character encoding of the input subtitles file.
Definition avcodec.h:1721
int error_concealment
error concealment flags
Definition avcodec.h:1383
int dct_algo
DCT algorithm, see FF_DCT_* below.
Definition avcodec.h:1531
unsigned int codec_tag
fourcc (LSB first, so "ABCD" -> ('D'<<24) + ('C'<<16) + ('B'<<8) + 'A').
Definition avcodec.h:468
int slice_flags
slice flags
Definition avcodec.h:716
int strict_std_compliance
strictly follow the standard (MPEG-4, ...).
Definition avcodec.h:1376
float b_quant_offset
qscale offset between IP and B-frames
Definition avcodec.h:797
int nb_coded_side_data
Definition avcodec.h:1774
enum AVDiscard skip_pred
Skip prediction (intra prediction and motion compensation) for selected frames.
Definition avcodec.h:1952
AVRational pkt_timebase
Timebase in which pkt_dts/pts and AVPacket.dts/pts are expressed.
Definition avcodec.h:554
enum AVPixelFormat(* get_format)(struct AVCodecContext *s, const enum AVPixelFormat *fmt)
Callback to negotiate the pixel format.
Definition avcodec.h:773
enum AVAudioServiceType audio_service_type
Type of service that the audio stream conveys.
Definition avcodec.h:1089
enum AVColorPrimaries color_primaries
Chromaticity coordinates of the source primaries.
Definition avcodec.h:657
int me_subpel_quality
subpel ME quality
Definition avcodec.h:932
AVBufferRef * hw_frames_ctx
A reference to the AVHWFramesContext describing the input (for encoding) or output (decoding) frames.
Definition avcodec.h:1472
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:781
int mb_lmax
maximum MB Lagrange multiplier
Definition avcodec.h:1001
int qmin
minimum quantizer
Definition avcodec.h:1252
int keyint_min
minimum GOP size
Definition avcodec.h:1014
enum AVMediaType codec_type
Definition avcodec.h:451
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:790
int dia_size
ME diamond size & shape.
Definition avcodec.h:904
int64_t frame_num
Frame counter, set by libavcodec.
Definition avcodec.h:1888
int workaround_bugs
Work around bugs in encoders which sometimes cannot be detected automatically.
Definition avcodec.h:1345
int apply_cropping
Video decoding only.
Definition avcodec.h:1819
AVRational framerate
Definition avcodec.h:563
char * stats_in
pass2 encoding statistics input buffer Concatenated stuff from stats_out of pass1 should be placed he...
Definition avcodec.h:1338
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:628
int bits_per_coded_sample
bits per sample/pixel from the demuxer (needed for huffyuv).
Definition avcodec.h:1569
int rc_override_count
ratecontrol override, see RcOverride
Definition avcodec.h:1280
uint8_t * dump_separator
dump format separator.
Definition avcodec.h:1757
enum AVFieldOrder field_order
Field order.
Definition avcodec.h:694
uint16_t * inter_matrix
custom inter quantization matrix Must be allocated with the av_malloc() family of functions,...
Definition avcodec.h:969
const struct AVHWAccel * hwaccel
Hardware accelerator in use.
Definition avcodec.h:1424
int active_thread_type
Which multithreading methods are in use by the codec.
Definition avcodec.h:1603
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:1877
int sub_charenc_mode
Subtitles character encoding mode.
Definition avcodec.h:1729
int bit_rate_tolerance
number of bits the bitstream is allowed to diverge from the reference.
Definition avcodec.h:1227
int mb_decision
macroblock decision mode
Definition avcodec.h:948
int has_b_frames
Size of the frame reordering buffer in the decoder.
Definition avcodec.h:709
char * codec_whitelist
',' separated list of allowed decoders.
Definition avcodec.h:1765
int level
Encoding level descriptor.
Definition avcodec.h:1651
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:744
int64_t bit_rate
the average bitrate
Definition avcodec.h:493
enum AVDiscard skip_loop_filter
Skip loop filtering for selected frames.
Definition avcodec.h:1658
const struct AVCodec * codec
Definition avcodec.h:452
int rc_initial_buffer_occupancy
Number of bits which should be loaded into the rc buffer before decoding starts.
Definition avcodec.h:1316
int thread_type
Which multithreading methods to use.
Definition avcodec.h:1594
int me_sub_cmp
subpixel motion estimation comparison function
Definition avcodec.h:868
int profile
profile
Definition avcodec.h:1641
int last_predictor_count
amount of previous MV predictors (2a+1 x 2a+1 square)
Definition avcodec.h:911
int log_level_offset
Definition avcodec.h:449
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:1614
int nb_decoded_side_data
Definition avcodec.h:1935
int bits_per_raw_sample
Bits per sample/pixel of internal libavcodec pixel/sample format.
Definition avcodec.h:1576
int idct_algo
IDCT algorithm, see FF_IDCT_* below.
Definition avcodec.h:1549
int export_side_data
Bit set of AV_CODEC_EXPORT_DATA_* flags, which affects the kind of metadata exported in frame,...
Definition avcodec.h:1784
enum AVColorSpace colorspace
YUV colorspace type.
Definition avcodec.h:671
enum AVSampleFormat request_sample_fmt
desired sample format
Definition avcodec.h:1097
int initial_padding
Audio only.
Definition avcodec.h:1114
float temporal_cplx_masking
temporary complexity masking (0-> disabled)
Definition avcodec.h:827
int sample_rate
samples per second
Definition avcodec.h:1040
const AVClass * av_class
information on struct for av_log
Definition avcodec.h:448
float p_masking
p block masking (0-> disabled)
Definition avcodec.h:841
int delay
Codec delay.
Definition avcodec.h:587
float dark_masking
darkness masking (0-> disabled)
Definition avcodec.h:848
int mb_cmp
macroblock comparison function (not supported yet)
Definition avcodec.h:874
int gop_size
the number of pictures in a group of pictures, or 0 for intra_only
Definition avcodec.h:1021
int skip_alpha
Skip processing alpha if supported by codec.
Definition avcodec.h:1686
int refs
number of reference frames
Definition avcodec.h:701
int ildct_cmp
interlaced DCT comparison function
Definition avcodec.h:880
int mv0_threshold
Note: Value depends upon the compare function used for fullpel ME.
Definition avcodec.h:1028
int mb_lmin
minimum MB Lagrange multiplier
Definition avcodec.h:994
int64_t rc_max_rate
maximum bitrate
Definition avcodec.h:1288
int compression_level
Definition avcodec.h:1241
int discard_damaged_percentage
The percentage of damaged samples to discard a frame.
Definition avcodec.h:1827
int thread_count
thread count is used to decide how many independent tasks should be passed to execute()
Definition avcodec.h:1584
void * opaque
Private data of the user, can be used to carry app specific stuff.
Definition avcodec.h:485
int qmax
maximum quantizer
Definition avcodec.h:1259
void * hwaccel_context
Legacy hardware accelerator context.
Definition avcodec.h:1448
uint16_t * intra_matrix
custom intra quantization matrix Must be allocated with the av_malloc() family of functions,...
Definition avcodec.h:960
enum AVColorTransferCharacteristic color_trc
Color Transfer Characteristic.
Definition avcodec.h:664
float rc_min_vbv_overflow_use
Ratecontrol attempt to use, at least, times the amount needed to prevent a vbv overflow.
Definition avcodec.h:1309
uint8_t * subtitle_header
Definition avcodec.h:1749
AVRational time_base
This is the fundamental unit of time (in seconds) in terms of which frame timestamps are represented.
Definition avcodec.h:547
int flags
AV_CODEC_FLAG_*.
Definition avcodec.h:500
int seek_preroll
Number of samples to skip after a discontinuity.
Definition avcodec.h:1132
AVFrameSideData ** decoded_side_data
Array containing static side data, such as HDR10 CLL / MDCV structures.
Definition avcodec.h:1934
uint8_t * extradata
Out-of-band global headers that may be used by some codecs.
Definition avcodec.h:526
int me_pre_cmp
motion estimation prepass comparison function
Definition avcodec.h:918
int64_t rc_min_rate
minimum bitrate
Definition avcodec.h:1295
int trailing_padding
Audio only.
Definition avcodec.h:1125
enum AVDiscard skip_idct
Skip IDCT/dequantization for selected frames.
Definition avcodec.h:1665
enum AVChromaLocation chroma_sample_location
This defines the location of chroma samples.
Definition avcodec.h:688
enum AVAlphaMode alpha_mode
Indicates how the alpha channel of the video is represented.
Definition avcodec.h:1942
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:1633
uint64_t error[AV_NUM_DATA_POINTERS]
error
Definition avcodec.h:1524
float qcompress
amount of qscale change between easy & hard scenes (0.0-1.0)
Definition avcodec.h:1244
float qblur
amount of qscale smoothing over time (0.0-1.0)
Definition avcodec.h:1245
AVBufferRef * hw_device_ctx
A reference to the AVHWDeviceContext describing the device which will be used by a hardware encoder/d...
Definition avcodec.h:1494
int me_range
maximum motion estimation search range in subpel units If 0 then no limit.
Definition avcodec.h:941
int extra_hw_frames
Video decoding only.
Definition avcodec.h:1517
RcOverride * rc_override
Definition avcodec.h:1281
unsigned nb_side_data_prefer_packet
Number of entries in side_data_prefer_packet.
Definition avcodec.h:1922
int64_t max_samples
The number of samples per frame to maximally accept.
Definition avcodec.h:1835
enum AVCodecID codec_id
Definition avcodec.h:453
int pre_dia_size
ME prepass diamond size & shape.
Definition avcodec.h:925
float lumi_masking
luminance masking (0-> disabled)
Definition avcodec.h:820
int extradata_size
Definition avcodec.h:527
int cutoff
Audio cutoff bandwidth (0 means "automatic").
Definition avcodec.h:1082
int skip_bottom
Number of macroblock rows at the bottom which are skipped.
Definition avcodec.h:1700
int coded_width
Bitstream width / height, may be different from width/height e.g.
Definition avcodec.h:619
int block_align
number of bytes per packet if constant and known or 0 Used by some WAV based audio codecs.
Definition avcodec.h:1075
int frame_size
Number of samples per channel in an audio frame.
Definition avcodec.h:1068
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:806
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:1218
struct AVCodecInternal * internal
Private context used for internal data.
Definition avcodec.h:478
int lowres
low resolution decoding, 1-> 1/2 size, 2->1/4 size
Definition avcodec.h:1707
void * priv_data
Definition avcodec.h:470
float spatial_cplx_masking
spatial complexity masking (0-> disabled)
Definition avcodec.h:834
enum AVDiscard skip_frame
Skip decoding for selected frames.
Definition avcodec.h:1672
int err_recognition
Error recognition; may misdetect some more or less valid parts as errors.
Definition avcodec.h:1417
float i_quant_offset
qscale offset between P and I-frames
Definition avcodec.h:813
int slices
Number of slices.
Definition avcodec.h:1037
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:49
int height
The height of the video frame in pixels.
Definition codec_par.h:150
int width
The width of the video frame in pixels.
Definition codec_par.h:143
int duration
Duration of the current frame.
Definition avcodec.h:2746
int dts_ref_dts_delta
Offset of the current timestamp against last timestamp sync point in units of AVCodecContext....
Definition avcodec.h:2708
int64_t cur_frame_end[AV_PARSER_PTS_NB]
Definition avcodec.h:2673
int width
Dimensions of the decoded video intended for presentation.
Definition avcodec.h:2771
enum AVFieldOrder field_order
Definition avcodec.h:2748
const struct AVCodecParser * parser
Definition avcodec.h:2634
int64_t pos
Byte position of currently parsed frame in stream.
Definition avcodec.h:2734
int format
The format of the coded data, corresponds to enum AVPixelFormat for video and for enum AVSampleFormat...
Definition avcodec.h:2788
int repeat_pict
This field is used for proper frame duration computation in lavf.
Definition avcodec.h:2650
enum AVPictureStructure picture_structure
Indicate whether a picture is coded as a frame, top field or bottom field.
Definition avcodec.h:2758
int64_t cur_frame_dts[AV_PARSER_PTS_NB]
Definition avcodec.h:2663
int64_t cur_frame_pos[AV_PARSER_PTS_NB]
Position of the packet in file.
Definition avcodec.h:2729
int output_picture_number
Picture number incremented in presentation or output order.
Definition avcodec.h:2766
int pts_dts_delta
Presentation delay of current frame in units of AVCodecContext.time_base.
Definition avcodec.h:2722
int64_t next_frame_offset
Definition avcodec.h:2638
int64_t cur_frame_pts[AV_PARSER_PTS_NB]
Definition avcodec.h:2662
int64_t cur_frame_offset[AV_PARSER_PTS_NB]
Definition avcodec.h:2661
int key_frame
Set by parser to 1 for key frames and 0 for non-key frames.
Definition avcodec.h:2681
int64_t last_pos
Previous frame byte position.
Definition avcodec.h:2739
int coded_width
Dimensions of the coded video.
Definition avcodec.h:2777
int64_t offset
byte offset from starting packet start
Definition avcodec.h:2672
int dts_sync_point
Synchronization point for start of timestamp generation.
Definition avcodec.h:2693
enum AVCodecID codec_ids[7]
Definition avcodec.h:2792
AVCodec.
Definition codec.h:175
Structure to hold side data for an AVFrame.
Definition frame.h:327
This structure describes decoded (raw) audio or video data.
Definition frame.h:472
enum AVCodecID id
Codec implemented by the hardware accelerator.
Definition avcodec.h:1983
const char * name
Name of the hardware accelerated codec.
Definition avcodec.h:1969
int capabilities
Hardware accelerated codec capabilities.
Definition avcodec.h:1996
enum AVPixelFormat pix_fmt
Supported pixel format.
Definition avcodec.h:1990
enum AVMediaType type
Type of codec implemented by the hardware accelerator.
Definition avcodec.h:1976
This structure stores auxiliary information for decoding, presenting, or otherwise processing the cod...
Definition packet.h:424
This structure stores compressed data.
Definition packet.h:580
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:2076
char * ass
0 terminated ASS/SSA compatible event line.
Definition avcodec.h:2099
int w
width of pict, undefined when pict is not set
Definition avcodec.h:2078
int nb_colors
number of colors in pict, undefined when pict is not set
Definition avcodec.h:2080
char * text
0 terminated plain UTF-8 text
Definition avcodec.h:2092
uint8_t * data[4]
data+linesize for the bitmap of this subtitle.
Definition avcodec.h:2086
int y
top left corner of pict, undefined when pict is not set
Definition avcodec.h:2077
enum AVSubtitleType type
Definition avcodec.h:2090
int linesize[4]
Definition avcodec.h:2087
int h
height of pict, undefined when pict is not set
Definition avcodec.h:2079
uint16_t format
Definition avcodec.h:2103
uint32_t start_display_time
Definition avcodec.h:2104
uint32_t end_display_time
Definition avcodec.h:2105
unsigned num_rects
Definition avcodec.h:2106
AVSubtitleRect ** rects
Definition avcodec.h:2107
int64_t pts
Same as packet pts, in AV_TIME_BASE.
Definition avcodec.h:2108
int qscale
Definition avcodec.h:196
int start_frame
Definition avcodec.h:194
int end_frame
Definition avcodec.h:195
float quality_factor
Definition avcodec.h:197
#define src
Definition vp8dsp.c:248
static int64_t pts
int size
enum AVCodecID codec_id
static double c[64]