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.

5327 lines
174KB

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