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.

2221 lines
65KB

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