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.

3160 lines
96KB

  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 St, Fifth Floor, Boston, MA 02110-1301 USA
  19. */
  20. #ifndef AVCODEC_H
  21. #define AVCODEC_H
  22. /**
  23. * @file avcodec.h
  24. * external API header
  25. */
  26. #ifdef __cplusplus
  27. extern "C" {
  28. #endif
  29. #include "avutil.h"
  30. #include <sys/types.h> /* size_t */
  31. #define AV_STRINGIFY(s) AV_TOSTRING(s)
  32. #define AV_TOSTRING(s) #s
  33. #define LIBAVCODEC_VERSION_INT ((51<<16)+(40<<8)+4)
  34. #define LIBAVCODEC_VERSION 51.40.4
  35. #define LIBAVCODEC_BUILD LIBAVCODEC_VERSION_INT
  36. #define LIBAVCODEC_IDENT "Lavc" AV_STRINGIFY(LIBAVCODEC_VERSION)
  37. #define AV_NOPTS_VALUE INT64_C(0x8000000000000000)
  38. #define AV_TIME_BASE 1000000
  39. #define AV_TIME_BASE_Q (AVRational){1, AV_TIME_BASE}
  40. /**
  41. *
  42. * If you add a codec ID to this list, add it so that
  43. * 1. no value of a existing codec ID changes (that would break ABI),
  44. * 2. it is as close as possible to similar codecs.
  45. */
  46. enum CodecID {
  47. CODEC_ID_NONE,
  48. CODEC_ID_MPEG1VIDEO,
  49. CODEC_ID_MPEG2VIDEO, /* preferred ID for MPEG-1/2 video decoding */
  50. CODEC_ID_MPEG2VIDEO_XVMC,
  51. CODEC_ID_H261,
  52. CODEC_ID_H263,
  53. CODEC_ID_RV10,
  54. CODEC_ID_RV20,
  55. CODEC_ID_MJPEG,
  56. CODEC_ID_MJPEGB,
  57. CODEC_ID_LJPEG,
  58. CODEC_ID_SP5X,
  59. CODEC_ID_JPEGLS,
  60. CODEC_ID_MPEG4,
  61. CODEC_ID_RAWVIDEO,
  62. CODEC_ID_MSMPEG4V1,
  63. CODEC_ID_MSMPEG4V2,
  64. CODEC_ID_MSMPEG4V3,
  65. CODEC_ID_WMV1,
  66. CODEC_ID_WMV2,
  67. CODEC_ID_H263P,
  68. CODEC_ID_H263I,
  69. CODEC_ID_FLV1,
  70. CODEC_ID_SVQ1,
  71. CODEC_ID_SVQ3,
  72. CODEC_ID_DVVIDEO,
  73. CODEC_ID_HUFFYUV,
  74. CODEC_ID_CYUV,
  75. CODEC_ID_H264,
  76. CODEC_ID_INDEO3,
  77. CODEC_ID_VP3,
  78. CODEC_ID_THEORA,
  79. CODEC_ID_ASV1,
  80. CODEC_ID_ASV2,
  81. CODEC_ID_FFV1,
  82. CODEC_ID_4XM,
  83. CODEC_ID_VCR1,
  84. CODEC_ID_CLJR,
  85. CODEC_ID_MDEC,
  86. CODEC_ID_ROQ,
  87. CODEC_ID_INTERPLAY_VIDEO,
  88. CODEC_ID_XAN_WC3,
  89. CODEC_ID_XAN_WC4,
  90. CODEC_ID_RPZA,
  91. CODEC_ID_CINEPAK,
  92. CODEC_ID_WS_VQA,
  93. CODEC_ID_MSRLE,
  94. CODEC_ID_MSVIDEO1,
  95. CODEC_ID_IDCIN,
  96. CODEC_ID_8BPS,
  97. CODEC_ID_SMC,
  98. CODEC_ID_FLIC,
  99. CODEC_ID_TRUEMOTION1,
  100. CODEC_ID_VMDVIDEO,
  101. CODEC_ID_MSZH,
  102. CODEC_ID_ZLIB,
  103. CODEC_ID_QTRLE,
  104. CODEC_ID_SNOW,
  105. CODEC_ID_TSCC,
  106. CODEC_ID_ULTI,
  107. CODEC_ID_QDRAW,
  108. CODEC_ID_VIXL,
  109. CODEC_ID_QPEG,
  110. CODEC_ID_XVID,
  111. CODEC_ID_PNG,
  112. CODEC_ID_PPM,
  113. CODEC_ID_PBM,
  114. CODEC_ID_PGM,
  115. CODEC_ID_PGMYUV,
  116. CODEC_ID_PAM,
  117. CODEC_ID_FFVHUFF,
  118. CODEC_ID_RV30,
  119. CODEC_ID_RV40,
  120. CODEC_ID_VC1,
  121. CODEC_ID_WMV3,
  122. CODEC_ID_LOCO,
  123. CODEC_ID_WNV1,
  124. CODEC_ID_AASC,
  125. CODEC_ID_INDEO2,
  126. CODEC_ID_FRAPS,
  127. CODEC_ID_TRUEMOTION2,
  128. CODEC_ID_BMP,
  129. CODEC_ID_CSCD,
  130. CODEC_ID_MMVIDEO,
  131. CODEC_ID_ZMBV,
  132. CODEC_ID_AVS,
  133. CODEC_ID_SMACKVIDEO,
  134. CODEC_ID_NUV,
  135. CODEC_ID_KMVC,
  136. CODEC_ID_FLASHSV,
  137. CODEC_ID_CAVS,
  138. CODEC_ID_JPEG2000,
  139. CODEC_ID_VMNC,
  140. CODEC_ID_VP5,
  141. CODEC_ID_VP6,
  142. CODEC_ID_VP6F,
  143. CODEC_ID_TARGA,
  144. CODEC_ID_DSICINVIDEO,
  145. CODEC_ID_TIERTEXSEQVIDEO,
  146. CODEC_ID_TIFF,
  147. CODEC_ID_GIF,
  148. CODEC_ID_FFH264,
  149. CODEC_ID_DXA,
  150. CODEC_ID_DNXHD,
  151. CODEC_ID_THP,
  152. CODEC_ID_SGI,
  153. CODEC_ID_C93,
  154. CODEC_ID_BETHSOFTVID,
  155. CODEC_ID_PTX,
  156. CODEC_ID_TXD,
  157. /* various PCM "codecs" */
  158. CODEC_ID_PCM_S16LE= 0x10000,
  159. CODEC_ID_PCM_S16BE,
  160. CODEC_ID_PCM_U16LE,
  161. CODEC_ID_PCM_U16BE,
  162. CODEC_ID_PCM_S8,
  163. CODEC_ID_PCM_U8,
  164. CODEC_ID_PCM_MULAW,
  165. CODEC_ID_PCM_ALAW,
  166. CODEC_ID_PCM_S32LE,
  167. CODEC_ID_PCM_S32BE,
  168. CODEC_ID_PCM_U32LE,
  169. CODEC_ID_PCM_U32BE,
  170. CODEC_ID_PCM_S24LE,
  171. CODEC_ID_PCM_S24BE,
  172. CODEC_ID_PCM_U24LE,
  173. CODEC_ID_PCM_U24BE,
  174. CODEC_ID_PCM_S24DAUD,
  175. /* various ADPCM codecs */
  176. CODEC_ID_ADPCM_IMA_QT= 0x11000,
  177. CODEC_ID_ADPCM_IMA_WAV,
  178. CODEC_ID_ADPCM_IMA_DK3,
  179. CODEC_ID_ADPCM_IMA_DK4,
  180. CODEC_ID_ADPCM_IMA_WS,
  181. CODEC_ID_ADPCM_IMA_SMJPEG,
  182. CODEC_ID_ADPCM_MS,
  183. CODEC_ID_ADPCM_4XM,
  184. CODEC_ID_ADPCM_XA,
  185. CODEC_ID_ADPCM_ADX,
  186. CODEC_ID_ADPCM_EA,
  187. CODEC_ID_ADPCM_G726,
  188. CODEC_ID_ADPCM_CT,
  189. CODEC_ID_ADPCM_SWF,
  190. CODEC_ID_ADPCM_YAMAHA,
  191. CODEC_ID_ADPCM_SBPRO_4,
  192. CODEC_ID_ADPCM_SBPRO_3,
  193. CODEC_ID_ADPCM_SBPRO_2,
  194. CODEC_ID_ADPCM_THP,
  195. /* AMR */
  196. CODEC_ID_AMR_NB= 0x12000,
  197. CODEC_ID_AMR_WB,
  198. /* RealAudio codecs*/
  199. CODEC_ID_RA_144= 0x13000,
  200. CODEC_ID_RA_288,
  201. /* various DPCM codecs */
  202. CODEC_ID_ROQ_DPCM= 0x14000,
  203. CODEC_ID_INTERPLAY_DPCM,
  204. CODEC_ID_XAN_DPCM,
  205. CODEC_ID_SOL_DPCM,
  206. CODEC_ID_MP2= 0x15000,
  207. CODEC_ID_MP3, /* preferred ID for decoding MPEG audio layer 1, 2 or 3 */
  208. CODEC_ID_AAC,
  209. #if LIBAVCODEC_VERSION_INT < ((52<<16)+(0<<8)+0)
  210. CODEC_ID_MPEG4AAC,
  211. #endif
  212. CODEC_ID_AC3,
  213. CODEC_ID_DTS,
  214. CODEC_ID_VORBIS,
  215. CODEC_ID_DVAUDIO,
  216. CODEC_ID_WMAV1,
  217. CODEC_ID_WMAV2,
  218. CODEC_ID_MACE3,
  219. CODEC_ID_MACE6,
  220. CODEC_ID_VMDAUDIO,
  221. CODEC_ID_SONIC,
  222. CODEC_ID_SONIC_LS,
  223. CODEC_ID_FLAC,
  224. CODEC_ID_MP3ADU,
  225. CODEC_ID_MP3ON4,
  226. CODEC_ID_SHORTEN,
  227. CODEC_ID_ALAC,
  228. CODEC_ID_WESTWOOD_SND1,
  229. CODEC_ID_GSM, /* as in Berlin toast format */
  230. CODEC_ID_QDM2,
  231. CODEC_ID_COOK,
  232. CODEC_ID_TRUESPEECH,
  233. CODEC_ID_TTA,
  234. CODEC_ID_SMACKAUDIO,
  235. CODEC_ID_QCELP,
  236. CODEC_ID_WAVPACK,
  237. CODEC_ID_DSICINAUDIO,
  238. CODEC_ID_IMC,
  239. CODEC_ID_MUSEPACK7,
  240. CODEC_ID_MLP,
  241. CODEC_ID_GSM_MS, /* as found in WAV */
  242. CODEC_ID_ATRAC3,
  243. /* subtitle codecs */
  244. CODEC_ID_DVD_SUBTITLE= 0x17000,
  245. CODEC_ID_DVB_SUBTITLE,
  246. CODEC_ID_MPEG2TS= 0x20000, /* _FAKE_ codec to indicate a raw MPEG-2 TS
  247. * stream (only used by libavformat) */
  248. };
  249. #if LIBAVCODEC_VERSION_INT < ((52<<16)+(0<<8)+0)
  250. /* CODEC_ID_MP3LAME is obsolete */
  251. #define CODEC_ID_MP3LAME CODEC_ID_MP3
  252. #define CODEC_ID_MPEG4AAC CODEC_ID_AAC
  253. #endif
  254. enum CodecType {
  255. CODEC_TYPE_UNKNOWN = -1,
  256. CODEC_TYPE_VIDEO,
  257. CODEC_TYPE_AUDIO,
  258. CODEC_TYPE_DATA,
  259. CODEC_TYPE_SUBTITLE,
  260. CODEC_TYPE_NB
  261. };
  262. /* Currently unused, may be used if 24/32 bits samples are ever supported. */
  263. /* all in native-endian format */
  264. enum SampleFormat {
  265. SAMPLE_FMT_NONE = -1,
  266. SAMPLE_FMT_U8, ///< unsigned 8 bits
  267. SAMPLE_FMT_S16, ///< signed 16 bits
  268. SAMPLE_FMT_S24, ///< signed 24 bits
  269. SAMPLE_FMT_S32, ///< signed 32 bits
  270. SAMPLE_FMT_FLT, ///< float
  271. };
  272. /* in bytes */
  273. #define AVCODEC_MAX_AUDIO_FRAME_SIZE 192000 // 1 second of 48khz 32bit audio
  274. /**
  275. * Required number of additionally allocated bytes at the end of the input bitstream for decoding.
  276. * This is mainly needed because some optimized bitstream readers read
  277. * 32 or 64 bit at once and could read over the end.<br>
  278. * Note: If the first 23 bits of the additional bytes are not 0, then damaged
  279. * MPEG bitstreams could cause overread and segfault.
  280. */
  281. #define FF_INPUT_BUFFER_PADDING_SIZE 8
  282. /**
  283. * minimum encoding buffer size
  284. * Used to avoid some checks during header writing.
  285. */
  286. #define FF_MIN_BUFFER_SIZE 16384
  287. /* motion estimation type, EPZS by default */
  288. enum Motion_Est_ID {
  289. ME_ZERO = 1,
  290. ME_FULL,
  291. ME_LOG,
  292. ME_PHODS,
  293. ME_EPZS,
  294. ME_X1,
  295. ME_HEX,
  296. ME_UMH,
  297. ME_ITER,
  298. };
  299. enum AVDiscard{
  300. /* We leave some space between them for extensions (drop some
  301. * keyframes for intra-only or drop just some bidir frames). */
  302. AVDISCARD_NONE =-16, ///< discard nothing
  303. AVDISCARD_DEFAULT= 0, ///< discard useless packets like 0 size packets in avi
  304. AVDISCARD_NONREF = 8, ///< discard all non reference
  305. AVDISCARD_BIDIR = 16, ///< discard all bidirectional frames
  306. AVDISCARD_NONKEY = 32, ///< discard all frames except keyframes
  307. AVDISCARD_ALL = 48, ///< discard all
  308. };
  309. typedef struct RcOverride{
  310. int start_frame;
  311. int end_frame;
  312. int qscale; // If this is 0 then quality_factor will be used instead.
  313. float quality_factor;
  314. } RcOverride;
  315. #define FF_MAX_B_FRAMES 16
  316. /* encoding support
  317. These flags can be passed in AVCodecContext.flags before initialization.
  318. Note: Not everything is supported yet.
  319. */
  320. #define CODEC_FLAG_QSCALE 0x0002 ///< Use fixed qscale.
  321. #define CODEC_FLAG_4MV 0x0004 ///< 4 MV per MB allowed / advanced prediction for H.263.
  322. #define CODEC_FLAG_QPEL 0x0010 ///< Use qpel MC.
  323. #define CODEC_FLAG_GMC 0x0020 ///< Use GMC.
  324. #define CODEC_FLAG_MV0 0x0040 ///< Always try a MB with MV=<0,0>.
  325. #define CODEC_FLAG_PART 0x0080 ///< Use data partitioning.
  326. /* The parent program guarantees that the input for B-frames containing
  327. * streams is not written to for at least s->max_b_frames+1 frames, if
  328. * this is not set the input will be copied. */
  329. #define CODEC_FLAG_INPUT_PRESERVED 0x0100
  330. #define CODEC_FLAG_PASS1 0x0200 ///< Use internal 2pass ratecontrol in first pass mode.
  331. #define CODEC_FLAG_PASS2 0x0400 ///< Use internal 2pass ratecontrol in second pass mode.
  332. #define CODEC_FLAG_EXTERN_HUFF 0x1000 ///< Use external Huffman table (for MJPEG).
  333. #define CODEC_FLAG_GRAY 0x2000 ///< Only decode/encode grayscale.
  334. #define CODEC_FLAG_EMU_EDGE 0x4000///< Don't draw edges.
  335. #define CODEC_FLAG_PSNR 0x8000 ///< error[?] variables will be set during encoding.
  336. #define CODEC_FLAG_TRUNCATED 0x00010000 /** Input bitstream might be truncated at a random location instead
  337. of only at frame boundaries. */
  338. #define CODEC_FLAG_NORMALIZE_AQP 0x00020000 ///< Normalize adaptive quantization.
  339. #define CODEC_FLAG_INTERLACED_DCT 0x00040000 ///< Use interlaced DCT.
  340. #define CODEC_FLAG_LOW_DELAY 0x00080000 ///< Force low delay.
  341. #define CODEC_FLAG_ALT_SCAN 0x00100000 ///< Use alternate scan.
  342. #define CODEC_FLAG_TRELLIS_QUANT 0x00200000 ///< Use trellis quantization.
  343. #define CODEC_FLAG_GLOBAL_HEADER 0x00400000 ///< Place global headers in extradata instead of every keyframe.
  344. #define CODEC_FLAG_BITEXACT 0x00800000 ///< Use only bitexact stuff (except (I)DCT).
  345. /* Fx : Flag for h263+ extra options */
  346. #if LIBAVCODEC_VERSION_INT < ((52<<16)+(0<<8)+0)
  347. #define CODEC_FLAG_H263P_AIC 0x01000000 ///< H.263 advanced intra coding / MPEG-4 AC prediction (remove this)
  348. #endif
  349. #define CODEC_FLAG_AC_PRED 0x01000000 ///< H.263 advanced intra coding / MPEG-4 AC prediction
  350. #define CODEC_FLAG_H263P_UMV 0x02000000 ///< unlimited motion vector
  351. #define CODEC_FLAG_CBP_RD 0x04000000 ///< Use rate distortion optimization for cbp.
  352. #define CODEC_FLAG_QP_RD 0x08000000 ///< Use rate distortion optimization for qp selectioon.
  353. #define CODEC_FLAG_H263P_AIV 0x00000008 ///< H.263 alternative inter VLC
  354. #define CODEC_FLAG_OBMC 0x00000001 ///< OBMC
  355. #define CODEC_FLAG_LOOP_FILTER 0x00000800 ///< loop filter
  356. #define CODEC_FLAG_H263P_SLICE_STRUCT 0x10000000
  357. #define CODEC_FLAG_INTERLACED_ME 0x20000000 ///< interlaced motion estimation
  358. #define CODEC_FLAG_SVCD_SCAN_OFFSET 0x40000000 ///< Will reserve space for SVCD scan offset user data.
  359. #define CODEC_FLAG_CLOSED_GOP ((int)0x80000000)
  360. #define CODEC_FLAG2_FAST 0x00000001 ///< Allow non spec compliant speedup tricks.
  361. #define CODEC_FLAG2_STRICT_GOP 0x00000002 ///< Strictly enforce GOP size.
  362. #define CODEC_FLAG2_NO_OUTPUT 0x00000004 ///< Skip bitstream encoding.
  363. #define CODEC_FLAG2_LOCAL_HEADER 0x00000008 ///< Place global headers at every keyframe instead of in extradata.
  364. #define CODEC_FLAG2_BPYRAMID 0x00000010 ///< H.264 allow B-frames to be used as references.
  365. #define CODEC_FLAG2_WPRED 0x00000020 ///< H.264 weighted biprediction for B-frames
  366. #define CODEC_FLAG2_MIXED_REFS 0x00000040 ///< H.264 one reference per partition, as opposed to one reference per macroblock
  367. #define CODEC_FLAG2_8X8DCT 0x00000080 ///< H.264 high profile 8x8 transform
  368. #define CODEC_FLAG2_FASTPSKIP 0x00000100 ///< H.264 fast pskip
  369. #define CODEC_FLAG2_AUD 0x00000200 ///< H.264 access unit delimiters
  370. #define CODEC_FLAG2_BRDO 0x00000400 ///< B-frame rate-distortion optimization
  371. #define CODEC_FLAG2_INTRA_VLC 0x00000800 ///< Use MPEG-2 intra VLC table.
  372. #define CODEC_FLAG2_MEMC_ONLY 0x00001000 ///< Only do ME/MC (I frames -> ref, P frame -> ME+MC).
  373. #define CODEC_FLAG2_DROP_FRAME_TIMECODE 0x00002000 ///< timecode is in drop frame format.
  374. #define CODEC_FLAG2_SKIP_RD 0x00004000 ///< RD optimal MB level residual skipping
  375. #define CODEC_FLAG2_CHUNKS 0x00008000 ///< Input bitstream might be truncated at a packet boundaries instead of only at frame boundaries.
  376. #define CODEC_FLAG2_NON_LINEAR_QUANT 0x00010000 ///< Use MPEG-2 nonlinear quantizer.
  377. /* Unsupported options :
  378. * Syntax Arithmetic coding (SAC)
  379. * Reference Picture Selection
  380. * Independent Segment Decoding */
  381. /* /Fx */
  382. /* codec capabilities */
  383. #define CODEC_CAP_DRAW_HORIZ_BAND 0x0001 ///< Decoder can use draw_horiz_band callback.
  384. /**
  385. * Codec uses get_buffer() for allocating buffers.
  386. * direct rendering method 1
  387. */
  388. #define CODEC_CAP_DR1 0x0002
  389. /* If 'parse_only' field is true, then avcodec_parse_frame() can be used. */
  390. #define CODEC_CAP_PARSE_ONLY 0x0004
  391. #define CODEC_CAP_TRUNCATED 0x0008
  392. /* Codec can export data for HW decoding (XvMC). */
  393. #define CODEC_CAP_HWACCEL 0x0010
  394. /**
  395. * Codec has a nonzero delay and needs to be fed with NULL at the end to get the delayed data.
  396. * If this is not set, the codec is guaranteed to never be fed with NULL data.
  397. */
  398. #define CODEC_CAP_DELAY 0x0020
  399. /**
  400. * Codec can be fed a final frame with a smaller size.
  401. * This can be used to prevent truncation of the last audio samples.
  402. */
  403. #define CODEC_CAP_SMALL_LAST_FRAME 0x0040
  404. //The following defines may change, don't expect compatibility if you use them.
  405. #define MB_TYPE_INTRA4x4 0x0001
  406. #define MB_TYPE_INTRA16x16 0x0002 //FIXME H.264-specific
  407. #define MB_TYPE_INTRA_PCM 0x0004 //FIXME H.264-specific
  408. #define MB_TYPE_16x16 0x0008
  409. #define MB_TYPE_16x8 0x0010
  410. #define MB_TYPE_8x16 0x0020
  411. #define MB_TYPE_8x8 0x0040
  412. #define MB_TYPE_INTERLACED 0x0080
  413. #define MB_TYPE_DIRECT2 0x0100 //FIXME
  414. #define MB_TYPE_ACPRED 0x0200
  415. #define MB_TYPE_GMC 0x0400
  416. #define MB_TYPE_SKIP 0x0800
  417. #define MB_TYPE_P0L0 0x1000
  418. #define MB_TYPE_P1L0 0x2000
  419. #define MB_TYPE_P0L1 0x4000
  420. #define MB_TYPE_P1L1 0x8000
  421. #define MB_TYPE_L0 (MB_TYPE_P0L0 | MB_TYPE_P1L0)
  422. #define MB_TYPE_L1 (MB_TYPE_P0L1 | MB_TYPE_P1L1)
  423. #define MB_TYPE_L0L1 (MB_TYPE_L0 | MB_TYPE_L1)
  424. #define MB_TYPE_QUANT 0x00010000
  425. #define MB_TYPE_CBP 0x00020000
  426. //Note bits 24-31 are reserved for codec specific use (h264 ref0, mpeg1 0mv, ...)
  427. /**
  428. * Pan Scan area.
  429. * This specifies the area which should be displayed.
  430. * Note there may be multiple such areas for one frame.
  431. */
  432. typedef struct AVPanScan{
  433. /**
  434. * id
  435. * - encoding: Set by user.
  436. * - decoding: Set by libavcodec.
  437. */
  438. int id;
  439. /**
  440. * width and height in 1/16 pel
  441. * - encoding: Set by user.
  442. * - decoding: Set by libavcodec.
  443. */
  444. int width;
  445. int height;
  446. /**
  447. * position of the top left corner in 1/16 pel for up to 3 fields/frames
  448. * - encoding: Set by user.
  449. * - decoding: Set by libavcodec.
  450. */
  451. int16_t position[3][2];
  452. }AVPanScan;
  453. #define FF_COMMON_FRAME \
  454. /**\
  455. * pointer to the picture planes.\
  456. * This might be different from the first allocated byte\
  457. * - encoding: \
  458. * - decoding: \
  459. */\
  460. uint8_t *data[4];\
  461. int linesize[4];\
  462. /**\
  463. * pointer to the first allocated byte of the picture. Can be used in get_buffer/release_buffer.\
  464. * This isn't used by libavcodec unless the default get/release_buffer() is used.\
  465. * - encoding: \
  466. * - decoding: \
  467. */\
  468. uint8_t *base[4];\
  469. /**\
  470. * 1 -> keyframe, 0-> not\
  471. * - encoding: Set by libavcodec.\
  472. * - decoding: Set by libavcodec.\
  473. */\
  474. int key_frame;\
  475. \
  476. /**\
  477. * Picture type of the frame, see ?_TYPE below.\
  478. * - encoding: Set by libavcodec. for coded_picture (and set by user for input).\
  479. * - decoding: Set by libavcodec.\
  480. */\
  481. int pict_type;\
  482. \
  483. /**\
  484. * presentation timestamp in time_base units (time when frame should be shown to user)\
  485. * If AV_NOPTS_VALUE then frame_rate = 1/time_base will be assumed.\
  486. * - encoding: MUST be set by user.\
  487. * - decoding: Set by libavcodec.\
  488. */\
  489. int64_t pts;\
  490. \
  491. /**\
  492. * picture number in bitstream order\
  493. * - encoding: set by\
  494. * - decoding: Set by libavcodec.\
  495. */\
  496. int coded_picture_number;\
  497. /**\
  498. * picture number in display order\
  499. * - encoding: set by\
  500. * - decoding: Set by libavcodec.\
  501. */\
  502. int display_picture_number;\
  503. \
  504. /**\
  505. * quality (between 1 (good) and FF_LAMBDA_MAX (bad)) \
  506. * - encoding: Set by libavcodec. for coded_picture (and set by user for input).\
  507. * - decoding: Set by libavcodec.\
  508. */\
  509. int quality; \
  510. \
  511. /**\
  512. * buffer age (1->was last buffer and dint change, 2->..., ...).\
  513. * Set to INT_MAX if the buffer has not been used yet.\
  514. * - encoding: unused\
  515. * - decoding: MUST be set by get_buffer().\
  516. */\
  517. int age;\
  518. \
  519. /**\
  520. * is this picture used as reference\
  521. * - encoding: unused\
  522. * - decoding: Set by libavcodec. (before get_buffer() call)).\
  523. */\
  524. int reference;\
  525. \
  526. /**\
  527. * QP table\
  528. * - encoding: unused\
  529. * - decoding: Set by libavcodec.\
  530. */\
  531. int8_t *qscale_table;\
  532. /**\
  533. * QP store stride\
  534. * - encoding: unused\
  535. * - decoding: Set by libavcodec.\
  536. */\
  537. int qstride;\
  538. \
  539. /**\
  540. * mbskip_table[mb]>=1 if MB didn't change\
  541. * stride= mb_width = (width+15)>>4\
  542. * - encoding: unused\
  543. * - decoding: Set by libavcodec.\
  544. */\
  545. uint8_t *mbskip_table;\
  546. \
  547. /**\
  548. * motion vector table\
  549. * @code\
  550. * example:\
  551. * int mv_sample_log2= 4 - motion_subsample_log2;\
  552. * int mb_width= (width+15)>>4;\
  553. * int mv_stride= (mb_width << mv_sample_log2) + 1;\
  554. * motion_val[direction][x + y*mv_stride][0->mv_x, 1->mv_y];\
  555. * @endcode\
  556. * - encoding: Set by user.\
  557. * - decoding: Set by libavcodec.\
  558. */\
  559. int16_t (*motion_val[2])[2];\
  560. \
  561. /**\
  562. * macroblock type table\
  563. * mb_type_base + mb_width + 2\
  564. * - encoding: Set by user.\
  565. * - decoding: Set by libavcodec.\
  566. */\
  567. uint32_t *mb_type;\
  568. \
  569. /**\
  570. * log2 of the size of the block which a single vector in motion_val represents: \
  571. * (4->16x16, 3->8x8, 2-> 4x4, 1-> 2x2)\
  572. * - encoding: unused\
  573. * - decoding: Set by libavcodec.\
  574. */\
  575. uint8_t motion_subsample_log2;\
  576. \
  577. /**\
  578. * for some private data of the user\
  579. * - encoding: unused\
  580. * - decoding: Set by user.\
  581. */\
  582. void *opaque;\
  583. \
  584. /**\
  585. * error\
  586. * - encoding: Set by libavcodec. if flags&CODEC_FLAG_PSNR.\
  587. * - decoding: unused\
  588. */\
  589. uint64_t error[4];\
  590. \
  591. /**\
  592. * type of the buffer (to keep track of who has to deallocate data[*])\
  593. * - encoding: Set by the one who allocates it.\
  594. * - decoding: Set by the one who allocates it.\
  595. * Note: User allocated (direct rendering) & internal buffers cannot coexist currently.\
  596. */\
  597. int type;\
  598. \
  599. /**\
  600. * When decoding, this signals how much the picture must be delayed.\
  601. * extra_delay = repeat_pict / (2*fps)\
  602. * - encoding: unused\
  603. * - decoding: Set by libavcodec.\
  604. */\
  605. int repeat_pict;\
  606. \
  607. /**\
  608. * \
  609. */\
  610. int qscale_type;\
  611. \
  612. /**\
  613. * The content of the picture is interlaced.\
  614. * - encoding: Set by user.\
  615. * - decoding: Set by libavcodec. (default 0)\
  616. */\
  617. int interlaced_frame;\
  618. \
  619. /**\
  620. * If the content is interlaced, is top field displayed first.\
  621. * - encoding: Set by user.\
  622. * - decoding: Set by libavcodec.\
  623. */\
  624. int top_field_first;\
  625. \
  626. /**\
  627. * Pan scan.\
  628. * - encoding: Set by user.\
  629. * - decoding: Set by libavcodec.\
  630. */\
  631. AVPanScan *pan_scan;\
  632. \
  633. /**\
  634. * Tell user application that palette has changed from previous frame.\
  635. * - encoding: ??? (no palette-enabled encoder yet)\
  636. * - decoding: Set by libavcodec. (default 0).\
  637. */\
  638. int palette_has_changed;\
  639. \
  640. /**\
  641. * codec suggestion on buffer type if != 0\
  642. * - encoding: unused\
  643. * - decoding: Set by libavcodec. (before get_buffer() call)).\
  644. */\
  645. int buffer_hints;\
  646. \
  647. /**\
  648. * DCT coefficients\
  649. * - encoding: unused\
  650. * - decoding: Set by libavcodec.\
  651. */\
  652. short *dct_coeff;\
  653. \
  654. /**\
  655. * motion referece frame index\
  656. * - encoding: Set by user.\
  657. * - decoding: Set by libavcodec.\
  658. */\
  659. int8_t *ref_index[2];
  660. #define FF_QSCALE_TYPE_MPEG1 0
  661. #define FF_QSCALE_TYPE_MPEG2 1
  662. #define FF_QSCALE_TYPE_H264 2
  663. #define FF_BUFFER_TYPE_INTERNAL 1
  664. #define FF_BUFFER_TYPE_USER 2 ///< direct rendering buffers (image is (de)allocated by user)
  665. #define FF_BUFFER_TYPE_SHARED 4 ///< Buffer from somewhere else; don't deallocate image (data/base), all other tables are not shared.
  666. #define FF_BUFFER_TYPE_COPY 8 ///< Just a (modified) copy of some other buffer, don't deallocate anything.
  667. #define FF_I_TYPE 1 // Intra
  668. #define FF_P_TYPE 2 // Predicted
  669. #define FF_B_TYPE 3 // Bi-dir predicted
  670. #define FF_S_TYPE 4 // S(GMC)-VOP MPEG4
  671. #define FF_SI_TYPE 5
  672. #define FF_SP_TYPE 6
  673. #define FF_BUFFER_HINTS_VALID 0x01 // Buffer hints value is meaningful (if 0 ignore).
  674. #define FF_BUFFER_HINTS_READABLE 0x02 // Codec will read from buffer.
  675. #define FF_BUFFER_HINTS_PRESERVE 0x04 // User must not alter buffer content.
  676. #define FF_BUFFER_HINTS_REUSABLE 0x08 // Codec will reuse the buffer (update).
  677. /**
  678. * Audio Video Frame.
  679. */
  680. typedef struct AVFrame {
  681. FF_COMMON_FRAME
  682. } AVFrame;
  683. #define DEFAULT_FRAME_RATE_BASE 1001000
  684. /**
  685. * main external API structure
  686. */
  687. typedef struct AVCodecContext {
  688. /**
  689. * information on struct for av_log
  690. * - set by avcodec_alloc_context
  691. */
  692. AVClass *av_class;
  693. /**
  694. * the average bitrate
  695. * - encoding: Set by user; unused for constant quantizer encoding.
  696. * - decoding: Set by libavcodec. 0 or some bitrate if this info is available in the stream.
  697. */
  698. int bit_rate;
  699. /**
  700. * number of bits the bitstream is allowed to diverge from the reference.
  701. * the reference can be CBR (for CBR pass1) or VBR (for pass2)
  702. * - encoding: Set by user; unused for constant quantizer encoding.
  703. * - decoding: unused
  704. */
  705. int bit_rate_tolerance;
  706. /**
  707. * CODEC_FLAG_*.
  708. * - encoding: Set by user.
  709. * - decoding: Set by user.
  710. */
  711. int flags;
  712. /**
  713. * Some codecs need additional format info. It is stored here.
  714. * If any muxer uses this then ALL demuxers/parsers AND encoders for the
  715. * specific codec MUST set it correctly otherwise stream copy breaks.
  716. * In general use of this field by muxers is not recommanded.
  717. * - encoding: Set by libavcodec.
  718. * - decoding: Set by libavcodec. (FIXME: Is this OK?)
  719. */
  720. int sub_id;
  721. /**
  722. * Motion estimation algorithm used for video coding.
  723. * 1 (zero), 2 (full), 3 (log), 4 (phods), 5 (epzs), 6 (x1), 7 (hex),
  724. * 8 (umh), 9 (iter) [7, 8 are x264 specific, 9 is snow specific]
  725. * - encoding: MUST be set by user.
  726. * - decoding: unused
  727. */
  728. int me_method;
  729. /**
  730. * some codecs need / can use extradata like Huffman tables.
  731. * mjpeg: Huffman tables
  732. * rv10: additional flags
  733. * mpeg4: global headers (they can be in the bitstream or here)
  734. * The allocated memory should be FF_INPUT_BUFFER_PADDING_SIZE bytes larger
  735. * than extradata_size to avoid prolems if it is read with the bitstream reader.
  736. * The bytewise contents of extradata must not depend on the architecture or CPU endianness.
  737. * - encoding: Set/allocated/freed by libavcodec.
  738. * - decoding: Set/allocated/freed by user.
  739. */
  740. uint8_t *extradata;
  741. int extradata_size;
  742. /**
  743. * This is the fundamental unit of time (in seconds) in terms
  744. * of which frame timestamps are represented. For fixed-fps content,
  745. * timebase should be 1/framerate and timestamp increments should be
  746. * identically 1.
  747. * - encoding: MUST be set by user.
  748. * - decoding: Set by libavcodec.
  749. */
  750. AVRational time_base;
  751. /* video only */
  752. /**
  753. * picture width / height.
  754. * - encoding: MUST be set by user.
  755. * - decoding: Set by libavcodec.
  756. * Note: For compatibility it is possible to set this instead of
  757. * coded_width/height before decoding.
  758. */
  759. int width, height;
  760. #define FF_ASPECT_EXTENDED 15
  761. /**
  762. * the number of pictures in a group of pictures, or 0 for intra_only
  763. * - encoding: Set by user.
  764. * - decoding: unused
  765. */
  766. int gop_size;
  767. /**
  768. * Pixel format, see PIX_FMT_xxx.
  769. * - encoding: Set by user.
  770. * - decoding: Set by libavcodec.
  771. */
  772. enum PixelFormat pix_fmt;
  773. /**
  774. * Frame rate emulation. If not zero, the lower layer (i.e. format handler)
  775. * has to read frames at native frame rate.
  776. * - encoding: Set by user.
  777. * - decoding: unused
  778. */
  779. int rate_emu;
  780. /**
  781. * If non NULL, 'draw_horiz_band' is called by the libavcodec
  782. * decoder to draw a horizontal band. It improves cache usage. Not
  783. * all codecs can do that. You must check the codec capabilities
  784. * beforehand.
  785. * - encoding: unused
  786. * - decoding: Set by user.
  787. * @param height the height of the slice
  788. * @param y the y position of the slice
  789. * @param type 1->top field, 2->bottom field, 3->frame
  790. * @param offset offset into the AVFrame.data from which the slice should be read
  791. */
  792. void (*draw_horiz_band)(struct AVCodecContext *s,
  793. const AVFrame *src, int offset[4],
  794. int y, int type, int height);
  795. /* audio only */
  796. int sample_rate; ///< samples per second
  797. int channels;
  798. /**
  799. * audio sample format
  800. * - encoding: Set by user.
  801. * - decoding: Set by libavcodec.
  802. */
  803. enum SampleFormat sample_fmt; ///< sample format, currently unused
  804. /* The following data should not be initialized. */
  805. /**
  806. * Samples per packet, initialized when calling 'init'.
  807. */
  808. int frame_size;
  809. int frame_number; ///< audio or video frame number
  810. int real_pict_num; ///< Returns the real picture number of previous encoded frame.
  811. /**
  812. * Number of frames the decoded output will be delayed relative to
  813. * the encoded input.
  814. * - encoding: Set by libavcodec.
  815. * - decoding: unused
  816. */
  817. int delay;
  818. /* - encoding parameters */
  819. float qcompress; ///< amount of qscale change between easy & hard scenes (0.0-1.0)
  820. float qblur; ///< amount of qscale smoothing over time (0.0-1.0)
  821. /**
  822. * minimum quantizer
  823. * - encoding: Set by user.
  824. * - decoding: unused
  825. */
  826. int qmin;
  827. /**
  828. * maximum quantizer
  829. * - encoding: Set by user.
  830. * - decoding: unused
  831. */
  832. int qmax;
  833. /**
  834. * maximum quantizer difference between frames
  835. * - encoding: Set by user.
  836. * - decoding: unused
  837. */
  838. int max_qdiff;
  839. /**
  840. * maximum number of B-frames between non-B-frames
  841. * Note: The output will be delayed by max_b_frames+1 relative to the input.
  842. * - encoding: Set by user.
  843. * - decoding: unused
  844. */
  845. int max_b_frames;
  846. /**
  847. * qscale factor between IP and B-frames
  848. * - encoding: Set by user.
  849. * - decoding: unused
  850. */
  851. float b_quant_factor;
  852. /** obsolete FIXME remove */
  853. int rc_strategy;
  854. #define FF_RC_STRATEGY_XVID 1
  855. int b_frame_strategy;
  856. /**
  857. * hurry up amount
  858. * - encoding: unused
  859. * - decoding: Set by user. 1-> Skip B-frames, 2-> Skip IDCT/dequant too, 5-> Skip everything except header
  860. * @deprecated Deprecated in favor of skip_idct and skip_frame.
  861. */
  862. int hurry_up;
  863. struct AVCodec *codec;
  864. void *priv_data;
  865. #if LIBAVCODEC_VERSION_INT < ((52<<16)+(0<<8)+0)
  866. /* unused, FIXME remove*/
  867. int rtp_mode;
  868. #endif
  869. int rtp_payload_size; /* The size of the RTP payload: the coder will */
  870. /* do its best to deliver a chunk with size */
  871. /* below rtp_payload_size, the chunk will start */
  872. /* with a start code on some codecs like H.263. */
  873. /* This doesn't take account of any particular */
  874. /* headers inside the transmitted RTP payload. */
  875. /* The RTP callback: This function is called */
  876. /* every time the encoder has a packet to send. */
  877. /* It depends on the encoder if the data starts */
  878. /* with a Start Code (it should). H.263 does. */
  879. /* mb_nb contains the number of macroblocks */
  880. /* encoded in the RTP payload. */
  881. void (*rtp_callback)(struct AVCodecContext *avctx, void *data, int size, int mb_nb);
  882. /* statistics, used for 2-pass encoding */
  883. int mv_bits;
  884. int header_bits;
  885. int i_tex_bits;
  886. int p_tex_bits;
  887. int i_count;
  888. int p_count;
  889. int skip_count;
  890. int misc_bits;
  891. /**
  892. * number of bits used for the previously encoded frame
  893. * - encoding: Set by libavcodec.
  894. * - decoding: unused
  895. */
  896. int frame_bits;
  897. /**
  898. * Private data of the user, can be used to carry app specific stuff.
  899. * - encoding: Set by user.
  900. * - decoding: Set by user.
  901. */
  902. void *opaque;
  903. char codec_name[32];
  904. enum CodecType codec_type; /* see CODEC_TYPE_xxx */
  905. enum CodecID codec_id; /* see CODEC_ID_xxx */
  906. /**
  907. * fourcc (LSB first, so "ABCD" -> ('D'<<24) + ('C'<<16) + ('B'<<8) + 'A').
  908. * This is used to work around some encoder bugs.
  909. * A demuxer should set this to what is stored in the field used to identify the codec.
  910. * If there are multiple such fields in a container then the demuxer should choose the one
  911. * which maximizes the information about the used codec.
  912. * If the codec tag field in a container is larger then 32 bits then the demuxer should
  913. * remap the longer ID to 32 bits with a table or other structure. Alternatively a new
  914. * extra_codec_tag + size could be added but for this a clear advantage must be demonstrated
  915. * first.
  916. * - encoding: Set by user, if not then the default based on codec_id will be used.
  917. * - decoding: Set by user, will be converted to uppercase by libavcodec during init.
  918. */
  919. unsigned int codec_tag;
  920. /**
  921. * Work around bugs in encoders which sometimes cannot be detected automatically.
  922. * - encoding: Set by user
  923. * - decoding: Set by user
  924. */
  925. int workaround_bugs;
  926. #define FF_BUG_AUTODETECT 1 ///< autodetection
  927. #define FF_BUG_OLD_MSMPEG4 2
  928. #define FF_BUG_XVID_ILACE 4
  929. #define FF_BUG_UMP4 8
  930. #define FF_BUG_NO_PADDING 16
  931. #define FF_BUG_AMV 32
  932. #define FF_BUG_AC_VLC 0 ///< Will be removed, libavcodec can now handle these non-compliant files by default.
  933. #define FF_BUG_QPEL_CHROMA 64
  934. #define FF_BUG_STD_QPEL 128
  935. #define FF_BUG_QPEL_CHROMA2 256
  936. #define FF_BUG_DIRECT_BLOCKSIZE 512
  937. #define FF_BUG_EDGE 1024
  938. #define FF_BUG_HPEL_CHROMA 2048
  939. #define FF_BUG_DC_CLIP 4096
  940. #define FF_BUG_MS 8192 ///< Work around various bugs in Microsoft's broken decoders.
  941. //#define FF_BUG_FAKE_SCALABILITY 16 //Autodetection should work 100%.
  942. /**
  943. * luma single coefficient elimination threshold
  944. * - encoding: Set by user.
  945. * - decoding: unused
  946. */
  947. int luma_elim_threshold;
  948. /**
  949. * chroma single coeff elimination threshold
  950. * - encoding: Set by user.
  951. * - decoding: unused
  952. */
  953. int chroma_elim_threshold;
  954. /**
  955. * strictly follow the standard (MPEG4, ...).
  956. * - encoding: Set by user.
  957. * - decoding: unused
  958. */
  959. int strict_std_compliance;
  960. #define FF_COMPLIANCE_VERY_STRICT 2 ///< Strictly conform to a older more strict version of the spec or reference software.
  961. #define FF_COMPLIANCE_STRICT 1 ///< Strictly conform to all the things in the spec no matter what consequences.
  962. #define FF_COMPLIANCE_NORMAL 0
  963. #define FF_COMPLIANCE_INOFFICIAL -1 ///< Allow inofficial extensions.
  964. #define FF_COMPLIANCE_EXPERIMENTAL -2 ///< Allow nonstandardized experimental things.
  965. /**
  966. * qscale offset between IP and B-frames
  967. * If > 0 then the last P-frame quantizer will be used (q= lastp_q*factor+offset).
  968. * If < 0 then normal ratecontrol will be done (q= -normal_q*factor+offset).
  969. * - encoding: Set by user.
  970. * - decoding: unused
  971. */
  972. float b_quant_offset;
  973. /**
  974. * Error resilience; higher values will detect more errors but may
  975. * misdetect some more or less valid parts as errors.
  976. * - encoding: unused
  977. * - decoding: Set by user.
  978. */
  979. int error_resilience;
  980. #define FF_ER_CAREFUL 1
  981. #define FF_ER_COMPLIANT 2
  982. #define FF_ER_AGGRESSIVE 3
  983. #define FF_ER_VERY_AGGRESSIVE 4
  984. /**
  985. * Called at the beginning of each frame to get a buffer for it.
  986. * If pic.reference is set then the frame will be read later by libavcodec.
  987. * avcodec_align_dimensions() should be used to find the required width and
  988. * height, as they normally need to be rounded up to the next multiple of 16.
  989. * - encoding: unused
  990. * - decoding: Set by libavcodec., user can override.
  991. */
  992. int (*get_buffer)(struct AVCodecContext *c, AVFrame *pic);
  993. /**
  994. * Called to release buffers which where allocated with get_buffer.
  995. * A released buffer can be reused in get_buffer().
  996. * pic.data[*] must be set to NULL.
  997. * - encoding: unused
  998. * - decoding: Set by libavcodec., user can override.
  999. */
  1000. void (*release_buffer)(struct AVCodecContext *c, AVFrame *pic);
  1001. /**
  1002. * If 1 the stream has a 1 frame delay during decoding.
  1003. * - encoding: Set by libavcodec.
  1004. * - decoding: Set by libavcodec.
  1005. */
  1006. int has_b_frames;
  1007. /**
  1008. * number of bytes per packet if constant and known or 0
  1009. * Used by some WAV based audio codecs.
  1010. */
  1011. int block_align;
  1012. int parse_only; /* - decoding only: If true, only parsing is done
  1013. (function avcodec_parse_frame()). The frame
  1014. data is returned. Only MPEG codecs support this now. */
  1015. /**
  1016. * 0-> h263 quant 1-> mpeg quant
  1017. * - encoding: Set by user.
  1018. * - decoding: unused
  1019. */
  1020. int mpeg_quant;
  1021. /**
  1022. * pass1 encoding statistics output buffer
  1023. * - encoding: Set by libavcodec.
  1024. * - decoding: unused
  1025. */
  1026. char *stats_out;
  1027. /**
  1028. * pass2 encoding statistics input buffer
  1029. * Concatenated stuff from stats_out of pass1 should be placed here.
  1030. * - encoding: Allocated/set/freed by user.
  1031. * - decoding: unused
  1032. */
  1033. char *stats_in;
  1034. /**
  1035. * ratecontrol qmin qmax limiting method
  1036. * 0-> clipping, 1-> use a nice continous function to limit qscale wthin qmin/qmax.
  1037. * - encoding: Set by user.
  1038. * - decoding: unused
  1039. */
  1040. float rc_qsquish;
  1041. float rc_qmod_amp;
  1042. int rc_qmod_freq;
  1043. /**
  1044. * ratecontrol override, see RcOverride
  1045. * - encoding: Allocated/set/freed by user.
  1046. * - decoding: unused
  1047. */
  1048. RcOverride *rc_override;
  1049. int rc_override_count;
  1050. /**
  1051. * rate control equation
  1052. * - encoding: Set by user
  1053. * - decoding: unused
  1054. */
  1055. char *rc_eq;
  1056. /**
  1057. * maximum bitrate
  1058. * - encoding: Set by user.
  1059. * - decoding: unused
  1060. */
  1061. int rc_max_rate;
  1062. /**
  1063. * minimum bitrate
  1064. * - encoding: Set by user.
  1065. * - decoding: unused
  1066. */
  1067. int rc_min_rate;
  1068. /**
  1069. * decoder bitstream buffer size
  1070. * - encoding: Set by user.
  1071. * - decoding: unused
  1072. */
  1073. int rc_buffer_size;
  1074. float rc_buffer_aggressivity;
  1075. /**
  1076. * qscale factor between P and I-frames
  1077. * If > 0 then the last p frame quantizer will be used (q= lastp_q*factor+offset).
  1078. * If < 0 then normal ratecontrol will be done (q= -normal_q*factor+offset).
  1079. * - encoding: Set by user.
  1080. * - decoding: unused
  1081. */
  1082. float i_quant_factor;
  1083. /**
  1084. * qscale offset between P and I-frames
  1085. * - encoding: Set by user.
  1086. * - decoding: unused
  1087. */
  1088. float i_quant_offset;
  1089. /**
  1090. * initial complexity for pass1 ratecontrol
  1091. * - encoding: Set by user.
  1092. * - decoding: unused
  1093. */
  1094. float rc_initial_cplx;
  1095. /**
  1096. * DCT algorithm, see FF_DCT_* below
  1097. * - encoding: Set by user.
  1098. * - decoding: unused
  1099. */
  1100. int dct_algo;
  1101. #define FF_DCT_AUTO 0
  1102. #define FF_DCT_FASTINT 1
  1103. #define FF_DCT_INT 2
  1104. #define FF_DCT_MMX 3
  1105. #define FF_DCT_MLIB 4
  1106. #define FF_DCT_ALTIVEC 5
  1107. #define FF_DCT_FAAN 6
  1108. /**
  1109. * luminance masking (0-> disabled)
  1110. * - encoding: Set by user.
  1111. * - decoding: unused
  1112. */
  1113. float lumi_masking;
  1114. /**
  1115. * temporary complexity masking (0-> disabled)
  1116. * - encoding: Set by user.
  1117. * - decoding: unused
  1118. */
  1119. float temporal_cplx_masking;
  1120. /**
  1121. * spatial complexity masking (0-> disabled)
  1122. * - encoding: Set by user.
  1123. * - decoding: unused
  1124. */
  1125. float spatial_cplx_masking;
  1126. /**
  1127. * p block masking (0-> disabled)
  1128. * - encoding: Set by user.
  1129. * - decoding: unused
  1130. */
  1131. float p_masking;
  1132. /**
  1133. * darkness masking (0-> disabled)
  1134. * - encoding: Set by user.
  1135. * - decoding: unused
  1136. */
  1137. float dark_masking;
  1138. /* for binary compatibility */
  1139. int unused;
  1140. /**
  1141. * IDCT algorithm, see FF_IDCT_* below.
  1142. * - encoding: Set by user.
  1143. * - decoding: Set by user.
  1144. */
  1145. int idct_algo;
  1146. #define FF_IDCT_AUTO 0
  1147. #define FF_IDCT_INT 1
  1148. #define FF_IDCT_SIMPLE 2
  1149. #define FF_IDCT_SIMPLEMMX 3
  1150. #define FF_IDCT_LIBMPEG2MMX 4
  1151. #define FF_IDCT_PS2 5
  1152. #define FF_IDCT_MLIB 6
  1153. #define FF_IDCT_ARM 7
  1154. #define FF_IDCT_ALTIVEC 8
  1155. #define FF_IDCT_SH4 9
  1156. #define FF_IDCT_SIMPLEARM 10
  1157. #define FF_IDCT_H264 11
  1158. #define FF_IDCT_VP3 12
  1159. #define FF_IDCT_IPP 13
  1160. #define FF_IDCT_XVIDMMX 14
  1161. #define FF_IDCT_CAVS 15
  1162. #define FF_IDCT_SIMPLEARMV5TE 16
  1163. #define FF_IDCT_SIMPLEARMV6 17
  1164. /**
  1165. * slice count
  1166. * - encoding: Set by libavcodec.
  1167. * - decoding: Set by user (or 0).
  1168. */
  1169. int slice_count;
  1170. /**
  1171. * slice offsets in the frame in bytes
  1172. * - encoding: Set/allocated by libavcodec.
  1173. * - decoding: Set/allocated by user (or NULL).
  1174. */
  1175. int *slice_offset;
  1176. /**
  1177. * error concealment flags
  1178. * - encoding: unused
  1179. * - decoding: Set by user.
  1180. */
  1181. int error_concealment;
  1182. #define FF_EC_GUESS_MVS 1
  1183. #define FF_EC_DEBLOCK 2
  1184. /**
  1185. * dsp_mask could be add used to disable unwanted CPU features
  1186. * CPU features (i.e. MMX, SSE. ...)
  1187. *
  1188. * With the FORCE flag you may instead enable given CPU features.
  1189. * (Dangerous: Usable in case of misdetection, improper usage however will
  1190. * result into program crash.)
  1191. */
  1192. unsigned dsp_mask;
  1193. #define FF_MM_FORCE 0x80000000 /* Force usage of selected flags (OR) */
  1194. /* lower 16 bits - CPU features */
  1195. #ifdef HAVE_MMX
  1196. #define FF_MM_MMX 0x0001 /* standard MMX */
  1197. #define FF_MM_3DNOW 0x0004 /* AMD 3DNOW */
  1198. #define FF_MM_MMXEXT 0x0002 /* SSE integer functions or AMD MMX ext */
  1199. #define FF_MM_SSE 0x0008 /* SSE functions */
  1200. #define FF_MM_SSE2 0x0010 /* PIV SSE2 functions */
  1201. #define FF_MM_3DNOWEXT 0x0020 /* AMD 3DNowExt */
  1202. #endif /* HAVE_MMX */
  1203. #ifdef HAVE_IWMMXT
  1204. #define FF_MM_IWMMXT 0x0100 /* XScale IWMMXT */
  1205. #endif /* HAVE_IWMMXT */
  1206. /**
  1207. * bits per sample/pixel from the demuxer (needed for huffyuv).
  1208. * - encoding: Set by libavcodec.
  1209. * - decoding: Set by user.
  1210. */
  1211. int bits_per_sample;
  1212. /**
  1213. * prediction method (needed for huffyuv)
  1214. * - encoding: Set by user.
  1215. * - decoding: unused
  1216. */
  1217. int prediction_method;
  1218. #define FF_PRED_LEFT 0
  1219. #define FF_PRED_PLANE 1
  1220. #define FF_PRED_MEDIAN 2
  1221. /**
  1222. * sample aspect ratio (0 if unknown)
  1223. * Numerator and denominator must be relatively prime and smaller than 256 for some video standards.
  1224. * - encoding: Set by user.
  1225. * - decoding: Set by libavcodec.
  1226. */
  1227. AVRational sample_aspect_ratio;
  1228. /**
  1229. * the picture in the bitstream
  1230. * - encoding: Set by libavcodec.
  1231. * - decoding: Set by libavcodec.
  1232. */
  1233. AVFrame *coded_frame;
  1234. /**
  1235. * debug
  1236. * - encoding: Set by user.
  1237. * - decoding: Set by user.
  1238. */
  1239. int debug;
  1240. #define FF_DEBUG_PICT_INFO 1
  1241. #define FF_DEBUG_RC 2
  1242. #define FF_DEBUG_BITSTREAM 4
  1243. #define FF_DEBUG_MB_TYPE 8
  1244. #define FF_DEBUG_QP 16
  1245. #define FF_DEBUG_MV 32
  1246. #define FF_DEBUG_DCT_COEFF 0x00000040
  1247. #define FF_DEBUG_SKIP 0x00000080
  1248. #define FF_DEBUG_STARTCODE 0x00000100
  1249. #define FF_DEBUG_PTS 0x00000200
  1250. #define FF_DEBUG_ER 0x00000400
  1251. #define FF_DEBUG_MMCO 0x00000800
  1252. #define FF_DEBUG_BUGS 0x00001000
  1253. #define FF_DEBUG_VIS_QP 0x00002000
  1254. #define FF_DEBUG_VIS_MB_TYPE 0x00004000
  1255. /**
  1256. * debug
  1257. * - encoding: Set by user.
  1258. * - decoding: Set by user.
  1259. */
  1260. int debug_mv;
  1261. #define FF_DEBUG_VIS_MV_P_FOR 0x00000001 //visualize forward predicted MVs of P frames
  1262. #define FF_DEBUG_VIS_MV_B_FOR 0x00000002 //visualize forward predicted MVs of B frames
  1263. #define FF_DEBUG_VIS_MV_B_BACK 0x00000004 //visualize backward predicted MVs of B frames
  1264. /**
  1265. * error
  1266. * - encoding: Set by libavcodec if flags&CODEC_FLAG_PSNR.
  1267. * - decoding: unused
  1268. */
  1269. uint64_t error[4];
  1270. /**
  1271. * minimum MB quantizer
  1272. * - encoding: unused
  1273. * - decoding: unused
  1274. */
  1275. int mb_qmin;
  1276. /**
  1277. * maximum MB quantizer
  1278. * - encoding: unused
  1279. * - decoding: unused
  1280. */
  1281. int mb_qmax;
  1282. /**
  1283. * motion estimation comparison function
  1284. * - encoding: Set by user.
  1285. * - decoding: unused
  1286. */
  1287. int me_cmp;
  1288. /**
  1289. * subpixel motion estimation comparison function
  1290. * - encoding: Set by user.
  1291. * - decoding: unused
  1292. */
  1293. int me_sub_cmp;
  1294. /**
  1295. * macroblock comparison function (not supported yet)
  1296. * - encoding: Set by user.
  1297. * - decoding: unused
  1298. */
  1299. int mb_cmp;
  1300. /**
  1301. * interlaced DCT comparison function
  1302. * - encoding: Set by user.
  1303. * - decoding: unused
  1304. */
  1305. int ildct_cmp;
  1306. #define FF_CMP_SAD 0
  1307. #define FF_CMP_SSE 1
  1308. #define FF_CMP_SATD 2
  1309. #define FF_CMP_DCT 3
  1310. #define FF_CMP_PSNR 4
  1311. #define FF_CMP_BIT 5
  1312. #define FF_CMP_RD 6
  1313. #define FF_CMP_ZERO 7
  1314. #define FF_CMP_VSAD 8
  1315. #define FF_CMP_VSSE 9
  1316. #define FF_CMP_NSSE 10
  1317. #define FF_CMP_W53 11
  1318. #define FF_CMP_W97 12
  1319. #define FF_CMP_DCTMAX 13
  1320. #define FF_CMP_DCT264 14
  1321. #define FF_CMP_CHROMA 256
  1322. /**
  1323. * ME diamond size & shape
  1324. * - encoding: Set by user.
  1325. * - decoding: unused
  1326. */
  1327. int dia_size;
  1328. /**
  1329. * amount of previous MV predictors (2a+1 x 2a+1 square)
  1330. * - encoding: Set by user.
  1331. * - decoding: unused
  1332. */
  1333. int last_predictor_count;
  1334. /**
  1335. * prepass for motion estimation
  1336. * - encoding: Set by user.
  1337. * - decoding: unused
  1338. */
  1339. int pre_me;
  1340. /**
  1341. * motion estimation prepass comparison function
  1342. * - encoding: Set by user.
  1343. * - decoding: unused
  1344. */
  1345. int me_pre_cmp;
  1346. /**
  1347. * ME prepass diamond size & shape
  1348. * - encoding: Set by user.
  1349. * - decoding: unused
  1350. */
  1351. int pre_dia_size;
  1352. /**
  1353. * subpel ME quality
  1354. * - encoding: Set by user.
  1355. * - decoding: unused
  1356. */
  1357. int me_subpel_quality;
  1358. /**
  1359. * callback to negotiate the pixelFormat
  1360. * @param fmt is the list of formats which are supported by the codec,
  1361. * it is terminated by -1 as 0 is a valid format, the formats are ordered by quality.
  1362. * The first is always the native one.
  1363. * @return the chosen format
  1364. * - encoding: unused
  1365. * - decoding: Set by user, if not set the native format will be chosen.
  1366. */
  1367. enum PixelFormat (*get_format)(struct AVCodecContext *s, const enum PixelFormat * fmt);
  1368. /**
  1369. * DTG active format information (additional aspect ratio
  1370. * information only used in DVB MPEG-2 transport streams)
  1371. * 0 if not set.
  1372. *
  1373. * - encoding: unused
  1374. * - decoding: Set by decoder.
  1375. */
  1376. int dtg_active_format;
  1377. #define FF_DTG_AFD_SAME 8
  1378. #define FF_DTG_AFD_4_3 9
  1379. #define FF_DTG_AFD_16_9 10
  1380. #define FF_DTG_AFD_14_9 11
  1381. #define FF_DTG_AFD_4_3_SP_14_9 13
  1382. #define FF_DTG_AFD_16_9_SP_14_9 14
  1383. #define FF_DTG_AFD_SP_4_3 15
  1384. /**
  1385. * maximum motion estimation search range in subpel units
  1386. * If 0 then no limit.
  1387. *
  1388. * - encoding: Set by user.
  1389. * - decoding: unused
  1390. */
  1391. int me_range;
  1392. /**
  1393. * intra quantizer bias
  1394. * - encoding: Set by user.
  1395. * - decoding: unused
  1396. */
  1397. int intra_quant_bias;
  1398. #define FF_DEFAULT_QUANT_BIAS 999999
  1399. /**
  1400. * inter quantizer bias
  1401. * - encoding: Set by user.
  1402. * - decoding: unused
  1403. */
  1404. int inter_quant_bias;
  1405. /**
  1406. * color table ID
  1407. * - encoding: unused
  1408. * - decoding: Which clrtable should be used for 8bit RGB images.
  1409. * Tables have to be stored somewhere. FIXME
  1410. */
  1411. int color_table_id;
  1412. /**
  1413. * internal_buffer count
  1414. * Don't touch, used by libavcodec default_get_buffer().
  1415. */
  1416. int internal_buffer_count;
  1417. /**
  1418. * internal_buffers
  1419. * Don't touch, used by libavcodec default_get_buffer().
  1420. */
  1421. void *internal_buffer;
  1422. #define FF_LAMBDA_SHIFT 7
  1423. #define FF_LAMBDA_SCALE (1<<FF_LAMBDA_SHIFT)
  1424. #define FF_QP2LAMBDA 118 ///< factor to convert from H.263 QP to lambda
  1425. #define FF_LAMBDA_MAX (256*128-1)
  1426. #define FF_QUALITY_SCALE FF_LAMBDA_SCALE //FIXME maybe remove
  1427. /**
  1428. * Global quality for codecs which cannot change it per frame.
  1429. * This should be proportional to MPEG-1/2/4 qscale.
  1430. * - encoding: Set by user.
  1431. * - decoding: unused
  1432. */
  1433. int global_quality;
  1434. #define FF_CODER_TYPE_VLC 0
  1435. #define FF_CODER_TYPE_AC 1
  1436. #define FF_CODER_TYPE_RAW 2
  1437. #define FF_CODER_TYPE_RLE 3
  1438. #define FF_CODER_TYPE_DEFLATE 4
  1439. /**
  1440. * coder type
  1441. * - encoding: Set by user.
  1442. * - decoding: unused
  1443. */
  1444. int coder_type;
  1445. /**
  1446. * context model
  1447. * - encoding: Set by user.
  1448. * - decoding: unused
  1449. */
  1450. int context_model;
  1451. #if 0
  1452. /**
  1453. *
  1454. * - encoding: unused
  1455. * - decoding: Set by user.
  1456. */
  1457. uint8_t * (*realloc)(struct AVCodecContext *s, uint8_t *buf, int buf_size);
  1458. #endif
  1459. /**
  1460. * slice flags
  1461. * - encoding: unused
  1462. * - decoding: Set by user.
  1463. */
  1464. int slice_flags;
  1465. #define SLICE_FLAG_CODED_ORDER 0x0001 ///< draw_horiz_band() is called in coded order instead of display
  1466. #define SLICE_FLAG_ALLOW_FIELD 0x0002 ///< allow draw_horiz_band() with field slices (MPEG2 field pics)
  1467. #define SLICE_FLAG_ALLOW_PLANE 0x0004 ///< allow draw_horiz_band() with 1 component at a time (SVQ1)
  1468. /**
  1469. * XVideo Motion Acceleration
  1470. * - encoding: forbidden
  1471. * - decoding: set by decoder
  1472. */
  1473. int xvmc_acceleration;
  1474. /**
  1475. * macroblock decision mode
  1476. * - encoding: Set by user.
  1477. * - decoding: unused
  1478. */
  1479. int mb_decision;
  1480. #define FF_MB_DECISION_SIMPLE 0 ///< uses mb_cmp
  1481. #define FF_MB_DECISION_BITS 1 ///< chooses the one which needs the fewest bits
  1482. #define FF_MB_DECISION_RD 2 ///< rate distoration
  1483. /**
  1484. * custom intra quantization matrix
  1485. * - encoding: Set by user, can be NULL.
  1486. * - decoding: Set by libavcodec.
  1487. */
  1488. uint16_t *intra_matrix;
  1489. /**
  1490. * custom inter quantization matrix
  1491. * - encoding: Set by user, can be NULL.
  1492. * - decoding: Set by libavcodec.
  1493. */
  1494. uint16_t *inter_matrix;
  1495. /**
  1496. * fourcc from the AVI stream header (LSB first, so "ABCD" -> ('D'<<24) + ('C'<<16) + ('B'<<8) + 'A').
  1497. * This is used to work around some encoder bugs.
  1498. * - encoding: unused
  1499. * - decoding: Set by user, will be converted to uppercase by libavcodec during init.
  1500. */
  1501. unsigned int stream_codec_tag;
  1502. /**
  1503. * scene change detection threshold
  1504. * 0 is default, larger means fewer detected scene changes.
  1505. * - encoding: Set by user.
  1506. * - decoding: unused
  1507. */
  1508. int scenechange_threshold;
  1509. /**
  1510. * minimum Lagrange multipler
  1511. * - encoding: Set by user.
  1512. * - decoding: unused
  1513. */
  1514. int lmin;
  1515. /**
  1516. * maximum Lagrange multipler
  1517. * - encoding: Set by user.
  1518. * - decoding: unused
  1519. */
  1520. int lmax;
  1521. /**
  1522. * palette control structure
  1523. * - encoding: ??? (no palette-enabled encoder yet)
  1524. * - decoding: Set by user.
  1525. */
  1526. struct AVPaletteControl *palctrl;
  1527. /**
  1528. * noise reduction strength
  1529. * - encoding: Set by user.
  1530. * - decoding: unused
  1531. */
  1532. int noise_reduction;
  1533. /**
  1534. * Called at the beginning of a frame to get cr buffer for it.
  1535. * Buffer type (size, hints) must be the same. libavcodec won't check it.
  1536. * libavcodec will pass previous buffer in pic, function should return
  1537. * same buffer or new buffer with old frame "painted" into it.
  1538. * If pic.data[0] == NULL must behave like get_buffer().
  1539. * - encoding: unused
  1540. * - decoding: Set by libavcodec., user can override
  1541. */
  1542. int (*reget_buffer)(struct AVCodecContext *c, AVFrame *pic);
  1543. /**
  1544. * Number of bits which should be loaded into the rc buffer before decoding starts.
  1545. * - encoding: Set by user.
  1546. * - decoding: unused
  1547. */
  1548. int rc_initial_buffer_occupancy;
  1549. /**
  1550. *
  1551. * - encoding: Set by user.
  1552. * - decoding: unused
  1553. */
  1554. int inter_threshold;
  1555. /**
  1556. * CODEC_FLAG2_*
  1557. * - encoding: Set by user.
  1558. * - decoding: Set by user.
  1559. */
  1560. int flags2;
  1561. /**
  1562. * Simulates errors in the bitstream to test error concealment.
  1563. * - encoding: Set by user.
  1564. * - decoding: unused
  1565. */
  1566. int error_rate;
  1567. /**
  1568. * MP3 antialias algorithm, see FF_AA_* below.
  1569. * - encoding: unused
  1570. * - decoding: Set by user.
  1571. */
  1572. int antialias_algo;
  1573. #define FF_AA_AUTO 0
  1574. #define FF_AA_FASTINT 1 //not implemented yet
  1575. #define FF_AA_INT 2
  1576. #define FF_AA_FLOAT 3
  1577. /**
  1578. * quantizer noise shaping
  1579. * - encoding: Set by user.
  1580. * - decoding: unused
  1581. */
  1582. int quantizer_noise_shaping;
  1583. /**
  1584. * thread count
  1585. * is used to decide how many independent tasks should be passed to execute()
  1586. * - encoding: Set by user.
  1587. * - decoding: Set by user.
  1588. */
  1589. int thread_count;
  1590. /**
  1591. * The codec may call this to execute several independent things.
  1592. * It will return only after finishing all tasks.
  1593. * The user may replace this with some multithreaded implementation,
  1594. * the default implementation will execute the parts serially.
  1595. * @param count the number of things to execute
  1596. * - encoding: Set by libavcodec, user can override.
  1597. * - decoding: Set by libavcodec, user can override.
  1598. */
  1599. int (*execute)(struct AVCodecContext *c, int (*func)(struct AVCodecContext *c2, void *arg), void **arg2, int *ret, int count);
  1600. /**
  1601. * thread opaque
  1602. * Can be used by execute() to store some per AVCodecContext stuff.
  1603. * - encoding: set by execute()
  1604. * - decoding: set by execute()
  1605. */
  1606. void *thread_opaque;
  1607. /**
  1608. * Motion estimation threshold below which no motion estimation is
  1609. * performed, but instead the user specified motion vectors are used.
  1610. *
  1611. * - encoding: Set by user.
  1612. * - decoding: unused
  1613. */
  1614. int me_threshold;
  1615. /**
  1616. * Macroblock threshold below which the user specified macroblock types will be used.
  1617. * - encoding: Set by user.
  1618. * - decoding: unused
  1619. */
  1620. int mb_threshold;
  1621. /**
  1622. * precision of the intra DC coefficient - 8
  1623. * - encoding: Set by user.
  1624. * - decoding: unused
  1625. */
  1626. int intra_dc_precision;
  1627. /**
  1628. * noise vs. sse weight for the nsse comparsion function
  1629. * - encoding: Set by user.
  1630. * - decoding: unused
  1631. */
  1632. int nsse_weight;
  1633. /**
  1634. * Number of macroblock rows at the top which are skipped.
  1635. * - encoding: unused
  1636. * - decoding: Set by user.
  1637. */
  1638. int skip_top;
  1639. /**
  1640. * Number of macroblock rows at the bottom which are skipped.
  1641. * - encoding: unused
  1642. * - decoding: Set by user.
  1643. */
  1644. int skip_bottom;
  1645. /**
  1646. * profile
  1647. * - encoding: Set by user.
  1648. * - decoding: Set by libavcodec.
  1649. */
  1650. int profile;
  1651. #define FF_PROFILE_UNKNOWN -99
  1652. #define FF_PROFILE_AAC_MAIN 0
  1653. #define FF_PROFILE_AAC_LOW 1
  1654. #define FF_PROFILE_AAC_SSR 2
  1655. #define FF_PROFILE_AAC_LTP 3
  1656. /**
  1657. * level
  1658. * - encoding: Set by user.
  1659. * - decoding: Set by libavcodec.
  1660. */
  1661. int level;
  1662. #define FF_LEVEL_UNKNOWN -99
  1663. /**
  1664. * low resolution decoding, 1-> 1/2 size, 2->1/4 size
  1665. * - encoding: unused
  1666. * - decoding: Set by user.
  1667. */
  1668. int lowres;
  1669. /**
  1670. * Bitstream width / height, may be different from width/height if lowres
  1671. * or other things are used.
  1672. * - encoding: unused
  1673. * - decoding: Set by user before init if known. Codec should override / dynamically change if needed.
  1674. */
  1675. int coded_width, coded_height;
  1676. /**
  1677. * frame skip threshold
  1678. * - encoding: Set by user.
  1679. * - decoding: unused
  1680. */
  1681. int frame_skip_threshold;
  1682. /**
  1683. * frame skip factor
  1684. * - encoding: Set by user.
  1685. * - decoding: unused
  1686. */
  1687. int frame_skip_factor;
  1688. /**
  1689. * frame skip exponent
  1690. * - encoding: Set by user.
  1691. * - decoding: unused
  1692. */
  1693. int frame_skip_exp;
  1694. /**
  1695. * frame skip comparison function
  1696. * - encoding: Set by user.
  1697. * - decoding: unused
  1698. */
  1699. int frame_skip_cmp;
  1700. /**
  1701. * Border processing masking, raises the quantizer for mbs on the borders
  1702. * of the picture.
  1703. * - encoding: Set by user.
  1704. * - decoding: unused
  1705. */
  1706. float border_masking;
  1707. /**
  1708. * minimum MB lagrange multipler
  1709. * - encoding: Set by user.
  1710. * - decoding: unused
  1711. */
  1712. int mb_lmin;
  1713. /**
  1714. * maximum MB lagrange multipler
  1715. * - encoding: Set by user.
  1716. * - decoding: unused
  1717. */
  1718. int mb_lmax;
  1719. /**
  1720. *
  1721. * - encoding: Set by user.
  1722. * - decoding: unused
  1723. */
  1724. int me_penalty_compensation;
  1725. /**
  1726. *
  1727. * - encoding: unused
  1728. * - decoding: Set by user.
  1729. */
  1730. enum AVDiscard skip_loop_filter;
  1731. /**
  1732. *
  1733. * - encoding: unused
  1734. * - decoding: Set by user.
  1735. */
  1736. enum AVDiscard skip_idct;
  1737. /**
  1738. *
  1739. * - encoding: unused
  1740. * - decoding: Set by user.
  1741. */
  1742. enum AVDiscard skip_frame;
  1743. /**
  1744. *
  1745. * - encoding: Set by user.
  1746. * - decoding: unused
  1747. */
  1748. int bidir_refine;
  1749. /**
  1750. *
  1751. * - encoding: Set by user.
  1752. * - decoding: unused
  1753. */
  1754. int brd_scale;
  1755. /**
  1756. * constant rate factor - quality-based VBR - values ~correspond to qps
  1757. * - encoding: Set by user.
  1758. * - decoding: unused
  1759. */
  1760. float crf;
  1761. /**
  1762. * constant quantization parameter rate control method
  1763. * - encoding: Set by user.
  1764. * - decoding: unused
  1765. */
  1766. int cqp;
  1767. /**
  1768. * minimum GOP size
  1769. * - encoding: Set by user.
  1770. * - decoding: unused
  1771. */
  1772. int keyint_min;
  1773. /**
  1774. * number of reference frames
  1775. * - encoding: Set by user.
  1776. * - decoding: unused
  1777. */
  1778. int refs;
  1779. /**
  1780. * chroma qp offset from luma
  1781. * - encoding: Set by user.
  1782. * - decoding: unused
  1783. */
  1784. int chromaoffset;
  1785. /**
  1786. * Influences how often B-frames are used.
  1787. * - encoding: Set by user.
  1788. * - decoding: unused
  1789. */
  1790. int bframebias;
  1791. /**
  1792. * trellis RD quantization
  1793. * - encoding: Set by user.
  1794. * - decoding: unused
  1795. */
  1796. int trellis;
  1797. /**
  1798. * Reduce fluctuations in qp (before curve compression).
  1799. * - encoding: Set by user.
  1800. * - decoding: unused
  1801. */
  1802. float complexityblur;
  1803. /**
  1804. * in-loop deblocking filter alphac0 parameter
  1805. * alpha is in the range -6...6
  1806. * - encoding: Set by user.
  1807. * - decoding: unused
  1808. */
  1809. int deblockalpha;
  1810. /**
  1811. * in-loop deblocking filter beta parameter
  1812. * beta is in the range -6...6
  1813. * - encoding: Set by user.
  1814. * - decoding: unused
  1815. */
  1816. int deblockbeta;
  1817. /**
  1818. * macroblock subpartition sizes to consider - p8x8, p4x4, b8x8, i8x8, i4x4
  1819. * - encoding: Set by user.
  1820. * - decoding: unused
  1821. */
  1822. int partitions;
  1823. #define X264_PART_I4X4 0x001 /* Analyse i4x4 */
  1824. #define X264_PART_I8X8 0x002 /* Analyse i8x8 (requires 8x8 transform) */
  1825. #define X264_PART_P8X8 0x010 /* Analyse p16x8, p8x16 and p8x8 */
  1826. #define X264_PART_P4X4 0x020 /* Analyse p8x4, p4x8, p4x4 */
  1827. #define X264_PART_B8X8 0x100 /* Analyse b16x8, b8x16 and b8x8 */
  1828. /**
  1829. * direct MV prediction mode - 0 (none), 1 (spatial), 2 (temporal)
  1830. * - encoding: Set by user.
  1831. * - decoding: unused
  1832. */
  1833. int directpred;
  1834. /**
  1835. * Audio cutoff bandwidth (0 means "automatic"), currently used only by FAAC.
  1836. * - encoding: Set by user.
  1837. * - decoding: unused
  1838. */
  1839. int cutoff;
  1840. /**
  1841. * Multiplied by qscale for each frame and added to scene_change_score.
  1842. * - encoding: Set by user.
  1843. * - decoding: unused
  1844. */
  1845. int scenechange_factor;
  1846. /**
  1847. *
  1848. * Note: Value depends upon the compare function used for fullpel ME.
  1849. * - encoding: Set by user.
  1850. * - decoding: unused
  1851. */
  1852. int mv0_threshold;
  1853. /**
  1854. * Adjusts sensitivity of b_frame_strategy 1.
  1855. * - encoding: Set by user.
  1856. * - decoding: unused
  1857. */
  1858. int b_sensitivity;
  1859. /**
  1860. * - encoding: Set by user.
  1861. * - decoding: unused
  1862. */
  1863. int compression_level;
  1864. #define FF_COMPRESSION_DEFAULT -1
  1865. /**
  1866. * Sets whether to use LPC mode - used by FLAC encoder.
  1867. * - encoding: Set by user.
  1868. * - decoding: unused
  1869. */
  1870. int use_lpc;
  1871. /**
  1872. * LPC coefficient precision - used by FLAC encoder
  1873. * - encoding: Set by user.
  1874. * - decoding: unused
  1875. */
  1876. int lpc_coeff_precision;
  1877. /**
  1878. * - encoding: Set by user.
  1879. * - decoding: unused
  1880. */
  1881. int min_prediction_order;
  1882. /**
  1883. * - encoding: Set by user.
  1884. * - decoding: unused
  1885. */
  1886. int max_prediction_order;
  1887. /**
  1888. * search method for selecting prediction order
  1889. * - encoding: Set by user.
  1890. * - decoding: unused
  1891. */
  1892. int prediction_order_method;
  1893. /**
  1894. * - encoding: Set by user.
  1895. * - decoding: unused
  1896. */
  1897. int min_partition_order;
  1898. /**
  1899. * - encoding: Set by user.
  1900. * - decoding: unused
  1901. */
  1902. int max_partition_order;
  1903. /**
  1904. * GOP timecode frame start number, in non drop frame format
  1905. * - encoding: Set by user.
  1906. * - decoding: unused
  1907. */
  1908. int64_t timecode_frame_start;
  1909. } AVCodecContext;
  1910. /**
  1911. * AVCodec.
  1912. */
  1913. typedef struct AVCodec {
  1914. const char *name;
  1915. enum CodecType type;
  1916. enum CodecID id;
  1917. int priv_data_size;
  1918. int (*init)(AVCodecContext *);
  1919. int (*encode)(AVCodecContext *, uint8_t *buf, int buf_size, void *data);
  1920. int (*close)(AVCodecContext *);
  1921. int (*decode)(AVCodecContext *, void *outdata, int *outdata_size,
  1922. uint8_t *buf, int buf_size);
  1923. int capabilities;
  1924. struct AVCodec *next;
  1925. void (*flush)(AVCodecContext *);
  1926. const AVRational *supported_framerates; ///array of supported framerates, or NULL if any, array is terminated by {0,0}
  1927. const enum PixelFormat *pix_fmts; ///array of supported pixel formats, or NULL if unknown, array is terminanted by -1
  1928. } AVCodec;
  1929. /**
  1930. * four components are given, that's all.
  1931. * the last component is alpha
  1932. */
  1933. typedef struct AVPicture {
  1934. uint8_t *data[4];
  1935. int linesize[4]; ///< number of bytes per line
  1936. } AVPicture;
  1937. /**
  1938. * AVPaletteControl
  1939. * This structure defines a method for communicating palette changes
  1940. * between and demuxer and a decoder.
  1941. *
  1942. * @deprecated Use AVPacket to send palette changes instead.
  1943. * This is totally broken.
  1944. */
  1945. #define AVPALETTE_SIZE 1024
  1946. #define AVPALETTE_COUNT 256
  1947. typedef struct AVPaletteControl {
  1948. /* Demuxer sets this to 1 to indicate the palette has changed;
  1949. * decoder resets to 0. */
  1950. int palette_changed;
  1951. /* 4-byte ARGB palette entries, stored in native byte order; note that
  1952. * the individual palette components should be on a 8-bit scale; if
  1953. * the palette data comes from an IBM VGA native format, the component
  1954. * data is probably 6 bits in size and needs to be scaled. */
  1955. unsigned int palette[AVPALETTE_COUNT];
  1956. } AVPaletteControl attribute_deprecated;
  1957. typedef struct AVSubtitleRect {
  1958. uint16_t x;
  1959. uint16_t y;
  1960. uint16_t w;
  1961. uint16_t h;
  1962. uint16_t nb_colors;
  1963. int linesize;
  1964. uint32_t *rgba_palette;
  1965. uint8_t *bitmap;
  1966. } AVSubtitleRect;
  1967. typedef struct AVSubtitle {
  1968. uint16_t format; /* 0 = graphics */
  1969. uint32_t start_display_time; /* relative to packet pts, in ms */
  1970. uint32_t end_display_time; /* relative to packet pts, in ms */
  1971. uint32_t num_rects;
  1972. AVSubtitleRect *rects;
  1973. } AVSubtitle;
  1974. extern AVCodec ac3_encoder;
  1975. extern AVCodec asv1_encoder;
  1976. extern AVCodec asv2_encoder;
  1977. extern AVCodec bmp_encoder;
  1978. extern AVCodec dvvideo_encoder;
  1979. extern AVCodec ffv1_encoder;
  1980. extern AVCodec ffvhuff_encoder;
  1981. extern AVCodec flac_encoder;
  1982. extern AVCodec flashsv_encoder;
  1983. extern AVCodec flv_encoder;
  1984. extern AVCodec gif_encoder;
  1985. extern AVCodec h261_encoder;
  1986. extern AVCodec h263_encoder;
  1987. extern AVCodec h263p_encoder;
  1988. extern AVCodec h264_encoder;
  1989. extern AVCodec huffyuv_encoder;
  1990. extern AVCodec jpegls_encoder;
  1991. extern AVCodec ljpeg_encoder;
  1992. extern AVCodec mdec_encoder;
  1993. extern AVCodec mjpeg_encoder;
  1994. extern AVCodec mp2_encoder;
  1995. extern AVCodec mpeg1video_encoder;
  1996. extern AVCodec mpeg2video_encoder;
  1997. extern AVCodec mpeg4_encoder;
  1998. extern AVCodec msmpeg4v1_encoder;
  1999. extern AVCodec msmpeg4v2_encoder;
  2000. extern AVCodec msmpeg4v3_encoder;
  2001. extern AVCodec pam_encoder;
  2002. extern AVCodec pbm_encoder;
  2003. extern AVCodec pgm_encoder;
  2004. extern AVCodec pgmyuv_encoder;
  2005. extern AVCodec png_encoder;
  2006. extern AVCodec ppm_encoder;
  2007. extern AVCodec roq_dpcm_encoder;
  2008. extern AVCodec rv10_encoder;
  2009. extern AVCodec rv20_encoder;
  2010. extern AVCodec sgi_encoder;
  2011. extern AVCodec snow_encoder;
  2012. extern AVCodec sonic_encoder;
  2013. extern AVCodec sonic_ls_encoder;
  2014. extern AVCodec svq1_encoder;
  2015. extern AVCodec targa_encoder;
  2016. extern AVCodec tiff_encoder;
  2017. extern AVCodec vcr1_encoder;
  2018. extern AVCodec vorbis_encoder;
  2019. extern AVCodec wmav1_encoder;
  2020. extern AVCodec wmav2_encoder;
  2021. extern AVCodec wmv1_encoder;
  2022. extern AVCodec wmv2_encoder;
  2023. extern AVCodec zmbv_encoder;
  2024. extern AVCodec aasc_decoder;
  2025. extern AVCodec alac_decoder;
  2026. extern AVCodec asv1_decoder;
  2027. extern AVCodec asv2_decoder;
  2028. extern AVCodec atrac3_decoder;
  2029. extern AVCodec avs_decoder;
  2030. extern AVCodec bethsoftvid_decoder;
  2031. extern AVCodec bmp_decoder;
  2032. extern AVCodec c93_decoder;
  2033. extern AVCodec cavs_decoder;
  2034. extern AVCodec cinepak_decoder;
  2035. extern AVCodec cljr_decoder;
  2036. extern AVCodec cook_decoder;
  2037. extern AVCodec cscd_decoder;
  2038. extern AVCodec cyuv_decoder;
  2039. extern AVCodec dca_decoder;
  2040. extern AVCodec dnxhd_decoder;
  2041. extern AVCodec dsicinaudio_decoder;
  2042. extern AVCodec dsicinvideo_decoder;
  2043. extern AVCodec dvvideo_decoder;
  2044. extern AVCodec dxa_decoder;
  2045. extern AVCodec eightbps_decoder;
  2046. extern AVCodec ffv1_decoder;
  2047. extern AVCodec ffvhuff_decoder;
  2048. extern AVCodec flac_decoder;
  2049. extern AVCodec flashsv_decoder;
  2050. extern AVCodec flic_decoder;
  2051. extern AVCodec flv_decoder;
  2052. extern AVCodec fourxm_decoder;
  2053. extern AVCodec fraps_decoder;
  2054. extern AVCodec gif_decoder;
  2055. extern AVCodec h261_decoder;
  2056. extern AVCodec h263_decoder;
  2057. extern AVCodec h263i_decoder;
  2058. extern AVCodec h264_decoder;
  2059. extern AVCodec huffyuv_decoder;
  2060. extern AVCodec idcin_decoder;
  2061. extern AVCodec imc_decoder;
  2062. extern AVCodec indeo2_decoder;
  2063. extern AVCodec indeo3_decoder;
  2064. extern AVCodec interplay_dpcm_decoder;
  2065. extern AVCodec interplay_video_decoder;
  2066. extern AVCodec kmvc_decoder;
  2067. extern AVCodec loco_decoder;
  2068. extern AVCodec mace3_decoder;
  2069. extern AVCodec mace6_decoder;
  2070. extern AVCodec mdec_decoder;
  2071. extern AVCodec mjpeg_decoder;
  2072. extern AVCodec mjpegb_decoder;
  2073. extern AVCodec mmvideo_decoder;
  2074. extern AVCodec mp2_decoder;
  2075. extern AVCodec mp3_decoder;
  2076. extern AVCodec mp3adu_decoder;
  2077. extern AVCodec mp3on4_decoder;
  2078. extern AVCodec mpc7_decoder;
  2079. extern AVCodec mpeg1video_decoder;
  2080. extern AVCodec mpeg2video_decoder;
  2081. extern AVCodec mpeg4_decoder;
  2082. extern AVCodec mpeg_xvmc_decoder;
  2083. extern AVCodec mpegvideo_decoder;
  2084. extern AVCodec msmpeg4v1_decoder;
  2085. extern AVCodec msmpeg4v2_decoder;
  2086. extern AVCodec msmpeg4v3_decoder;
  2087. extern AVCodec msrle_decoder;
  2088. extern AVCodec msvideo1_decoder;
  2089. extern AVCodec mszh_decoder;
  2090. extern AVCodec nuv_decoder;
  2091. extern AVCodec png_decoder;
  2092. extern AVCodec ptx_decoder;
  2093. extern AVCodec qdm2_decoder;
  2094. extern AVCodec qdraw_decoder;
  2095. extern AVCodec qpeg_decoder;
  2096. extern AVCodec qtrle_decoder;
  2097. extern AVCodec ra_144_decoder;
  2098. extern AVCodec ra_288_decoder;
  2099. extern AVCodec roq_decoder;
  2100. extern AVCodec roq_dpcm_decoder;
  2101. extern AVCodec rpza_decoder;
  2102. extern AVCodec rv10_decoder;
  2103. extern AVCodec rv20_decoder;
  2104. extern AVCodec rv30_decoder;
  2105. extern AVCodec rv40_decoder;
  2106. extern AVCodec sgi_decoder;
  2107. extern AVCodec shorten_decoder;
  2108. extern AVCodec smackaud_decoder;
  2109. extern AVCodec smacker_decoder;
  2110. extern AVCodec smc_decoder;
  2111. extern AVCodec snow_decoder;
  2112. extern AVCodec sol_dpcm_decoder;
  2113. extern AVCodec sonic_decoder;
  2114. extern AVCodec sp5x_decoder;
  2115. extern AVCodec svq1_decoder;
  2116. extern AVCodec svq3_decoder;
  2117. extern AVCodec targa_decoder;
  2118. extern AVCodec theora_decoder;
  2119. extern AVCodec thp_decoder;
  2120. extern AVCodec tiertexseqvideo_decoder;
  2121. extern AVCodec tiff_decoder;
  2122. extern AVCodec truemotion1_decoder;
  2123. extern AVCodec truemotion2_decoder;
  2124. extern AVCodec truespeech_decoder;
  2125. extern AVCodec tscc_decoder;
  2126. extern AVCodec tta_decoder;
  2127. extern AVCodec txd_decoder;
  2128. extern AVCodec ulti_decoder;
  2129. extern AVCodec vc1_decoder;
  2130. extern AVCodec vcr1_decoder;
  2131. extern AVCodec vmdaudio_decoder;
  2132. extern AVCodec vmdvideo_decoder;
  2133. extern AVCodec vmnc_decoder;
  2134. extern AVCodec vorbis_decoder;
  2135. extern AVCodec vp3_decoder;
  2136. extern AVCodec vp5_decoder;
  2137. extern AVCodec vp6_decoder;
  2138. extern AVCodec vp6f_decoder;
  2139. extern AVCodec vqa_decoder;
  2140. extern AVCodec wavpack_decoder;
  2141. extern AVCodec wmav1_decoder;
  2142. extern AVCodec wmav2_decoder;
  2143. extern AVCodec wmv1_decoder;
  2144. extern AVCodec wmv2_decoder;
  2145. extern AVCodec wmv3_decoder;
  2146. extern AVCodec wnv1_decoder;
  2147. extern AVCodec ws_snd1_decoder;
  2148. extern AVCodec xan_dpcm_decoder;
  2149. extern AVCodec xan_wc3_decoder;
  2150. extern AVCodec xl_decoder;
  2151. extern AVCodec zmbv_decoder;
  2152. /* PCM codecs */
  2153. #define PCM_CODEC(id, name) \
  2154. extern AVCodec name ## _decoder; \
  2155. extern AVCodec name ## _encoder
  2156. PCM_CODEC(CODEC_ID_PCM_ALAW, pcm_alaw);
  2157. PCM_CODEC(CODEC_ID_PCM_MULAW, pcm_mulaw);
  2158. PCM_CODEC(CODEC_ID_PCM_S8, pcm_s8);
  2159. PCM_CODEC(CODEC_ID_PCM_S16BE, pcm_s16be);
  2160. PCM_CODEC(CODEC_ID_PCM_S16LE, pcm_s16le);
  2161. PCM_CODEC(CODEC_ID_PCM_S24BE, pcm_s24be);
  2162. PCM_CODEC(CODEC_ID_PCM_S24DAUD, pcm_s24daud);
  2163. PCM_CODEC(CODEC_ID_PCM_S24LE, pcm_s24le);
  2164. PCM_CODEC(CODEC_ID_PCM_S32BE, pcm_s32be);
  2165. PCM_CODEC(CODEC_ID_PCM_S32LE, pcm_s32le);
  2166. PCM_CODEC(CODEC_ID_PCM_U8, pcm_u8);
  2167. PCM_CODEC(CODEC_ID_PCM_U16BE, pcm_u16be);
  2168. PCM_CODEC(CODEC_ID_PCM_U16LE, pcm_u16le);
  2169. PCM_CODEC(CODEC_ID_PCM_U24BE, pcm_u24be);
  2170. PCM_CODEC(CODEC_ID_PCM_U24LE, pcm_u24le);
  2171. PCM_CODEC(CODEC_ID_PCM_U32BE, pcm_u32be);
  2172. PCM_CODEC(CODEC_ID_PCM_U32LE, pcm_u32le);
  2173. /* ADPCM codecs */
  2174. PCM_CODEC(CODEC_ID_ADPCM_4XM, adpcm_4xm);
  2175. PCM_CODEC(CODEC_ID_ADPCM_ADX, adpcm_adx);
  2176. PCM_CODEC(CODEC_ID_ADPCM_CT, adpcm_ct);
  2177. PCM_CODEC(CODEC_ID_ADPCM_EA, adpcm_ea);
  2178. PCM_CODEC(CODEC_ID_ADPCM_G726, adpcm_g726);
  2179. PCM_CODEC(CODEC_ID_ADPCM_IMA_DK3, adpcm_ima_dk3);
  2180. PCM_CODEC(CODEC_ID_ADPCM_IMA_DK4, adpcm_ima_dk4);
  2181. PCM_CODEC(CODEC_ID_ADPCM_IMA_QT, adpcm_ima_qt);
  2182. PCM_CODEC(CODEC_ID_ADPCM_IMA_WAV, adpcm_ima_wav);
  2183. PCM_CODEC(CODEC_ID_ADPCM_IMA_WS, adpcm_ima_ws);
  2184. PCM_CODEC(CODEC_ID_ADPCM_MS, adpcm_ms);
  2185. PCM_CODEC(CODEC_ID_ADPCM_SBPRO_2, adpcm_sbpro_2);
  2186. PCM_CODEC(CODEC_ID_ADPCM_SBPRO_3, adpcm_sbpro_3);
  2187. PCM_CODEC(CODEC_ID_ADPCM_SBPRO_4, adpcm_sbpro_4);
  2188. PCM_CODEC(CODEC_ID_ADPCM_SMJPEG, adpcm_ima_smjpeg);
  2189. PCM_CODEC(CODEC_ID_ADPCM_SWF, adpcm_swf);
  2190. PCM_CODEC(CODEC_ID_ADPCM_THP, adpcm_thp);
  2191. PCM_CODEC(CODEC_ID_ADPCM_XA, adpcm_xa);
  2192. PCM_CODEC(CODEC_ID_ADPCM_YAMAHA, adpcm_yamaha);
  2193. #undef PCM_CODEC
  2194. /* dummy raw video codec */
  2195. extern AVCodec rawvideo_decoder;
  2196. extern AVCodec rawvideo_encoder;
  2197. /* the following codecs use external libs */
  2198. extern AVCodec aac_decoder;
  2199. extern AVCodec faac_encoder;
  2200. extern AVCodec liba52_decoder;
  2201. extern AVCodec libamr_nb_decoder;
  2202. extern AVCodec libamr_nb_encoder;
  2203. extern AVCodec libamr_wb_decoder;
  2204. extern AVCodec libamr_wb_encoder;
  2205. extern AVCodec libdts_decoder;
  2206. extern AVCodec libgsm_decoder;
  2207. extern AVCodec libgsm_encoder;
  2208. extern AVCodec libgsm_ms_decoder;
  2209. extern AVCodec libgsm_ms_encoder;
  2210. extern AVCodec libtheora_encoder;
  2211. extern AVCodec libvorbis_decoder;
  2212. extern AVCodec libvorbis_encoder;
  2213. extern AVCodec mp3lame_encoder;
  2214. extern AVCodec mpeg4aac_decoder;
  2215. extern AVCodec x264_encoder;
  2216. extern AVCodec xvid_encoder;
  2217. extern AVCodec zlib_decoder;
  2218. extern AVCodec zlib_encoder;
  2219. /* subtitles */
  2220. extern AVCodec dvbsub_decoder;
  2221. extern AVCodec dvbsub_encoder;
  2222. extern AVCodec dvdsub_decoder;
  2223. extern AVCodec dvdsub_encoder;
  2224. /* resample.c */
  2225. struct ReSampleContext;
  2226. struct AVResampleContext;
  2227. typedef struct ReSampleContext ReSampleContext;
  2228. ReSampleContext *audio_resample_init(int output_channels, int input_channels,
  2229. int output_rate, int input_rate);
  2230. int audio_resample(ReSampleContext *s, short *output, short *input, int nb_samples);
  2231. void audio_resample_close(ReSampleContext *s);
  2232. struct AVResampleContext *av_resample_init(int out_rate, int in_rate, int filter_length, int log2_phase_count, int linear, double cutoff);
  2233. int av_resample(struct AVResampleContext *c, short *dst, short *src, int *consumed, int src_size, int dst_size, int update_ctx);
  2234. void av_resample_compensate(struct AVResampleContext *c, int sample_delta, int compensation_distance);
  2235. void av_resample_close(struct AVResampleContext *c);
  2236. #if LIBAVCODEC_VERSION_INT < ((52<<16)+(0<<8)+0)
  2237. /* YUV420 format is assumed ! */
  2238. /**
  2239. * @deprecated Use the software scaler (swscale) instead.
  2240. */
  2241. struct ImgReSampleContext attribute_deprecated;
  2242. /**
  2243. * @deprecated Use the software scaler (swscale) instead.
  2244. */
  2245. typedef struct ImgReSampleContext ImgReSampleContext attribute_deprecated;
  2246. /**
  2247. * @deprecated Use the software scaler (swscale) instead.
  2248. */
  2249. attribute_deprecated ImgReSampleContext *img_resample_init(int output_width, int output_height,
  2250. int input_width, int input_height);
  2251. /**
  2252. * @deprecated Use the software scaler (swscale) instead.
  2253. */
  2254. attribute_deprecated ImgReSampleContext *img_resample_full_init(int owidth, int oheight,
  2255. int iwidth, int iheight,
  2256. int topBand, int bottomBand,
  2257. int leftBand, int rightBand,
  2258. int padtop, int padbottom,
  2259. int padleft, int padright);
  2260. /**
  2261. * @deprecated Use the software scaler (swscale) instead.
  2262. */
  2263. attribute_deprecated void img_resample(ImgReSampleContext *s,
  2264. AVPicture *output, const AVPicture *input);
  2265. /**
  2266. * @deprecated Use the software scaler (swscale) instead.
  2267. */
  2268. attribute_deprecated void img_resample_close(ImgReSampleContext *s);
  2269. #endif
  2270. /**
  2271. * Allocate memory for a picture. Call avpicture_free to free it.
  2272. *
  2273. * @param picture the picture to be filled in
  2274. * @param pix_fmt the format of the picture
  2275. * @param width the width of the picture
  2276. * @param height the height of the picture
  2277. * @return zero if successful, a negative value if not
  2278. */
  2279. int avpicture_alloc(AVPicture *picture, int pix_fmt, int width, int height);
  2280. /**
  2281. * Free a picture previously allocated by avpicture_alloc().
  2282. *
  2283. * @param picture the AVPicture to be freed
  2284. */
  2285. void avpicture_free(AVPicture *picture);
  2286. /**
  2287. * Fill in the AVPicture fields.
  2288. * The fields of the given AVPicture are filled in by using the 'ptr' address
  2289. * which points to the image data buffer. Depending on the specified picture
  2290. * format, one or multiple image data pointers and line sizes will be set.
  2291. * If a planar format is specified, several pointers will be set pointing to
  2292. * the different picture planes and the line sizes of the different planes
  2293. * will be stored in the lines_sizes array.
  2294. *
  2295. * @param picture AVPicture whose fields are to be filled in
  2296. * @param ptr Buffer which will contain or contains the actual image data
  2297. * @param pix_fmt The format in which the picture data is stored.
  2298. * @param width the width of the image in pixels
  2299. * @param height the height of the image in pixels
  2300. * @return size of the image data in bytes
  2301. */
  2302. int avpicture_fill(AVPicture *picture, uint8_t *ptr,
  2303. int pix_fmt, int width, int height);
  2304. int avpicture_layout(const AVPicture* src, int pix_fmt, int width, int height,
  2305. unsigned char *dest, int dest_size);
  2306. /**
  2307. * Calculate the size in bytes that a picture of the given width and height
  2308. * would occupy if stored in the given picture format.
  2309. *
  2310. * @param pix_fmt the given picture format
  2311. * @param width the width of the image
  2312. * @param height the height of the image
  2313. * @return Image data size in bytes
  2314. */
  2315. int avpicture_get_size(int pix_fmt, int width, int height);
  2316. void avcodec_get_chroma_sub_sample(int pix_fmt, int *h_shift, int *v_shift);
  2317. const char *avcodec_get_pix_fmt_name(int pix_fmt);
  2318. void avcodec_set_dimensions(AVCodecContext *s, int width, int height);
  2319. enum PixelFormat avcodec_get_pix_fmt(const char* name);
  2320. unsigned int avcodec_pix_fmt_to_codec_tag(enum PixelFormat p);
  2321. #define FF_LOSS_RESOLUTION 0x0001 /**< loss due to resolution change */
  2322. #define FF_LOSS_DEPTH 0x0002 /**< loss due to color depth change */
  2323. #define FF_LOSS_COLORSPACE 0x0004 /**< loss due to color space conversion */
  2324. #define FF_LOSS_ALPHA 0x0008 /**< loss of alpha bits */
  2325. #define FF_LOSS_COLORQUANT 0x0010 /**< loss due to color quantization */
  2326. #define FF_LOSS_CHROMA 0x0020 /**< loss of chroma (e.g. RGB to gray conversion) */
  2327. /**
  2328. * Computes what kind of losses will occur when converting from one specific
  2329. * pixel format to another.
  2330. * When converting from one pixel format to another, information loss may occur.
  2331. * For example, when converting from RGB24 to GRAY, the color information will
  2332. * be lost. Similarly, other losses occur when converting from some formats to
  2333. * other formats. These losses can involve loss of chroma, but also loss of
  2334. * resolution, loss of color depth, loss due to the color space conversion, loss
  2335. * of the alpha bits or loss due to color quantization.
  2336. * avcodec_get_fix_fmt_loss() informs you about the various types of losses
  2337. * which will occur when converting from one pixel format to another.
  2338. *
  2339. * @param[in] dst_pix_fmt destination pixel format
  2340. * @param[in] src_pix_fmt source pixel format
  2341. * @param[in] has_alpha Whether the source pixel format alpha channel is used.
  2342. * @return Combination of flags informing you what kind of losses will occur.
  2343. */
  2344. int avcodec_get_pix_fmt_loss(int dst_pix_fmt, int src_pix_fmt,
  2345. int has_alpha);
  2346. /**
  2347. * Finds the best pixel format to convert to given a certain source pixel
  2348. * format. When converting from one pixel format to another, information loss
  2349. * may occur. For example, when converting from RGB24 to GRAY, the color
  2350. * information will be lost. Similarly, other losses occur when converting from
  2351. * some formats to other formats. avcodec_find_best_pix_fmt() searches which of
  2352. * the given pixel formats should be used to suffer the least amount of loss.
  2353. * The pixel formats from which it chooses one, are determined by the
  2354. * \p pix_fmt_mask parameter.
  2355. *
  2356. * @code
  2357. * src_pix_fmt = PIX_FMT_YUV420P;
  2358. * pix_fmt_mask = (1 << PIX_FMT_YUV422P) || (1 << PIX_FMT_RGB24);
  2359. * dst_pix_fmt = avcodec_find_best_pix_fmt(pix_fmt_mask, src_pix_fmt, alpha, &loss);
  2360. * @endcode
  2361. *
  2362. * @param[in] pix_fmt_mask bitmask determining which pixel format to choose from
  2363. * @param[in] src_pix_fmt source pixel format
  2364. * @param[in] has_alpha Whether the source pixel format alpha channel is used.
  2365. * @param[out] loss_ptr Combination of flags informing you what kind of losses will occur.
  2366. * @return The best pixel format to convert to or -1 if none was found.
  2367. */
  2368. int avcodec_find_best_pix_fmt(int pix_fmt_mask, int src_pix_fmt,
  2369. int has_alpha, int *loss_ptr);
  2370. #define FF_ALPHA_TRANSP 0x0001 /* image has some totally transparent pixels */
  2371. #define FF_ALPHA_SEMI_TRANSP 0x0002 /* image has some transparent pixels */
  2372. /**
  2373. * Tell if an image really has transparent alpha values.
  2374. * @return ored mask of FF_ALPHA_xxx constants
  2375. */
  2376. int img_get_alpha_info(const AVPicture *src,
  2377. int pix_fmt, int width, int height);
  2378. #if LIBAVCODEC_VERSION_INT < ((52<<16)+(0<<8)+0)
  2379. /**
  2380. * convert among pixel formats
  2381. * @deprecated Use the software scaler (swscale) instead.
  2382. */
  2383. attribute_deprecated int img_convert(AVPicture *dst, int dst_pix_fmt,
  2384. const AVPicture *src, int pix_fmt,
  2385. int width, int height);
  2386. #endif
  2387. /* deinterlace a picture */
  2388. /* deinterlace - if not supported return -1 */
  2389. int avpicture_deinterlace(AVPicture *dst, const AVPicture *src,
  2390. int pix_fmt, int width, int height);
  2391. /* external high level API */
  2392. extern AVCodec *first_avcodec;
  2393. /* returns LIBAVCODEC_VERSION_INT constant */
  2394. unsigned avcodec_version(void);
  2395. /* returns LIBAVCODEC_BUILD constant */
  2396. unsigned avcodec_build(void);
  2397. /**
  2398. * Initializes libavcodec.
  2399. *
  2400. * @warning This function \e must be called before any other libavcodec
  2401. * function.
  2402. */
  2403. void avcodec_init(void);
  2404. void register_avcodec(AVCodec *format);
  2405. /**
  2406. * Finds an encoder with a matching codec ID.
  2407. *
  2408. * @param id CodecID of the requested encoder
  2409. * @return An encoder if one was found, NULL otherwise.
  2410. */
  2411. AVCodec *avcodec_find_encoder(enum CodecID id);
  2412. /**
  2413. * Finds an encoder with the specified name.
  2414. *
  2415. * @param name name of the requested encoder
  2416. * @return An encoder if one was found, NULL otherwise.
  2417. */
  2418. AVCodec *avcodec_find_encoder_by_name(const char *name);
  2419. /**
  2420. * Finds a decoder with a matching codec ID.
  2421. *
  2422. * @param id CodecID of the requested decoder
  2423. * @return A decoder if one was found, NULL otherwise.
  2424. */
  2425. AVCodec *avcodec_find_decoder(enum CodecID id);
  2426. /**
  2427. * Finds an decoder with the specified name.
  2428. *
  2429. * @param name name of the requested decoder
  2430. * @return A decoder if one was found, NULL otherwise.
  2431. */
  2432. AVCodec *avcodec_find_decoder_by_name(const char *name);
  2433. void avcodec_string(char *buf, int buf_size, AVCodecContext *enc, int encode);
  2434. /**
  2435. * Sets the fields of the given AVCodecContext to default values.
  2436. *
  2437. * @param s The AVCodecContext of which the fields should be set to default values.
  2438. */
  2439. void avcodec_get_context_defaults(AVCodecContext *s);
  2440. /** THIS FUNCTION IS NOT YET PART OF THE PUBLIC API!
  2441. * we WILL change its arguments and name a few times! */
  2442. void avcodec_get_context_defaults2(AVCodecContext *s, enum CodecType);
  2443. /**
  2444. * Allocates an AVCodecContext and sets its fields to default values. The
  2445. * resulting struct can be deallocated by simply calling av_free().
  2446. *
  2447. * @return An AVCodecContext filled with default values or NULL on failure.
  2448. * @see avcodec_get_context_defaults
  2449. */
  2450. AVCodecContext *avcodec_alloc_context(void);
  2451. /** THIS FUNCTION IS NOT YET PART OF THE PUBLIC API!
  2452. * we WILL change its arguments and name a few times! */
  2453. AVCodecContext *avcodec_alloc_context2(enum CodecType);
  2454. /**
  2455. * Sets the fields of the given AVFrame to default values.
  2456. *
  2457. * @param pic The AVFrame of which the fields should be set to default values.
  2458. */
  2459. void avcodec_get_frame_defaults(AVFrame *pic);
  2460. /**
  2461. * Allocates an AVFrame and sets its fields to default values. The resulting
  2462. * struct can be deallocated by simply calling av_free().
  2463. *
  2464. * @return An AVFrame filled with default values or NULL on failure.
  2465. * @see avcodec_get_frame_defaults
  2466. */
  2467. AVFrame *avcodec_alloc_frame(void);
  2468. int avcodec_default_get_buffer(AVCodecContext *s, AVFrame *pic);
  2469. void avcodec_default_release_buffer(AVCodecContext *s, AVFrame *pic);
  2470. int avcodec_default_reget_buffer(AVCodecContext *s, AVFrame *pic);
  2471. void avcodec_align_dimensions(AVCodecContext *s, int *width, int *height);
  2472. /**
  2473. * Checks if the given dimension of a picture is valid, meaning that all
  2474. * bytes of the picture can be addressed with a signed int.
  2475. *
  2476. * @param[in] w Width of the picture.
  2477. * @param[in] h Height of the picture.
  2478. * @return Zero if valid, a negative value if invalid.
  2479. */
  2480. int avcodec_check_dimensions(void *av_log_ctx, unsigned int w, unsigned int h);
  2481. enum PixelFormat avcodec_default_get_format(struct AVCodecContext *s, const enum PixelFormat * fmt);
  2482. int avcodec_thread_init(AVCodecContext *s, int thread_count);
  2483. void avcodec_thread_free(AVCodecContext *s);
  2484. int avcodec_thread_execute(AVCodecContext *s, int (*func)(AVCodecContext *c2, void *arg2),void **arg, int *ret, int count);
  2485. int avcodec_default_execute(AVCodecContext *c, int (*func)(AVCodecContext *c2, void *arg2),void **arg, int *ret, int count);
  2486. //FIXME func typedef
  2487. /**
  2488. * Initializes the AVCodecContext to use the given AVCodec. Prior to using this
  2489. * function the context has to be allocated.
  2490. *
  2491. * The functions avcodec_find_decoder_by_name(), avcodec_find_encoder_by_name(),
  2492. * avcodec_find_decoder() and avcodec_find_encoder() provide an easy way for
  2493. * retrieving a codec.
  2494. *
  2495. * @warning This function is not thread safe!
  2496. *
  2497. * @code
  2498. * codec = avcodec_find_decoder(CODEC_ID_H264);
  2499. * if (!codec)
  2500. * exit(1);
  2501. *
  2502. * context = avcodec_alloc_context();
  2503. *
  2504. * if (avcodec_open(context, codec) < 0)
  2505. * exit(1);
  2506. * @endcode
  2507. *
  2508. * @param avctx The context which will be set up to use the given codec.
  2509. * @param codec The codec to use within the context.
  2510. * @return zero on success, a negative value on error
  2511. * @see avcodec_alloc_context, avcodec_find_decoder, avcodec_find_encoder
  2512. */
  2513. int avcodec_open(AVCodecContext *avctx, AVCodec *codec);
  2514. /**
  2515. * @deprecated Use avcodec_decode_audio2() instead.
  2516. */
  2517. attribute_deprecated int avcodec_decode_audio(AVCodecContext *avctx, int16_t *samples,
  2518. int *frame_size_ptr,
  2519. uint8_t *buf, int buf_size);
  2520. /**
  2521. * Decodes an audio frame from \p buf into \p samples.
  2522. * The avcodec_decode_audio2() function decodes an audio frame from the input
  2523. * buffer \p buf of size \p buf_size. To decode it, it makes use of the
  2524. * audio codec which was coupled with \p avctx using avcodec_open(). The
  2525. * resulting decoded frame is stored in output buffer \p samples. If no frame
  2526. * could be decompressed, \p frame_size_ptr is zero. Otherwise, it is the
  2527. * decompressed frame size in \e bytes.
  2528. *
  2529. * @warning You \e must set \p frame_size_ptr to the allocated size of the
  2530. * output buffer before calling avcodec_decode_audio2().
  2531. *
  2532. * @warning The input buffer must be \c FF_INPUT_BUFFER_PADDING_SIZE larger than
  2533. * the actual read bytes because some optimized bitstream readers read 32 or 64
  2534. * bits at once and could read over the end.
  2535. *
  2536. * @warning The end of the input buffer \p buf should be set to 0 to ensure that
  2537. * no overreading happens for damaged MPEG streams.
  2538. *
  2539. * @note You might have to align the input buffer \p buf and output buffer \p
  2540. * samples. The alignment requirements depend on the CPU: On some CPUs it isn't
  2541. * necessary at all, on others it won't work at all if not aligned and on others
  2542. * it will work but it will have an impact on performance. In practice, the
  2543. * bitstream should have 4 byte alignment at minimum and all sample data should
  2544. * be 16 byte aligned unless the CPU doesn't need it (AltiVec and SSE do). If
  2545. * the linesize is not a multiple of 16 then there's no sense in aligning the
  2546. * start of the buffer to 16.
  2547. *
  2548. * @param avctx the codec context
  2549. * @param[out] samples the output buffer
  2550. * @param[in,out] frame_size_ptr the output buffer size in bytes
  2551. * @param[in] buf the input buffer
  2552. * @param[in] buf_size the input buffer size in bytes
  2553. * @return On error a negative value is returned, otherwise the number of bytes
  2554. * used or zero if no frame could be decompressed.
  2555. */
  2556. int avcodec_decode_audio2(AVCodecContext *avctx, int16_t *samples,
  2557. int *frame_size_ptr,
  2558. uint8_t *buf, int buf_size);
  2559. /**
  2560. * Decodes a video frame from \p buf into \p picture.
  2561. * The avcodec_decode_video() function decodes a video frame from the input
  2562. * buffer \p buf of size \p buf_size. To decode it, it makes use of the
  2563. * video codec which was coupled with \p avctx using avcodec_open(). The
  2564. * resulting decoded frame is stored in \p picture.
  2565. *
  2566. * @warning The input buffer must be \c FF_INPUT_BUFFER_PADDING_SIZE larger than
  2567. * the actual read bytes because some optimized bitstream readers read 32 or 64
  2568. * bits at once and could read over the end.
  2569. *
  2570. * @warning The end of the input buffer \p buf should be set to 0 to ensure that
  2571. * no overreading happens for damaged MPEG streams.
  2572. *
  2573. * @note You might have to align the input buffer \p buf and output buffer \p
  2574. * samples. The alignment requirements depend on the CPU: on some CPUs it isn't
  2575. * necessary at all, on others it won't work at all if not aligned and on others
  2576. * it will work but it will have an impact on performance. In practice, the
  2577. * bitstream should have 4 byte alignment at minimum and all sample data should
  2578. * be 16 byte aligned unless the CPU doesn't need it (AltiVec and SSE do). If
  2579. * the linesize is not a multiple of 16 then there's no sense in aligning the
  2580. * start of the buffer to 16.
  2581. *
  2582. * @param avctx the codec context
  2583. * @param[out] picture The AVFrame in which the decoded video frame will be stored.
  2584. * @param[in] buf the input buffer
  2585. * @param[in] buf_size the size of the input buffer in bytes
  2586. * @param[in,out] got_picture_ptr Zero if no frame could be decompressed, otherwise, it is nonzero.
  2587. * @return On error a negative value is returned, otherwise the number of bytes
  2588. * used or zero if no frame could be decompressed.
  2589. */
  2590. int avcodec_decode_video(AVCodecContext *avctx, AVFrame *picture,
  2591. int *got_picture_ptr,
  2592. uint8_t *buf, int buf_size);
  2593. /* Decode a subtitle message. Return -1 if error, otherwise return the
  2594. * number of bytes used. If no subtitle could be decompressed,
  2595. * got_sub_ptr is zero. Otherwise, the subtitle is stored in *sub. */
  2596. int avcodec_decode_subtitle(AVCodecContext *avctx, AVSubtitle *sub,
  2597. int *got_sub_ptr,
  2598. const uint8_t *buf, int buf_size);
  2599. int avcodec_parse_frame(AVCodecContext *avctx, uint8_t **pdata,
  2600. int *data_size_ptr,
  2601. uint8_t *buf, int buf_size);
  2602. /**
  2603. * Encodes an audio frame from \p samples into \p buf.
  2604. * The avcodec_encode_audio() function encodes an audio frame from the input
  2605. * buffer \p samples. To encode it, it makes use of the audio codec which was
  2606. * coupled with \p avctx using avcodec_open(). The resulting encoded frame is
  2607. * stored in output buffer \p buf.
  2608. *
  2609. * @note The output buffer should be at least \c FF_MIN_BUFFER_SIZE bytes large.
  2610. *
  2611. * @param avctx the codec context
  2612. * @param[out] buf the output buffer
  2613. * @param[in] buf_size the output buffer size
  2614. * @param[in] samples the input buffer containing the samples
  2615. * @return On error a negative value is returned, on succes zero or the number
  2616. * of bytes used from the input buffer.
  2617. */
  2618. int avcodec_encode_audio(AVCodecContext *avctx, uint8_t *buf, int buf_size,
  2619. const short *samples);
  2620. /**
  2621. * Encodes a video frame from \p pict into \p buf.
  2622. * The avcodec_encode_video() function encodes a video frame from the input
  2623. * \p pict. To encode it, it makes use of the video codec which was coupled with
  2624. * \p avctx using avcodec_open(). The resulting encoded bytes representing the
  2625. * frame are stored in the output buffer \p buf. The input picture should be
  2626. * stored using a specific format, namely \c avctx.pix_fmt.
  2627. *
  2628. * @param avctx the codec context
  2629. * @param[out] buf the output buffer for the bitstream of encoded frame
  2630. * @param[in] buf_size the size of the output buffer in bytes
  2631. * @param[in] pict the input picture to encode
  2632. * @return On error a negative value is returned, on success zero or the number
  2633. * of bytes used from the input buffer.
  2634. */
  2635. int avcodec_encode_video(AVCodecContext *avctx, uint8_t *buf, int buf_size,
  2636. const AVFrame *pict);
  2637. int avcodec_encode_subtitle(AVCodecContext *avctx, uint8_t *buf, int buf_size,
  2638. const AVSubtitle *sub);
  2639. int avcodec_close(AVCodecContext *avctx);
  2640. void avcodec_register_all(void);
  2641. /**
  2642. * Flush buffers, should be called when seeking or when switching to a different stream.
  2643. */
  2644. void avcodec_flush_buffers(AVCodecContext *avctx);
  2645. void avcodec_default_free_buffers(AVCodecContext *s);
  2646. /* misc useful functions */
  2647. /**
  2648. * Returns a single letter to describe the given picture type \p pict_type.
  2649. *
  2650. * @param[in] pict_type the picture type
  2651. * @return A single character representing the picture type.
  2652. */
  2653. char av_get_pict_type_char(int pict_type);
  2654. /**
  2655. * Returns codec bits per sample.
  2656. *
  2657. * @param[in] codec_id the codec
  2658. * @return Number of bits per sample or zero if unknown for the given codec.
  2659. */
  2660. int av_get_bits_per_sample(enum CodecID codec_id);
  2661. /* frame parsing */
  2662. typedef struct AVCodecParserContext {
  2663. void *priv_data;
  2664. struct AVCodecParser *parser;
  2665. int64_t frame_offset; /* offset of the current frame */
  2666. int64_t cur_offset; /* current offset
  2667. (incremented by each av_parser_parse()) */
  2668. int64_t last_frame_offset; /* offset of the last frame */
  2669. /* video info */
  2670. int pict_type; /* XXX: Put it back in AVCodecContext. */
  2671. int repeat_pict; /* XXX: Put it back in AVCodecContext. */
  2672. int64_t pts; /* pts of the current frame */
  2673. int64_t dts; /* dts of the current frame */
  2674. /* private data */
  2675. int64_t last_pts;
  2676. int64_t last_dts;
  2677. int fetch_timestamp;
  2678. #define AV_PARSER_PTS_NB 4
  2679. int cur_frame_start_index;
  2680. int64_t cur_frame_offset[AV_PARSER_PTS_NB];
  2681. int64_t cur_frame_pts[AV_PARSER_PTS_NB];
  2682. int64_t cur_frame_dts[AV_PARSER_PTS_NB];
  2683. int flags;
  2684. #define PARSER_FLAG_COMPLETE_FRAMES 0x0001
  2685. int64_t offset; ///< byte offset from starting packet start
  2686. int64_t last_offset;
  2687. } AVCodecParserContext;
  2688. typedef struct AVCodecParser {
  2689. int codec_ids[5]; /* several codec IDs are permitted */
  2690. int priv_data_size;
  2691. int (*parser_init)(AVCodecParserContext *s);
  2692. int (*parser_parse)(AVCodecParserContext *s,
  2693. AVCodecContext *avctx,
  2694. const uint8_t **poutbuf, int *poutbuf_size,
  2695. const uint8_t *buf, int buf_size);
  2696. void (*parser_close)(AVCodecParserContext *s);
  2697. int (*split)(AVCodecContext *avctx, const uint8_t *buf, int buf_size);
  2698. struct AVCodecParser *next;
  2699. } AVCodecParser;
  2700. extern AVCodecParser *av_first_parser;
  2701. void av_register_codec_parser(AVCodecParser *parser);
  2702. AVCodecParserContext *av_parser_init(int codec_id);
  2703. int av_parser_parse(AVCodecParserContext *s,
  2704. AVCodecContext *avctx,
  2705. uint8_t **poutbuf, int *poutbuf_size,
  2706. const uint8_t *buf, int buf_size,
  2707. int64_t pts, int64_t dts);
  2708. int av_parser_change(AVCodecParserContext *s,
  2709. AVCodecContext *avctx,
  2710. uint8_t **poutbuf, int *poutbuf_size,
  2711. const uint8_t *buf, int buf_size, int keyframe);
  2712. void av_parser_close(AVCodecParserContext *s);
  2713. extern AVCodecParser aac_parser;
  2714. extern AVCodecParser ac3_parser;
  2715. extern AVCodecParser cavsvideo_parser;
  2716. extern AVCodecParser dca_parser;
  2717. extern AVCodecParser dvbsub_parser;
  2718. extern AVCodecParser dvdsub_parser;
  2719. extern AVCodecParser h261_parser;
  2720. extern AVCodecParser h263_parser;
  2721. extern AVCodecParser h264_parser;
  2722. extern AVCodecParser mjpeg_parser;
  2723. extern AVCodecParser mpeg4video_parser;
  2724. extern AVCodecParser mpegaudio_parser;
  2725. extern AVCodecParser mpegvideo_parser;
  2726. extern AVCodecParser pnm_parser;
  2727. extern AVCodecParser vc1_parser;
  2728. typedef struct AVBitStreamFilterContext {
  2729. void *priv_data;
  2730. struct AVBitStreamFilter *filter;
  2731. AVCodecParserContext *parser;
  2732. struct AVBitStreamFilterContext *next;
  2733. } AVBitStreamFilterContext;
  2734. typedef struct AVBitStreamFilter {
  2735. const char *name;
  2736. int priv_data_size;
  2737. int (*filter)(AVBitStreamFilterContext *bsfc,
  2738. AVCodecContext *avctx, const char *args,
  2739. uint8_t **poutbuf, int *poutbuf_size,
  2740. const uint8_t *buf, int buf_size, int keyframe);
  2741. struct AVBitStreamFilter *next;
  2742. } AVBitStreamFilter;
  2743. extern AVBitStreamFilter *av_first_bitstream_filter;
  2744. void av_register_bitstream_filter(AVBitStreamFilter *bsf);
  2745. AVBitStreamFilterContext *av_bitstream_filter_init(const char *name);
  2746. int av_bitstream_filter_filter(AVBitStreamFilterContext *bsfc,
  2747. AVCodecContext *avctx, const char *args,
  2748. uint8_t **poutbuf, int *poutbuf_size,
  2749. const uint8_t *buf, int buf_size, int keyframe);
  2750. void av_bitstream_filter_close(AVBitStreamFilterContext *bsf);
  2751. extern AVBitStreamFilter dump_extradata_bsf;
  2752. extern AVBitStreamFilter remove_extradata_bsf;
  2753. extern AVBitStreamFilter noise_bsf;
  2754. extern AVBitStreamFilter mp3_header_compress_bsf;
  2755. extern AVBitStreamFilter mp3_header_decompress_bsf;
  2756. extern AVBitStreamFilter mjpega_dump_header_bsf;
  2757. extern AVBitStreamFilter imx_dump_header_bsf;
  2758. /* memory */
  2759. /**
  2760. * Reallocates the given block if it is not large enough, otherwise it
  2761. * does nothing.
  2762. *
  2763. * @see av_realloc
  2764. */
  2765. void *av_fast_realloc(void *ptr, unsigned int *size, unsigned int min_size);
  2766. /* for static data only */
  2767. /**
  2768. * Frees all static arrays and resets their pointers to 0.
  2769. * Call this function to release all statically allocated tables.
  2770. *
  2771. * @deprecated. Code which uses av_free_static is broken/missdesigned
  2772. * and should correctly use static arrays
  2773. *
  2774. */
  2775. attribute_deprecated void av_free_static(void);
  2776. /**
  2777. * Allocation of static arrays.
  2778. *
  2779. * @warning Do not use for normal allocation.
  2780. *
  2781. * @param[in] size The amount of memory you need in bytes.
  2782. * @return block of memory of the requested size
  2783. * @deprecated. Code which uses av_mallocz_static is broken/missdesigned
  2784. * and should correctly use static arrays
  2785. */
  2786. attribute_deprecated void *av_mallocz_static(unsigned int size);
  2787. /**
  2788. * Copy image 'src' to 'dst'.
  2789. */
  2790. void av_picture_copy(AVPicture *dst, const AVPicture *src,
  2791. int pix_fmt, int width, int height);
  2792. /**
  2793. * Crop image top and left side.
  2794. */
  2795. int av_picture_crop(AVPicture *dst, const AVPicture *src,
  2796. int pix_fmt, int top_band, int left_band);
  2797. /**
  2798. * Pad image.
  2799. */
  2800. int av_picture_pad(AVPicture *dst, const AVPicture *src, int height, int width, int pix_fmt,
  2801. int padtop, int padbottom, int padleft, int padright, int *color);
  2802. #if LIBAVCODEC_VERSION_INT < ((52<<16)+(0<<8)+0)
  2803. /**
  2804. * @deprecated Use the software scaler (swscale) instead.
  2805. */
  2806. attribute_deprecated void img_copy(AVPicture *dst, const AVPicture *src,
  2807. int pix_fmt, int width, int height);
  2808. /**
  2809. * @deprecated Use the software scaler (swscale) instead.
  2810. */
  2811. attribute_deprecated int img_crop(AVPicture *dst, const AVPicture *src,
  2812. int pix_fmt, int top_band, int left_band);
  2813. /**
  2814. * @deprecated Use the software scaler (swscale) instead.
  2815. */
  2816. attribute_deprecated int img_pad(AVPicture *dst, const AVPicture *src, int height, int width, int pix_fmt,
  2817. int padtop, int padbottom, int padleft, int padright, int *color);
  2818. #endif
  2819. extern unsigned int av_xiphlacing(unsigned char *s, unsigned int v);
  2820. /* error handling */
  2821. #if EINVAL > 0
  2822. #define AVERROR(e) (-(e)) /**< Returns a negative error code from a POSIX error code, to return from library functions. */
  2823. #define AVUNERROR(e) (-(e)) /**< Returns a POSIX error code from a library function error return value. */
  2824. #else
  2825. /* Some platforms have E* and errno already negated. */
  2826. #define AVERROR(e) (e)
  2827. #define AVUNERROR(e) (e)
  2828. #endif
  2829. #define AVERROR_UNKNOWN AVERROR(EINVAL) /**< unknown error */
  2830. #define AVERROR_IO AVERROR(EIO) /**< I/O error */
  2831. #define AVERROR_NUMEXPECTED AVERROR(EDOM) /**< Number syntax expected in filename. */
  2832. #define AVERROR_INVALIDDATA AVERROR(EINVAL) /**< invalid data found */
  2833. #define AVERROR_NOMEM AVERROR(ENOMEM) /**< not enough memory */
  2834. #define AVERROR_NOFMT AVERROR(EILSEQ) /**< unknown format */
  2835. #define AVERROR_NOTSUPP AVERROR(ENOSYS) /**< Operation not supported. */
  2836. #define AVERROR_NOENT AVERROR(ENOENT) /**< No such file or directory. */
  2837. #ifdef __cplusplus
  2838. }
  2839. #endif
  2840. #endif /* AVCODEC_H */