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