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