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.

5021 lines
165KB

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