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.

5051 lines
166KB

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