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.

5067 lines
167KB

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