]> git.sesse.net Git - ffmpeg/blob - libavcodec/avcodec.h
lowres width/height cleanup 3rd try
[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
1117     /**
1118      * slice count.
1119      * - encoding: set by lavc
1120      * - decoding: set by user (or 0)
1121      */
1122     int slice_count;
1123     /**
1124      * slice offsets in the frame in bytes.
1125      * - encoding: set/allocated by lavc
1126      * - decoding: set/allocated by user (or NULL)
1127      */
1128     int *slice_offset;
1129
1130     /**
1131      * error concealment flags.
1132      * - encoding: unused
1133      * - decoding: set by user
1134      */
1135     int error_concealment;
1136 #define FF_EC_GUESS_MVS   1
1137 #define FF_EC_DEBLOCK     2
1138
1139     /**
1140      * dsp_mask could be add used to disable unwanted CPU features
1141      * CPU features (i.e. MMX, SSE. ...)
1142      *
1143      * with FORCE flag you may instead enable given CPU features
1144      * (Dangerous: usable in case of misdetection, improper usage however will
1145      * result into program crash)
1146      */
1147     unsigned dsp_mask;
1148 #define FF_MM_FORCE     0x80000000 /* force usage of selected flags (OR) */
1149     /* lower 16 bits - CPU features */
1150 #ifdef HAVE_MMX
1151 #define FF_MM_MMX       0x0001 /* standard MMX */
1152 #define FF_MM_3DNOW     0x0004 /* AMD 3DNOW */
1153 #define FF_MM_MMXEXT    0x0002 /* SSE integer functions or AMD MMX ext */
1154 #define FF_MM_SSE       0x0008 /* SSE functions */
1155 #define FF_MM_SSE2      0x0010 /* PIV SSE2 functions */
1156 #endif /* HAVE_MMX */
1157
1158     /**
1159      * bits per sample/pixel from the demuxer (needed for huffyuv).
1160      * - encoding: set by lavc
1161      * - decoding: set by user
1162      */
1163      int bits_per_sample;
1164     
1165     /**
1166      * prediction method (needed for huffyuv).
1167      * - encoding: set by user
1168      * - decoding: unused
1169      */
1170      int prediction_method;
1171 #define FF_PRED_LEFT   0
1172 #define FF_PRED_PLANE  1
1173 #define FF_PRED_MEDIAN 2
1174     
1175     /**
1176      * sample aspect ratio (0 if unknown).
1177      * numerator and denominator must be relative prime and smaller then 256 for some video standards
1178      * - encoding: set by user.
1179      * - decoding: set by lavc.
1180      */
1181     AVRational sample_aspect_ratio;
1182
1183     /**
1184      * the picture in the bitstream.
1185      * - encoding: set by lavc
1186      * - decoding: set by lavc
1187      */
1188     AVFrame *coded_frame;
1189
1190     /**
1191      * debug.
1192      * - encoding: set by user.
1193      * - decoding: set by user.
1194      */
1195     int debug;
1196 #define FF_DEBUG_PICT_INFO 1
1197 #define FF_DEBUG_RC        2
1198 #define FF_DEBUG_BITSTREAM 4
1199 #define FF_DEBUG_MB_TYPE   8
1200 #define FF_DEBUG_QP        16
1201 #define FF_DEBUG_MV        32
1202 #define FF_DEBUG_DCT_COEFF 0x00000040
1203 #define FF_DEBUG_SKIP      0x00000080
1204 #define FF_DEBUG_STARTCODE 0x00000100
1205 #define FF_DEBUG_PTS       0x00000200
1206 #define FF_DEBUG_ER        0x00000400
1207 #define FF_DEBUG_MMCO      0x00000800
1208 #define FF_DEBUG_BUGS      0x00001000
1209 #define FF_DEBUG_VIS_QP    0x00002000
1210 #define FF_DEBUG_VIS_MB_TYPE 0x00004000
1211     
1212     /**
1213      * debug.
1214      * - encoding: set by user.
1215      * - decoding: set by user.
1216      */
1217     int debug_mv;
1218 #define FF_DEBUG_VIS_MV_P_FOR  0x00000001 //visualize forward predicted MVs of P frames
1219 #define FF_DEBUG_VIS_MV_B_FOR  0x00000002 //visualize forward predicted MVs of B frames
1220 #define FF_DEBUG_VIS_MV_B_BACK 0x00000004 //visualize backward predicted MVs of B frames
1221
1222     /**
1223      * error.
1224      * - encoding: set by lavc if flags&CODEC_FLAG_PSNR
1225      * - decoding: unused
1226      */
1227     uint64_t error[4];
1228     
1229     /**
1230      * minimum MB quantizer.
1231      * - encoding: set by user.
1232      * - decoding: unused
1233      */
1234     int mb_qmin;
1235
1236     /**
1237      * maximum MB quantizer.
1238      * - encoding: set by user.
1239      * - decoding: unused
1240      */
1241     int mb_qmax;
1242     
1243     /**
1244      * motion estimation compare function.
1245      * - encoding: set by user.
1246      * - decoding: unused
1247      */
1248     int me_cmp;
1249     /**
1250      * subpixel motion estimation compare function.
1251      * - encoding: set by user.
1252      * - decoding: unused
1253      */
1254     int me_sub_cmp;
1255     /**
1256      * macroblock compare function (not supported yet).
1257      * - encoding: set by user.
1258      * - decoding: unused
1259      */
1260     int mb_cmp;
1261     /**
1262      * interlaced dct compare function
1263      * - encoding: set by user.
1264      * - decoding: unused
1265      */
1266     int ildct_cmp;
1267 #define FF_CMP_SAD  0
1268 #define FF_CMP_SSE  1
1269 #define FF_CMP_SATD 2
1270 #define FF_CMP_DCT  3
1271 #define FF_CMP_PSNR 4
1272 #define FF_CMP_BIT  5
1273 #define FF_CMP_RD   6
1274 #define FF_CMP_ZERO 7
1275 #define FF_CMP_VSAD 8
1276 #define FF_CMP_VSSE 9
1277 #define FF_CMP_NSSE 10
1278 #define FF_CMP_W53  11
1279 #define FF_CMP_W97  12
1280 #define FF_CMP_CHROMA 256
1281     
1282     /**
1283      * ME diamond size & shape.
1284      * - encoding: set by user.
1285      * - decoding: unused
1286      */
1287     int dia_size;
1288
1289     /**
1290      * amount of previous MV predictors (2a+1 x 2a+1 square).
1291      * - encoding: set by user.
1292      * - decoding: unused
1293      */
1294     int last_predictor_count;
1295
1296     /**
1297      * pre pass for motion estimation.
1298      * - encoding: set by user.
1299      * - decoding: unused
1300      */
1301     int pre_me;
1302
1303     /**
1304      * motion estimation pre pass compare function.
1305      * - encoding: set by user.
1306      * - decoding: unused
1307      */
1308     int me_pre_cmp;
1309
1310     /**
1311      * ME pre pass diamond size & shape.
1312      * - encoding: set by user.
1313      * - decoding: unused
1314      */
1315     int pre_dia_size;
1316
1317     /**
1318      * subpel ME quality.
1319      * - encoding: set by user.
1320      * - decoding: unused
1321      */
1322     int me_subpel_quality;
1323
1324     /**
1325      * callback to negotiate the pixelFormat.
1326      * @param fmt is the list of formats which are supported by the codec,
1327      * its terminated by -1 as 0 is a valid format, the formats are ordered by quality
1328      * the first is allways the native one
1329      * @return the choosen format
1330      * - encoding: unused
1331      * - decoding: set by user, if not set then the native format will always be choosen
1332      */
1333     enum PixelFormat (*get_format)(struct AVCodecContext *s, const enum PixelFormat * fmt);
1334
1335     /**
1336      * DTG active format information (additionnal aspect ratio
1337      * information only used in DVB MPEG2 transport streams). 0 if
1338      * not set.
1339      * 
1340      * - encoding: unused.
1341      * - decoding: set by decoder 
1342      */
1343     int dtg_active_format;
1344 #define FF_DTG_AFD_SAME         8
1345 #define FF_DTG_AFD_4_3          9
1346 #define FF_DTG_AFD_16_9         10
1347 #define FF_DTG_AFD_14_9         11
1348 #define FF_DTG_AFD_4_3_SP_14_9  13
1349 #define FF_DTG_AFD_16_9_SP_14_9 14
1350 #define FF_DTG_AFD_SP_4_3       15
1351
1352     /**
1353      * Maximum motion estimation search range in subpel units.
1354      * if 0 then no limit
1355      * 
1356      * - encoding: set by user.
1357      * - decoding: unused.
1358      */
1359     int me_range;
1360
1361     /**
1362      * frame_rate_base.
1363      * for variable fps this is 1
1364      * - encoding: set by user.
1365      * - decoding: set by lavc.
1366      * @todo move this after frame_rate
1367      */
1368
1369     int frame_rate_base;
1370     /**
1371      * intra quantizer bias.
1372      * - encoding: set by user.
1373      * - decoding: unused
1374      */
1375     int intra_quant_bias;
1376 #define FF_DEFAULT_QUANT_BIAS 999999
1377     
1378     /**
1379      * inter quantizer bias.
1380      * - encoding: set by user.
1381      * - decoding: unused
1382      */
1383     int inter_quant_bias;
1384
1385     /**
1386      * color table ID.
1387      * - encoding: unused.
1388      * - decoding: which clrtable should be used for 8bit RGB images
1389      *             table have to be stored somewhere FIXME
1390      */
1391     int color_table_id;
1392     
1393     /**
1394      * internal_buffer count. 
1395      * Dont touch, used by lavc default_get_buffer()
1396      */
1397     int internal_buffer_count;
1398     
1399     /**
1400      * internal_buffers. 
1401      * Dont touch, used by lavc default_get_buffer()
1402      */
1403     void *internal_buffer;
1404
1405 #define FF_LAMBDA_SHIFT 7
1406 #define FF_LAMBDA_SCALE (1<<FF_LAMBDA_SHIFT)
1407 #define FF_QP2LAMBDA 118 ///< factor to convert from H.263 QP to lambda
1408 #define FF_LAMBDA_MAX (256*128-1)
1409
1410 #define FF_QUALITY_SCALE FF_LAMBDA_SCALE //FIXME maybe remove
1411     /**
1412      * global quality for codecs which cannot change it per frame.
1413      * this should be proportional to MPEG1/2/4 qscale.
1414      * - encoding: set by user.
1415      * - decoding: unused
1416      */
1417     int global_quality;
1418     
1419 #define FF_CODER_TYPE_VLC   0
1420 #define FF_CODER_TYPE_AC    1
1421     /**
1422      * coder type
1423      * - encoding: set by user.
1424      * - decoding: unused
1425      */
1426     int coder_type;
1427
1428     /**
1429      * context model
1430      * - encoding: set by user.
1431      * - decoding: unused
1432      */
1433     int context_model;
1434     
1435     /**
1436      * slice flags
1437      * - encoding: unused
1438      * - decoding: set by user.
1439      */
1440     int slice_flags;
1441 #define SLICE_FLAG_CODED_ORDER    0x0001 ///< draw_horiz_band() is called in coded order instead of display
1442 #define SLICE_FLAG_ALLOW_FIELD    0x0002 ///< allow draw_horiz_band() with field slices (MPEG2 field pics)
1443 #define SLICE_FLAG_ALLOW_PLANE    0x0004 ///< allow draw_horiz_band() with 1 component at a time (SVQ1)
1444
1445     /**
1446      * XVideo Motion Acceleration
1447      * - encoding: forbidden
1448      * - decoding: set by decoder
1449      */
1450     int xvmc_acceleration;
1451     
1452     /**
1453      * macroblock decision mode
1454      * - encoding: set by user.
1455      * - decoding: unused
1456      */
1457     int mb_decision;
1458 #define FF_MB_DECISION_SIMPLE 0        ///< uses mb_cmp
1459 #define FF_MB_DECISION_BITS   1        ///< chooses the one which needs the fewest bits
1460 #define FF_MB_DECISION_RD     2        ///< rate distoration
1461
1462     /**
1463      * custom intra quantization matrix
1464      * - encoding: set by user, can be NULL
1465      * - decoding: set by lavc
1466      */
1467     uint16_t *intra_matrix;
1468
1469     /**
1470      * custom inter quantization matrix
1471      * - encoding: set by user, can be NULL
1472      * - decoding: set by lavc
1473      */
1474     uint16_t *inter_matrix;
1475     
1476     /**
1477      * fourcc from the AVI stream header (LSB first, so "ABCD" -> ('D'<<24) + ('C'<<16) + ('B'<<8) + 'A').
1478      * this is used to workaround some encoder bugs
1479      * - encoding: unused
1480      * - decoding: set by user, will be converted to upper case by lavc during init
1481      */
1482     unsigned int stream_codec_tag;
1483
1484     /**
1485      * scene change detection threshold.
1486      * 0 is default, larger means fewer detected scene changes
1487      * - encoding: set by user.
1488      * - decoding: unused
1489      */
1490     int scenechange_threshold;
1491
1492     /**
1493      * minimum lagrange multipler
1494      * - encoding: set by user.
1495      * - decoding: unused
1496      */
1497     int lmin;
1498
1499     /**
1500      * maximum lagrange multipler
1501      * - encoding: set by user.
1502      * - decoding: unused
1503      */
1504     int lmax;
1505
1506     /**
1507      * Palette control structure
1508      * - encoding: ??? (no palette-enabled encoder yet)
1509      * - decoding: set by user.
1510      */
1511     struct AVPaletteControl *palctrl;
1512
1513     /**
1514      * noise reduction strength
1515      * - encoding: set by user.
1516      * - decoding: unused
1517      */
1518     int noise_reduction;
1519     
1520     /**
1521      * called at the beginning of a frame to get cr buffer for it.
1522      * buffer type (size, hints) must be the same. lavc won't check it.
1523      * lavc will pass previous buffer in pic, function should return
1524      * same buffer or new buffer with old frame "painted" into it.
1525      * if pic.data[0] == NULL must behave like get_buffer().
1526      * - encoding: unused
1527      * - decoding: set by lavc, user can override
1528      */
1529     int (*reget_buffer)(struct AVCodecContext *c, AVFrame *pic);
1530
1531     /**
1532      * number of bits which should be loaded into the rc buffer before decoding starts
1533      * - encoding: set by user.
1534      * - decoding: unused
1535      */
1536     int rc_initial_buffer_occupancy;
1537
1538     /**
1539      *
1540      * - encoding: set by user.
1541      * - decoding: unused
1542      */
1543     int inter_threshold;
1544
1545     /**
1546      * CODEC_FLAG2_*.
1547      * - encoding: set by user.
1548      * - decoding: set by user.
1549      */
1550     int flags2;
1551
1552     /**
1553      * simulates errors in the bitstream to test error concealment.
1554      * - encoding: set by user.
1555      * - decoding: unused.
1556      */
1557     int error_rate;
1558     
1559     /**
1560      * MP3 antialias algorithm, see FF_AA_* below.
1561      * - encoding: unused
1562      * - decoding: set by user
1563      */
1564     int antialias_algo;
1565 #define FF_AA_AUTO    0
1566 #define FF_AA_FASTINT 1 //not implemented yet
1567 #define FF_AA_INT     2
1568 #define FF_AA_FLOAT   3
1569     /**
1570      * Quantizer noise shaping.
1571      * - encoding: set by user
1572      * - decoding: unused
1573      */
1574     int quantizer_noise_shaping;
1575
1576     /**
1577      * Thread count.
1578      * is used to decide how many independant tasks should be passed to execute()
1579      * - encoding: set by user
1580      * - decoding: set by user
1581      */
1582     int thread_count;
1583     
1584     /**
1585      * the codec may call this to execute several independant things. it will return only after
1586      * finishing all tasks, the user may replace this with some multithreaded implementation, the
1587      * default implementation will execute the parts serially
1588      * @param count the number of things to execute
1589      * - encoding: set by lavc, user can override
1590      * - decoding: set by lavc, user can override
1591      */
1592     int (*execute)(struct AVCodecContext *c, int (*func)(struct AVCodecContext *c2, void *arg), void **arg2, int *ret, int count);
1593     
1594     /**
1595      * Thread opaque.
1596      * can be used by execute() to store some per AVCodecContext stuff.
1597      * - encoding: set by execute()
1598      * - decoding: set by execute()
1599      */
1600     void *thread_opaque;
1601
1602     /**
1603      * Motion estimation threshold. under which no motion estimation is 
1604      * performed, but instead the user specified motion vectors are used
1605      * 
1606      * - encoding: set by user
1607      * - decoding: unused
1608      */
1609      int me_threshold;
1610
1611     /**
1612      * Macroblock threshold. under which the user specified macroblock types will be used
1613      * - encoding: set by user
1614      * - decoding: unused
1615      */
1616      int mb_threshold;
1617
1618     /**
1619      * precision of the intra dc coefficient - 8.
1620      * - encoding: set by user
1621      * - decoding: unused
1622      */
1623      int intra_dc_precision;
1624
1625     /**
1626      * noise vs. sse weight for the nsse comparsion function.
1627      * - encoding: set by user
1628      * - decoding: unused
1629      */
1630      int nsse_weight;
1631
1632     /**
1633      * number of macroblock rows at the top which are skiped.
1634      * - encoding: unused
1635      * - decoding: set by user
1636      */
1637      int skip_top;
1638
1639     /**
1640      * number of macroblock rows at the bottom which are skiped.
1641      * - encoding: unused
1642      * - decoding: set by user
1643      */
1644      int skip_bottom;
1645
1646     /**
1647      * profile
1648      * - encoding: set by user
1649      * - decoding: set by lavc
1650      */
1651      int profile;
1652 #define FF_PROFILE_UNKNOWN -99
1653
1654     /**
1655      * level
1656      * - encoding: set by user
1657      * - decoding: set by lavc
1658      */
1659      int level;
1660 #define FF_LEVEL_UNKNOWN -99
1661
1662     /**
1663      * low resolution decoding. 1-> 1/2 size, 2->1/4 size
1664      * - encoding: unused
1665      * - decoding: set by user
1666      */
1667      int lowres;
1668
1669     /**
1670      * bistream width / height. may be different from width/height if lowres
1671      * or other things are used
1672      * - encoding: unused
1673      * - decoding: set by user before init if known, codec should override / dynamically change if needed
1674      */
1675     int coded_width, coded_height;
1676 } AVCodecContext;
1677
1678
1679 /**
1680  * AVOption.
1681  */
1682 typedef struct AVOption {
1683     /** options' name */
1684     const char *name; /* if name is NULL, it indicates a link to next */
1685     /** short English text help or const struct AVOption* subpointer */
1686     const char *help; //        const struct AVOption* sub;
1687     /** offset to context structure where the parsed value should be stored */
1688     int offset;
1689     /** options' type */
1690     int type;
1691 #define FF_OPT_TYPE_BOOL 1      ///< boolean - true,1,on  (or simply presence)
1692 #define FF_OPT_TYPE_DOUBLE 2    ///< double
1693 #define FF_OPT_TYPE_INT 3       ///< integer
1694 #define FF_OPT_TYPE_STRING 4    ///< string (finished with \0)
1695 #define FF_OPT_TYPE_MASK 0x1f   ///< mask for types - upper bits are various flags
1696 //#define FF_OPT_TYPE_EXPERT 0x20 // flag for expert option
1697 #define FF_OPT_TYPE_FLAG (FF_OPT_TYPE_BOOL | 0x40)
1698 #define FF_OPT_TYPE_RCOVERRIDE (FF_OPT_TYPE_STRING | 0x80)
1699     /** min value  (min == max   ->  no limits) */
1700     double min;
1701     /** maximum value for double/int */
1702     double max;
1703     /** default boo [0,1]l/double/int value */
1704     double defval;
1705     /**
1706      * default string value (with optional semicolon delimited extra option-list
1707      * i.e.   option1;option2;option3
1708      * defval might select other then first argument as default
1709      */
1710     const char *defstr;
1711 #define FF_OPT_MAX_DEPTH 10
1712 } AVOption;
1713
1714 /**
1715  * Parse option(s) and sets fields in passed structure
1716  * @param strct structure where the parsed results will be written
1717  * @param list  list with AVOptions
1718  * @param opts  string with options for parsing
1719  */
1720 int avoption_parse(void* strct, const AVOption* list, const char* opts);
1721
1722
1723 /**
1724  * AVCodec.
1725  */
1726 typedef struct AVCodec {
1727     const char *name;
1728     enum CodecType type;
1729     int id;
1730     int priv_data_size;
1731     int (*init)(AVCodecContext *);
1732     int (*encode)(AVCodecContext *, uint8_t *buf, int buf_size, void *data);
1733     int (*close)(AVCodecContext *);
1734     int (*decode)(AVCodecContext *, void *outdata, int *outdata_size,
1735                   uint8_t *buf, int buf_size);
1736     int capabilities;
1737     const AVOption *options;
1738     struct AVCodec *next;
1739     void (*flush)(AVCodecContext *);
1740     const AVRational *supported_framerates; ///array of supported framerates, or NULL if any, array is terminated by {0,0}
1741     const enum PixelFormat *pix_fmts;       ///array of supported pixel formats, or NULL if unknown, array is terminanted by -1
1742 } AVCodec;
1743
1744 /**
1745  * four components are given, that's all.
1746  * the last component is alpha
1747  */
1748 typedef struct AVPicture {
1749     uint8_t *data[4];
1750     int linesize[4];       ///< number of bytes per line
1751 } AVPicture;
1752
1753 /**
1754  * AVPaletteControl
1755  * This structure defines a method for communicating palette changes
1756  * between and demuxer and a decoder.
1757  */
1758 #define AVPALETTE_SIZE 1024
1759 #define AVPALETTE_COUNT 256
1760 typedef struct AVPaletteControl {
1761
1762     /* demuxer sets this to 1 to indicate the palette has changed;
1763      * decoder resets to 0 */
1764     int palette_changed;
1765
1766     /* 4-byte ARGB palette entries, stored in native byte order; note that
1767      * the individual palette components should be on a 8-bit scale; if
1768      * the palette data comes from a IBM VGA native format, the component
1769      * data is probably 6 bits in size and needs to be scaled */
1770     unsigned int palette[AVPALETTE_COUNT];
1771
1772 } AVPaletteControl;
1773
1774 extern AVCodec ac3_encoder;
1775 extern AVCodec mp2_encoder;
1776 extern AVCodec mp3lame_encoder;
1777 extern AVCodec oggvorbis_encoder;
1778 extern AVCodec faac_encoder;
1779 extern AVCodec xvid_encoder;
1780 extern AVCodec mpeg1video_encoder;
1781 extern AVCodec mpeg2video_encoder;
1782 extern AVCodec h263_encoder;
1783 extern AVCodec h263p_encoder;
1784 extern AVCodec flv_encoder;
1785 extern AVCodec rv10_encoder;
1786 extern AVCodec rv20_encoder;
1787 extern AVCodec dvvideo_encoder;
1788 extern AVCodec mjpeg_encoder;
1789 extern AVCodec ljpeg_encoder;
1790 extern AVCodec mpeg4_encoder;
1791 extern AVCodec msmpeg4v1_encoder;
1792 extern AVCodec msmpeg4v2_encoder;
1793 extern AVCodec msmpeg4v3_encoder;
1794 extern AVCodec wmv1_encoder;
1795 extern AVCodec wmv2_encoder;
1796 extern AVCodec huffyuv_encoder;
1797 extern AVCodec h264_encoder;
1798 extern AVCodec asv1_encoder;
1799 extern AVCodec asv2_encoder;
1800 extern AVCodec vcr1_encoder;
1801 extern AVCodec ffv1_encoder;
1802 extern AVCodec snow_encoder;
1803 extern AVCodec mdec_encoder;
1804 extern AVCodec zlib_encoder;
1805 extern AVCodec sonic_encoder;
1806 extern AVCodec sonic_ls_encoder;
1807 extern AVCodec svq1_encoder;
1808
1809 extern AVCodec h263_decoder;
1810 extern AVCodec h261_decoder;
1811 extern AVCodec mpeg4_decoder;
1812 extern AVCodec msmpeg4v1_decoder;
1813 extern AVCodec msmpeg4v2_decoder;
1814 extern AVCodec msmpeg4v3_decoder;
1815 extern AVCodec wmv1_decoder;
1816 extern AVCodec wmv2_decoder;
1817 extern AVCodec mpeg1video_decoder;
1818 extern AVCodec mpeg2video_decoder;
1819 extern AVCodec mpegvideo_decoder;
1820 extern AVCodec mpeg_xvmc_decoder;
1821 extern AVCodec h263i_decoder;
1822 extern AVCodec flv_decoder;
1823 extern AVCodec rv10_decoder;
1824 extern AVCodec rv20_decoder;
1825 extern AVCodec svq1_decoder;
1826 extern AVCodec svq3_decoder;
1827 extern AVCodec dvvideo_decoder;
1828 extern AVCodec wmav1_decoder;
1829 extern AVCodec wmav2_decoder;
1830 extern AVCodec mjpeg_decoder;
1831 extern AVCodec mjpegb_decoder;
1832 extern AVCodec sp5x_decoder;
1833 extern AVCodec mp2_decoder;
1834 extern AVCodec mp3_decoder;
1835 extern AVCodec mace3_decoder;
1836 extern AVCodec mace6_decoder;
1837 extern AVCodec huffyuv_decoder;
1838 extern AVCodec oggvorbis_decoder;
1839 extern AVCodec cyuv_decoder;
1840 extern AVCodec h264_decoder;
1841 extern AVCodec indeo3_decoder;
1842 extern AVCodec vp3_decoder;
1843 extern AVCodec theora_decoder;
1844 extern AVCodec amr_nb_decoder;
1845 extern AVCodec amr_nb_encoder;
1846 extern AVCodec amr_wb_encoder;
1847 extern AVCodec amr_wb_decoder;
1848 extern AVCodec aac_decoder;
1849 extern AVCodec mpeg4aac_decoder;
1850 extern AVCodec asv1_decoder;
1851 extern AVCodec asv2_decoder;
1852 extern AVCodec vcr1_decoder;
1853 extern AVCodec cljr_decoder;
1854 extern AVCodec ffv1_decoder;
1855 extern AVCodec snow_decoder;
1856 extern AVCodec fourxm_decoder;
1857 extern AVCodec mdec_decoder;
1858 extern AVCodec roq_decoder;
1859 extern AVCodec interplay_video_decoder;
1860 extern AVCodec xan_wc3_decoder;
1861 extern AVCodec rpza_decoder;
1862 extern AVCodec cinepak_decoder;
1863 extern AVCodec msrle_decoder;
1864 extern AVCodec msvideo1_decoder;
1865 extern AVCodec vqa_decoder;
1866 extern AVCodec idcin_decoder;
1867 extern AVCodec eightbps_decoder;
1868 extern AVCodec smc_decoder;
1869 extern AVCodec flic_decoder;
1870 extern AVCodec vmdvideo_decoder;
1871 extern AVCodec vmdaudio_decoder;
1872 extern AVCodec truemotion1_decoder;
1873 extern AVCodec mszh_decoder;
1874 extern AVCodec zlib_decoder;
1875 extern AVCodec ra_144_decoder;
1876 extern AVCodec ra_288_decoder;
1877 extern AVCodec roq_dpcm_decoder;
1878 extern AVCodec interplay_dpcm_decoder;
1879 extern AVCodec xan_dpcm_decoder;
1880 extern AVCodec sonic_decoder;
1881 extern AVCodec qtrle_decoder;
1882 extern AVCodec flac_decoder;
1883 extern AVCodec tscc_decoder;
1884 extern AVCodec ulti_decoder;
1885
1886 /* pcm codecs */
1887 #define PCM_CODEC(id, name) \
1888 extern AVCodec name ## _decoder; \
1889 extern AVCodec name ## _encoder
1890
1891 PCM_CODEC(CODEC_ID_PCM_S16LE, pcm_s16le);
1892 PCM_CODEC(CODEC_ID_PCM_S16BE, pcm_s16be);
1893 PCM_CODEC(CODEC_ID_PCM_U16LE, pcm_u16le);
1894 PCM_CODEC(CODEC_ID_PCM_U16BE, pcm_u16be);
1895 PCM_CODEC(CODEC_ID_PCM_S8, pcm_s8);
1896 PCM_CODEC(CODEC_ID_PCM_U8, pcm_u8);
1897 PCM_CODEC(CODEC_ID_PCM_ALAW, pcm_alaw);
1898 PCM_CODEC(CODEC_ID_PCM_MULAW, pcm_mulaw);
1899
1900 /* adpcm codecs */
1901
1902 PCM_CODEC(CODEC_ID_ADPCM_IMA_QT, adpcm_ima_qt);
1903 PCM_CODEC(CODEC_ID_ADPCM_IMA_WAV, adpcm_ima_wav);
1904 PCM_CODEC(CODEC_ID_ADPCM_IMA_DK3, adpcm_ima_dk3);
1905 PCM_CODEC(CODEC_ID_ADPCM_IMA_DK4, adpcm_ima_dk4);
1906 PCM_CODEC(CODEC_ID_ADPCM_IMA_WS, adpcm_ima_ws);
1907 PCM_CODEC(CODEC_ID_ADPCM_SMJPEG, adpcm_ima_smjpeg);
1908 PCM_CODEC(CODEC_ID_ADPCM_MS, adpcm_ms);
1909 PCM_CODEC(CODEC_ID_ADPCM_4XM, adpcm_4xm);
1910 PCM_CODEC(CODEC_ID_ADPCM_XA, adpcm_xa);
1911 PCM_CODEC(CODEC_ID_ADPCM_ADX, adpcm_adx);
1912 PCM_CODEC(CODEC_ID_ADPCM_EA, adpcm_ea);
1913 PCM_CODEC(CODEC_ID_ADPCM_G726, adpcm_g726);
1914
1915 #undef PCM_CODEC
1916
1917 /* dummy raw video codec */
1918 extern AVCodec rawvideo_encoder;
1919 extern AVCodec rawvideo_decoder;
1920
1921 /* the following codecs use external GPL libs */
1922 extern AVCodec ac3_decoder;
1923 extern AVCodec dts_decoder;
1924
1925 /* resample.c */
1926
1927 struct ReSampleContext;
1928 struct AVResampleContext;
1929
1930 typedef struct ReSampleContext ReSampleContext;
1931
1932 ReSampleContext *audio_resample_init(int output_channels, int input_channels, 
1933                                      int output_rate, int input_rate);
1934 int audio_resample(ReSampleContext *s, short *output, short *input, int nb_samples);
1935 void audio_resample_close(ReSampleContext *s);
1936
1937 struct AVResampleContext *av_resample_init(int out_rate, int in_rate);
1938 int av_resample(struct AVResampleContext *c, short *dst, short *src, int *consumed, int src_size, int dst_size, int update_ctx);
1939 void av_resample_compensate(struct AVResampleContext *c, int sample_delta, int compensation_distance);
1940 void av_resample_close(struct AVResampleContext *c);
1941
1942 /* YUV420 format is assumed ! */
1943
1944 struct ImgReSampleContext;
1945
1946 typedef struct ImgReSampleContext ImgReSampleContext;
1947
1948 ImgReSampleContext *img_resample_init(int output_width, int output_height,
1949                                       int input_width, int input_height);
1950
1951 ImgReSampleContext *img_resample_full_init(int owidth, int oheight,
1952                                       int iwidth, int iheight,
1953                                       int topBand, int bottomBand,
1954                                       int leftBand, int rightBand,
1955                                       int padtop, int padbottom,
1956                                       int padleft, int padright);
1957
1958
1959 void img_resample(ImgReSampleContext *s, 
1960                   AVPicture *output, const AVPicture *input);
1961
1962 void img_resample_close(ImgReSampleContext *s);
1963
1964 /**
1965  * Allocate memory for a picture.  Call avpicture_free to free it.
1966  *
1967  * @param picture the picture to be filled in.
1968  * @param pix_fmt the format of the picture.
1969  * @param width the width of the picture.
1970  * @param height the height of the picture.
1971  * @return 0 if successful, -1 if not.
1972  */
1973 int avpicture_alloc(AVPicture *picture, int pix_fmt, int width, int height);
1974
1975 /* Free a picture previously allocated by avpicture_alloc. */
1976 void avpicture_free(AVPicture *picture);
1977
1978 int avpicture_fill(AVPicture *picture, uint8_t *ptr,
1979                    int pix_fmt, int width, int height);
1980 int avpicture_layout(const AVPicture* src, int pix_fmt, int width, int height,
1981                      unsigned char *dest, int dest_size);
1982 int avpicture_get_size(int pix_fmt, int width, int height);
1983 void avcodec_get_chroma_sub_sample(int pix_fmt, int *h_shift, int *v_shift);
1984 const char *avcodec_get_pix_fmt_name(int pix_fmt);
1985 void avcodec_set_dimensions(AVCodecContext *s, int width, int height);
1986 enum PixelFormat avcodec_get_pix_fmt(const char* name);
1987
1988 #define FF_LOSS_RESOLUTION  0x0001 /* loss due to resolution change */
1989 #define FF_LOSS_DEPTH       0x0002 /* loss due to color depth change */
1990 #define FF_LOSS_COLORSPACE  0x0004 /* loss due to color space conversion */
1991 #define FF_LOSS_ALPHA       0x0008 /* loss of alpha bits */
1992 #define FF_LOSS_COLORQUANT  0x0010 /* loss due to color quantization */
1993 #define FF_LOSS_CHROMA      0x0020 /* loss of chroma (e.g. rgb to gray conversion) */
1994
1995 int avcodec_get_pix_fmt_loss(int dst_pix_fmt, int src_pix_fmt,
1996                              int has_alpha);
1997 int avcodec_find_best_pix_fmt(int pix_fmt_mask, int src_pix_fmt,
1998                               int has_alpha, int *loss_ptr);
1999
2000 #define FF_ALPHA_TRANSP       0x0001 /* image has some totally transparent pixels */
2001 #define FF_ALPHA_SEMI_TRANSP  0x0002 /* image has some transparent pixels */
2002 int img_get_alpha_info(const AVPicture *src,
2003                        int pix_fmt, int width, int height);
2004
2005 /* convert among pixel formats */
2006 int img_convert(AVPicture *dst, int dst_pix_fmt,
2007                 const AVPicture *src, int pix_fmt, 
2008                 int width, int height);
2009
2010 /* deinterlace a picture */
2011 int avpicture_deinterlace(AVPicture *dst, const AVPicture *src,
2012                           int pix_fmt, int width, int height);
2013
2014 /* external high level API */
2015
2016 extern AVCodec *first_avcodec;
2017
2018 /* returns LIBAVCODEC_VERSION_INT constant */
2019 unsigned avcodec_version(void);
2020 /* returns LIBAVCODEC_BUILD constant */
2021 unsigned avcodec_build(void);
2022 void avcodec_init(void);
2023
2024 void register_avcodec(AVCodec *format);
2025 AVCodec *avcodec_find_encoder(enum CodecID id);
2026 AVCodec *avcodec_find_encoder_by_name(const char *name);
2027 AVCodec *avcodec_find_decoder(enum CodecID id);
2028 AVCodec *avcodec_find_decoder_by_name(const char *name);
2029 void avcodec_string(char *buf, int buf_size, AVCodecContext *enc, int encode);
2030
2031 void avcodec_get_context_defaults(AVCodecContext *s);
2032 AVCodecContext *avcodec_alloc_context(void);
2033 void avcodec_get_frame_defaults(AVFrame *pic);
2034 AVFrame *avcodec_alloc_frame(void);
2035
2036 int avcodec_default_get_buffer(AVCodecContext *s, AVFrame *pic);
2037 void avcodec_default_release_buffer(AVCodecContext *s, AVFrame *pic);
2038 int avcodec_default_reget_buffer(AVCodecContext *s, AVFrame *pic);
2039 void avcodec_align_dimensions(AVCodecContext *s, int *width, int *height);
2040 enum PixelFormat avcodec_default_get_format(struct AVCodecContext *s, const enum PixelFormat * fmt);
2041
2042 int avcodec_thread_init(AVCodecContext *s, int thread_count);
2043 void avcodec_thread_free(AVCodecContext *s);
2044 int avcodec_thread_execute(AVCodecContext *s, int (*func)(AVCodecContext *c2, void *arg2),void **arg, int *ret, int count);
2045 int avcodec_default_execute(AVCodecContext *c, int (*func)(AVCodecContext *c2, void *arg2),void **arg, int *ret, int count);
2046 //FIXME func typedef
2047
2048 /**
2049  * opens / inits the AVCodecContext.
2050  * not thread save!
2051  */
2052 int avcodec_open(AVCodecContext *avctx, AVCodec *codec);
2053
2054 int avcodec_decode_audio(AVCodecContext *avctx, int16_t *samples, 
2055                          int *frame_size_ptr,
2056                          uint8_t *buf, int buf_size);
2057 int avcodec_decode_video(AVCodecContext *avctx, AVFrame *picture, 
2058                          int *got_picture_ptr,
2059                          uint8_t *buf, int buf_size);
2060 int avcodec_parse_frame(AVCodecContext *avctx, uint8_t **pdata, 
2061                         int *data_size_ptr,
2062                         uint8_t *buf, int buf_size);
2063 int avcodec_encode_audio(AVCodecContext *avctx, uint8_t *buf, int buf_size, 
2064                          const short *samples);
2065 int avcodec_encode_video(AVCodecContext *avctx, uint8_t *buf, int buf_size, 
2066                          const AVFrame *pict);
2067
2068 int avcodec_close(AVCodecContext *avctx);
2069
2070 void avcodec_register_all(void);
2071
2072 void avcodec_flush_buffers(AVCodecContext *avctx);
2073
2074 /* misc usefull functions */
2075
2076 /**
2077  * returns a single letter to describe the picture type
2078  */
2079 char av_get_pict_type_char(int pict_type);
2080
2081 /**
2082  * reduce a fraction.
2083  * this is usefull for framerate calculations
2084  * @param max the maximum allowed for dst_nom & dst_den
2085  * @return 1 if exact, 0 otherwise
2086  */
2087 int av_reduce(int *dst_nom, int *dst_den, int64_t nom, int64_t den, int64_t max);
2088
2089 /**
2090  * rescale a 64bit integer with rounding to nearest.
2091  * a simple a*b/c isnt possible as it can overflow
2092  */
2093 int64_t av_rescale(int64_t a, int64_t b, int64_t c);
2094
2095 /**
2096  * rescale a 64bit integer with specified rounding.
2097  * a simple a*b/c isnt possible as it can overflow
2098  */
2099 int64_t av_rescale_rnd(int64_t a, int64_t b, int64_t c, enum AVRounding);
2100
2101 /**
2102  * Interface for 0.5.0 version
2103  *
2104  * do not even think about it's usage for this moment
2105  */
2106
2107 typedef struct {
2108     /// compressed size used from given memory buffer
2109     int size;
2110     /// I/P/B frame type
2111     int frame_type;
2112 } avc_enc_result_t;
2113
2114 /**
2115  * Commands
2116  * order can't be changed - once it was defined
2117  */
2118 typedef enum {
2119     // general commands
2120     AVC_OPEN_BY_NAME = 0xACA000,
2121     AVC_OPEN_BY_CODEC_ID,
2122     AVC_OPEN_BY_FOURCC,
2123     AVC_CLOSE,
2124
2125     AVC_FLUSH,
2126     // pin - struct { uint8_t* src, uint_t src_size }
2127     // pout - struct { AVPicture* img, consumed_bytes,
2128     AVC_DECODE,
2129     // pin - struct { AVPicture* img, uint8_t* dest, uint_t dest_size }
2130     // pout - uint_t used_from_dest_size
2131     AVC_ENCODE, 
2132
2133     // query/get video commands
2134     AVC_GET_VERSION = 0xACB000,
2135     AVC_GET_WIDTH,
2136     AVC_GET_HEIGHT,
2137     AVC_GET_DELAY,
2138     AVC_GET_QUANT_TABLE,
2139     // ...
2140
2141     // query/get audio commands
2142     AVC_GET_FRAME_SIZE = 0xABC000,
2143
2144     // maybe define some simple structure which
2145     // might be passed to the user - but they can't
2146     // contain any codec specific parts and these
2147     // calls are usualy necessary only few times
2148
2149     // set video commands
2150     AVC_SET_WIDTH = 0xACD000,
2151     AVC_SET_HEIGHT,
2152
2153     // set video encoding commands
2154     AVC_SET_FRAME_RATE = 0xACD800,
2155     AVC_SET_QUALITY,
2156     AVC_SET_HURRY_UP,
2157
2158     // set audio commands
2159     AVC_SET_SAMPLE_RATE = 0xACE000,
2160     AVC_SET_CHANNELS,
2161
2162 } avc_cmd_t;
2163
2164 /**
2165  * \param handle  allocated private structure by libavcodec
2166  *                for initialization pass NULL - will be returned pout
2167  *                user is supposed to know nothing about its structure
2168  * \param cmd     type of operation to be performed
2169  * \param pint    input parameter
2170  * \param pout    output parameter
2171  *
2172  * \returns  command status - eventually for query command it might return
2173  * integer resulting value
2174  */
2175 int avcodec(void* handle, avc_cmd_t cmd, void* pin, void* pout);
2176
2177 /* frame parsing */
2178 typedef struct AVCodecParserContext {
2179     void *priv_data;
2180     struct AVCodecParser *parser;
2181     int64_t frame_offset; /* offset of the current frame */
2182     int64_t cur_offset; /* current offset 
2183                            (incremented by each av_parser_parse()) */
2184     int64_t last_frame_offset; /* offset of the last frame */
2185     /* video info */
2186     int pict_type; /* XXX: put it back in AVCodecContext */
2187     int repeat_pict; /* XXX: put it back in AVCodecContext */
2188     int64_t pts;     /* pts of the current frame */
2189     int64_t dts;     /* dts of the current frame */
2190
2191     /* private data */
2192     int64_t last_pts;
2193     int64_t last_dts;
2194     int fetch_timestamp;
2195
2196 #define AV_PARSER_PTS_NB 4
2197     int cur_frame_start_index;
2198     int64_t cur_frame_offset[AV_PARSER_PTS_NB];
2199     int64_t cur_frame_pts[AV_PARSER_PTS_NB];
2200     int64_t cur_frame_dts[AV_PARSER_PTS_NB];
2201 } AVCodecParserContext;
2202
2203 typedef struct AVCodecParser {
2204     int codec_ids[3]; /* several codec IDs are permitted */
2205     int priv_data_size;
2206     int (*parser_init)(AVCodecParserContext *s);
2207     int (*parser_parse)(AVCodecParserContext *s, 
2208                         AVCodecContext *avctx,
2209                         uint8_t **poutbuf, int *poutbuf_size, 
2210                         const uint8_t *buf, int buf_size);
2211     void (*parser_close)(AVCodecParserContext *s);
2212     struct AVCodecParser *next;
2213 } AVCodecParser;
2214
2215 extern AVCodecParser *av_first_parser;
2216
2217 void av_register_codec_parser(AVCodecParser *parser);
2218 AVCodecParserContext *av_parser_init(int codec_id);
2219 int av_parser_parse(AVCodecParserContext *s, 
2220                     AVCodecContext *avctx,
2221                     uint8_t **poutbuf, int *poutbuf_size, 
2222                     const uint8_t *buf, int buf_size,
2223                     int64_t pts, int64_t dts);
2224 void av_parser_close(AVCodecParserContext *s);
2225
2226 extern AVCodecParser mpegvideo_parser;
2227 extern AVCodecParser mpeg4video_parser;
2228 extern AVCodecParser h261_parser;
2229 extern AVCodecParser h263_parser;
2230 extern AVCodecParser h264_parser;
2231 extern AVCodecParser mpegaudio_parser;
2232 extern AVCodecParser ac3_parser;
2233
2234 /* memory */
2235 void *av_malloc(unsigned int size);
2236 void *av_mallocz(unsigned int size);
2237 void *av_realloc(void *ptr, unsigned int size);
2238 void av_free(void *ptr);
2239 char *av_strdup(const char *s);
2240 void av_freep(void *ptr);
2241 void *av_fast_realloc(void *ptr, unsigned int *size, unsigned int min_size);
2242 /* for static data only */
2243 /* call av_free_static to release all staticaly allocated tables */
2244 void av_free_static(void);
2245 void *av_mallocz_static(unsigned int size);
2246
2247 /* add by bero : in adx.c */
2248 int is_adx(const unsigned char *buf,size_t bufsize);
2249
2250 void img_copy(AVPicture *dst, const AVPicture *src,
2251               int pix_fmt, int width, int height);
2252
2253 /* av_log API */
2254
2255 #include <stdarg.h>
2256
2257 #define AV_LOG_QUIET -1
2258 #define AV_LOG_ERROR 0
2259 #define AV_LOG_INFO 1
2260 #define AV_LOG_DEBUG 2
2261
2262 #ifdef __GNUC__
2263 extern void av_log(void*, int level, const char *fmt, ...) __attribute__ ((__format__ (__printf__, 3, 4)));
2264 #else
2265 extern void av_log(void*, int level, const char *fmt, ...);
2266 #endif
2267
2268 extern void av_vlog(void*, int level, const char *fmt, va_list);
2269 extern int av_log_get_level(void);
2270 extern void av_log_set_level(int);
2271 extern void av_log_set_callback(void (*)(void*, int, const char*, va_list));
2272
2273 /* endian macros */
2274 #if !defined(BE_16) || !defined(BE_32) || !defined(LE_16) || !defined(LE_32)
2275 #define BE_16(x)  ((((uint8_t*)(x))[0] << 8) | ((uint8_t*)(x))[1])
2276 #define BE_32(x)  ((((uint8_t*)(x))[0] << 24) | \
2277                    (((uint8_t*)(x))[1] << 16) | \
2278                    (((uint8_t*)(x))[2] << 8) | \
2279                     ((uint8_t*)(x))[3])
2280 #define LE_16(x)  ((((uint8_t*)(x))[1] << 8) | ((uint8_t*)(x))[0])
2281 #define LE_32(x)  ((((uint8_t*)(x))[3] << 24) | \
2282                    (((uint8_t*)(x))[2] << 16) | \
2283                    (((uint8_t*)(x))[1] << 8) | \
2284                     ((uint8_t*)(x))[0])
2285 #endif
2286
2287 #ifdef __cplusplus
2288 }
2289 #endif
2290
2291 #endif /* AVCODEC_H */