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.

5002 lines
174KB

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