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.

5123 lines
173KB

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