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.

5394 lines
177KB

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