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.

2608 lines
76KB

  1. #ifndef AVCODEC_H
  2. #define AVCODEC_H
  3. /**
  4. * @file avcodec.h
  5. * external api header.
  6. */
  7. #ifdef __cplusplus
  8. extern "C" {
  9. #endif
  10. #include "avutil.h"
  11. #include <sys/types.h> /* size_t */
  12. //FIXME the following 2 really dont belong in here
  13. #define FFMPEG_VERSION_INT 0x000409
  14. #define FFMPEG_VERSION "CVS"
  15. #define AV_STRINGIFY(s) AV_TOSTRING(s)
  16. #define AV_TOSTRING(s) #s
  17. #define LIBAVCODEC_VERSION_INT ((51<<16)+(8<<8)+0)
  18. #define LIBAVCODEC_VERSION 51.8.0
  19. #define LIBAVCODEC_BUILD LIBAVCODEC_VERSION_INT
  20. #define LIBAVCODEC_IDENT "Lavc" AV_STRINGIFY(LIBAVCODEC_VERSION)
  21. #define AV_NOPTS_VALUE int64_t_C(0x8000000000000000)
  22. #define AV_TIME_BASE 1000000
  23. #define AV_TIME_BASE_Q (AVRational){1, AV_TIME_BASE}
  24. enum CodecID {
  25. CODEC_ID_NONE,
  26. CODEC_ID_MPEG1VIDEO,
  27. CODEC_ID_MPEG2VIDEO, /* prefered ID for MPEG Video 1 or 2 decoding */
  28. CODEC_ID_MPEG2VIDEO_XVMC,
  29. CODEC_ID_H261,
  30. CODEC_ID_H263,
  31. CODEC_ID_RV10,
  32. CODEC_ID_RV20,
  33. CODEC_ID_MJPEG,
  34. CODEC_ID_MJPEGB,
  35. CODEC_ID_LJPEG,
  36. CODEC_ID_SP5X,
  37. CODEC_ID_JPEGLS,
  38. CODEC_ID_MPEG4,
  39. CODEC_ID_RAWVIDEO,
  40. CODEC_ID_MSMPEG4V1,
  41. CODEC_ID_MSMPEG4V2,
  42. CODEC_ID_MSMPEG4V3,
  43. CODEC_ID_WMV1,
  44. CODEC_ID_WMV2,
  45. CODEC_ID_H263P,
  46. CODEC_ID_H263I,
  47. CODEC_ID_FLV1,
  48. CODEC_ID_SVQ1,
  49. CODEC_ID_SVQ3,
  50. CODEC_ID_DVVIDEO,
  51. CODEC_ID_HUFFYUV,
  52. CODEC_ID_CYUV,
  53. CODEC_ID_H264,
  54. CODEC_ID_INDEO3,
  55. CODEC_ID_VP3,
  56. CODEC_ID_THEORA,
  57. CODEC_ID_ASV1,
  58. CODEC_ID_ASV2,
  59. CODEC_ID_FFV1,
  60. CODEC_ID_4XM,
  61. CODEC_ID_VCR1,
  62. CODEC_ID_CLJR,
  63. CODEC_ID_MDEC,
  64. CODEC_ID_ROQ,
  65. CODEC_ID_INTERPLAY_VIDEO,
  66. CODEC_ID_XAN_WC3,
  67. CODEC_ID_XAN_WC4,
  68. CODEC_ID_RPZA,
  69. CODEC_ID_CINEPAK,
  70. CODEC_ID_WS_VQA,
  71. CODEC_ID_MSRLE,
  72. CODEC_ID_MSVIDEO1,
  73. CODEC_ID_IDCIN,
  74. CODEC_ID_8BPS,
  75. CODEC_ID_SMC,
  76. CODEC_ID_FLIC,
  77. CODEC_ID_TRUEMOTION1,
  78. CODEC_ID_VMDVIDEO,
  79. CODEC_ID_MSZH,
  80. CODEC_ID_ZLIB,
  81. CODEC_ID_QTRLE,
  82. CODEC_ID_SNOW,
  83. CODEC_ID_TSCC,
  84. CODEC_ID_ULTI,
  85. CODEC_ID_QDRAW,
  86. CODEC_ID_VIXL,
  87. CODEC_ID_QPEG,
  88. CODEC_ID_XVID,
  89. CODEC_ID_PNG,
  90. CODEC_ID_PPM,
  91. CODEC_ID_PBM,
  92. CODEC_ID_PGM,
  93. CODEC_ID_PGMYUV,
  94. CODEC_ID_PAM,
  95. CODEC_ID_FFVHUFF,
  96. CODEC_ID_RV30,
  97. CODEC_ID_RV40,
  98. CODEC_ID_VC9,
  99. CODEC_ID_WMV3,
  100. CODEC_ID_LOCO,
  101. CODEC_ID_WNV1,
  102. CODEC_ID_AASC,
  103. CODEC_ID_INDEO2,
  104. CODEC_ID_FRAPS,
  105. CODEC_ID_TRUEMOTION2,
  106. CODEC_ID_BMP,
  107. CODEC_ID_CSCD,
  108. CODEC_ID_MMVIDEO,
  109. CODEC_ID_ZMBV,
  110. CODEC_ID_AVS,
  111. CODEC_ID_SMACKVIDEO,
  112. CODEC_ID_NUV,
  113. /* various pcm "codecs" */
  114. CODEC_ID_PCM_S16LE= 0x10000,
  115. CODEC_ID_PCM_S16BE,
  116. CODEC_ID_PCM_U16LE,
  117. CODEC_ID_PCM_U16BE,
  118. CODEC_ID_PCM_S8,
  119. CODEC_ID_PCM_U8,
  120. CODEC_ID_PCM_MULAW,
  121. CODEC_ID_PCM_ALAW,
  122. CODEC_ID_PCM_S32LE,
  123. CODEC_ID_PCM_S32BE,
  124. CODEC_ID_PCM_U32LE,
  125. CODEC_ID_PCM_U32BE,
  126. CODEC_ID_PCM_S24LE,
  127. CODEC_ID_PCM_S24BE,
  128. CODEC_ID_PCM_U24LE,
  129. CODEC_ID_PCM_U24BE,
  130. CODEC_ID_PCM_S24DAUD,
  131. /* various adpcm codecs */
  132. CODEC_ID_ADPCM_IMA_QT= 0x11000,
  133. CODEC_ID_ADPCM_IMA_WAV,
  134. CODEC_ID_ADPCM_IMA_DK3,
  135. CODEC_ID_ADPCM_IMA_DK4,
  136. CODEC_ID_ADPCM_IMA_WS,
  137. CODEC_ID_ADPCM_IMA_SMJPEG,
  138. CODEC_ID_ADPCM_MS,
  139. CODEC_ID_ADPCM_4XM,
  140. CODEC_ID_ADPCM_XA,
  141. CODEC_ID_ADPCM_ADX,
  142. CODEC_ID_ADPCM_EA,
  143. CODEC_ID_ADPCM_G726,
  144. CODEC_ID_ADPCM_CT,
  145. CODEC_ID_ADPCM_SWF,
  146. CODEC_ID_ADPCM_YAMAHA,
  147. CODEC_ID_ADPCM_SBPRO_4,
  148. CODEC_ID_ADPCM_SBPRO_3,
  149. CODEC_ID_ADPCM_SBPRO_2,
  150. /* AMR */
  151. CODEC_ID_AMR_NB= 0x12000,
  152. CODEC_ID_AMR_WB,
  153. /* RealAudio codecs*/
  154. CODEC_ID_RA_144= 0x13000,
  155. CODEC_ID_RA_288,
  156. /* various DPCM codecs */
  157. CODEC_ID_ROQ_DPCM= 0x14000,
  158. CODEC_ID_INTERPLAY_DPCM,
  159. CODEC_ID_XAN_DPCM,
  160. CODEC_ID_SOL_DPCM,
  161. CODEC_ID_MP2= 0x15000,
  162. CODEC_ID_MP3, /* prefered ID for MPEG Audio layer 1, 2 or3 decoding */
  163. CODEC_ID_AAC,
  164. CODEC_ID_MPEG4AAC,
  165. CODEC_ID_AC3,
  166. CODEC_ID_DTS,
  167. CODEC_ID_VORBIS,
  168. CODEC_ID_DVAUDIO,
  169. CODEC_ID_WMAV1,
  170. CODEC_ID_WMAV2,
  171. CODEC_ID_MACE3,
  172. CODEC_ID_MACE6,
  173. CODEC_ID_VMDAUDIO,
  174. CODEC_ID_SONIC,
  175. CODEC_ID_SONIC_LS,
  176. CODEC_ID_FLAC,
  177. CODEC_ID_MP3ADU,
  178. CODEC_ID_MP3ON4,
  179. CODEC_ID_SHORTEN,
  180. CODEC_ID_ALAC,
  181. CODEC_ID_WESTWOOD_SND1,
  182. CODEC_ID_GSM,
  183. CODEC_ID_QDM2,
  184. CODEC_ID_COOK,
  185. CODEC_ID_TRUESPEECH,
  186. CODEC_ID_TTA,
  187. CODEC_ID_SMACKAUDIO,
  188. CODEC_ID_OGGTHEORA= 0x16000,
  189. /* subtitle codecs */
  190. CODEC_ID_DVD_SUBTITLE= 0x17000,
  191. CODEC_ID_DVB_SUBTITLE,
  192. CODEC_ID_MPEG2TS= 0x20000, /* _FAKE_ codec to indicate a raw MPEG2 transport
  193. stream (only used by libavformat) */
  194. };
  195. /* CODEC_ID_MP3LAME is absolete */
  196. #define CODEC_ID_MP3LAME CODEC_ID_MP3
  197. enum CodecType {
  198. CODEC_TYPE_UNKNOWN = -1,
  199. CODEC_TYPE_VIDEO,
  200. CODEC_TYPE_AUDIO,
  201. CODEC_TYPE_DATA,
  202. CODEC_TYPE_SUBTITLE,
  203. };
  204. /**
  205. * Pixel format. Notes:
  206. *
  207. * PIX_FMT_RGBA32 is handled in an endian-specific manner. A RGBA
  208. * color is put together as:
  209. * (A << 24) | (R << 16) | (G << 8) | B
  210. * This is stored as BGRA on little endian CPU architectures and ARGB on
  211. * big endian CPUs.
  212. *
  213. * When the pixel format is palettized RGB (PIX_FMT_PAL8), the palettized
  214. * image data is stored in AVFrame.data[0]. The palette is transported in
  215. * AVFrame.data[1] and, is 1024 bytes long (256 4-byte entries) and is
  216. * formatted the same as in PIX_FMT_RGBA32 described above (i.e., it is
  217. * also endian-specific). Note also that the individual RGB palette
  218. * components stored in AVFrame.data[1] should be in the range 0..255.
  219. * This is important as many custom PAL8 video codecs that were designed
  220. * to run on the IBM VGA graphics adapter use 6-bit palette components.
  221. */
  222. enum PixelFormat {
  223. PIX_FMT_NONE= -1,
  224. PIX_FMT_YUV420P, ///< Planar YUV 4:2:0 (1 Cr & Cb sample per 2x2 Y samples)
  225. PIX_FMT_YUV422, ///< Packed pixel, Y0 Cb Y1 Cr
  226. PIX_FMT_RGB24, ///< Packed pixel, 3 bytes per pixel, RGBRGB...
  227. PIX_FMT_BGR24, ///< Packed pixel, 3 bytes per pixel, BGRBGR...
  228. PIX_FMT_YUV422P, ///< Planar YUV 4:2:2 (1 Cr & Cb sample per 2x1 Y samples)
  229. PIX_FMT_YUV444P, ///< Planar YUV 4:4:4 (1 Cr & Cb sample per 1x1 Y samples)
  230. PIX_FMT_RGBA32, ///< Packed pixel, 4 bytes per pixel, BGRABGRA..., stored in cpu endianness
  231. PIX_FMT_YUV410P, ///< Planar YUV 4:1:0 (1 Cr & Cb sample per 4x4 Y samples)
  232. PIX_FMT_YUV411P, ///< Planar YUV 4:1:1 (1 Cr & Cb sample per 4x1 Y samples)
  233. PIX_FMT_RGB565, ///< always stored in cpu endianness
  234. PIX_FMT_RGB555, ///< always stored in cpu endianness, most significant bit to 1
  235. PIX_FMT_GRAY8,
  236. PIX_FMT_MONOWHITE, ///< 0 is white
  237. PIX_FMT_MONOBLACK, ///< 0 is black
  238. PIX_FMT_PAL8, ///< 8 bit with RGBA palette
  239. PIX_FMT_YUVJ420P, ///< Planar YUV 4:2:0 full scale (jpeg)
  240. PIX_FMT_YUVJ422P, ///< Planar YUV 4:2:2 full scale (jpeg)
  241. PIX_FMT_YUVJ444P, ///< Planar YUV 4:4:4 full scale (jpeg)
  242. PIX_FMT_XVMC_MPEG2_MC,///< XVideo Motion Acceleration via common packet passing(xvmc_render.h)
  243. PIX_FMT_XVMC_MPEG2_IDCT,
  244. PIX_FMT_UYVY422, ///< Packed pixel, Cb Y0 Cr Y1
  245. PIX_FMT_UYVY411, ///< Packed pixel, Cb Y0 Y1 Cr Y2 Y3
  246. PIX_FMT_NB,
  247. };
  248. /* currently unused, may be used if 24/32 bits samples ever supported */
  249. /* all in native endian */
  250. enum SampleFormat {
  251. SAMPLT_FMT_NONE = -1,
  252. SAMPLE_FMT_U8, ///< unsigned 8 bits
  253. SAMPLE_FMT_S16, ///< signed 16 bits
  254. SAMPLE_FMT_S24, ///< signed 24 bits
  255. SAMPLE_FMT_S32, ///< signed 32 bits
  256. SAMPLE_FMT_FLT, ///< float
  257. };
  258. /* in bytes */
  259. #define AVCODEC_MAX_AUDIO_FRAME_SIZE 192000 // 1 second of 48khz 32bit audio
  260. /**
  261. * Required number of additionally allocated bytes at the end of the input bitstream for decoding.
  262. * this is mainly needed because some optimized bitstream readers read
  263. * 32 or 64 bit at once and could read over the end<br>
  264. * Note, if the first 23 bits of the additional bytes are not 0 then damaged
  265. * MPEG bitstreams could cause overread and segfault
  266. */
  267. #define FF_INPUT_BUFFER_PADDING_SIZE 8
  268. /**
  269. * minimum encoding buffer size.
  270. * used to avoid some checks during header writing
  271. */
  272. #define FF_MIN_BUFFER_SIZE 16384
  273. /* motion estimation type, EPZS by default */
  274. enum Motion_Est_ID {
  275. ME_ZERO = 1,
  276. ME_FULL,
  277. ME_LOG,
  278. ME_PHODS,
  279. ME_EPZS,
  280. ME_X1,
  281. ME_HEX,
  282. ME_UMH,
  283. ME_ITER,
  284. };
  285. enum AVDiscard{
  286. //we leave some space between them for extensions (drop some keyframes for intra only or drop just some bidir frames)
  287. AVDISCARD_NONE =-16, ///< discard nothing
  288. AVDISCARD_DEFAULT= 0, ///< discard useless packets like 0 size packets in avi
  289. AVDISCARD_NONREF = 8, ///< discard all non reference
  290. AVDISCARD_BIDIR = 16, ///< discard all bidirectional frames
  291. AVDISCARD_NONKEY = 32, ///< discard all frames except keyframes
  292. AVDISCARD_ALL = 48, ///< discard all
  293. };
  294. typedef struct RcOverride{
  295. int start_frame;
  296. int end_frame;
  297. int qscale; // if this is 0 then quality_factor will be used instead
  298. float quality_factor;
  299. } RcOverride;
  300. /* only for ME compatiblity with old apps */
  301. extern int motion_estimation_method;
  302. #define FF_MAX_B_FRAMES 16
  303. /* encoding support
  304. these flags can be passed in AVCodecContext.flags before initing
  305. Note: not everything is supported yet.
  306. */
  307. #define CODEC_FLAG_QSCALE 0x0002 ///< use fixed qscale
  308. #define CODEC_FLAG_4MV 0x0004 ///< 4 MV per MB allowed / Advanced prediction for H263
  309. #define CODEC_FLAG_QPEL 0x0010 ///< use qpel MC
  310. #define CODEC_FLAG_GMC 0x0020 ///< use GMC
  311. #define CODEC_FLAG_MV0 0x0040 ///< always try a MB with MV=<0,0>
  312. #define CODEC_FLAG_PART 0x0080 ///< use data partitioning
  313. /* parent program gurantees that the input for b-frame containing streams is not written to
  314. for at least s->max_b_frames+1 frames, if this is not set than the input will be copied */
  315. #define CODEC_FLAG_INPUT_PRESERVED 0x0100
  316. #define CODEC_FLAG_PASS1 0x0200 ///< use internal 2pass ratecontrol in first pass mode
  317. #define CODEC_FLAG_PASS2 0x0400 ///< use internal 2pass ratecontrol in second pass mode
  318. #define CODEC_FLAG_EXTERN_HUFF 0x1000 ///< use external huffman table (for mjpeg)
  319. #define CODEC_FLAG_GRAY 0x2000 ///< only decode/encode grayscale
  320. #define CODEC_FLAG_EMU_EDGE 0x4000///< don't draw edges
  321. #define CODEC_FLAG_PSNR 0x8000 ///< error[?] variables will be set during encoding
  322. #define CODEC_FLAG_TRUNCATED 0x00010000 /** input bitstream might be truncated at a random location instead
  323. of only at frame boundaries */
  324. #define CODEC_FLAG_NORMALIZE_AQP 0x00020000 ///< normalize adaptive quantization
  325. #define CODEC_FLAG_INTERLACED_DCT 0x00040000 ///< use interlaced dct
  326. #define CODEC_FLAG_LOW_DELAY 0x00080000 ///< force low delay
  327. #define CODEC_FLAG_ALT_SCAN 0x00100000 ///< use alternate scan
  328. #define CODEC_FLAG_TRELLIS_QUANT 0x00200000 ///< use trellis quantization
  329. #define CODEC_FLAG_GLOBAL_HEADER 0x00400000 ///< place global headers in extradata instead of every keyframe
  330. #define CODEC_FLAG_BITEXACT 0x00800000 ///< use only bitexact stuff (except (i)dct)
  331. /* Fx : Flag for h263+ extra options */
  332. #define CODEC_FLAG_H263P_AIC 0x01000000 ///< H263 Advanced intra coding / MPEG4 AC prediction (remove this)
  333. #define CODEC_FLAG_AC_PRED 0x01000000 ///< H263 Advanced intra coding / MPEG4 AC prediction
  334. #define CODEC_FLAG_H263P_UMV 0x02000000 ///< Unlimited motion vector
  335. #define CODEC_FLAG_CBP_RD 0x04000000 ///< use rate distortion optimization for cbp
  336. #define CODEC_FLAG_QP_RD 0x08000000 ///< use rate distortion optimization for qp selectioon
  337. #define CODEC_FLAG_H263P_AIV 0x00000008 ///< H263 Alternative inter vlc
  338. #define CODEC_FLAG_OBMC 0x00000001 ///< OBMC
  339. #define CODEC_FLAG_LOOP_FILTER 0x00000800 ///< loop filter
  340. #define CODEC_FLAG_H263P_SLICE_STRUCT 0x10000000
  341. #define CODEC_FLAG_INTERLACED_ME 0x20000000 ///< interlaced motion estimation
  342. #define CODEC_FLAG_SVCD_SCAN_OFFSET 0x40000000 ///< will reserve space for SVCD scan offset user data
  343. #define CODEC_FLAG_CLOSED_GOP 0x80000000
  344. #define CODEC_FLAG2_FAST 0x00000001 ///< allow non spec compliant speedup tricks
  345. #define CODEC_FLAG2_STRICT_GOP 0x00000002 ///< strictly enforce GOP size
  346. #define CODEC_FLAG2_NO_OUTPUT 0x00000004 ///< skip bitstream encoding
  347. #define CODEC_FLAG2_LOCAL_HEADER 0x00000008 ///< place global headers at every keyframe instead of in extradata
  348. #define CODEC_FLAG2_BPYRAMID 0x00000010 ///< H.264 allow b-frames to be used as references
  349. #define CODEC_FLAG2_WPRED 0x00000020 ///< H.264 weighted biprediction for b-frames
  350. #define CODEC_FLAG2_MIXED_REFS 0x00000040 ///< H.264 multiple references per partition
  351. #define CODEC_FLAG2_8X8DCT 0x00000080 ///< H.264 high profile 8x8 transform
  352. #define CODEC_FLAG2_FASTPSKIP 0x00000100 ///< H.264 fast pskip
  353. #define CODEC_FLAG2_AUD 0x00000200 ///< H.264 access unit delimiters
  354. #define CODEC_FLAG2_BRDO 0x00000400 ///< b-frame rate-distortion optimization
  355. /* Unsupported options :
  356. * Syntax Arithmetic coding (SAC)
  357. * Reference Picture Selection
  358. * Independant Segment Decoding */
  359. /* /Fx */
  360. /* codec capabilities */
  361. #define CODEC_CAP_DRAW_HORIZ_BAND 0x0001 ///< decoder can use draw_horiz_band callback
  362. /**
  363. * Codec uses get_buffer() for allocating buffers.
  364. * direct rendering method 1
  365. */
  366. #define CODEC_CAP_DR1 0x0002
  367. /* if 'parse_only' field is true, then avcodec_parse_frame() can be
  368. used */
  369. #define CODEC_CAP_PARSE_ONLY 0x0004
  370. #define CODEC_CAP_TRUNCATED 0x0008
  371. /* codec can export data for HW decoding (XvMC) */
  372. #define CODEC_CAP_HWACCEL 0x0010
  373. /**
  374. * codec has a non zero delay and needs to be feeded with NULL at the end to get the delayed data.
  375. * if this is not set, the codec is guranteed to never be feeded with NULL data
  376. */
  377. #define CODEC_CAP_DELAY 0x0020
  378. //the following defines may change, don't expect compatibility if you use them
  379. #define MB_TYPE_INTRA4x4 0x0001
  380. #define MB_TYPE_INTRA16x16 0x0002 //FIXME h264 specific
  381. #define MB_TYPE_INTRA_PCM 0x0004 //FIXME h264 specific
  382. #define MB_TYPE_16x16 0x0008
  383. #define MB_TYPE_16x8 0x0010
  384. #define MB_TYPE_8x16 0x0020
  385. #define MB_TYPE_8x8 0x0040
  386. #define MB_TYPE_INTERLACED 0x0080
  387. #define MB_TYPE_DIRECT2 0x0100 //FIXME
  388. #define MB_TYPE_ACPRED 0x0200
  389. #define MB_TYPE_GMC 0x0400
  390. #define MB_TYPE_SKIP 0x0800
  391. #define MB_TYPE_P0L0 0x1000
  392. #define MB_TYPE_P1L0 0x2000
  393. #define MB_TYPE_P0L1 0x4000
  394. #define MB_TYPE_P1L1 0x8000
  395. #define MB_TYPE_L0 (MB_TYPE_P0L0 | MB_TYPE_P1L0)
  396. #define MB_TYPE_L1 (MB_TYPE_P0L1 | MB_TYPE_P1L1)
  397. #define MB_TYPE_L0L1 (MB_TYPE_L0 | MB_TYPE_L1)
  398. #define MB_TYPE_QUANT 0x00010000
  399. #define MB_TYPE_CBP 0x00020000
  400. //Note bits 24-31 are reserved for codec specific use (h264 ref0, mpeg1 0mv, ...)
  401. /**
  402. * Pan Scan area.
  403. * this specifies the area which should be displayed. Note there may be multiple such areas for one frame
  404. */
  405. typedef struct AVPanScan{
  406. /**
  407. * id.
  408. * - encoding: set by user.
  409. * - decoding: set by lavc
  410. */
  411. int id;
  412. /**
  413. * width and height in 1/16 pel
  414. * - encoding: set by user.
  415. * - decoding: set by lavc
  416. */
  417. int width;
  418. int height;
  419. /**
  420. * position of the top left corner in 1/16 pel for up to 3 fields/frames.
  421. * - encoding: set by user.
  422. * - decoding: set by lavc
  423. */
  424. int16_t position[3][2];
  425. }AVPanScan;
  426. #define FF_COMMON_FRAME \
  427. /**\
  428. * pointer to the picture planes.\
  429. * this might be different from the first allocated byte\
  430. * - encoding: \
  431. * - decoding: \
  432. */\
  433. uint8_t *data[4];\
  434. int linesize[4];\
  435. /**\
  436. * pointer to the first allocated byte of the picture. can be used in get_buffer/release_buffer\
  437. * this isn't used by lavc unless the default get/release_buffer() is used\
  438. * - encoding: \
  439. * - decoding: \
  440. */\
  441. uint8_t *base[4];\
  442. /**\
  443. * 1 -> keyframe, 0-> not\
  444. * - encoding: set by lavc\
  445. * - decoding: set by lavc\
  446. */\
  447. int key_frame;\
  448. \
  449. /**\
  450. * picture type of the frame, see ?_TYPE below.\
  451. * - encoding: set by lavc for coded_picture (and set by user for input)\
  452. * - decoding: set by lavc\
  453. */\
  454. int pict_type;\
  455. \
  456. /**\
  457. * presentation timestamp in time_base units (time when frame should be shown to user)\
  458. * if AV_NOPTS_VALUE then frame_rate = 1/time_base will be assumed\
  459. * - encoding: MUST be set by user\
  460. * - decoding: set by lavc\
  461. */\
  462. int64_t pts;\
  463. \
  464. /**\
  465. * picture number in bitstream order.\
  466. * - encoding: set by\
  467. * - decoding: set by lavc\
  468. */\
  469. int coded_picture_number;\
  470. /**\
  471. * picture number in display order.\
  472. * - encoding: set by\
  473. * - decoding: set by lavc\
  474. */\
  475. int display_picture_number;\
  476. \
  477. /**\
  478. * quality (between 1 (good) and FF_LAMBDA_MAX (bad)) \
  479. * - encoding: set by lavc for coded_picture (and set by user for input)\
  480. * - decoding: set by lavc\
  481. */\
  482. int quality; \
  483. \
  484. /**\
  485. * buffer age (1->was last buffer and dint change, 2->..., ...).\
  486. * set to INT_MAX if the buffer has not been used yet \
  487. * - encoding: unused\
  488. * - decoding: MUST be set by get_buffer()\
  489. */\
  490. int age;\
  491. \
  492. /**\
  493. * is this picture used as reference\
  494. * - encoding: unused\
  495. * - decoding: set by lavc (before get_buffer() call))\
  496. */\
  497. int reference;\
  498. \
  499. /**\
  500. * QP table\
  501. * - encoding: unused\
  502. * - decoding: set by lavc\
  503. */\
  504. int8_t *qscale_table;\
  505. /**\
  506. * QP store stride\
  507. * - encoding: unused\
  508. * - decoding: set by lavc\
  509. */\
  510. int qstride;\
  511. \
  512. /**\
  513. * mbskip_table[mb]>=1 if MB didnt change\
  514. * stride= mb_width = (width+15)>>4\
  515. * - encoding: unused\
  516. * - decoding: set by lavc\
  517. */\
  518. uint8_t *mbskip_table;\
  519. \
  520. /**\
  521. * Motion vector table.\
  522. * @code\
  523. * example:\
  524. * int mv_sample_log2= 4 - motion_subsample_log2;\
  525. * int mb_width= (width+15)>>4;\
  526. * int mv_stride= (mb_width << mv_sample_log2) + 1;\
  527. * motion_val[direction][x + y*mv_stride][0->mv_x, 1->mv_y];\
  528. * @endcode\
  529. * - encoding: set by user\
  530. * - decoding: set by lavc\
  531. */\
  532. int16_t (*motion_val[2])[2];\
  533. \
  534. /**\
  535. * Macroblock type table\
  536. * mb_type_base + mb_width + 2\
  537. * - encoding: set by user\
  538. * - decoding: set by lavc\
  539. */\
  540. uint32_t *mb_type;\
  541. \
  542. /**\
  543. * log2 of the size of the block which a single vector in motion_val represents: \
  544. * (4->16x16, 3->8x8, 2-> 4x4, 1-> 2x2)\
  545. * - encoding: unused\
  546. * - decoding: set by lavc\
  547. */\
  548. uint8_t motion_subsample_log2;\
  549. \
  550. /**\
  551. * for some private data of the user\
  552. * - encoding: unused\
  553. * - decoding: set by user\
  554. */\
  555. void *opaque;\
  556. \
  557. /**\
  558. * error\
  559. * - encoding: set by lavc if flags&CODEC_FLAG_PSNR\
  560. * - decoding: unused\
  561. */\
  562. uint64_t error[4];\
  563. \
  564. /**\
  565. * type of the buffer (to keep track of who has to dealloc data[*])\
  566. * - encoding: set by the one who allocs it\
  567. * - decoding: set by the one who allocs it\
  568. * Note: user allocated (direct rendering) & internal buffers can not coexist currently\
  569. */\
  570. int type;\
  571. \
  572. /**\
  573. * when decoding, this signal how much the picture must be delayed.\
  574. * extra_delay = repeat_pict / (2*fps)\
  575. * - encoding: unused\
  576. * - decoding: set by lavc\
  577. */\
  578. int repeat_pict;\
  579. \
  580. /**\
  581. * \
  582. */\
  583. int qscale_type;\
  584. \
  585. /**\
  586. * The content of the picture is interlaced.\
  587. * - encoding: set by user\
  588. * - decoding: set by lavc (default 0)\
  589. */\
  590. int interlaced_frame;\
  591. \
  592. /**\
  593. * if the content is interlaced, is top field displayed first.\
  594. * - encoding: set by user\
  595. * - decoding: set by lavc\
  596. */\
  597. int top_field_first;\
  598. \
  599. /**\
  600. * Pan scan.\
  601. * - encoding: set by user\
  602. * - decoding: set by lavc\
  603. */\
  604. AVPanScan *pan_scan;\
  605. \
  606. /**\
  607. * tell user application that palette has changed from previous frame.\
  608. * - encoding: ??? (no palette-enabled encoder yet)\
  609. * - decoding: set by lavc (default 0)\
  610. */\
  611. int palette_has_changed;\
  612. \
  613. /**\
  614. * Codec suggestion on buffer type if != 0\
  615. * - encoding: unused\
  616. * - decoding: set by lavc (before get_buffer() call))\
  617. */\
  618. int buffer_hints;\
  619. \
  620. /**\
  621. * DCT coeffitients\
  622. * - encoding: unused\
  623. * - decoding: set by lavc\
  624. */\
  625. short *dct_coeff;\
  626. \
  627. /**\
  628. * Motion referece frame index\
  629. * - encoding: set by user\
  630. * - decoding: set by lavc\
  631. */\
  632. int8_t *ref_index[2];
  633. #define FF_QSCALE_TYPE_MPEG1 0
  634. #define FF_QSCALE_TYPE_MPEG2 1
  635. #define FF_QSCALE_TYPE_H264 2
  636. #define FF_BUFFER_TYPE_INTERNAL 1
  637. #define FF_BUFFER_TYPE_USER 2 ///< Direct rendering buffers (image is (de)allocated by user)
  638. #define FF_BUFFER_TYPE_SHARED 4 ///< buffer from somewhere else, don't dealloc image (data/base), all other tables are not shared
  639. #define FF_BUFFER_TYPE_COPY 8 ///< just a (modified) copy of some other buffer, don't dealloc anything
  640. #define FF_I_TYPE 1 // Intra
  641. #define FF_P_TYPE 2 // Predicted
  642. #define FF_B_TYPE 3 // Bi-dir predicted
  643. #define FF_S_TYPE 4 // S(GMC)-VOP MPEG4
  644. #define FF_SI_TYPE 5
  645. #define FF_SP_TYPE 6
  646. #define FF_BUFFER_HINTS_VALID 0x01 // Buffer hints value is meaningful (if 0 ignore)
  647. #define FF_BUFFER_HINTS_READABLE 0x02 // Codec will read from buffer
  648. #define FF_BUFFER_HINTS_PRESERVE 0x04 // User must not alter buffer content
  649. #define FF_BUFFER_HINTS_REUSABLE 0x08 // Codec will reuse the buffer (update)
  650. /**
  651. * Audio Video Frame.
  652. */
  653. typedef struct AVFrame {
  654. FF_COMMON_FRAME
  655. } AVFrame;
  656. #define DEFAULT_FRAME_RATE_BASE 1001000
  657. /**
  658. * Used by av_log
  659. */
  660. typedef struct AVCLASS AVClass;
  661. struct AVCLASS {
  662. const char* class_name;
  663. const char* (*item_name)(void*); /* actually passing a pointer to an AVCodecContext
  664. or AVFormatContext, which begin with an AVClass.
  665. Needed because av_log is in libavcodec and has no visibility
  666. of AVIn/OutputFormat */
  667. struct AVOption *option;
  668. };
  669. /**
  670. * main external api structure.
  671. */
  672. typedef struct AVCodecContext {
  673. /**
  674. * Info on struct for av_log
  675. * - set by avcodec_alloc_context
  676. */
  677. AVClass *av_class;
  678. /**
  679. * the average bitrate.
  680. * - encoding: set by user. unused for constant quantizer encoding
  681. * - decoding: set by lavc. 0 or some bitrate if this info is available in the stream
  682. */
  683. int bit_rate;
  684. /**
  685. * number of bits the bitstream is allowed to diverge from the reference.
  686. * the reference can be CBR (for CBR pass1) or VBR (for pass2)
  687. * - encoding: set by user. unused for constant quantizer encoding
  688. * - decoding: unused
  689. */
  690. int bit_rate_tolerance;
  691. /**
  692. * CODEC_FLAG_*.
  693. * - encoding: set by user.
  694. * - decoding: set by user.
  695. */
  696. int flags;
  697. /**
  698. * some codecs needs additionnal format info. It is stored here
  699. * - encoding: set by user.
  700. * - decoding: set by lavc. (FIXME is this ok?)
  701. */
  702. int sub_id;
  703. /**
  704. * motion estimation algorithm used for video coding.
  705. * 1 (zero), 2 (full), 3 (log), 4 (phods), 5 (epzs), 6 (x1), 7 (hex),
  706. * 8 (umh), 9 (iter) [7, 8 are x264 specific, 9 is snow specific]
  707. * - encoding: MUST be set by user.
  708. * - decoding: unused
  709. */
  710. int me_method;
  711. /**
  712. * some codecs need / can use extra-data like huffman tables.
  713. * mjpeg: huffman tables
  714. * rv10: additional flags
  715. * mpeg4: global headers (they can be in the bitstream or here)
  716. * the allocated memory should be FF_INPUT_BUFFER_PADDING_SIZE bytes larger
  717. * then extradata_size to avoid prolems if its read with the bitstream reader
  718. * the bytewise contents of extradata must not depend on the architecture or cpu endianness
  719. * - encoding: set/allocated/freed by lavc.
  720. * - decoding: set/allocated/freed by user.
  721. */
  722. void *extradata;
  723. int extradata_size;
  724. /**
  725. * this is the fundamental unit of time (in seconds) in terms
  726. * of which frame timestamps are represented. for fixed-fps content,
  727. * timebase should be 1/framerate and timestamp increments should be
  728. * identically 1.
  729. * - encoding: MUST be set by user
  730. * - decoding: set by lavc.
  731. */
  732. AVRational time_base;
  733. /* video only */
  734. /**
  735. * picture width / height.
  736. * - encoding: MUST be set by user.
  737. * - decoding: set by lavc.
  738. * Note, for compatibility its possible to set this instead of
  739. * coded_width/height before decoding
  740. */
  741. int width, height;
  742. #define FF_ASPECT_EXTENDED 15
  743. /**
  744. * the number of pictures in a group of pitures, or 0 for intra_only.
  745. * - encoding: set by user.
  746. * - decoding: unused
  747. */
  748. int gop_size;
  749. /**
  750. * pixel format, see PIX_FMT_xxx.
  751. * - encoding: set by user.
  752. * - decoding: set by lavc.
  753. */
  754. enum PixelFormat pix_fmt;
  755. /**
  756. * Frame rate emulation. If not zero lower layer (i.e. format handler)
  757. * has to read frames at native frame rate.
  758. * - encoding: set by user.
  759. * - decoding: unused.
  760. */
  761. int rate_emu;
  762. /**
  763. * if non NULL, 'draw_horiz_band' is called by the libavcodec
  764. * decoder to draw an horizontal band. It improve cache usage. Not
  765. * all codecs can do that. You must check the codec capabilities
  766. * before
  767. * - encoding: unused
  768. * - decoding: set by user.
  769. * @param height the height of the slice
  770. * @param y the y position of the slice
  771. * @param type 1->top field, 2->bottom field, 3->frame
  772. * @param offset offset into the AVFrame.data from which the slice should be read
  773. */
  774. void (*draw_horiz_band)(struct AVCodecContext *s,
  775. const AVFrame *src, int offset[4],
  776. int y, int type, int height);
  777. /* audio only */
  778. int sample_rate; ///< samples per sec
  779. int channels;
  780. /**
  781. * audio sample format.
  782. * - encoding: set by user.
  783. * - decoding: set by lavc.
  784. */
  785. enum SampleFormat sample_fmt; ///< sample format, currenly unused
  786. /* the following data should not be initialized */
  787. /**
  788. * samples per packet. initialized when calling 'init'
  789. */
  790. int frame_size;
  791. int frame_number; ///< audio or video frame number
  792. int real_pict_num; ///< returns the real picture number of previous encoded frame
  793. /**
  794. * number of frames the decoded output will be delayed relative to
  795. * the encoded input.
  796. * - encoding: set by lavc.
  797. * - decoding: unused
  798. */
  799. int delay;
  800. /* - encoding parameters */
  801. float qcompress; ///< amount of qscale change between easy & hard scenes (0.0-1.0)
  802. float qblur; ///< amount of qscale smoothing over time (0.0-1.0)
  803. /**
  804. * minimum quantizer.
  805. * - encoding: set by user.
  806. * - decoding: unused
  807. */
  808. int qmin;
  809. /**
  810. * maximum quantizer.
  811. * - encoding: set by user.
  812. * - decoding: unused
  813. */
  814. int qmax;
  815. /**
  816. * maximum quantizer difference etween frames.
  817. * - encoding: set by user.
  818. * - decoding: unused
  819. */
  820. int max_qdiff;
  821. /**
  822. * maximum number of b frames between non b frames.
  823. * note: the output will be delayed by max_b_frames+1 relative to the input
  824. * - encoding: set by user.
  825. * - decoding: unused
  826. */
  827. int max_b_frames;
  828. /**
  829. * qscale factor between ip and b frames.
  830. * - encoding: set by user.
  831. * - decoding: unused
  832. */
  833. float b_quant_factor;
  834. /** obsolete FIXME remove */
  835. int rc_strategy;
  836. #define FF_RC_STRATEGY_XVID 1
  837. int b_frame_strategy;
  838. /**
  839. * hurry up amount.
  840. * deprecated in favor of skip_idct and skip_frame
  841. * - encoding: unused
  842. * - decoding: set by user. 1-> skip b frames, 2-> skip idct/dequant too, 5-> skip everything except header
  843. */
  844. int hurry_up;
  845. struct AVCodec *codec;
  846. void *priv_data;
  847. /* unused, FIXME remove*/
  848. int rtp_mode;
  849. int rtp_payload_size; /* The size of the RTP payload: the coder will */
  850. /* do it's best to deliver a chunk with size */
  851. /* below rtp_payload_size, the chunk will start */
  852. /* with a start code on some codecs like H.263 */
  853. /* This doesn't take account of any particular */
  854. /* headers inside the transmited RTP payload */
  855. /* The RTP callback: This function is called */
  856. /* every time the encoder has a packet to send */
  857. /* Depends on the encoder if the data starts */
  858. /* with a Start Code (it should) H.263 does. */
  859. /* mb_nb contains the number of macroblocks */
  860. /* encoded in the RTP payload */
  861. void (*rtp_callback)(struct AVCodecContext *avctx, void *data, int size, int mb_nb);
  862. /* statistics, used for 2-pass encoding */
  863. int mv_bits;
  864. int header_bits;
  865. int i_tex_bits;
  866. int p_tex_bits;
  867. int i_count;
  868. int p_count;
  869. int skip_count;
  870. int misc_bits;
  871. /**
  872. * number of bits used for the previously encoded frame.
  873. * - encoding: set by lavc
  874. * - decoding: unused
  875. */
  876. int frame_bits;
  877. /**
  878. * private data of the user, can be used to carry app specific stuff.
  879. * - encoding: set by user
  880. * - decoding: set by user
  881. */
  882. void *opaque;
  883. char codec_name[32];
  884. enum CodecType codec_type; /* see CODEC_TYPE_xxx */
  885. enum CodecID codec_id; /* see CODEC_ID_xxx */
  886. /**
  887. * fourcc (LSB first, so "ABCD" -> ('D'<<24) + ('C'<<16) + ('B'<<8) + 'A').
  888. * this is used to workaround some encoder bugs
  889. * - encoding: set by user, if not then the default based on codec_id will be used
  890. * - decoding: set by user, will be converted to upper case by lavc during init
  891. */
  892. unsigned int codec_tag;
  893. /**
  894. * workaround bugs in encoders which sometimes cannot be detected automatically.
  895. * - encoding: set by user
  896. * - decoding: set by user
  897. */
  898. int workaround_bugs;
  899. #define FF_BUG_AUTODETECT 1 ///< autodetection
  900. #define FF_BUG_OLD_MSMPEG4 2
  901. #define FF_BUG_XVID_ILACE 4
  902. #define FF_BUG_UMP4 8
  903. #define FF_BUG_NO_PADDING 16
  904. #define FF_BUG_AMV 32
  905. #define FF_BUG_AC_VLC 0 ///< will be removed, libavcodec can now handle these non compliant files by default
  906. #define FF_BUG_QPEL_CHROMA 64
  907. #define FF_BUG_STD_QPEL 128
  908. #define FF_BUG_QPEL_CHROMA2 256
  909. #define FF_BUG_DIRECT_BLOCKSIZE 512
  910. #define FF_BUG_EDGE 1024
  911. #define FF_BUG_HPEL_CHROMA 2048
  912. #define FF_BUG_DC_CLIP 4096
  913. #define FF_BUG_MS 8192 ///< workaround various bugs in microsofts broken decoders
  914. //#define FF_BUG_FAKE_SCALABILITY 16 //autodetection should work 100%
  915. /**
  916. * luma single coeff elimination threshold.
  917. * - encoding: set by user
  918. * - decoding: unused
  919. */
  920. int luma_elim_threshold;
  921. /**
  922. * chroma single coeff elimination threshold.
  923. * - encoding: set by user
  924. * - decoding: unused
  925. */
  926. int chroma_elim_threshold;
  927. /**
  928. * strictly follow the std (MPEG4, ...).
  929. * - encoding: set by user
  930. * - decoding: unused
  931. */
  932. int strict_std_compliance;
  933. #define FF_COMPLIANCE_VERY_STRICT 2 ///< strictly conform to a older more strict version of the spec or reference software
  934. #define FF_COMPLIANCE_STRICT 1 ///< strictly conform to all the things in the spec no matter what consequences
  935. #define FF_COMPLIANCE_NORMAL 0
  936. #define FF_COMPLIANCE_INOFFICIAL -1 ///< allow inofficial extensions
  937. #define FF_COMPLIANCE_EXPERIMENTAL -2 ///< allow non standarized experimental things
  938. /**
  939. * qscale offset between ip and b frames.
  940. * if > 0 then the last p frame quantizer will be used (q= lastp_q*factor+offset)
  941. * if < 0 then normal ratecontrol will be done (q= -normal_q*factor+offset)
  942. * - encoding: set by user.
  943. * - decoding: unused
  944. */
  945. float b_quant_offset;
  946. /**
  947. * error resilience higher values will detect more errors but may missdetect
  948. * some more or less valid parts as errors.
  949. * - encoding: unused
  950. * - decoding: set by user
  951. */
  952. int error_resilience;
  953. #define FF_ER_CAREFUL 1
  954. #define FF_ER_COMPLIANT 2
  955. #define FF_ER_AGGRESSIVE 3
  956. #define FF_ER_VERY_AGGRESSIVE 4
  957. /**
  958. * called at the beginning of each frame to get a buffer for it.
  959. * if pic.reference is set then the frame will be read later by lavc
  960. * avcodec_align_dimensions() should be used to find the required width and
  961. * height, as they normally need to be rounded up to the next multiple of 16
  962. * - encoding: unused
  963. * - decoding: set by lavc, user can override
  964. */
  965. int (*get_buffer)(struct AVCodecContext *c, AVFrame *pic);
  966. /**
  967. * called to release buffers which where allocated with get_buffer.
  968. * a released buffer can be reused in get_buffer()
  969. * pic.data[*] must be set to NULL
  970. * - encoding: unused
  971. * - decoding: set by lavc, user can override
  972. */
  973. void (*release_buffer)(struct AVCodecContext *c, AVFrame *pic);
  974. /**
  975. * if 1 the stream has a 1 frame delay during decoding.
  976. * - encoding: set by lavc
  977. * - decoding: set by lavc
  978. */
  979. int has_b_frames;
  980. /**
  981. * number of bytes per packet if constant and known or 0
  982. * used by some WAV based audio codecs
  983. */
  984. int block_align;
  985. int parse_only; /* - decoding only: if true, only parsing is done
  986. (function avcodec_parse_frame()). The frame
  987. data is returned. Only MPEG codecs support this now. */
  988. /**
  989. * 0-> h263 quant 1-> mpeg quant.
  990. * - encoding: set by user.
  991. * - decoding: unused
  992. */
  993. int mpeg_quant;
  994. /**
  995. * pass1 encoding statistics output buffer.
  996. * - encoding: set by lavc
  997. * - decoding: unused
  998. */
  999. char *stats_out;
  1000. /**
  1001. * pass2 encoding statistics input buffer.
  1002. * concatenated stuff from stats_out of pass1 should be placed here
  1003. * - encoding: allocated/set/freed by user
  1004. * - decoding: unused
  1005. */
  1006. char *stats_in;
  1007. /**
  1008. * ratecontrol qmin qmax limiting method.
  1009. * 0-> clipping, 1-> use a nice continous function to limit qscale wthin qmin/qmax
  1010. * - encoding: set by user.
  1011. * - decoding: unused
  1012. */
  1013. float rc_qsquish;
  1014. float rc_qmod_amp;
  1015. int rc_qmod_freq;
  1016. /**
  1017. * ratecontrol override, see RcOverride.
  1018. * - encoding: allocated/set/freed by user.
  1019. * - decoding: unused
  1020. */
  1021. RcOverride *rc_override;
  1022. int rc_override_count;
  1023. /**
  1024. * rate control equation.
  1025. * - encoding: set by user
  1026. * - decoding: unused
  1027. */
  1028. char *rc_eq;
  1029. /**
  1030. * maximum bitrate.
  1031. * - encoding: set by user.
  1032. * - decoding: unused
  1033. */
  1034. int rc_max_rate;
  1035. /**
  1036. * minimum bitrate.
  1037. * - encoding: set by user.
  1038. * - decoding: unused
  1039. */
  1040. int rc_min_rate;
  1041. /**
  1042. * decoder bitstream buffer size.
  1043. * - encoding: set by user.
  1044. * - decoding: unused
  1045. */
  1046. int rc_buffer_size;
  1047. float rc_buffer_aggressivity;
  1048. /**
  1049. * qscale factor between p and i frames.
  1050. * if > 0 then the last p frame quantizer will be used (q= lastp_q*factor+offset)
  1051. * if < 0 then normal ratecontrol will be done (q= -normal_q*factor+offset)
  1052. * - encoding: set by user.
  1053. * - decoding: unused
  1054. */
  1055. float i_quant_factor;
  1056. /**
  1057. * qscale offset between p and i frames.
  1058. * - encoding: set by user.
  1059. * - decoding: unused
  1060. */
  1061. float i_quant_offset;
  1062. /**
  1063. * initial complexity for pass1 ratecontrol.
  1064. * - encoding: set by user.
  1065. * - decoding: unused
  1066. */
  1067. float rc_initial_cplx;
  1068. /**
  1069. * dct algorithm, see FF_DCT_* below.
  1070. * - encoding: set by user
  1071. * - decoding: unused
  1072. */
  1073. int dct_algo;
  1074. #define FF_DCT_AUTO 0
  1075. #define FF_DCT_FASTINT 1
  1076. #define FF_DCT_INT 2
  1077. #define FF_DCT_MMX 3
  1078. #define FF_DCT_MLIB 4
  1079. #define FF_DCT_ALTIVEC 5
  1080. #define FF_DCT_FAAN 6
  1081. /**
  1082. * luminance masking (0-> disabled).
  1083. * - encoding: set by user
  1084. * - decoding: unused
  1085. */
  1086. float lumi_masking;
  1087. /**
  1088. * temporary complexity masking (0-> disabled).
  1089. * - encoding: set by user
  1090. * - decoding: unused
  1091. */
  1092. float temporal_cplx_masking;
  1093. /**
  1094. * spatial complexity masking (0-> disabled).
  1095. * - encoding: set by user
  1096. * - decoding: unused
  1097. */
  1098. float spatial_cplx_masking;
  1099. /**
  1100. * p block masking (0-> disabled).
  1101. * - encoding: set by user
  1102. * - decoding: unused
  1103. */
  1104. float p_masking;
  1105. /**
  1106. * darkness masking (0-> disabled).
  1107. * - encoding: set by user
  1108. * - decoding: unused
  1109. */
  1110. float dark_masking;
  1111. /* for binary compatibility */
  1112. int unused;
  1113. /**
  1114. * idct algorithm, see FF_IDCT_* below.
  1115. * - encoding: set by user
  1116. * - decoding: set by user
  1117. */
  1118. int idct_algo;
  1119. #define FF_IDCT_AUTO 0
  1120. #define FF_IDCT_INT 1
  1121. #define FF_IDCT_SIMPLE 2
  1122. #define FF_IDCT_SIMPLEMMX 3
  1123. #define FF_IDCT_LIBMPEG2MMX 4
  1124. #define FF_IDCT_PS2 5
  1125. #define FF_IDCT_MLIB 6
  1126. #define FF_IDCT_ARM 7
  1127. #define FF_IDCT_ALTIVEC 8
  1128. #define FF_IDCT_SH4 9
  1129. #define FF_IDCT_SIMPLEARM 10
  1130. #define FF_IDCT_H264 11
  1131. #define FF_IDCT_VP3 12
  1132. #define FF_IDCT_IPP 13
  1133. #define FF_IDCT_XVIDMMX 14
  1134. /**
  1135. * slice count.
  1136. * - encoding: set by lavc
  1137. * - decoding: set by user (or 0)
  1138. */
  1139. int slice_count;
  1140. /**
  1141. * slice offsets in the frame in bytes.
  1142. * - encoding: set/allocated by lavc
  1143. * - decoding: set/allocated by user (or NULL)
  1144. */
  1145. int *slice_offset;
  1146. /**
  1147. * error concealment flags.
  1148. * - encoding: unused
  1149. * - decoding: set by user
  1150. */
  1151. int error_concealment;
  1152. #define FF_EC_GUESS_MVS 1
  1153. #define FF_EC_DEBLOCK 2
  1154. /**
  1155. * dsp_mask could be add used to disable unwanted CPU features
  1156. * CPU features (i.e. MMX, SSE. ...)
  1157. *
  1158. * with FORCE flag you may instead enable given CPU features
  1159. * (Dangerous: usable in case of misdetection, improper usage however will
  1160. * result into program crash)
  1161. */
  1162. unsigned dsp_mask;
  1163. #define FF_MM_FORCE 0x80000000 /* force usage of selected flags (OR) */
  1164. /* lower 16 bits - CPU features */
  1165. #ifdef HAVE_MMX
  1166. #define FF_MM_MMX 0x0001 /* standard MMX */
  1167. #define FF_MM_3DNOW 0x0004 /* AMD 3DNOW */
  1168. #define FF_MM_MMXEXT 0x0002 /* SSE integer functions or AMD MMX ext */
  1169. #define FF_MM_SSE 0x0008 /* SSE functions */
  1170. #define FF_MM_SSE2 0x0010 /* PIV SSE2 functions */
  1171. #define FF_MM_3DNOWEXT 0x0020 /* AMD 3DNowExt */
  1172. #endif /* HAVE_MMX */
  1173. #ifdef HAVE_IWMMXT
  1174. #define FF_MM_IWMMXT 0x0100 /* XScale IWMMXT */
  1175. #endif /* HAVE_IWMMXT */
  1176. /**
  1177. * bits per sample/pixel from the demuxer (needed for huffyuv).
  1178. * - encoding: set by lavc
  1179. * - decoding: set by user
  1180. */
  1181. int bits_per_sample;
  1182. /**
  1183. * prediction method (needed for huffyuv).
  1184. * - encoding: set by user
  1185. * - decoding: unused
  1186. */
  1187. int prediction_method;
  1188. #define FF_PRED_LEFT 0
  1189. #define FF_PRED_PLANE 1
  1190. #define FF_PRED_MEDIAN 2
  1191. /**
  1192. * sample aspect ratio (0 if unknown).
  1193. * numerator and denominator must be relative prime and smaller then 256 for some video standards
  1194. * - encoding: set by user.
  1195. * - decoding: set by lavc.
  1196. */
  1197. AVRational sample_aspect_ratio;
  1198. /**
  1199. * the picture in the bitstream.
  1200. * - encoding: set by lavc
  1201. * - decoding: set by lavc
  1202. */
  1203. AVFrame *coded_frame;
  1204. /**
  1205. * debug.
  1206. * - encoding: set by user.
  1207. * - decoding: set by user.
  1208. */
  1209. int debug;
  1210. #define FF_DEBUG_PICT_INFO 1
  1211. #define FF_DEBUG_RC 2
  1212. #define FF_DEBUG_BITSTREAM 4
  1213. #define FF_DEBUG_MB_TYPE 8
  1214. #define FF_DEBUG_QP 16
  1215. #define FF_DEBUG_MV 32
  1216. #define FF_DEBUG_DCT_COEFF 0x00000040
  1217. #define FF_DEBUG_SKIP 0x00000080
  1218. #define FF_DEBUG_STARTCODE 0x00000100
  1219. #define FF_DEBUG_PTS 0x00000200
  1220. #define FF_DEBUG_ER 0x00000400
  1221. #define FF_DEBUG_MMCO 0x00000800
  1222. #define FF_DEBUG_BUGS 0x00001000
  1223. #define FF_DEBUG_VIS_QP 0x00002000
  1224. #define FF_DEBUG_VIS_MB_TYPE 0x00004000
  1225. /**
  1226. * debug.
  1227. * - encoding: set by user.
  1228. * - decoding: set by user.
  1229. */
  1230. int debug_mv;
  1231. #define FF_DEBUG_VIS_MV_P_FOR 0x00000001 //visualize forward predicted MVs of P frames
  1232. #define FF_DEBUG_VIS_MV_B_FOR 0x00000002 //visualize forward predicted MVs of B frames
  1233. #define FF_DEBUG_VIS_MV_B_BACK 0x00000004 //visualize backward predicted MVs of B frames
  1234. /**
  1235. * error.
  1236. * - encoding: set by lavc if flags&CODEC_FLAG_PSNR
  1237. * - decoding: unused
  1238. */
  1239. uint64_t error[4];
  1240. /**
  1241. * minimum MB quantizer.
  1242. * - encoding: unused
  1243. * - decoding: unused
  1244. */
  1245. int mb_qmin;
  1246. /**
  1247. * maximum MB quantizer.
  1248. * - encoding: unused
  1249. * - decoding: unused
  1250. */
  1251. int mb_qmax;
  1252. /**
  1253. * motion estimation compare function.
  1254. * - encoding: set by user.
  1255. * - decoding: unused
  1256. */
  1257. int me_cmp;
  1258. /**
  1259. * subpixel motion estimation compare function.
  1260. * - encoding: set by user.
  1261. * - decoding: unused
  1262. */
  1263. int me_sub_cmp;
  1264. /**
  1265. * macroblock compare function (not supported yet).
  1266. * - encoding: set by user.
  1267. * - decoding: unused
  1268. */
  1269. int mb_cmp;
  1270. /**
  1271. * interlaced dct compare function
  1272. * - encoding: set by user.
  1273. * - decoding: unused
  1274. */
  1275. int ildct_cmp;
  1276. #define FF_CMP_SAD 0
  1277. #define FF_CMP_SSE 1
  1278. #define FF_CMP_SATD 2
  1279. #define FF_CMP_DCT 3
  1280. #define FF_CMP_PSNR 4
  1281. #define FF_CMP_BIT 5
  1282. #define FF_CMP_RD 6
  1283. #define FF_CMP_ZERO 7
  1284. #define FF_CMP_VSAD 8
  1285. #define FF_CMP_VSSE 9
  1286. #define FF_CMP_NSSE 10
  1287. #define FF_CMP_W53 11
  1288. #define FF_CMP_W97 12
  1289. #define FF_CMP_DCTMAX 13
  1290. #define FF_CMP_DCT264 14
  1291. #define FF_CMP_CHROMA 256
  1292. /**
  1293. * ME diamond size & shape.
  1294. * - encoding: set by user.
  1295. * - decoding: unused
  1296. */
  1297. int dia_size;
  1298. /**
  1299. * amount of previous MV predictors (2a+1 x 2a+1 square).
  1300. * - encoding: set by user.
  1301. * - decoding: unused
  1302. */
  1303. int last_predictor_count;
  1304. /**
  1305. * pre pass for motion estimation.
  1306. * - encoding: set by user.
  1307. * - decoding: unused
  1308. */
  1309. int pre_me;
  1310. /**
  1311. * motion estimation pre pass compare function.
  1312. * - encoding: set by user.
  1313. * - decoding: unused
  1314. */
  1315. int me_pre_cmp;
  1316. /**
  1317. * ME pre pass diamond size & shape.
  1318. * - encoding: set by user.
  1319. * - decoding: unused
  1320. */
  1321. int pre_dia_size;
  1322. /**
  1323. * subpel ME quality.
  1324. * - encoding: set by user.
  1325. * - decoding: unused
  1326. */
  1327. int me_subpel_quality;
  1328. /**
  1329. * callback to negotiate the pixelFormat.
  1330. * @param fmt is the list of formats which are supported by the codec,
  1331. * its terminated by -1 as 0 is a valid format, the formats are ordered by quality
  1332. * the first is allways the native one
  1333. * @return the choosen format
  1334. * - encoding: unused
  1335. * - decoding: set by user, if not set then the native format will always be choosen
  1336. */
  1337. enum PixelFormat (*get_format)(struct AVCodecContext *s, const enum PixelFormat * fmt);
  1338. /**
  1339. * DTG active format information (additionnal aspect ratio
  1340. * information only used in DVB MPEG2 transport streams). 0 if
  1341. * not set.
  1342. *
  1343. * - encoding: unused.
  1344. * - decoding: set by decoder
  1345. */
  1346. int dtg_active_format;
  1347. #define FF_DTG_AFD_SAME 8
  1348. #define FF_DTG_AFD_4_3 9
  1349. #define FF_DTG_AFD_16_9 10
  1350. #define FF_DTG_AFD_14_9 11
  1351. #define FF_DTG_AFD_4_3_SP_14_9 13
  1352. #define FF_DTG_AFD_16_9_SP_14_9 14
  1353. #define FF_DTG_AFD_SP_4_3 15
  1354. /**
  1355. * Maximum motion estimation search range in subpel units.
  1356. * if 0 then no limit
  1357. *
  1358. * - encoding: set by user.
  1359. * - decoding: unused.
  1360. */
  1361. int me_range;
  1362. /**
  1363. * intra quantizer bias.
  1364. * - encoding: set by user.
  1365. * - decoding: unused
  1366. */
  1367. int intra_quant_bias;
  1368. #define FF_DEFAULT_QUANT_BIAS 999999
  1369. /**
  1370. * inter quantizer bias.
  1371. * - encoding: set by user.
  1372. * - decoding: unused
  1373. */
  1374. int inter_quant_bias;
  1375. /**
  1376. * color table ID.
  1377. * - encoding: unused.
  1378. * - decoding: which clrtable should be used for 8bit RGB images
  1379. * table have to be stored somewhere FIXME
  1380. */
  1381. int color_table_id;
  1382. /**
  1383. * internal_buffer count.
  1384. * Don't touch, used by lavc default_get_buffer()
  1385. */
  1386. int internal_buffer_count;
  1387. /**
  1388. * internal_buffers.
  1389. * Don't touch, used by lavc default_get_buffer()
  1390. */
  1391. void *internal_buffer;
  1392. #define FF_LAMBDA_SHIFT 7
  1393. #define FF_LAMBDA_SCALE (1<<FF_LAMBDA_SHIFT)
  1394. #define FF_QP2LAMBDA 118 ///< factor to convert from H.263 QP to lambda
  1395. #define FF_LAMBDA_MAX (256*128-1)
  1396. #define FF_QUALITY_SCALE FF_LAMBDA_SCALE //FIXME maybe remove
  1397. /**
  1398. * global quality for codecs which cannot change it per frame.
  1399. * this should be proportional to MPEG1/2/4 qscale.
  1400. * - encoding: set by user.
  1401. * - decoding: unused
  1402. */
  1403. int global_quality;
  1404. #define FF_CODER_TYPE_VLC 0
  1405. #define FF_CODER_TYPE_AC 1
  1406. /**
  1407. * coder type
  1408. * - encoding: set by user.
  1409. * - decoding: unused
  1410. */
  1411. int coder_type;
  1412. /**
  1413. * context model
  1414. * - encoding: set by user.
  1415. * - decoding: unused
  1416. */
  1417. int context_model;
  1418. #if 0
  1419. /**
  1420. *
  1421. * - encoding: unused
  1422. * - decoding: set by user.
  1423. */
  1424. uint8_t * (*realloc)(struct AVCodecContext *s, uint8_t *buf, int buf_size);
  1425. #endif
  1426. /**
  1427. * slice flags
  1428. * - encoding: unused
  1429. * - decoding: set by user.
  1430. */
  1431. int slice_flags;
  1432. #define SLICE_FLAG_CODED_ORDER 0x0001 ///< draw_horiz_band() is called in coded order instead of display
  1433. #define SLICE_FLAG_ALLOW_FIELD 0x0002 ///< allow draw_horiz_band() with field slices (MPEG2 field pics)
  1434. #define SLICE_FLAG_ALLOW_PLANE 0x0004 ///< allow draw_horiz_band() with 1 component at a time (SVQ1)
  1435. /**
  1436. * XVideo Motion Acceleration
  1437. * - encoding: forbidden
  1438. * - decoding: set by decoder
  1439. */
  1440. int xvmc_acceleration;
  1441. /**
  1442. * macroblock decision mode
  1443. * - encoding: set by user.
  1444. * - decoding: unused
  1445. */
  1446. int mb_decision;
  1447. #define FF_MB_DECISION_SIMPLE 0 ///< uses mb_cmp
  1448. #define FF_MB_DECISION_BITS 1 ///< chooses the one which needs the fewest bits
  1449. #define FF_MB_DECISION_RD 2 ///< rate distoration
  1450. /**
  1451. * custom intra quantization matrix
  1452. * - encoding: set by user, can be NULL
  1453. * - decoding: set by lavc
  1454. */
  1455. uint16_t *intra_matrix;
  1456. /**
  1457. * custom inter quantization matrix
  1458. * - encoding: set by user, can be NULL
  1459. * - decoding: set by lavc
  1460. */
  1461. uint16_t *inter_matrix;
  1462. /**
  1463. * fourcc from the AVI stream header (LSB first, so "ABCD" -> ('D'<<24) + ('C'<<16) + ('B'<<8) + 'A').
  1464. * this is used to workaround some encoder bugs
  1465. * - encoding: unused
  1466. * - decoding: set by user, will be converted to upper case by lavc during init
  1467. */
  1468. unsigned int stream_codec_tag;
  1469. /**
  1470. * scene change detection threshold.
  1471. * 0 is default, larger means fewer detected scene changes
  1472. * - encoding: set by user.
  1473. * - decoding: unused
  1474. */
  1475. int scenechange_threshold;
  1476. /**
  1477. * minimum lagrange multipler
  1478. * - encoding: set by user.
  1479. * - decoding: unused
  1480. */
  1481. int lmin;
  1482. /**
  1483. * maximum lagrange multipler
  1484. * - encoding: set by user.
  1485. * - decoding: unused
  1486. */
  1487. int lmax;
  1488. /**
  1489. * Palette control structure
  1490. * - encoding: ??? (no palette-enabled encoder yet)
  1491. * - decoding: set by user.
  1492. */
  1493. struct AVPaletteControl *palctrl;
  1494. /**
  1495. * noise reduction strength
  1496. * - encoding: set by user.
  1497. * - decoding: unused
  1498. */
  1499. int noise_reduction;
  1500. /**
  1501. * called at the beginning of a frame to get cr buffer for it.
  1502. * buffer type (size, hints) must be the same. lavc won't check it.
  1503. * lavc will pass previous buffer in pic, function should return
  1504. * same buffer or new buffer with old frame "painted" into it.
  1505. * if pic.data[0] == NULL must behave like get_buffer().
  1506. * - encoding: unused
  1507. * - decoding: set by lavc, user can override
  1508. */
  1509. int (*reget_buffer)(struct AVCodecContext *c, AVFrame *pic);
  1510. /**
  1511. * number of bits which should be loaded into the rc buffer before decoding starts
  1512. * - encoding: set by user.
  1513. * - decoding: unused
  1514. */
  1515. int rc_initial_buffer_occupancy;
  1516. /**
  1517. *
  1518. * - encoding: set by user.
  1519. * - decoding: unused
  1520. */
  1521. int inter_threshold;
  1522. /**
  1523. * CODEC_FLAG2_*.
  1524. * - encoding: set by user.
  1525. * - decoding: set by user.
  1526. */
  1527. int flags2;
  1528. /**
  1529. * simulates errors in the bitstream to test error concealment.
  1530. * - encoding: set by user.
  1531. * - decoding: unused.
  1532. */
  1533. int error_rate;
  1534. /**
  1535. * MP3 antialias algorithm, see FF_AA_* below.
  1536. * - encoding: unused
  1537. * - decoding: set by user
  1538. */
  1539. int antialias_algo;
  1540. #define FF_AA_AUTO 0
  1541. #define FF_AA_FASTINT 1 //not implemented yet
  1542. #define FF_AA_INT 2
  1543. #define FF_AA_FLOAT 3
  1544. /**
  1545. * Quantizer noise shaping.
  1546. * - encoding: set by user
  1547. * - decoding: unused
  1548. */
  1549. int quantizer_noise_shaping;
  1550. /**
  1551. * Thread count.
  1552. * is used to decide how many independant tasks should be passed to execute()
  1553. * - encoding: set by user
  1554. * - decoding: set by user
  1555. */
  1556. int thread_count;
  1557. /**
  1558. * the codec may call this to execute several independant things. it will return only after
  1559. * finishing all tasks, the user may replace this with some multithreaded implementation, the
  1560. * default implementation will execute the parts serially
  1561. * @param count the number of things to execute
  1562. * - encoding: set by lavc, user can override
  1563. * - decoding: set by lavc, user can override
  1564. */
  1565. int (*execute)(struct AVCodecContext *c, int (*func)(struct AVCodecContext *c2, void *arg), void **arg2, int *ret, int count);
  1566. /**
  1567. * Thread opaque.
  1568. * can be used by execute() to store some per AVCodecContext stuff.
  1569. * - encoding: set by execute()
  1570. * - decoding: set by execute()
  1571. */
  1572. void *thread_opaque;
  1573. /**
  1574. * Motion estimation threshold. under which no motion estimation is
  1575. * performed, but instead the user specified motion vectors are used
  1576. *
  1577. * - encoding: set by user
  1578. * - decoding: unused
  1579. */
  1580. int me_threshold;
  1581. /**
  1582. * Macroblock threshold. under which the user specified macroblock types will be used
  1583. * - encoding: set by user
  1584. * - decoding: unused
  1585. */
  1586. int mb_threshold;
  1587. /**
  1588. * precision of the intra dc coefficient - 8.
  1589. * - encoding: set by user
  1590. * - decoding: unused
  1591. */
  1592. int intra_dc_precision;
  1593. /**
  1594. * noise vs. sse weight for the nsse comparsion function.
  1595. * - encoding: set by user
  1596. * - decoding: unused
  1597. */
  1598. int nsse_weight;
  1599. /**
  1600. * number of macroblock rows at the top which are skipped.
  1601. * - encoding: unused
  1602. * - decoding: set by user
  1603. */
  1604. int skip_top;
  1605. /**
  1606. * number of macroblock rows at the bottom which are skipped.
  1607. * - encoding: unused
  1608. * - decoding: set by user
  1609. */
  1610. int skip_bottom;
  1611. /**
  1612. * profile
  1613. * - encoding: set by user
  1614. * - decoding: set by lavc
  1615. */
  1616. int profile;
  1617. #define FF_PROFILE_UNKNOWN -99
  1618. /**
  1619. * level
  1620. * - encoding: set by user
  1621. * - decoding: set by lavc
  1622. */
  1623. int level;
  1624. #define FF_LEVEL_UNKNOWN -99
  1625. /**
  1626. * low resolution decoding. 1-> 1/2 size, 2->1/4 size
  1627. * - encoding: unused
  1628. * - decoding: set by user
  1629. */
  1630. int lowres;
  1631. /**
  1632. * bitsream width / height. may be different from width/height if lowres
  1633. * or other things are used
  1634. * - encoding: unused
  1635. * - decoding: set by user before init if known, codec should override / dynamically change if needed
  1636. */
  1637. int coded_width, coded_height;
  1638. /**
  1639. * frame skip threshold
  1640. * - encoding: set by user
  1641. * - decoding: unused
  1642. */
  1643. int frame_skip_threshold;
  1644. /**
  1645. * frame skip factor
  1646. * - encoding: set by user
  1647. * - decoding: unused
  1648. */
  1649. int frame_skip_factor;
  1650. /**
  1651. * frame skip exponent
  1652. * - encoding: set by user
  1653. * - decoding: unused
  1654. */
  1655. int frame_skip_exp;
  1656. /**
  1657. * frame skip comparission function
  1658. * - encoding: set by user.
  1659. * - decoding: unused
  1660. */
  1661. int frame_skip_cmp;
  1662. /**
  1663. * border processing masking. raises the quantizer for mbs on the borders
  1664. * of the picture.
  1665. * - encoding: set by user
  1666. * - decoding: unused
  1667. */
  1668. float border_masking;
  1669. /**
  1670. * minimum MB lagrange multipler.
  1671. * - encoding: set by user.
  1672. * - decoding: unused
  1673. */
  1674. int mb_lmin;
  1675. /**
  1676. * maximum MB lagrange multipler.
  1677. * - encoding: set by user.
  1678. * - decoding: unused
  1679. */
  1680. int mb_lmax;
  1681. /**
  1682. *
  1683. * - encoding: set by user.
  1684. * - decoding: unused
  1685. */
  1686. int me_penalty_compensation;
  1687. /**
  1688. *
  1689. * - encoding: unused
  1690. * - decoding: set by user.
  1691. */
  1692. enum AVDiscard skip_loop_filter;
  1693. /**
  1694. *
  1695. * - encoding: unused
  1696. * - decoding: set by user.
  1697. */
  1698. enum AVDiscard skip_idct;
  1699. /**
  1700. *
  1701. * - encoding: unused
  1702. * - decoding: set by user.
  1703. */
  1704. enum AVDiscard skip_frame;
  1705. /**
  1706. *
  1707. * - encoding: set by user.
  1708. * - decoding: unused
  1709. */
  1710. int bidir_refine;
  1711. /**
  1712. *
  1713. * - encoding: set by user.
  1714. * - decoding: unused
  1715. */
  1716. int brd_scale;
  1717. /**
  1718. * constant rate factor - quality-based VBR - values ~correspond to qps
  1719. * - encoding: set by user.
  1720. * - decoding: unused
  1721. */
  1722. int crf;
  1723. /**
  1724. * constant quantization parameter rate control method
  1725. * - encoding: set by user.
  1726. * - decoding: unused
  1727. */
  1728. int cqp;
  1729. /**
  1730. * minimum gop size
  1731. * - encoding: set by user.
  1732. * - decoding: unused
  1733. */
  1734. int keyint_min;
  1735. /**
  1736. * number of reference frames
  1737. * - encoding: set by user.
  1738. * - decoding: unused
  1739. */
  1740. int refs;
  1741. /**
  1742. * chroma qp offset from luma
  1743. * - encoding: set by user.
  1744. * - decoding: unused
  1745. */
  1746. int chromaoffset;
  1747. /**
  1748. * influences how often b-frames are used
  1749. * - encoding: set by user.
  1750. * - decoding: unused
  1751. */
  1752. int bframebias;
  1753. /**
  1754. * trellis RD quantization
  1755. * - encoding: set by user.
  1756. * - decoding: unused
  1757. */
  1758. int trellis;
  1759. /**
  1760. * reduce fluctuations in qp (before curve compression)
  1761. * - encoding: set by user.
  1762. * - decoding: unused
  1763. */
  1764. float complexityblur;
  1765. /**
  1766. * in-loop deblocking filter alphac0 parameter
  1767. * alpha is in the range -6...6
  1768. * - encoding: set by user.
  1769. * - decoding: unused
  1770. */
  1771. int deblockalpha;
  1772. /**
  1773. * in-loop deblocking filter beta parameter
  1774. * beta is in the range -6...6
  1775. * - encoding: set by user.
  1776. * - decoding: unused
  1777. */
  1778. int deblockbeta;
  1779. /**
  1780. * macroblock subpartition sizes to consider - p8x8, p4x4, b8x8, i8x8, i4x4
  1781. * - encoding: set by user.
  1782. * - decoding: unused
  1783. */
  1784. int partitions;
  1785. #define X264_PART_I4X4 0x001 /* Analyse i4x4 */
  1786. #define X264_PART_I8X8 0x002 /* Analyse i8x8 (requires 8x8 transform) */
  1787. #define X264_PART_P8X8 0x010 /* Analyse p16x8, p8x16 and p8x8 */
  1788. #define X264_PART_P4X4 0x020 /* Analyse p8x4, p4x8, p4x4 */
  1789. #define X264_PART_B8X8 0x100 /* Analyse b16x8, b8x16 and b8x8 */
  1790. /**
  1791. * direct mv prediction mode - 0 (none), 1 (spatial), 2 (temporal)
  1792. * - encoding: set by user.
  1793. * - decoding: unused
  1794. */
  1795. int directpred;
  1796. /**
  1797. * audio cutoff bandwidth (0 means "automatic") . Currently used only by FAAC
  1798. * - encoding: set by user.
  1799. * - decoding: unused
  1800. */
  1801. int cutoff;
  1802. /**
  1803. * multiplied by qscale for each frame and added to scene_change_score
  1804. * - encoding: set by user.
  1805. * - decoding: unused
  1806. */
  1807. int scenechange_factor;
  1808. } AVCodecContext;
  1809. /**
  1810. * AVCodec.
  1811. */
  1812. typedef struct AVCodec {
  1813. const char *name;
  1814. enum CodecType type;
  1815. enum CodecID id;
  1816. int priv_data_size;
  1817. int (*init)(AVCodecContext *);
  1818. int (*encode)(AVCodecContext *, uint8_t *buf, int buf_size, void *data);
  1819. int (*close)(AVCodecContext *);
  1820. int (*decode)(AVCodecContext *, void *outdata, int *outdata_size,
  1821. uint8_t *buf, int buf_size);
  1822. int capabilities;
  1823. #if LIBAVCODEC_VERSION_INT < ((50<<16)+(0<<8)+0)
  1824. void *dummy; // FIXME remove next time we break binary compatibility
  1825. #endif
  1826. struct AVCodec *next;
  1827. void (*flush)(AVCodecContext *);
  1828. const AVRational *supported_framerates; ///array of supported framerates, or NULL if any, array is terminated by {0,0}
  1829. const enum PixelFormat *pix_fmts; ///array of supported pixel formats, or NULL if unknown, array is terminanted by -1
  1830. } AVCodec;
  1831. /**
  1832. * four components are given, that's all.
  1833. * the last component is alpha
  1834. */
  1835. typedef struct AVPicture {
  1836. uint8_t *data[4];
  1837. int linesize[4]; ///< number of bytes per line
  1838. } AVPicture;
  1839. /**
  1840. * AVPaletteControl
  1841. * This structure defines a method for communicating palette changes
  1842. * between and demuxer and a decoder.
  1843. */
  1844. #define AVPALETTE_SIZE 1024
  1845. #define AVPALETTE_COUNT 256
  1846. typedef struct AVPaletteControl {
  1847. /* demuxer sets this to 1 to indicate the palette has changed;
  1848. * decoder resets to 0 */
  1849. int palette_changed;
  1850. /* 4-byte ARGB palette entries, stored in native byte order; note that
  1851. * the individual palette components should be on a 8-bit scale; if
  1852. * the palette data comes from a IBM VGA native format, the component
  1853. * data is probably 6 bits in size and needs to be scaled */
  1854. unsigned int palette[AVPALETTE_COUNT];
  1855. } AVPaletteControl;
  1856. typedef struct AVSubtitleRect {
  1857. uint16_t x;
  1858. uint16_t y;
  1859. uint16_t w;
  1860. uint16_t h;
  1861. uint16_t nb_colors;
  1862. int linesize;
  1863. uint32_t *rgba_palette;
  1864. uint8_t *bitmap;
  1865. } AVSubtitleRect;
  1866. typedef struct AVSubtitle {
  1867. uint16_t format; /* 0 = graphics */
  1868. uint32_t start_display_time; /* relative to packet pts, in ms */
  1869. uint32_t end_display_time; /* relative to packet pts, in ms */
  1870. uint32_t num_rects;
  1871. AVSubtitleRect *rects;
  1872. } AVSubtitle;
  1873. extern AVCodec ac3_encoder;
  1874. extern AVCodec mp2_encoder;
  1875. extern AVCodec mp3lame_encoder;
  1876. extern AVCodec oggvorbis_encoder;
  1877. extern AVCodec oggtheora_encoder;
  1878. extern AVCodec faac_encoder;
  1879. extern AVCodec xvid_encoder;
  1880. extern AVCodec mpeg1video_encoder;
  1881. extern AVCodec mpeg2video_encoder;
  1882. extern AVCodec h261_encoder;
  1883. extern AVCodec h263_encoder;
  1884. extern AVCodec h263p_encoder;
  1885. extern AVCodec flv_encoder;
  1886. extern AVCodec rv10_encoder;
  1887. extern AVCodec rv20_encoder;
  1888. extern AVCodec dvvideo_encoder;
  1889. extern AVCodec mjpeg_encoder;
  1890. extern AVCodec ljpeg_encoder;
  1891. extern AVCodec jpegls_encoder;
  1892. extern AVCodec png_encoder;
  1893. extern AVCodec ppm_encoder;
  1894. extern AVCodec pgm_encoder;
  1895. extern AVCodec pgmyuv_encoder;
  1896. extern AVCodec pbm_encoder;
  1897. extern AVCodec pam_encoder;
  1898. extern AVCodec mpeg4_encoder;
  1899. extern AVCodec msmpeg4v1_encoder;
  1900. extern AVCodec msmpeg4v2_encoder;
  1901. extern AVCodec msmpeg4v3_encoder;
  1902. extern AVCodec wmv1_encoder;
  1903. extern AVCodec wmv2_encoder;
  1904. extern AVCodec huffyuv_encoder;
  1905. extern AVCodec ffvhuff_encoder;
  1906. extern AVCodec h264_encoder;
  1907. extern AVCodec asv1_encoder;
  1908. extern AVCodec asv2_encoder;
  1909. extern AVCodec vcr1_encoder;
  1910. extern AVCodec ffv1_encoder;
  1911. extern AVCodec snow_encoder;
  1912. extern AVCodec mdec_encoder;
  1913. extern AVCodec zlib_encoder;
  1914. extern AVCodec sonic_encoder;
  1915. extern AVCodec sonic_ls_encoder;
  1916. extern AVCodec svq1_encoder;
  1917. extern AVCodec x264_encoder;
  1918. extern AVCodec h263_decoder;
  1919. extern AVCodec h261_decoder;
  1920. extern AVCodec mpeg4_decoder;
  1921. extern AVCodec msmpeg4v1_decoder;
  1922. extern AVCodec msmpeg4v2_decoder;
  1923. extern AVCodec msmpeg4v3_decoder;
  1924. extern AVCodec wmv1_decoder;
  1925. extern AVCodec wmv2_decoder;
  1926. extern AVCodec vc9_decoder;
  1927. extern AVCodec wmv3_decoder;
  1928. extern AVCodec mpeg1video_decoder;
  1929. extern AVCodec mpeg2video_decoder;
  1930. extern AVCodec mpegvideo_decoder;
  1931. extern AVCodec mpeg_xvmc_decoder;
  1932. extern AVCodec h263i_decoder;
  1933. extern AVCodec flv_decoder;
  1934. extern AVCodec rv10_decoder;
  1935. extern AVCodec rv20_decoder;
  1936. extern AVCodec rv30_decoder;
  1937. extern AVCodec rv40_decoder;
  1938. extern AVCodec svq1_decoder;
  1939. extern AVCodec svq3_decoder;
  1940. extern AVCodec dvvideo_decoder;
  1941. extern AVCodec wmav1_decoder;
  1942. extern AVCodec wmav2_decoder;
  1943. extern AVCodec mjpeg_decoder;
  1944. extern AVCodec mjpegb_decoder;
  1945. extern AVCodec sp5x_decoder;
  1946. extern AVCodec png_decoder;
  1947. extern AVCodec mp2_decoder;
  1948. extern AVCodec mp3_decoder;
  1949. extern AVCodec mp3adu_decoder;
  1950. extern AVCodec mp3on4_decoder;
  1951. extern AVCodec qdm2_decoder;
  1952. extern AVCodec cook_decoder;
  1953. extern AVCodec truespeech_decoder;
  1954. extern AVCodec tta_decoder;
  1955. extern AVCodec mace3_decoder;
  1956. extern AVCodec mace6_decoder;
  1957. extern AVCodec huffyuv_decoder;
  1958. extern AVCodec ffvhuff_decoder;
  1959. extern AVCodec oggvorbis_decoder;
  1960. extern AVCodec oggtheora_decoder;
  1961. extern AVCodec cyuv_decoder;
  1962. extern AVCodec h264_decoder;
  1963. extern AVCodec indeo3_decoder;
  1964. extern AVCodec vp3_decoder;
  1965. extern AVCodec theora_decoder;
  1966. extern AVCodec amr_nb_decoder;
  1967. extern AVCodec amr_nb_encoder;
  1968. extern AVCodec amr_wb_encoder;
  1969. extern AVCodec amr_wb_decoder;
  1970. extern AVCodec aac_decoder;
  1971. extern AVCodec mpeg4aac_decoder;
  1972. extern AVCodec asv1_decoder;
  1973. extern AVCodec asv2_decoder;
  1974. extern AVCodec vcr1_decoder;
  1975. extern AVCodec cljr_decoder;
  1976. extern AVCodec ffv1_decoder;
  1977. extern AVCodec snow_decoder;
  1978. extern AVCodec fourxm_decoder;
  1979. extern AVCodec mdec_decoder;
  1980. extern AVCodec roq_decoder;
  1981. extern AVCodec interplay_video_decoder;
  1982. extern AVCodec xan_wc3_decoder;
  1983. extern AVCodec rpza_decoder;
  1984. extern AVCodec cinepak_decoder;
  1985. extern AVCodec msrle_decoder;
  1986. extern AVCodec msvideo1_decoder;
  1987. extern AVCodec vqa_decoder;
  1988. extern AVCodec idcin_decoder;
  1989. extern AVCodec eightbps_decoder;
  1990. extern AVCodec smc_decoder;
  1991. extern AVCodec flic_decoder;
  1992. extern AVCodec vmdvideo_decoder;
  1993. extern AVCodec vmdaudio_decoder;
  1994. extern AVCodec truemotion1_decoder;
  1995. extern AVCodec truemotion2_decoder;
  1996. extern AVCodec mszh_decoder;
  1997. extern AVCodec zlib_decoder;
  1998. extern AVCodec ra_144_decoder;
  1999. extern AVCodec ra_288_decoder;
  2000. extern AVCodec roq_dpcm_decoder;
  2001. extern AVCodec interplay_dpcm_decoder;
  2002. extern AVCodec xan_dpcm_decoder;
  2003. extern AVCodec sol_dpcm_decoder;
  2004. extern AVCodec sonic_decoder;
  2005. extern AVCodec qtrle_decoder;
  2006. extern AVCodec flac_decoder;
  2007. extern AVCodec tscc_decoder;
  2008. extern AVCodec cscd_decoder;
  2009. extern AVCodec nuv_decoder;
  2010. extern AVCodec ulti_decoder;
  2011. extern AVCodec qdraw_decoder;
  2012. extern AVCodec xl_decoder;
  2013. extern AVCodec qpeg_decoder;
  2014. extern AVCodec shorten_decoder;
  2015. extern AVCodec loco_decoder;
  2016. extern AVCodec wnv1_decoder;
  2017. extern AVCodec aasc_decoder;
  2018. extern AVCodec alac_decoder;
  2019. extern AVCodec ws_snd1_decoder;
  2020. extern AVCodec indeo2_decoder;
  2021. extern AVCodec vorbis_decoder;
  2022. extern AVCodec fraps_decoder;
  2023. extern AVCodec libgsm_encoder;
  2024. extern AVCodec libgsm_decoder;
  2025. extern AVCodec bmp_decoder;
  2026. extern AVCodec mmvideo_decoder;
  2027. extern AVCodec zmbv_decoder;
  2028. extern AVCodec avs_decoder;
  2029. extern AVCodec smacker_decoder;
  2030. extern AVCodec smackaud_decoder;
  2031. /* pcm codecs */
  2032. #define PCM_CODEC(id, name) \
  2033. extern AVCodec name ## _decoder; \
  2034. extern AVCodec name ## _encoder
  2035. PCM_CODEC(CODEC_ID_PCM_S32LE, pcm_s32le);
  2036. PCM_CODEC(CODEC_ID_PCM_S32BE, pcm_s32be);
  2037. PCM_CODEC(CODEC_ID_PCM_U32LE, pcm_u32le);
  2038. PCM_CODEC(CODEC_ID_PCM_U32BE, pcm_u32be);
  2039. PCM_CODEC(CODEC_ID_PCM_S24LE, pcm_s24le);
  2040. PCM_CODEC(CODEC_ID_PCM_S24BE, pcm_s24be);
  2041. PCM_CODEC(CODEC_ID_PCM_U24LE, pcm_u24le);
  2042. PCM_CODEC(CODEC_ID_PCM_U24BE, pcm_u24be);
  2043. PCM_CODEC(CODEC_ID_PCM_S24DAUD, pcm_s24daud);
  2044. PCM_CODEC(CODEC_ID_PCM_S16LE, pcm_s16le);
  2045. PCM_CODEC(CODEC_ID_PCM_S16BE, pcm_s16be);
  2046. PCM_CODEC(CODEC_ID_PCM_U16LE, pcm_u16le);
  2047. PCM_CODEC(CODEC_ID_PCM_U16BE, pcm_u16be);
  2048. PCM_CODEC(CODEC_ID_PCM_S8, pcm_s8);
  2049. PCM_CODEC(CODEC_ID_PCM_U8, pcm_u8);
  2050. PCM_CODEC(CODEC_ID_PCM_ALAW, pcm_alaw);
  2051. PCM_CODEC(CODEC_ID_PCM_MULAW, pcm_mulaw);
  2052. /* adpcm codecs */
  2053. PCM_CODEC(CODEC_ID_ADPCM_IMA_QT, adpcm_ima_qt);
  2054. PCM_CODEC(CODEC_ID_ADPCM_IMA_WAV, adpcm_ima_wav);
  2055. PCM_CODEC(CODEC_ID_ADPCM_IMA_DK3, adpcm_ima_dk3);
  2056. PCM_CODEC(CODEC_ID_ADPCM_IMA_DK4, adpcm_ima_dk4);
  2057. PCM_CODEC(CODEC_ID_ADPCM_IMA_WS, adpcm_ima_ws);
  2058. PCM_CODEC(CODEC_ID_ADPCM_SMJPEG, adpcm_ima_smjpeg);
  2059. PCM_CODEC(CODEC_ID_ADPCM_MS, adpcm_ms);
  2060. PCM_CODEC(CODEC_ID_ADPCM_4XM, adpcm_4xm);
  2061. PCM_CODEC(CODEC_ID_ADPCM_XA, adpcm_xa);
  2062. PCM_CODEC(CODEC_ID_ADPCM_ADX, adpcm_adx);
  2063. PCM_CODEC(CODEC_ID_ADPCM_EA, adpcm_ea);
  2064. PCM_CODEC(CODEC_ID_ADPCM_G726, adpcm_g726);
  2065. PCM_CODEC(CODEC_ID_ADPCM_CT, adpcm_ct);
  2066. PCM_CODEC(CODEC_ID_ADPCM_SWF, adpcm_swf);
  2067. PCM_CODEC(CODEC_ID_ADPCM_YAMAHA, adpcm_yamaha);
  2068. PCM_CODEC(CODEC_ID_ADPCM_SBPRO_4, adpcm_sbpro_4);
  2069. PCM_CODEC(CODEC_ID_ADPCM_SBPRO_3, adpcm_sbpro_3);
  2070. PCM_CODEC(CODEC_ID_ADPCM_SBPRO_2, adpcm_sbpro_2);
  2071. #undef PCM_CODEC
  2072. /* dummy raw video codec */
  2073. extern AVCodec rawvideo_encoder;
  2074. extern AVCodec rawvideo_decoder;
  2075. /* the following codecs use external GPL libs */
  2076. extern AVCodec ac3_decoder;
  2077. extern AVCodec dts_decoder;
  2078. /* subtitles */
  2079. extern AVCodec dvdsub_encoder;
  2080. extern AVCodec dvdsub_decoder;
  2081. extern AVCodec dvbsub_encoder;
  2082. extern AVCodec dvbsub_decoder;
  2083. /* resample.c */
  2084. struct ReSampleContext;
  2085. struct AVResampleContext;
  2086. typedef struct ReSampleContext ReSampleContext;
  2087. ReSampleContext *audio_resample_init(int output_channels, int input_channels,
  2088. int output_rate, int input_rate);
  2089. int audio_resample(ReSampleContext *s, short *output, short *input, int nb_samples);
  2090. void audio_resample_close(ReSampleContext *s);
  2091. struct AVResampleContext *av_resample_init(int out_rate, int in_rate, int filter_length, int log2_phase_count, int linear, double cutoff);
  2092. int av_resample(struct AVResampleContext *c, short *dst, short *src, int *consumed, int src_size, int dst_size, int update_ctx);
  2093. void av_resample_compensate(struct AVResampleContext *c, int sample_delta, int compensation_distance);
  2094. void av_resample_close(struct AVResampleContext *c);
  2095. /* YUV420 format is assumed ! */
  2096. struct ImgReSampleContext;
  2097. typedef struct ImgReSampleContext ImgReSampleContext;
  2098. ImgReSampleContext *img_resample_init(int output_width, int output_height,
  2099. int input_width, int input_height);
  2100. ImgReSampleContext *img_resample_full_init(int owidth, int oheight,
  2101. int iwidth, int iheight,
  2102. int topBand, int bottomBand,
  2103. int leftBand, int rightBand,
  2104. int padtop, int padbottom,
  2105. int padleft, int padright);
  2106. void img_resample(ImgReSampleContext *s,
  2107. AVPicture *output, const AVPicture *input);
  2108. void img_resample_close(ImgReSampleContext *s);
  2109. /**
  2110. * Allocate memory for a picture. Call avpicture_free to free it.
  2111. *
  2112. * @param picture the picture to be filled in.
  2113. * @param pix_fmt the format of the picture.
  2114. * @param width the width of the picture.
  2115. * @param height the height of the picture.
  2116. * @return 0 if successful, -1 if not.
  2117. */
  2118. int avpicture_alloc(AVPicture *picture, int pix_fmt, int width, int height);
  2119. /* Free a picture previously allocated by avpicture_alloc. */
  2120. void avpicture_free(AVPicture *picture);
  2121. int avpicture_fill(AVPicture *picture, uint8_t *ptr,
  2122. int pix_fmt, int width, int height);
  2123. int avpicture_layout(const AVPicture* src, int pix_fmt, int width, int height,
  2124. unsigned char *dest, int dest_size);
  2125. int avpicture_get_size(int pix_fmt, int width, int height);
  2126. void avcodec_get_chroma_sub_sample(int pix_fmt, int *h_shift, int *v_shift);
  2127. const char *avcodec_get_pix_fmt_name(int pix_fmt);
  2128. void avcodec_set_dimensions(AVCodecContext *s, int width, int height);
  2129. enum PixelFormat avcodec_get_pix_fmt(const char* name);
  2130. unsigned int avcodec_pix_fmt_to_codec_tag(enum PixelFormat p);
  2131. #define FF_LOSS_RESOLUTION 0x0001 /* loss due to resolution change */
  2132. #define FF_LOSS_DEPTH 0x0002 /* loss due to color depth change */
  2133. #define FF_LOSS_COLORSPACE 0x0004 /* loss due to color space conversion */
  2134. #define FF_LOSS_ALPHA 0x0008 /* loss of alpha bits */
  2135. #define FF_LOSS_COLORQUANT 0x0010 /* loss due to color quantization */
  2136. #define FF_LOSS_CHROMA 0x0020 /* loss of chroma (e.g. rgb to gray conversion) */
  2137. int avcodec_get_pix_fmt_loss(int dst_pix_fmt, int src_pix_fmt,
  2138. int has_alpha);
  2139. int avcodec_find_best_pix_fmt(int pix_fmt_mask, int src_pix_fmt,
  2140. int has_alpha, int *loss_ptr);
  2141. #define FF_ALPHA_TRANSP 0x0001 /* image has some totally transparent pixels */
  2142. #define FF_ALPHA_SEMI_TRANSP 0x0002 /* image has some transparent pixels */
  2143. int img_get_alpha_info(const AVPicture *src,
  2144. int pix_fmt, int width, int height);
  2145. /* convert among pixel formats */
  2146. int img_convert(AVPicture *dst, int dst_pix_fmt,
  2147. const AVPicture *src, int pix_fmt,
  2148. int width, int height);
  2149. /* deinterlace a picture */
  2150. int avpicture_deinterlace(AVPicture *dst, const AVPicture *src,
  2151. int pix_fmt, int width, int height);
  2152. /* external high level API */
  2153. extern AVCodec *first_avcodec;
  2154. /* returns LIBAVCODEC_VERSION_INT constant */
  2155. unsigned avcodec_version(void);
  2156. /* returns LIBAVCODEC_BUILD constant */
  2157. unsigned avcodec_build(void);
  2158. void avcodec_init(void);
  2159. void register_avcodec(AVCodec *format);
  2160. AVCodec *avcodec_find_encoder(enum CodecID id);
  2161. AVCodec *avcodec_find_encoder_by_name(const char *name);
  2162. AVCodec *avcodec_find_decoder(enum CodecID id);
  2163. AVCodec *avcodec_find_decoder_by_name(const char *name);
  2164. void avcodec_string(char *buf, int buf_size, AVCodecContext *enc, int encode);
  2165. void avcodec_get_context_defaults(AVCodecContext *s);
  2166. AVCodecContext *avcodec_alloc_context(void);
  2167. void avcodec_get_frame_defaults(AVFrame *pic);
  2168. AVFrame *avcodec_alloc_frame(void);
  2169. int avcodec_default_get_buffer(AVCodecContext *s, AVFrame *pic);
  2170. void avcodec_default_release_buffer(AVCodecContext *s, AVFrame *pic);
  2171. int avcodec_default_reget_buffer(AVCodecContext *s, AVFrame *pic);
  2172. void avcodec_align_dimensions(AVCodecContext *s, int *width, int *height);
  2173. int avcodec_check_dimensions(void *av_log_ctx, unsigned int w, unsigned int h);
  2174. enum PixelFormat avcodec_default_get_format(struct AVCodecContext *s, const enum PixelFormat * fmt);
  2175. int avcodec_thread_init(AVCodecContext *s, int thread_count);
  2176. void avcodec_thread_free(AVCodecContext *s);
  2177. int avcodec_thread_execute(AVCodecContext *s, int (*func)(AVCodecContext *c2, void *arg2),void **arg, int *ret, int count);
  2178. int avcodec_default_execute(AVCodecContext *c, int (*func)(AVCodecContext *c2, void *arg2),void **arg, int *ret, int count);
  2179. //FIXME func typedef
  2180. /**
  2181. * opens / inits the AVCodecContext.
  2182. * not thread save!
  2183. */
  2184. int avcodec_open(AVCodecContext *avctx, AVCodec *codec);
  2185. int avcodec_decode_audio(AVCodecContext *avctx, int16_t *samples,
  2186. int *frame_size_ptr,
  2187. uint8_t *buf, int buf_size);
  2188. int avcodec_decode_video(AVCodecContext *avctx, AVFrame *picture,
  2189. int *got_picture_ptr,
  2190. uint8_t *buf, int buf_size);
  2191. int avcodec_decode_subtitle(AVCodecContext *avctx, AVSubtitle *sub,
  2192. int *got_sub_ptr,
  2193. const uint8_t *buf, int buf_size);
  2194. int avcodec_parse_frame(AVCodecContext *avctx, uint8_t **pdata,
  2195. int *data_size_ptr,
  2196. uint8_t *buf, int buf_size);
  2197. int avcodec_encode_audio(AVCodecContext *avctx, uint8_t *buf, int buf_size,
  2198. const short *samples);
  2199. int avcodec_encode_video(AVCodecContext *avctx, uint8_t *buf, int buf_size,
  2200. const AVFrame *pict);
  2201. int avcodec_encode_subtitle(AVCodecContext *avctx, uint8_t *buf, int buf_size,
  2202. const AVSubtitle *sub);
  2203. int avcodec_close(AVCodecContext *avctx);
  2204. void avcodec_register_all(void);
  2205. void avcodec_flush_buffers(AVCodecContext *avctx);
  2206. void avcodec_default_free_buffers(AVCodecContext *s);
  2207. /* misc usefull functions */
  2208. /**
  2209. * returns a single letter to describe the picture type
  2210. */
  2211. char av_get_pict_type_char(int pict_type);
  2212. /* frame parsing */
  2213. typedef struct AVCodecParserContext {
  2214. void *priv_data;
  2215. struct AVCodecParser *parser;
  2216. int64_t frame_offset; /* offset of the current frame */
  2217. int64_t cur_offset; /* current offset
  2218. (incremented by each av_parser_parse()) */
  2219. int64_t last_frame_offset; /* offset of the last frame */
  2220. /* video info */
  2221. int pict_type; /* XXX: put it back in AVCodecContext */
  2222. int repeat_pict; /* XXX: put it back in AVCodecContext */
  2223. int64_t pts; /* pts of the current frame */
  2224. int64_t dts; /* dts of the current frame */
  2225. /* private data */
  2226. int64_t last_pts;
  2227. int64_t last_dts;
  2228. int fetch_timestamp;
  2229. #define AV_PARSER_PTS_NB 4
  2230. int cur_frame_start_index;
  2231. int64_t cur_frame_offset[AV_PARSER_PTS_NB];
  2232. int64_t cur_frame_pts[AV_PARSER_PTS_NB];
  2233. int64_t cur_frame_dts[AV_PARSER_PTS_NB];
  2234. int flags;
  2235. #define PARSER_FLAG_COMPLETE_FRAMES 0x0001
  2236. } AVCodecParserContext;
  2237. typedef struct AVCodecParser {
  2238. int codec_ids[5]; /* several codec IDs are permitted */
  2239. int priv_data_size;
  2240. int (*parser_init)(AVCodecParserContext *s);
  2241. int (*parser_parse)(AVCodecParserContext *s,
  2242. AVCodecContext *avctx,
  2243. uint8_t **poutbuf, int *poutbuf_size,
  2244. const uint8_t *buf, int buf_size);
  2245. void (*parser_close)(AVCodecParserContext *s);
  2246. int (*split)(AVCodecContext *avctx, const uint8_t *buf, int buf_size);
  2247. struct AVCodecParser *next;
  2248. } AVCodecParser;
  2249. extern AVCodecParser *av_first_parser;
  2250. void av_register_codec_parser(AVCodecParser *parser);
  2251. AVCodecParserContext *av_parser_init(int codec_id);
  2252. int av_parser_parse(AVCodecParserContext *s,
  2253. AVCodecContext *avctx,
  2254. uint8_t **poutbuf, int *poutbuf_size,
  2255. const uint8_t *buf, int buf_size,
  2256. int64_t pts, int64_t dts);
  2257. int av_parser_change(AVCodecParserContext *s,
  2258. AVCodecContext *avctx,
  2259. uint8_t **poutbuf, int *poutbuf_size,
  2260. const uint8_t *buf, int buf_size, int keyframe);
  2261. void av_parser_close(AVCodecParserContext *s);
  2262. extern AVCodecParser mpegvideo_parser;
  2263. extern AVCodecParser mpeg4video_parser;
  2264. extern AVCodecParser h261_parser;
  2265. extern AVCodecParser h263_parser;
  2266. extern AVCodecParser h264_parser;
  2267. extern AVCodecParser mjpeg_parser;
  2268. extern AVCodecParser pnm_parser;
  2269. extern AVCodecParser mpegaudio_parser;
  2270. extern AVCodecParser ac3_parser;
  2271. extern AVCodecParser dvdsub_parser;
  2272. extern AVCodecParser dvbsub_parser;
  2273. extern AVCodecParser aac_parser;
  2274. /* memory */
  2275. void *av_malloc(unsigned int size);
  2276. void *av_mallocz(unsigned int size);
  2277. void *av_realloc(void *ptr, unsigned int size);
  2278. void av_free(void *ptr);
  2279. char *av_strdup(const char *s);
  2280. void av_freep(void *ptr);
  2281. void *av_fast_realloc(void *ptr, unsigned int *size, unsigned int min_size);
  2282. /* for static data only */
  2283. /* call av_free_static to release all staticaly allocated tables */
  2284. void av_free_static(void);
  2285. void *av_mallocz_static(unsigned int size);
  2286. void *av_realloc_static(void *ptr, unsigned int size);
  2287. /* add by bero : in adx.c */
  2288. int is_adx(const unsigned char *buf,size_t bufsize);
  2289. void img_copy(AVPicture *dst, const AVPicture *src,
  2290. int pix_fmt, int width, int height);
  2291. int img_crop(AVPicture *dst, const AVPicture *src,
  2292. int pix_fmt, int top_band, int left_band);
  2293. /* av_log API */
  2294. #include <stdarg.h>
  2295. #define AV_LOG_QUIET -1
  2296. #define AV_LOG_ERROR 0
  2297. #define AV_LOG_INFO 1
  2298. #define AV_LOG_DEBUG 2
  2299. #ifdef __GNUC__
  2300. extern void av_log(void*, int level, const char *fmt, ...) __attribute__ ((__format__ (__printf__, 3, 4)));
  2301. #else
  2302. extern void av_log(void*, int level, const char *fmt, ...);
  2303. #endif
  2304. extern void av_vlog(void*, int level, const char *fmt, va_list);
  2305. extern int av_log_get_level(void);
  2306. extern void av_log_set_level(int);
  2307. extern void av_log_set_callback(void (*)(void*, int, const char*, va_list));
  2308. /* endian macros */
  2309. #if !defined(BE_16) || !defined(BE_32) || !defined(LE_16) || !defined(LE_32)
  2310. #define BE_16(x) ((((uint8_t*)(x))[0] << 8) | ((uint8_t*)(x))[1])
  2311. #define BE_32(x) ((((uint8_t*)(x))[0] << 24) | \
  2312. (((uint8_t*)(x))[1] << 16) | \
  2313. (((uint8_t*)(x))[2] << 8) | \
  2314. ((uint8_t*)(x))[3])
  2315. #define LE_16(x) ((((uint8_t*)(x))[1] << 8) | ((uint8_t*)(x))[0])
  2316. #define LE_32(x) ((((uint8_t*)(x))[3] << 24) | \
  2317. (((uint8_t*)(x))[2] << 16) | \
  2318. (((uint8_t*)(x))[1] << 8) | \
  2319. ((uint8_t*)(x))[0])
  2320. #endif
  2321. extern unsigned int av_xiphlacing(unsigned char *s, unsigned int v);
  2322. #ifdef __cplusplus
  2323. }
  2324. #endif
  2325. #endif /* AVCODEC_H */