You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

4140 lines
145KB

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