]> git.sesse.net Git - ffmpeg/blob - libavcodec/utils.c
* bugfixing call reference
[ffmpeg] / libavcodec / utils.c
1 /*
2  * utils for libavcodec
3  * Copyright (c) 2001 Fabrice Bellard.
4  * Copyright (c) 2003 Michel Bardiaux for the av_log API
5  * Copyright (c) 2002-2004 Michael Niedermayer <michaelni@gmx.at>
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2 of the License, or (at your option) any later version.
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with this library; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21
22 /**
23  * @file utils.c
24  * utils.
25  */
26
27 #include "avcodec.h"
28 #include "dsputil.h"
29 #include "mpegvideo.h"
30 #include "integer.h"
31 #include "opt.h"
32 #include <stdarg.h>
33 #include <limits.h>
34 #include <float.h>
35
36 const uint8_t ff_reverse[256]={
37 0x00,0x80,0x40,0xC0,0x20,0xA0,0x60,0xE0,0x10,0x90,0x50,0xD0,0x30,0xB0,0x70,0xF0,
38 0x08,0x88,0x48,0xC8,0x28,0xA8,0x68,0xE8,0x18,0x98,0x58,0xD8,0x38,0xB8,0x78,0xF8,
39 0x04,0x84,0x44,0xC4,0x24,0xA4,0x64,0xE4,0x14,0x94,0x54,0xD4,0x34,0xB4,0x74,0xF4,
40 0x0C,0x8C,0x4C,0xCC,0x2C,0xAC,0x6C,0xEC,0x1C,0x9C,0x5C,0xDC,0x3C,0xBC,0x7C,0xFC,
41 0x02,0x82,0x42,0xC2,0x22,0xA2,0x62,0xE2,0x12,0x92,0x52,0xD2,0x32,0xB2,0x72,0xF2,
42 0x0A,0x8A,0x4A,0xCA,0x2A,0xAA,0x6A,0xEA,0x1A,0x9A,0x5A,0xDA,0x3A,0xBA,0x7A,0xFA,
43 0x06,0x86,0x46,0xC6,0x26,0xA6,0x66,0xE6,0x16,0x96,0x56,0xD6,0x36,0xB6,0x76,0xF6,
44 0x0E,0x8E,0x4E,0xCE,0x2E,0xAE,0x6E,0xEE,0x1E,0x9E,0x5E,0xDE,0x3E,0xBE,0x7E,0xFE,
45 0x01,0x81,0x41,0xC1,0x21,0xA1,0x61,0xE1,0x11,0x91,0x51,0xD1,0x31,0xB1,0x71,0xF1,
46 0x09,0x89,0x49,0xC9,0x29,0xA9,0x69,0xE9,0x19,0x99,0x59,0xD9,0x39,0xB9,0x79,0xF9,
47 0x05,0x85,0x45,0xC5,0x25,0xA5,0x65,0xE5,0x15,0x95,0x55,0xD5,0x35,0xB5,0x75,0xF5,
48 0x0D,0x8D,0x4D,0xCD,0x2D,0xAD,0x6D,0xED,0x1D,0x9D,0x5D,0xDD,0x3D,0xBD,0x7D,0xFD,
49 0x03,0x83,0x43,0xC3,0x23,0xA3,0x63,0xE3,0x13,0x93,0x53,0xD3,0x33,0xB3,0x73,0xF3,
50 0x0B,0x8B,0x4B,0xCB,0x2B,0xAB,0x6B,0xEB,0x1B,0x9B,0x5B,0xDB,0x3B,0xBB,0x7B,0xFB,
51 0x07,0x87,0x47,0xC7,0x27,0xA7,0x67,0xE7,0x17,0x97,0x57,0xD7,0x37,0xB7,0x77,0xF7,
52 0x0F,0x8F,0x4F,0xCF,0x2F,0xAF,0x6F,0xEF,0x1F,0x9F,0x5F,0xDF,0x3F,0xBF,0x7F,0xFF,
53 };
54
55 static int volatile entangled_thread_counter=0;
56
57 void avcodec_default_free_buffers(AVCodecContext *s);
58
59 void *av_mallocz(unsigned int size)
60 {
61     void *ptr;
62
63     ptr = av_malloc(size);
64     if (!ptr)
65         return NULL;
66     memset(ptr, 0, size);
67     return ptr;
68 }
69
70 char *av_strdup(const char *s)
71 {
72     char *ptr;
73     int len;
74     len = strlen(s) + 1;
75     ptr = av_malloc(len);
76     if (!ptr)
77         return NULL;
78     memcpy(ptr, s, len);
79     return ptr;
80 }
81
82 /**
83  * realloc which does nothing if the block is large enough
84  */
85 void *av_fast_realloc(void *ptr, unsigned int *size, unsigned int min_size)
86 {
87     if(min_size < *size)
88         return ptr;
89
90     *size= FFMAX(17*min_size/16 + 32, min_size);
91
92     return av_realloc(ptr, *size);
93 }
94
95
96 static unsigned int last_static = 0;
97 static unsigned int allocated_static = 0;
98 static void** array_static = NULL;
99
100 /**
101  * allocation of static arrays - do not use for normal allocation.
102  */
103 void *av_mallocz_static(unsigned int size)
104 {
105     void *ptr = av_mallocz(size);
106
107     if(ptr){
108         array_static =av_fast_realloc(array_static, &allocated_static, sizeof(void*)*(last_static+1));
109         if(!array_static)
110             return NULL;
111         array_static[last_static++] = ptr;
112     }
113
114     return ptr;
115 }
116
117 /**
118  * same as above, but does realloc
119  */
120
121 void *av_realloc_static(void *ptr, unsigned int size)
122 {
123     int i;
124     if(!ptr)
125       return av_mallocz_static(size);
126     /* Look for the old ptr */
127     for(i = 0; i < last_static; i++) {
128         if(array_static[i] == ptr) {
129             array_static[i] = av_realloc(array_static[i], size);
130             return array_static[i];
131         }
132     }
133     return NULL;
134
135 }
136
137 /**
138  * free all static arrays and reset pointers to 0.
139  */
140 void av_free_static(void)
141 {
142     while(last_static){
143         av_freep(&array_static[--last_static]);
144     }
145     av_freep(&array_static);
146 }
147
148 /**
149  * Call av_free_static automatically before it's too late
150  */
151
152 static void do_free(void) __attribute__ ((destructor));
153
154 static void do_free(void)
155 {
156     av_free_static();
157 }
158
159 /**
160  * Frees memory and sets the pointer to NULL.
161  * @param arg pointer to the pointer which should be freed
162  */
163 void av_freep(void *arg)
164 {
165     void **ptr= (void**)arg;
166     av_free(*ptr);
167     *ptr = NULL;
168 }
169
170 /* encoder management */
171 AVCodec *first_avcodec = NULL;
172
173 void register_avcodec(AVCodec *format)
174 {
175     AVCodec **p;
176     p = &first_avcodec;
177     while (*p != NULL) p = &(*p)->next;
178     *p = format;
179     format->next = NULL;
180 }
181
182 void avcodec_set_dimensions(AVCodecContext *s, int width, int height){
183     s->coded_width = width;
184     s->coded_height= height;
185     s->width = -((-width )>>s->lowres);
186     s->height= -((-height)>>s->lowres);
187 }
188
189 typedef struct InternalBuffer{
190     int last_pic_num;
191     uint8_t *base[4];
192     uint8_t *data[4];
193     int linesize[4];
194 }InternalBuffer;
195
196 #define INTERNAL_BUFFER_SIZE 32
197
198 #define ALIGN(x, a) (((x)+(a)-1)&~((a)-1))
199
200 void avcodec_align_dimensions(AVCodecContext *s, int *width, int *height){
201     int w_align= 1;
202     int h_align= 1;
203
204     switch(s->pix_fmt){
205     case PIX_FMT_YUV420P:
206     case PIX_FMT_YUV422:
207     case PIX_FMT_UYVY422:
208     case PIX_FMT_YUV422P:
209     case PIX_FMT_YUV444P:
210     case PIX_FMT_GRAY8:
211     case PIX_FMT_YUVJ420P:
212     case PIX_FMT_YUVJ422P:
213     case PIX_FMT_YUVJ444P:
214         w_align= 16; //FIXME check for non mpeg style codecs and use less alignment
215         h_align= 16;
216         break;
217     case PIX_FMT_YUV411P:
218     case PIX_FMT_UYVY411:
219         w_align=32;
220         h_align=8;
221         break;
222     case PIX_FMT_YUV410P:
223         if(s->codec_id == CODEC_ID_SVQ1){
224             w_align=64;
225             h_align=64;
226         }
227     case PIX_FMT_RGB555:
228         if(s->codec_id == CODEC_ID_RPZA){
229             w_align=4;
230             h_align=4;
231         }
232     case PIX_FMT_PAL8:
233         if(s->codec_id == CODEC_ID_SMC){
234             w_align=4;
235             h_align=4;
236         }
237         break;
238     case PIX_FMT_BGR24:
239         if((s->codec_id == CODEC_ID_MSZH) || (s->codec_id == CODEC_ID_ZLIB)){
240             w_align=4;
241             h_align=4;
242         }
243         break;
244     default:
245         w_align= 1;
246         h_align= 1;
247         break;
248     }
249
250     *width = ALIGN(*width , w_align);
251     *height= ALIGN(*height, h_align);
252 }
253
254 int avcodec_check_dimensions(void *av_log_ctx, unsigned int w, unsigned int h){
255     if((int)w>0 && (int)h>0 && (w+128)*(uint64_t)(h+128) < INT_MAX/4)
256         return 0;
257
258     av_log(av_log_ctx, AV_LOG_ERROR, "picture size invalid (%ux%u)\n", w, h);
259     return -1;
260 }
261
262 int avcodec_default_get_buffer(AVCodecContext *s, AVFrame *pic){
263     int i;
264     int w= s->width;
265     int h= s->height;
266     InternalBuffer *buf;
267     int *picture_number;
268
269     assert(pic->data[0]==NULL);
270     assert(INTERNAL_BUFFER_SIZE > s->internal_buffer_count);
271
272     if(avcodec_check_dimensions(s,w,h))
273         return -1;
274
275     if(s->internal_buffer==NULL){
276         s->internal_buffer= av_mallocz(INTERNAL_BUFFER_SIZE*sizeof(InternalBuffer));
277     }
278 #if 0
279     s->internal_buffer= av_fast_realloc(
280         s->internal_buffer,
281         &s->internal_buffer_size,
282         sizeof(InternalBuffer)*FFMAX(99,  s->internal_buffer_count+1)/*FIXME*/
283         );
284 #endif
285
286     buf= &((InternalBuffer*)s->internal_buffer)[s->internal_buffer_count];
287     picture_number= &(((InternalBuffer*)s->internal_buffer)[INTERNAL_BUFFER_SIZE-1]).last_pic_num; //FIXME ugly hack
288     (*picture_number)++;
289
290     if(buf->base[0]){
291         pic->age= *picture_number - buf->last_pic_num;
292         buf->last_pic_num= *picture_number;
293     }else{
294         int h_chroma_shift, v_chroma_shift;
295         int pixel_size, size[3];
296         AVPicture picture;
297
298         avcodec_get_chroma_sub_sample(s->pix_fmt, &h_chroma_shift, &v_chroma_shift);
299
300         avcodec_align_dimensions(s, &w, &h);
301
302         if(!(s->flags&CODEC_FLAG_EMU_EDGE)){
303             w+= EDGE_WIDTH*2;
304             h+= EDGE_WIDTH*2;
305         }
306         avpicture_fill(&picture, NULL, s->pix_fmt, w, h);
307         pixel_size= picture.linesize[0]*8 / w;
308 //av_log(NULL, AV_LOG_ERROR, "%d %d %d %d\n", (int)picture.data[1], w, h, s->pix_fmt);
309         assert(pixel_size>=1);
310             //FIXME next ensures that linesize= 2^x uvlinesize, thats needed because some MC code assumes it
311         if(pixel_size == 3*8)
312             w= ALIGN(w, STRIDE_ALIGN<<h_chroma_shift);
313         else
314             w= ALIGN(pixel_size*w, STRIDE_ALIGN<<(h_chroma_shift+3)) / pixel_size;
315         size[1] = avpicture_fill(&picture, NULL, s->pix_fmt, w, h);
316         size[0] = picture.linesize[0] * h;
317         size[1] -= size[0];
318         if(picture.data[2])
319             size[1]= size[2]= size[1]/2;
320         else
321             size[2]= 0;
322
323         buf->last_pic_num= -256*256*256*64;
324         memset(buf->base, 0, sizeof(buf->base));
325         memset(buf->data, 0, sizeof(buf->data));
326
327         for(i=0; i<3 && size[i]; i++){
328             const int h_shift= i==0 ? 0 : h_chroma_shift;
329             const int v_shift= i==0 ? 0 : v_chroma_shift;
330
331             buf->linesize[i]= picture.linesize[i];
332
333             buf->base[i]= av_malloc(size[i]+16); //FIXME 16
334             if(buf->base[i]==NULL) return -1;
335             memset(buf->base[i], 128, size[i]);
336
337             // no edge if EDEG EMU or not planar YUV, we check for PAL8 redundantly to protect against a exploitable bug regression ...
338             if((s->flags&CODEC_FLAG_EMU_EDGE) || (s->pix_fmt == PIX_FMT_PAL8) || !size[2])
339                 buf->data[i] = buf->base[i];
340             else
341                 buf->data[i] = buf->base[i] + ALIGN((buf->linesize[i]*EDGE_WIDTH>>v_shift) + (EDGE_WIDTH>>h_shift), STRIDE_ALIGN);
342         }
343         pic->age= 256*256*256*64;
344     }
345     pic->type= FF_BUFFER_TYPE_INTERNAL;
346
347     for(i=0; i<4; i++){
348         pic->base[i]= buf->base[i];
349         pic->data[i]= buf->data[i];
350         pic->linesize[i]= buf->linesize[i];
351     }
352     s->internal_buffer_count++;
353
354     return 0;
355 }
356
357 void avcodec_default_release_buffer(AVCodecContext *s, AVFrame *pic){
358     int i;
359     InternalBuffer *buf, *last, temp;
360
361     assert(pic->type==FF_BUFFER_TYPE_INTERNAL);
362     assert(s->internal_buffer_count);
363
364     buf = NULL; /* avoids warning */
365     for(i=0; i<s->internal_buffer_count; i++){ //just 3-5 checks so is not worth to optimize
366         buf= &((InternalBuffer*)s->internal_buffer)[i];
367         if(buf->data[0] == pic->data[0])
368             break;
369     }
370     assert(i < s->internal_buffer_count);
371     s->internal_buffer_count--;
372     last = &((InternalBuffer*)s->internal_buffer)[s->internal_buffer_count];
373
374     temp= *buf;
375     *buf= *last;
376     *last= temp;
377
378     for(i=0; i<3; i++){
379         pic->data[i]=NULL;
380 //        pic->base[i]=NULL;
381     }
382 //printf("R%X\n", pic->opaque);
383 }
384
385 int avcodec_default_reget_buffer(AVCodecContext *s, AVFrame *pic){
386     AVFrame temp_pic;
387     int i;
388
389     /* If no picture return a new buffer */
390     if(pic->data[0] == NULL) {
391         /* We will copy from buffer, so must be readable */
392         pic->buffer_hints |= FF_BUFFER_HINTS_READABLE;
393         return s->get_buffer(s, pic);
394     }
395
396     /* If internal buffer type return the same buffer */
397     if(pic->type == FF_BUFFER_TYPE_INTERNAL)
398         return 0;
399
400     /*
401      * Not internal type and reget_buffer not overridden, emulate cr buffer
402      */
403     temp_pic = *pic;
404     for(i = 0; i < 4; i++)
405         pic->data[i] = pic->base[i] = NULL;
406     pic->opaque = NULL;
407     /* Allocate new frame */
408     if (s->get_buffer(s, pic))
409         return -1;
410     /* Copy image data from old buffer to new buffer */
411     img_copy((AVPicture*)pic, (AVPicture*)&temp_pic, s->pix_fmt, s->width,
412              s->height);
413     s->release_buffer(s, &temp_pic); // Release old frame
414     return 0;
415 }
416
417 int avcodec_default_execute(AVCodecContext *c, int (*func)(AVCodecContext *c2, void *arg2),void **arg, int *ret, int count){
418     int i;
419
420     for(i=0; i<count; i++){
421         int r= func(c, arg[i]);
422         if(ret) ret[i]= r;
423     }
424     return 0;
425 }
426
427 enum PixelFormat avcodec_default_get_format(struct AVCodecContext *s, const enum PixelFormat * fmt){
428     return fmt[0];
429 }
430
431 static const char* context_to_name(void* ptr) {
432     AVCodecContext *avc= ptr;
433
434     if(avc && avc->codec && avc->codec->name)
435         return avc->codec->name;
436     else
437         return "NULL";
438 }
439
440 #define OFFSET(x) (int)&((AVCodecContext*)0)->x
441 #define DEFAULT 0 //should be NAN but it doesnt work as its not a constant in glibc as required by ANSI/ISO C
442 //these names are too long to be readable
443 #define V AV_OPT_FLAG_VIDEO_PARAM
444 #define A AV_OPT_FLAG_AUDIO_PARAM
445 #define S AV_OPT_FLAG_SUBTITLE_PARAM
446 #define E AV_OPT_FLAG_ENCODING_PARAM
447 #define D AV_OPT_FLAG_DECODING_PARAM
448
449 static AVOption options[]={
450 {"bit_rate", NULL, OFFSET(bit_rate), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX, V|A|E},
451 {"bit_rate_tolerance", NULL, OFFSET(bit_rate_tolerance), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX, V|E},
452 {"flags", NULL, OFFSET(flags), FF_OPT_TYPE_FLAGS, DEFAULT, INT_MIN, INT_MAX, V|A|E|D, "flags"},
453 {"mv4", "use four motion vector by macroblock (mpeg4)", 0, FF_OPT_TYPE_CONST, CODEC_FLAG_4MV, INT_MIN, INT_MAX, V|E, "flags"},
454 {"obmc", "use overlapped block motion compensation (h263+)", 0, FF_OPT_TYPE_CONST, CODEC_FLAG_OBMC, INT_MIN, INT_MAX, V|E, "flags"},
455 {"qpel", "use 1/4 pel motion compensation", 0, FF_OPT_TYPE_CONST, CODEC_FLAG_QPEL, INT_MIN, INT_MAX, V|E, "flags"},
456 {"loop", "use loop filter", 0, FF_OPT_TYPE_CONST, CODEC_FLAG_LOOP_FILTER, INT_MIN, INT_MAX, V|E, "flags"},
457 {"qscale", "use fixed qscale", 0, FF_OPT_TYPE_CONST, CODEC_FLAG_QSCALE, INT_MIN, INT_MAX, 0, "flags"},
458 {"gmc", "use gmc", 0, FF_OPT_TYPE_CONST, CODEC_FLAG_GMC, INT_MIN, INT_MAX, V|E, "flags"},
459 {"mv0", "always try a mb with mv=<0,0>", 0, FF_OPT_TYPE_CONST, CODEC_FLAG_MV0, INT_MIN, INT_MAX, V|E, "flags"},
460 {"part", "use data partitioning", 0, FF_OPT_TYPE_CONST, CODEC_FLAG_PART, INT_MIN, INT_MAX, V|E, "flags"},
461 {"input_preserved", NULL, 0, FF_OPT_TYPE_CONST, CODEC_FLAG_INPUT_PRESERVED, INT_MIN, INT_MAX, 0, "flags"},
462 {"pass1", "use internal 2pass ratecontrol in first  pass mode", 0, FF_OPT_TYPE_CONST, CODEC_FLAG_PASS1, INT_MIN, INT_MAX, 0, "flags"},
463 {"pass2", "use internal 2pass ratecontrol in second pass mode", 0, FF_OPT_TYPE_CONST, CODEC_FLAG_PASS2, INT_MIN, INT_MAX, 0, "flags"},
464 {"extern_huff", "use external huffman table (for mjpeg)", 0, FF_OPT_TYPE_CONST, CODEC_FLAG_EXTERN_HUFF, INT_MIN, INT_MAX, 0, "flags"},
465 {"gray", "only decode/encode grayscale", 0, FF_OPT_TYPE_CONST, CODEC_FLAG_GRAY, INT_MIN, INT_MAX, V|E|D, "flags"},
466 {"emu_edge", "don't draw edges", 0, FF_OPT_TYPE_CONST, CODEC_FLAG_EMU_EDGE, INT_MIN, INT_MAX, 0, "flags"},
467 {"psnr", "error[?] variables will be set during encoding", 0, FF_OPT_TYPE_CONST, CODEC_FLAG_PSNR, INT_MIN, INT_MAX, V|E, "flags"},
468 {"truncated", NULL, 0, FF_OPT_TYPE_CONST, CODEC_FLAG_TRUNCATED, INT_MIN, INT_MAX, 0, "flags"},
469 {"naq", "normalize adaptive quantization", 0, FF_OPT_TYPE_CONST, CODEC_FLAG_NORMALIZE_AQP, INT_MIN, INT_MAX, V|E, "flags"},
470 {"ildct", "use interlaced dct", 0, FF_OPT_TYPE_CONST, CODEC_FLAG_INTERLACED_DCT, INT_MIN, INT_MAX, V|E, "flags"},
471 {"low_delay", "force low delay", 0, FF_OPT_TYPE_CONST, CODEC_FLAG_LOW_DELAY, INT_MIN, INT_MAX, V|D, "flags"},
472 {"alt", "enable alternate scantable (mpeg2/mpeg4)", 0, FF_OPT_TYPE_CONST, CODEC_FLAG_ALT_SCAN, INT_MIN, INT_MAX, V|E, "flags"},
473 {"trell", "use trellis quantization", 0, FF_OPT_TYPE_CONST, CODEC_FLAG_TRELLIS_QUANT, INT_MIN, INT_MAX, V|E, "flags"},
474 {"global_header", "place global headers in extradata instead of every keyframe", 0, FF_OPT_TYPE_CONST, CODEC_FLAG_GLOBAL_HEADER, INT_MIN, INT_MAX, 0, "flags"},
475 {"bitexact", "use only bitexact stuff (except (i)dct)", 0, FF_OPT_TYPE_CONST, CODEC_FLAG_BITEXACT, INT_MIN, INT_MAX, A|V|S|D|E, "flags"},
476 {"aic", "h263 advanced intra coding / mpeg4 ac prediction", 0, FF_OPT_TYPE_CONST, CODEC_FLAG_AC_PRED, INT_MIN, INT_MAX, V|E, "flags"},
477 {"umv", "use unlimited motion vectors", 0, FF_OPT_TYPE_CONST, CODEC_FLAG_H263P_UMV, INT_MIN, INT_MAX, V|E, "flags"},
478 {"cbp", "use rate distortion optimization for cbp", 0, FF_OPT_TYPE_CONST, CODEC_FLAG_CBP_RD, INT_MIN, INT_MAX, V|E, "flags"},
479 {"qprd", "use rate distortion optimization for qp selection", 0, FF_OPT_TYPE_CONST, CODEC_FLAG_QP_RD, INT_MIN, INT_MAX, V|E, "flags"},
480 {"aiv", "h263 alternative inter vlc", 0, FF_OPT_TYPE_CONST, CODEC_FLAG_H263P_AIV, INT_MIN, INT_MAX, V|E, "flags"},
481 {"slice", NULL, 0, FF_OPT_TYPE_CONST, CODEC_FLAG_H263P_SLICE_STRUCT, INT_MIN, INT_MAX, V|E, "flags"},
482 {"ilme", "interlaced motion estimation", 0, FF_OPT_TYPE_CONST, CODEC_FLAG_INTERLACED_ME, INT_MIN, INT_MAX, V|E, "flags"},
483 {"scan_offset", "will reserve space for svcd scan offset user data", 0, FF_OPT_TYPE_CONST, CODEC_FLAG_SVCD_SCAN_OFFSET, INT_MIN, INT_MAX, V|E, "flags"},
484 {"cgop", "closed gop", 0, FF_OPT_TYPE_CONST, CODEC_FLAG_CLOSED_GOP, INT_MIN, INT_MAX, V|E, "flags"},
485 {"fast", "allow non spec compliant speedup tricks", 0, FF_OPT_TYPE_CONST, CODEC_FLAG2_FAST, INT_MIN, INT_MAX, V|E, "flags2"},
486 {"sgop", "strictly enforce gop size", 0, FF_OPT_TYPE_CONST, CODEC_FLAG2_STRICT_GOP, INT_MIN, INT_MAX, V|E, "flags2"},
487 {"noout", "skip bitstream encoding", 0, FF_OPT_TYPE_CONST, CODEC_FLAG2_NO_OUTPUT, INT_MIN, INT_MAX, V|E, "flags2"},
488 {"local_header", "place global headers at every keyframe instead of in extradata", 0, FF_OPT_TYPE_CONST, CODEC_FLAG2_LOCAL_HEADER, INT_MIN, INT_MAX, V|E, "flags2"},
489 {"sub_id", NULL, OFFSET(sub_id), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX},
490 {"me_method", NULL, OFFSET(me_method), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX, V|E, "me_method"},
491 {"extradata_size", NULL, OFFSET(extradata_size), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX},
492 {"time_base", NULL, OFFSET(time_base), FF_OPT_TYPE_RATIONAL, DEFAULT, INT_MIN, INT_MAX},
493 {"gop_size", NULL, OFFSET(gop_size), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX, V|E},
494 {"rate_emu", NULL, OFFSET(rate_emu), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX},
495 {"sample_rate", NULL, OFFSET(sample_rate), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX},
496 {"channels", NULL, OFFSET(channels), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX},
497 {"cutoff", "set cutoff bandwidth", OFFSET(cutoff), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX, A|E},
498 {"frame_size", NULL, OFFSET(frame_size), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX},
499 {"frame_number", NULL, OFFSET(frame_number), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX},
500 {"real_pict_num", NULL, OFFSET(real_pict_num), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX},
501 {"delay", NULL, OFFSET(delay), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX},
502 {"qcompress", NULL, OFFSET(qcompress), FF_OPT_TYPE_FLOAT, DEFAULT, FLT_MIN, FLT_MAX, V|E},
503 {"qblur", NULL, OFFSET(qblur), FF_OPT_TYPE_FLOAT, DEFAULT, FLT_MIN, FLT_MAX, V|E},
504 {"qmin", NULL, OFFSET(qmin), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX, V|E},
505 {"qmax", NULL, OFFSET(qmax), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX, V|E},
506 {"max_qdiff", NULL, OFFSET(max_qdiff), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX, V|E},
507 {"max_b_frames", NULL, OFFSET(max_b_frames), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX, V|E},
508 {"b_quant_factor", NULL, OFFSET(b_quant_factor), FF_OPT_TYPE_FLOAT, DEFAULT, FLT_MIN, FLT_MAX, V|E},
509 {"rc_strategy", NULL, OFFSET(rc_strategy), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX, V|E},
510 {"b_strategy", NULL, OFFSET(b_frame_strategy), FF_OPT_TYPE_INT, 0, INT_MIN, INT_MAX, V|E},
511 {"hurry_up", NULL, OFFSET(hurry_up), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX, V|D},
512 {"rtp_mode", NULL, OFFSET(rtp_mode), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX},
513 {"rtp_payload_size", NULL, OFFSET(rtp_payload_size), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX},
514 {"mv_bits", NULL, OFFSET(mv_bits), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX},
515 {"header_bits", NULL, OFFSET(header_bits), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX},
516 {"i_tex_bits", NULL, OFFSET(i_tex_bits), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX},
517 {"p_tex_bits", NULL, OFFSET(p_tex_bits), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX},
518 {"i_count", NULL, OFFSET(i_count), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX},
519 {"p_count", NULL, OFFSET(p_count), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX},
520 {"skip_count", NULL, OFFSET(skip_count), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX},
521 {"misc_bits", NULL, OFFSET(misc_bits), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX},
522 {"frame_bits", NULL, OFFSET(frame_bits), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX},
523 {"codec_tag", NULL, OFFSET(codec_tag), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX},
524 {"bugs", NULL, OFFSET(workaround_bugs), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX, V|D, "bug"},
525 {"autodetect", NULL, 0, FF_OPT_TYPE_CONST, FF_BUG_AUTODETECT, INT_MIN, INT_MAX, V|D, "bug"},
526 {"old_msmpeg4", NULL, 0, FF_OPT_TYPE_CONST, FF_BUG_OLD_MSMPEG4, INT_MIN, INT_MAX, V|D, "bug"},
527 {"xvid_ilace", NULL, 0, FF_OPT_TYPE_CONST, FF_BUG_XVID_ILACE, INT_MIN, INT_MAX, V|D, "bug"},
528 {"ump4", NULL, 0, FF_OPT_TYPE_CONST, FF_BUG_UMP4, INT_MIN, INT_MAX, V|D, "bug"},
529 {"no_padding", NULL, 0, FF_OPT_TYPE_CONST, FF_BUG_NO_PADDING, INT_MIN, INT_MAX, V|D, "bug"},
530 {"amv", NULL, 0, FF_OPT_TYPE_CONST, FF_BUG_AMV, INT_MIN, INT_MAX, V|D, "bug"},
531 {"ac_vlc", NULL, 0, FF_OPT_TYPE_CONST, FF_BUG_AC_VLC, INT_MIN, INT_MAX, V|D, "bug"},
532 {"qpel_chroma", NULL, 0, FF_OPT_TYPE_CONST, FF_BUG_QPEL_CHROMA, INT_MIN, INT_MAX, V|D, "bug"},
533 {"std_qpel", NULL, 0, FF_OPT_TYPE_CONST, FF_BUG_STD_QPEL, INT_MIN, INT_MAX, V|D, "bug"},
534 {"qpel_chroma2", NULL, 0, FF_OPT_TYPE_CONST, FF_BUG_QPEL_CHROMA2, INT_MIN, INT_MAX, V|D, "bug"},
535 {"direct_blocksize", NULL, 0, FF_OPT_TYPE_CONST, FF_BUG_DIRECT_BLOCKSIZE, INT_MIN, INT_MAX, V|D, "bug"},
536 {"edge", NULL, 0, FF_OPT_TYPE_CONST, FF_BUG_EDGE, INT_MIN, INT_MAX, V|D, "bug"},
537 {"hpel_chroma", NULL, 0, FF_OPT_TYPE_CONST, FF_BUG_HPEL_CHROMA, INT_MIN, INT_MAX, V|D, "bug"},
538 {"dc_clip", NULL, 0, FF_OPT_TYPE_CONST, FF_BUG_DC_CLIP, INT_MIN, INT_MAX, V|D, "bug"},
539 {"ms", NULL, 0, FF_OPT_TYPE_CONST, FF_BUG_MS, INT_MIN, INT_MAX, V|D, "bug"},
540 {"lelim", "single coefficient elimination threshold for luminance (negative values also consider dc coefficient)", OFFSET(luma_elim_threshold), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX, V|E},
541 {"celim", "single coefficient elimination threshold for chrominance (negative values also consider dc coefficient)", OFFSET(chroma_elim_threshold), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX, V|E},
542 {"strict", NULL, OFFSET(strict_std_compliance), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX, V|E, "strict"},
543 {"very", NULL, 0, FF_OPT_TYPE_CONST, FF_COMPLIANCE_VERY_STRICT, INT_MIN, INT_MAX, V|E, "strict"},
544 {"strict", NULL, 0, FF_OPT_TYPE_CONST, FF_COMPLIANCE_STRICT, INT_MIN, INT_MAX, V|E, "strict"},
545 {"normal", NULL, 0, FF_OPT_TYPE_CONST, FF_COMPLIANCE_NORMAL, INT_MIN, INT_MAX, V|E, "strict"},
546 {"inofficial", NULL, 0, FF_OPT_TYPE_CONST, FF_COMPLIANCE_INOFFICIAL, INT_MIN, INT_MAX, V|E, "strict"},
547 {"experimental", NULL, 0, FF_OPT_TYPE_CONST, FF_COMPLIANCE_EXPERIMENTAL, INT_MIN, INT_MAX, V|E, "strict"},
548 {"b_quant_offset", NULL, OFFSET(b_quant_offset), FF_OPT_TYPE_FLOAT, DEFAULT, FLT_MIN, FLT_MAX, V|E},
549 {"er", NULL, OFFSET(error_resilience), FF_OPT_TYPE_INT, FF_ER_CAREFUL, INT_MIN, INT_MAX, V|D, "er"},
550 {"careful", NULL, 0, FF_OPT_TYPE_CONST, FF_ER_CAREFUL, INT_MIN, INT_MAX, V|D, "er"},
551 {"compliant", NULL, 0, FF_OPT_TYPE_CONST, FF_ER_COMPLIANT, INT_MIN, INT_MAX, V|D, "er"},
552 {"aggressive", NULL, 0, FF_OPT_TYPE_CONST, FF_ER_AGGRESSIVE, INT_MIN, INT_MAX, V|D, "er"},
553 {"very_aggressive", NULL, 0, FF_OPT_TYPE_CONST, FF_ER_VERY_AGGRESSIVE, INT_MIN, INT_MAX, V|D, "er"},
554 {"has_b_frames", NULL, OFFSET(has_b_frames), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX},
555 {"block_align", NULL, OFFSET(block_align), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX},
556 {"parse_only", NULL, OFFSET(parse_only), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX},
557 {"mpeg_quant", NULL, OFFSET(mpeg_quant), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX, V|E},
558 {"stats_out", NULL, OFFSET(stats_out), FF_OPT_TYPE_STRING, DEFAULT, CHAR_MIN, CHAR_MAX},
559 {"stats_in", NULL, OFFSET(stats_in), FF_OPT_TYPE_STRING, DEFAULT, CHAR_MIN, CHAR_MAX},
560 {"rc_qsquish", NULL, OFFSET(rc_qsquish), FF_OPT_TYPE_FLOAT, DEFAULT, FLT_MIN, FLT_MAX, V|E},
561 {"rc_qmod_amp", NULL, OFFSET(rc_qmod_amp), FF_OPT_TYPE_FLOAT, DEFAULT, FLT_MIN, FLT_MAX, V|E},
562 {"rc_qmod_freq", NULL, OFFSET(rc_qmod_freq), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX, V|E},
563 {"rc_override_count", NULL, OFFSET(rc_override_count), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX},
564 {"rc_eq", NULL, OFFSET(rc_eq), FF_OPT_TYPE_STRING, DEFAULT, CHAR_MIN, CHAR_MAX, V|E},
565 {"rc_max_rate", NULL, OFFSET(rc_max_rate), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX, V|E},
566 {"rc_min_rate", NULL, OFFSET(rc_min_rate), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX, V|E},
567 {"rc_buffer_size", NULL, OFFSET(rc_buffer_size), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX, V|E},
568 {"rc_buf_aggressivity", NULL, OFFSET(rc_buffer_aggressivity), FF_OPT_TYPE_FLOAT, DEFAULT, FLT_MIN, FLT_MAX, V|E},
569 {"i_quant_factor", NULL, OFFSET(i_quant_factor), FF_OPT_TYPE_FLOAT, DEFAULT, FLT_MIN, FLT_MAX, V|E},
570 {"i_quant_offset", NULL, OFFSET(i_quant_offset), FF_OPT_TYPE_FLOAT, DEFAULT, FLT_MIN, FLT_MAX, V|E},
571 {"rc_initial_cplx", NULL, OFFSET(rc_initial_cplx), FF_OPT_TYPE_FLOAT, DEFAULT, FLT_MIN, FLT_MAX, V|E},
572 {"dct", NULL, OFFSET(dct_algo), FF_OPT_TYPE_INT, DEFAULT, 0, INT_MAX, V|E, "dct"},
573 {"auto", NULL, 0, FF_OPT_TYPE_CONST, FF_DCT_AUTO, INT_MIN, INT_MAX, V|E, "dct"},
574 {"fastint", NULL, 0, FF_OPT_TYPE_CONST, FF_DCT_FASTINT, INT_MIN, INT_MAX, V|E, "dct"},
575 {"int", NULL, 0, FF_OPT_TYPE_CONST, FF_DCT_INT, INT_MIN, INT_MAX, V|E, "dct"},
576 {"mmx", NULL, 0, FF_OPT_TYPE_CONST, FF_DCT_MMX, INT_MIN, INT_MAX, V|E, "dct"},
577 {"mlib", NULL, 0, FF_OPT_TYPE_CONST, FF_DCT_MLIB, INT_MIN, INT_MAX, V|E, "dct"},
578 {"altivec", NULL, 0, FF_OPT_TYPE_CONST, FF_DCT_ALTIVEC, INT_MIN, INT_MAX, V|E, "dct"},
579 {"faan", NULL, 0, FF_OPT_TYPE_CONST, FF_DCT_FAAN, INT_MIN, INT_MAX, V|E, "dct"},
580 {"lumi_mask", "lumimasking", OFFSET(lumi_masking), FF_OPT_TYPE_FLOAT, 0, FLT_MIN, FLT_MAX, V|E},
581 {"tcplx_mask", "temporal complexity masking", OFFSET(temporal_cplx_masking), FF_OPT_TYPE_FLOAT, 0, FLT_MIN, FLT_MAX, V|E},
582 {"scplx_mask", "spatial complexity masking", OFFSET(spatial_cplx_masking), FF_OPT_TYPE_FLOAT, 0, FLT_MIN, FLT_MAX, V|E},
583 {"p_mask", "inter masking", OFFSET(p_masking), FF_OPT_TYPE_FLOAT, 0, FLT_MIN, FLT_MAX, V|E},
584 {"dark_mask", "darkness masking", OFFSET(dark_masking), FF_OPT_TYPE_FLOAT, 0, FLT_MIN, FLT_MAX, V|E},
585 {"unused", NULL, OFFSET(unused), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX},
586 {"idct", NULL, OFFSET(idct_algo), FF_OPT_TYPE_INT, DEFAULT, 0, INT_MAX, V|E|D, "idct"},
587 {"auto", NULL, 0, FF_OPT_TYPE_CONST, FF_IDCT_AUTO, INT_MIN, INT_MAX, V|E|D, "idct"},
588 {"int", NULL, 0, FF_OPT_TYPE_CONST, FF_IDCT_INT, INT_MIN, INT_MAX, V|E|D, "idct"},
589 {"simple", NULL, 0, FF_OPT_TYPE_CONST, FF_IDCT_SIMPLE, INT_MIN, INT_MAX, V|E|D, "idct"},
590 {"simplemmx", NULL, 0, FF_OPT_TYPE_CONST, FF_IDCT_SIMPLEMMX, INT_MIN, INT_MAX, V|E|D, "idct"},
591 {"libmpeg2mmx", NULL, 0, FF_OPT_TYPE_CONST, FF_IDCT_LIBMPEG2MMX, INT_MIN, INT_MAX, V|E|D, "idct"},
592 {"ps2", NULL, 0, FF_OPT_TYPE_CONST, FF_IDCT_PS2, INT_MIN, INT_MAX, V|E|D, "idct"},
593 {"mlib", NULL, 0, FF_OPT_TYPE_CONST, FF_IDCT_MLIB, INT_MIN, INT_MAX, V|E|D, "idct"},
594 {"arm", NULL, 0, FF_OPT_TYPE_CONST, FF_IDCT_ARM, INT_MIN, INT_MAX, V|E|D, "idct"},
595 {"altivec", NULL, 0, FF_OPT_TYPE_CONST, FF_IDCT_ALTIVEC, INT_MIN, INT_MAX, V|E|D, "idct"},
596 {"sh4", NULL, 0, FF_OPT_TYPE_CONST, FF_IDCT_SH4, INT_MIN, INT_MAX, V|E|D, "idct"},
597 {"simplearm", NULL, 0, FF_OPT_TYPE_CONST, FF_IDCT_SIMPLEARM, INT_MIN, INT_MAX, V|E|D, "idct"},
598 {"h264", NULL, 0, FF_OPT_TYPE_CONST, FF_IDCT_H264, INT_MIN, INT_MAX, V|E|D, "idct"},
599 {"vp3", NULL, 0, FF_OPT_TYPE_CONST, FF_IDCT_VP3, INT_MIN, INT_MAX, V|E|D, "idct"},
600 {"ipp", NULL, 0, FF_OPT_TYPE_CONST, FF_IDCT_IPP, INT_MIN, INT_MAX, V|E|D, "idct"},
601 {"xvidmmx", NULL, 0, FF_OPT_TYPE_CONST, FF_IDCT_XVIDMMX, INT_MIN, INT_MAX, V|E|D, "idct"},
602 {"slice_count", NULL, OFFSET(slice_count), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX},
603 {"ec", NULL, OFFSET(error_concealment), FF_OPT_TYPE_FLAGS, 3, INT_MIN, INT_MAX, V|D, "ec"},
604 {"guess_mvs", NULL, 0, FF_OPT_TYPE_CONST, FF_EC_GUESS_MVS, INT_MIN, INT_MAX, V|D, "ec"},
605 {"deblock", NULL, 0, FF_OPT_TYPE_CONST, FF_EC_DEBLOCK, INT_MIN, INT_MAX, V|D, "ec"},
606 {"bits_per_sample", NULL, OFFSET(bits_per_sample), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX},
607 {"pred", "prediction method", OFFSET(prediction_method), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX, V|E, "pred"},
608 {"left", NULL, 0, FF_OPT_TYPE_CONST, FF_PRED_LEFT, INT_MIN, INT_MAX, V|E, "pred"},
609 {"plane", NULL, 0, FF_OPT_TYPE_CONST, FF_PRED_PLANE, INT_MIN, INT_MAX, V|E, "pred"},
610 {"median", NULL, 0, FF_OPT_TYPE_CONST, FF_PRED_MEDIAN, INT_MIN, INT_MAX, V|E, "pred"},
611 {"aspect", NULL, OFFSET(sample_aspect_ratio), FF_OPT_TYPE_RATIONAL, DEFAULT, 0, 10, V|E},
612 {"debug", "print specific debug info", OFFSET(debug), FF_OPT_TYPE_FLAGS, DEFAULT, 0, INT_MAX, V|A|S|E|D, "debug"},
613 {"pict", NULL, 0, FF_OPT_TYPE_CONST, FF_DEBUG_PICT_INFO, INT_MIN, INT_MAX, V|D, "debug"},
614 {"rc", NULL, 0, FF_OPT_TYPE_CONST, FF_DEBUG_RC, INT_MIN, INT_MAX, V|E, "debug"},
615 {"bitstream", NULL, 0, FF_OPT_TYPE_CONST, FF_DEBUG_BITSTREAM, INT_MIN, INT_MAX, V|D, "debug"},
616 {"mb_type", NULL, 0, FF_OPT_TYPE_CONST, FF_DEBUG_MB_TYPE, INT_MIN, INT_MAX, V|D, "debug"},
617 {"qp", NULL, 0, FF_OPT_TYPE_CONST, FF_DEBUG_QP, INT_MIN, INT_MAX, V|D, "debug"},
618 {"mv", NULL, 0, FF_OPT_TYPE_CONST, FF_DEBUG_MV, INT_MIN, INT_MAX, V|D, "debug"},
619 {"dct_coeff", NULL, 0, FF_OPT_TYPE_CONST, FF_DEBUG_DCT_COEFF, INT_MIN, INT_MAX, V|D, "debug"},
620 {"skip", NULL, 0, FF_OPT_TYPE_CONST, FF_DEBUG_SKIP, INT_MIN, INT_MAX, V|D, "debug"},
621 {"startcode", NULL, 0, FF_OPT_TYPE_CONST, FF_DEBUG_STARTCODE, INT_MIN, INT_MAX, V|D, "debug"},
622 {"pts", NULL, 0, FF_OPT_TYPE_CONST, FF_DEBUG_PTS, INT_MIN, INT_MAX, V|D, "debug"},
623 {"er", NULL, 0, FF_OPT_TYPE_CONST, FF_DEBUG_ER, INT_MIN, INT_MAX, V|D, "debug"},
624 {"mmco", NULL, 0, FF_OPT_TYPE_CONST, FF_DEBUG_MMCO, INT_MIN, INT_MAX, V|D, "debug"},
625 {"bugs", NULL, 0, FF_OPT_TYPE_CONST, FF_DEBUG_BUGS, INT_MIN, INT_MAX, V|D, "debug"},
626 {"vis_qp", NULL, 0, FF_OPT_TYPE_CONST, FF_DEBUG_VIS_QP, INT_MIN, INT_MAX, V|D, "debug"},
627 {"vis_mb_type", NULL, 0, FF_OPT_TYPE_CONST, FF_DEBUG_VIS_MB_TYPE, INT_MIN, INT_MAX, V|D, "debug"},
628 {"vismv", "visualize motion vectors", OFFSET(debug_mv), FF_OPT_TYPE_INT, DEFAULT, 0, INT_MAX, V|D, "debug_mv"},
629 {"pf", NULL, 0, FF_OPT_TYPE_CONST, FF_DEBUG_VIS_MV_P_FOR, INT_MIN, INT_MAX, V|D, "debug_mv"},
630 {"bf", NULL, 0, FF_OPT_TYPE_CONST, FF_DEBUG_VIS_MV_B_FOR, INT_MIN, INT_MAX, V|D, "debug_mv"},
631 {"bb", NULL, 0, FF_OPT_TYPE_CONST, FF_DEBUG_VIS_MV_B_BACK, INT_MIN, INT_MAX, V|D, "debug_mv"},
632 {"mb_qmin", NULL, OFFSET(mb_qmin), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX, V|E},
633 {"mb_qmax", NULL, OFFSET(mb_qmax), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX, V|E},
634 {"cmp", "full pel me compare function", OFFSET(me_cmp), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX, V|E, "cmp_func"},
635 {"subcmp", "sub pel me compare function", OFFSET(me_sub_cmp), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX, V|E, "cmp_func"},
636 {"mbcmp", "macroblock compare function", OFFSET(mb_cmp), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX, V|E, "cmp_func"},
637 {"ildctcmp", "interlaced dct compare function", OFFSET(ildct_cmp), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX, V|E, "cmp_func"},
638 {"dia_size", NULL, OFFSET(dia_size), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX, V|E},
639 {"last_pred", NULL, OFFSET(last_predictor_count), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX, V|E},
640 {"preme", NULL, OFFSET(pre_me), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX, V|E},
641 {"precmp", "pre motion estimation compare function", OFFSET(me_pre_cmp), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX, V|E, "cmp_func"},
642 {"sad", NULL, 0, FF_OPT_TYPE_CONST, FF_CMP_SAD, INT_MIN, INT_MAX, V|E, "cmp_func"},
643 {"sse", NULL, 0, FF_OPT_TYPE_CONST, FF_CMP_SSE, INT_MIN, INT_MAX, V|E, "cmp_func"},
644 {"satd", NULL, 0, FF_OPT_TYPE_CONST, FF_CMP_SATD, INT_MIN, INT_MAX, V|E, "cmp_func"},
645 {"dct", NULL, 0, FF_OPT_TYPE_CONST, FF_CMP_DCT, INT_MIN, INT_MAX, V|E, "cmp_func"},
646 {"psnr", NULL, 0, FF_OPT_TYPE_CONST, FF_CMP_PSNR, INT_MIN, INT_MAX, V|E, "cmp_func"},
647 {"bit", NULL, 0, FF_OPT_TYPE_CONST, FF_CMP_BIT, INT_MIN, INT_MAX, V|E, "cmp_func"},
648 {"rd", NULL, 0, FF_OPT_TYPE_CONST, FF_CMP_RD, INT_MIN, INT_MAX, V|E, "cmp_func"},
649 {"zero", NULL, 0, FF_OPT_TYPE_CONST, FF_CMP_ZERO, INT_MIN, INT_MAX, V|E, "cmp_func"},
650 {"vsad", NULL, 0, FF_OPT_TYPE_CONST, FF_CMP_VSAD, INT_MIN, INT_MAX, V|E, "cmp_func"},
651 {"vsse", NULL, 0, FF_OPT_TYPE_CONST, FF_CMP_VSSE, INT_MIN, INT_MAX, V|E, "cmp_func"},
652 {"nsse", NULL, 0, FF_OPT_TYPE_CONST, FF_CMP_NSSE, INT_MIN, INT_MAX, V|E, "cmp_func"},
653 {"w53", NULL, 0, FF_OPT_TYPE_CONST, FF_CMP_W53, INT_MIN, INT_MAX, V|E, "cmp_func"},
654 {"w97", NULL, 0, FF_OPT_TYPE_CONST, FF_CMP_W97, INT_MIN, INT_MAX, V|E, "cmp_func"},
655 {"dctmax", NULL, 0, FF_OPT_TYPE_CONST, FF_CMP_DCTMAX, INT_MIN, INT_MAX, V|E, "cmp_func"},
656 {"chroma", NULL, 0, FF_OPT_TYPE_CONST, FF_CMP_CHROMA, INT_MIN, INT_MAX, V|E, "cmp_func"},
657 {"pre_dia_size", NULL, OFFSET(pre_dia_size), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX, V|E},
658 {"subq", "sub pel motion estimation quality", OFFSET(me_subpel_quality), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX, V|E},
659 {"dtg_active_format", NULL, OFFSET(dtg_active_format), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX},
660 {"me_range", NULL, OFFSET(me_range), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX, V|E},
661 {"ibias", NULL, OFFSET(intra_quant_bias), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX, V|E},
662 {"pbias", NULL, OFFSET(inter_quant_bias), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX, V|E},
663 {"color_table_id", NULL, OFFSET(color_table_id), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX},
664 {"internal_buffer_count", NULL, OFFSET(internal_buffer_count), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX},
665 {"global_quality", NULL, OFFSET(global_quality), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX},
666 {"coder", NULL, OFFSET(coder_type), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX, V|E, "coder"},
667 {"vlc", "variable length coder / huffman coder", 0, FF_OPT_TYPE_CONST, FF_CODER_TYPE_VLC, INT_MIN, INT_MAX, V|E, "coder"},
668 {"ac", "arithmetic coder", 0, FF_OPT_TYPE_CONST, FF_CODER_TYPE_AC, INT_MIN, INT_MAX, V|E, "coder"},
669 {"context", "context model", OFFSET(context_model), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX, V|E},
670 {"slice_flags", NULL, OFFSET(slice_flags), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX},
671 {"xvmc_acceleration", NULL, OFFSET(xvmc_acceleration), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX},
672 {"mbd", NULL, OFFSET(mb_decision), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX, V|E, "mbd"},
673 {"simple", NULL, 0, FF_OPT_TYPE_CONST, FF_MB_DECISION_SIMPLE, INT_MIN, INT_MAX, V|E, "mbd"},
674 {"bits", NULL, 0, FF_OPT_TYPE_CONST, FF_MB_DECISION_BITS, INT_MIN, INT_MAX, V|E, "mbd"},
675 {"rd", NULL, 0, FF_OPT_TYPE_CONST, FF_MB_DECISION_RD, INT_MIN, INT_MAX, V|E, "mbd"},
676 {"stream_codec_tag", NULL, OFFSET(stream_codec_tag), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX},
677 {"sc_threshold", NULL, OFFSET(scenechange_threshold), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX, V|E},
678 {"lmin", "min lagrange factor", OFFSET(lmin), FF_OPT_TYPE_INT,  2*FF_QP2LAMBDA, 0, INT_MAX, V|E},
679 {"lmax", "max lagrange factor", OFFSET(lmax), FF_OPT_TYPE_INT, 31*FF_QP2LAMBDA, 0, INT_MAX, V|E},
680 {"nr", "noise reduction", OFFSET(noise_reduction), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX, V|E},
681 {"rc_init_occupancy", NULL, OFFSET(rc_initial_buffer_occupancy), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX, V|E},
682 {"inter_threshold", NULL, OFFSET(inter_threshold), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX, V|E},
683 {"flags2", NULL, OFFSET(flags2), FF_OPT_TYPE_FLAGS, DEFAULT, INT_MIN, INT_MAX, V|A|E|D, "flags2"},
684 {"error_rate", NULL, OFFSET(error_rate), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX},
685 {"antialias", NULL, OFFSET(antialias_algo), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX, V|D, "aa"},
686 {"auto", NULL, 0, FF_OPT_TYPE_CONST, FF_AA_AUTO, INT_MIN, INT_MAX, V|D, "aa"},
687 {"fastint", NULL, 0, FF_OPT_TYPE_CONST, FF_AA_FASTINT, INT_MIN, INT_MAX, V|D, "aa"},
688 {"int", NULL, 0, FF_OPT_TYPE_CONST, FF_AA_INT, INT_MIN, INT_MAX, V|D, "aa"},
689 {"float", NULL, 0, FF_OPT_TYPE_CONST, FF_AA_FLOAT, INT_MIN, INT_MAX, V|D, "aa"},
690 {"qns", "quantizer noise shaping", OFFSET(quantizer_noise_shaping), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX, V|E},
691 {"thread_count", NULL, OFFSET(thread_count), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX, V|E|D},
692 {"me_threshold", "motion estimaton threshold", OFFSET(me_threshold), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX},
693 {"mb_threshold", NULL, OFFSET(mb_threshold), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX},
694 {"dc", NULL, OFFSET(intra_dc_precision), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX, V|E},
695 {"nssew", "nsse weight", OFFSET(nsse_weight), FF_OPT_TYPE_INT, 8, INT_MIN, INT_MAX, V|E},
696 {"skip_top", NULL, OFFSET(skip_top), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX, V|D},
697 {"skip_bottom", NULL, OFFSET(skip_bottom), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX, V|D},
698 {"profile", NULL, OFFSET(profile), FF_OPT_TYPE_INT, FF_PROFILE_UNKNOWN, INT_MIN, INT_MAX, V|A|E, "profile"},
699 {"unknown", NULL, 0, FF_OPT_TYPE_CONST, FF_PROFILE_UNKNOWN, INT_MIN, INT_MAX, V|A|E, "profile"},
700 {"level", NULL, OFFSET(level), FF_OPT_TYPE_INT, FF_LEVEL_UNKNOWN, INT_MIN, INT_MAX, V|A|E, "level"},
701 {"unknown", NULL, 0, FF_OPT_TYPE_CONST, FF_LEVEL_UNKNOWN, INT_MIN, INT_MAX, V|A|E, "level"},
702 {"lowres", NULL, OFFSET(lowres), FF_OPT_TYPE_INT, 0, 0, INT_MAX, V|D},
703 {"frame_skip_threshold", NULL, OFFSET(frame_skip_threshold), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX, V|E},
704 {"frame_skip_factor", NULL, OFFSET(frame_skip_factor), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX, V|E},
705 {"frame_skip_exp", NULL, OFFSET(frame_skip_exp), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX, V|E},
706 {"skipcmp", "frame skip compare function", OFFSET(frame_skip_cmp), FF_OPT_TYPE_INT, FF_CMP_DCTMAX, INT_MIN, INT_MAX, V|E, "cmp_func"},
707 {"border_mask", NULL, OFFSET(border_masking), FF_OPT_TYPE_FLOAT, DEFAULT, FLT_MIN, FLT_MAX, V|E},
708 {"mb_lmin", NULL, OFFSET(mb_lmin), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX, V|E},
709 {"mb_lmax", NULL, OFFSET(mb_lmax), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX, V|E},
710 {"me_penalty_compensation", NULL, OFFSET(me_penalty_compensation), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX, V|E},
711 {"bidir_refine", NULL, OFFSET(bidir_refine), FF_OPT_TYPE_INT, DEFAULT, 0, 4, V|E},
712 {"brd_scale", NULL, OFFSET(brd_scale), FF_OPT_TYPE_INT, DEFAULT, 0, 10, V|E},
713 {"crf", NULL, OFFSET(crf), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX, V|E},
714 {"cqp", NULL, OFFSET(cqp), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX, V|E},
715 {"keyint_min", NULL, OFFSET(keyint_min), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX, V|E},
716 {"refs", NULL, OFFSET(refs), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX, V|E},
717 {"chromaoffset", NULL, OFFSET(chromaoffset), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX, V|E},
718 {"bframebias", NULL, OFFSET(bframebias), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX, V|E},
719 {"trellis", NULL, OFFSET(trellis), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX, V|E},
720 {"directpred", NULL, OFFSET(directpred), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX, V|E},
721 {"bpyramid", NULL, 0, FF_OPT_TYPE_CONST, CODEC_FLAG2_BPYRAMID, INT_MIN, INT_MAX, V|E, "flags2"},
722 {"wpred", NULL, 0, FF_OPT_TYPE_CONST, CODEC_FLAG2_WPRED, INT_MIN, INT_MAX, V|E, "flags2"},
723 {"mixed_refs", NULL, 0, FF_OPT_TYPE_CONST, CODEC_FLAG2_MIXED_REFS, INT_MIN, INT_MAX, V|E, "flags2"},
724 {"8x8dct", NULL, 0, FF_OPT_TYPE_CONST, CODEC_FLAG2_8X8DCT, INT_MIN, INT_MAX, V|E, "flags2"},
725 {"fastpskip", NULL, 0, FF_OPT_TYPE_CONST, CODEC_FLAG2_FASTPSKIP, INT_MIN, INT_MAX, V|E, "flags2"},
726 {"aud", NULL, 0, FF_OPT_TYPE_CONST, CODEC_FLAG2_AUD, INT_MIN, INT_MAX, V|E, "flags2"},
727 {"brdo", NULL, 0, FF_OPT_TYPE_CONST, CODEC_FLAG2_BRDO, INT_MIN, INT_MAX, V|E, "flags2"},
728 {"complexityblur", NULL, OFFSET(complexityblur), FF_OPT_TYPE_FLOAT, DEFAULT, FLT_MIN, FLT_MAX, V|E},
729 {"deblockalpha", NULL, OFFSET(deblockalpha), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX, V|E},
730 {"deblockbeta", NULL, OFFSET(deblockbeta), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX, V|E},
731 {"partitions", NULL, OFFSET(partitions), FF_OPT_TYPE_FLAGS, DEFAULT, INT_MIN, INT_MAX, V|E, "partitions"},
732 {"parti4x4", NULL, 0, FF_OPT_TYPE_CONST, X264_PART_I4X4, INT_MIN, INT_MAX, V|E, "partitions"},
733 {"parti8x8", NULL, 0, FF_OPT_TYPE_CONST, X264_PART_I8X8, INT_MIN, INT_MAX, V|E, "partitions"},
734 {"partp4x4", NULL, 0, FF_OPT_TYPE_CONST, X264_PART_P4X4, INT_MIN, INT_MAX, V|E, "partitions"},
735 {"partp8x8", NULL, 0, FF_OPT_TYPE_CONST, X264_PART_P8X8, INT_MIN, INT_MAX, V|E, "partitions"},
736 {"partb8x8", NULL, 0, FF_OPT_TYPE_CONST, X264_PART_B8X8, INT_MIN, INT_MAX, V|E, "partitions"},
737 {"sc_factor", NULL, OFFSET(scenechange_factor), FF_OPT_TYPE_INT, 6, 0, INT_MAX, V|E},
738 {NULL},
739 };
740
741 #undef A
742 #undef V
743
744 static AVClass av_codec_context_class = { "AVCodecContext", context_to_name, options };
745
746 void avcodec_get_context_defaults(AVCodecContext *s){
747     memset(s, 0, sizeof(AVCodecContext));
748
749     s->av_class= &av_codec_context_class;
750     s->bit_rate= 800*1000;
751     s->bit_rate_tolerance= s->bit_rate*10;
752     s->qmin= 2;
753     s->qmax= 31;
754     s->mb_lmin= FF_QP2LAMBDA * 2;
755     s->mb_lmax= FF_QP2LAMBDA * 31;
756     s->rc_eq= "tex^qComp";
757     s->cqp = -1;
758     s->refs = 1;
759     s->directpred = 2;
760     s->qcompress= 0.5;
761     s->complexityblur = 20.0;
762     s->keyint_min = 25;
763     s->flags2 = CODEC_FLAG2_FASTPSKIP;
764     s->max_qdiff= 3;
765     s->b_quant_factor=1.25;
766     s->b_quant_offset=1.25;
767     s->i_quant_factor=-0.8;
768     s->i_quant_offset=0.0;
769     s->error_concealment= 3;
770     s->error_resilience= 1;
771     s->workaround_bugs= FF_BUG_AUTODETECT;
772     s->time_base= (AVRational){0,1};
773     s->gop_size= 50;
774     s->me_method= ME_EPZS;
775     s->get_buffer= avcodec_default_get_buffer;
776     s->release_buffer= avcodec_default_release_buffer;
777     s->get_format= avcodec_default_get_format;
778     s->execute= avcodec_default_execute;
779     s->thread_count=1;
780     s->me_subpel_quality=8;
781     s->lmin= FF_QP2LAMBDA * s->qmin;
782     s->lmax= FF_QP2LAMBDA * s->qmax;
783     s->sample_aspect_ratio= (AVRational){0,1};
784     s->ildct_cmp= FF_CMP_VSAD;
785     s->profile= FF_PROFILE_UNKNOWN;
786     s->level= FF_LEVEL_UNKNOWN;
787     s->me_penalty_compensation= 256;
788     s->pix_fmt= PIX_FMT_NONE;
789     s->frame_skip_cmp= FF_CMP_DCTMAX;
790     s->nsse_weight= 8;
791     s->sample_fmt= SAMPLE_FMT_S16; // FIXME: set to NONE
792
793     s->intra_quant_bias= FF_DEFAULT_QUANT_BIAS;
794     s->inter_quant_bias= FF_DEFAULT_QUANT_BIAS;
795     s->palctrl = NULL;
796     s->reget_buffer= avcodec_default_reget_buffer;
797 }
798
799 /**
800  * allocates a AVCodecContext and set it to defaults.
801  * this can be deallocated by simply calling free()
802  */
803 AVCodecContext *avcodec_alloc_context(void){
804     AVCodecContext *avctx= av_malloc(sizeof(AVCodecContext));
805
806     if(avctx==NULL) return NULL;
807
808     avcodec_get_context_defaults(avctx);
809
810     return avctx;
811 }
812
813 void avcodec_get_frame_defaults(AVFrame *pic){
814     memset(pic, 0, sizeof(AVFrame));
815
816     pic->pts= AV_NOPTS_VALUE;
817     pic->key_frame= 1;
818 }
819
820 /**
821  * allocates a AVPFrame and set it to defaults.
822  * this can be deallocated by simply calling free()
823  */
824 AVFrame *avcodec_alloc_frame(void){
825     AVFrame *pic= av_malloc(sizeof(AVFrame));
826
827     if(pic==NULL) return NULL;
828
829     avcodec_get_frame_defaults(pic);
830
831     return pic;
832 }
833
834 int avcodec_open(AVCodecContext *avctx, AVCodec *codec)
835 {
836     int ret= -1;
837
838     entangled_thread_counter++;
839     if(entangled_thread_counter != 1){
840         av_log(avctx, AV_LOG_ERROR, "insufficient thread locking around avcodec_open/close()\n");
841         goto end;
842     }
843
844     if(avctx->codec)
845         goto end;
846
847     avctx->codec = codec;
848     avctx->codec_id = codec->id;
849     avctx->frame_number = 0;
850     if (codec->priv_data_size > 0) {
851         avctx->priv_data = av_mallocz(codec->priv_data_size);
852         if (!avctx->priv_data)
853             goto end;
854     } else {
855         avctx->priv_data = NULL;
856     }
857
858     if(avctx->coded_width && avctx->coded_height)
859         avcodec_set_dimensions(avctx, avctx->coded_width, avctx->coded_height);
860     else if(avctx->width && avctx->height)
861         avcodec_set_dimensions(avctx, avctx->width, avctx->height);
862
863     if((avctx->coded_width||avctx->coded_height) && avcodec_check_dimensions(avctx,avctx->coded_width,avctx->coded_height)){
864         av_freep(&avctx->priv_data);
865         goto end;
866     }
867
868     ret = avctx->codec->init(avctx);
869     if (ret < 0) {
870         av_freep(&avctx->priv_data);
871         goto end;
872     }
873     ret=0;
874 end:
875     entangled_thread_counter--;
876     return ret;
877 }
878
879 int avcodec_encode_audio(AVCodecContext *avctx, uint8_t *buf, int buf_size,
880                          const short *samples)
881 {
882     if(buf_size < FF_MIN_BUFFER_SIZE && 0){
883         av_log(avctx, AV_LOG_ERROR, "buffer smaller then minimum size\n");
884         return -1;
885     }
886     if((avctx->codec->capabilities & CODEC_CAP_DELAY) || samples){
887         int ret = avctx->codec->encode(avctx, buf, buf_size, (void *)samples);
888         avctx->frame_number++;
889         return ret;
890     }else
891         return 0;
892 }
893
894 int avcodec_encode_video(AVCodecContext *avctx, uint8_t *buf, int buf_size,
895                          const AVFrame *pict)
896 {
897     if(buf_size < FF_MIN_BUFFER_SIZE){
898         av_log(avctx, AV_LOG_ERROR, "buffer smaller then minimum size\n");
899         return -1;
900     }
901     if(avcodec_check_dimensions(avctx,avctx->width,avctx->height))
902         return -1;
903     if((avctx->codec->capabilities & CODEC_CAP_DELAY) || pict){
904         int ret = avctx->codec->encode(avctx, buf, buf_size, (void *)pict);
905         avctx->frame_number++;
906         emms_c(); //needed to avoid an emms_c() call before every return;
907
908         return ret;
909     }else
910         return 0;
911 }
912
913 int avcodec_encode_subtitle(AVCodecContext *avctx, uint8_t *buf, int buf_size,
914                             const AVSubtitle *sub)
915 {
916     int ret;
917     ret = avctx->codec->encode(avctx, buf, buf_size, (void *)sub);
918     avctx->frame_number++;
919     return ret;
920 }
921
922 /**
923  * decode a frame.
924  * @param buf bitstream buffer, must be FF_INPUT_BUFFER_PADDING_SIZE larger then the actual read bytes
925  * because some optimized bitstream readers read 32 or 64 bit at once and could read over the end
926  * @param buf_size the size of the buffer in bytes
927  * @param got_picture_ptr zero if no frame could be decompressed, Otherwise, it is non zero
928  * @return -1 if error, otherwise return the number of
929  * bytes used.
930  */
931 int avcodec_decode_video(AVCodecContext *avctx, AVFrame *picture,
932                          int *got_picture_ptr,
933                          uint8_t *buf, int buf_size)
934 {
935     int ret;
936
937     *got_picture_ptr= 0;
938     if((avctx->coded_width||avctx->coded_height) && avcodec_check_dimensions(avctx,avctx->coded_width,avctx->coded_height))
939         return -1;
940     if((avctx->codec->capabilities & CODEC_CAP_DELAY) || buf_size){
941         ret = avctx->codec->decode(avctx, picture, got_picture_ptr,
942                                 buf, buf_size);
943
944         emms_c(); //needed to avoid an emms_c() call before every return;
945
946         if (*got_picture_ptr)
947             avctx->frame_number++;
948     }else
949         ret= 0;
950
951     return ret;
952 }
953
954 /* decode an audio frame. return -1 if error, otherwise return the
955    *number of bytes used. If no frame could be decompressed,
956    *frame_size_ptr is zero. Otherwise, it is the decompressed frame
957    *size in BYTES. */
958 int avcodec_decode_audio(AVCodecContext *avctx, int16_t *samples,
959                          int *frame_size_ptr,
960                          uint8_t *buf, int buf_size)
961 {
962     int ret;
963
964     *frame_size_ptr= 0;
965     if((avctx->codec->capabilities & CODEC_CAP_DELAY) || buf_size){
966         ret = avctx->codec->decode(avctx, samples, frame_size_ptr,
967                                 buf, buf_size);
968         avctx->frame_number++;
969     }else
970         ret= 0;
971     return ret;
972 }
973
974 /* decode a subtitle message. return -1 if error, otherwise return the
975    *number of bytes used. If no subtitle could be decompressed,
976    *got_sub_ptr is zero. Otherwise, the subtitle is stored in *sub. */
977 int avcodec_decode_subtitle(AVCodecContext *avctx, AVSubtitle *sub,
978                             int *got_sub_ptr,
979                             const uint8_t *buf, int buf_size)
980 {
981     int ret;
982
983     *got_sub_ptr = 0;
984     ret = avctx->codec->decode(avctx, sub, got_sub_ptr,
985                                (uint8_t *)buf, buf_size);
986     if (*got_sub_ptr)
987         avctx->frame_number++;
988     return ret;
989 }
990
991 int avcodec_close(AVCodecContext *avctx)
992 {
993     entangled_thread_counter++;
994     if(entangled_thread_counter != 1){
995         av_log(avctx, AV_LOG_ERROR, "insufficient thread locking around avcodec_open/close()\n");
996         entangled_thread_counter--;
997         return -1;
998     }
999
1000     if (avctx->codec->close)
1001         avctx->codec->close(avctx);
1002     avcodec_default_free_buffers(avctx);
1003     av_freep(&avctx->priv_data);
1004     avctx->codec = NULL;
1005     entangled_thread_counter--;
1006     return 0;
1007 }
1008
1009 AVCodec *avcodec_find_encoder(enum CodecID id)
1010 {
1011     AVCodec *p;
1012     p = first_avcodec;
1013     while (p) {
1014         if (p->encode != NULL && p->id == id)
1015             return p;
1016         p = p->next;
1017     }
1018     return NULL;
1019 }
1020
1021 AVCodec *avcodec_find_encoder_by_name(const char *name)
1022 {
1023     AVCodec *p;
1024     p = first_avcodec;
1025     while (p) {
1026         if (p->encode != NULL && strcmp(name,p->name) == 0)
1027             return p;
1028         p = p->next;
1029     }
1030     return NULL;
1031 }
1032
1033 AVCodec *avcodec_find_decoder(enum CodecID id)
1034 {
1035     AVCodec *p;
1036     p = first_avcodec;
1037     while (p) {
1038         if (p->decode != NULL && p->id == id)
1039             return p;
1040         p = p->next;
1041     }
1042     return NULL;
1043 }
1044
1045 AVCodec *avcodec_find_decoder_by_name(const char *name)
1046 {
1047     AVCodec *p;
1048     p = first_avcodec;
1049     while (p) {
1050         if (p->decode != NULL && strcmp(name,p->name) == 0)
1051             return p;
1052         p = p->next;
1053     }
1054     return NULL;
1055 }
1056
1057 void avcodec_string(char *buf, int buf_size, AVCodecContext *enc, int encode)
1058 {
1059     const char *codec_name;
1060     AVCodec *p;
1061     char buf1[32];
1062     char channels_str[100];
1063     int bitrate;
1064
1065     if (encode)
1066         p = avcodec_find_encoder(enc->codec_id);
1067     else
1068         p = avcodec_find_decoder(enc->codec_id);
1069
1070     if (p) {
1071         codec_name = p->name;
1072         if (!encode && enc->codec_id == CODEC_ID_MP3) {
1073             if (enc->sub_id == 2)
1074                 codec_name = "mp2";
1075             else if (enc->sub_id == 1)
1076                 codec_name = "mp1";
1077         }
1078     } else if (enc->codec_id == CODEC_ID_MPEG2TS) {
1079         /* fake mpeg2 transport stream codec (currently not
1080            registered) */
1081         codec_name = "mpeg2ts";
1082     } else if (enc->codec_name[0] != '\0') {
1083         codec_name = enc->codec_name;
1084     } else {
1085         /* output avi tags */
1086         if(   isprint(enc->codec_tag&0xFF) && isprint((enc->codec_tag>>8)&0xFF)
1087            && isprint((enc->codec_tag>>16)&0xFF) && isprint((enc->codec_tag>>24)&0xFF)){
1088             snprintf(buf1, sizeof(buf1), "%c%c%c%c / 0x%04X",
1089                      enc->codec_tag & 0xff,
1090                      (enc->codec_tag >> 8) & 0xff,
1091                      (enc->codec_tag >> 16) & 0xff,
1092                      (enc->codec_tag >> 24) & 0xff,
1093                       enc->codec_tag);
1094         } else {
1095             snprintf(buf1, sizeof(buf1), "0x%04x", enc->codec_tag);
1096         }
1097         codec_name = buf1;
1098     }
1099
1100     switch(enc->codec_type) {
1101     case CODEC_TYPE_VIDEO:
1102         snprintf(buf, buf_size,
1103                  "Video: %s%s",
1104                  codec_name, enc->mb_decision ? " (hq)" : "");
1105         if (enc->pix_fmt != PIX_FMT_NONE) {
1106             snprintf(buf + strlen(buf), buf_size - strlen(buf),
1107                      ", %s",
1108                      avcodec_get_pix_fmt_name(enc->pix_fmt));
1109         }
1110         if (enc->width) {
1111             snprintf(buf + strlen(buf), buf_size - strlen(buf),
1112                      ", %dx%d",
1113                      enc->width, enc->height);
1114             if(av_log_get_level() >= AV_LOG_DEBUG){
1115                 int g= ff_gcd(enc->time_base.num, enc->time_base.den);
1116                 snprintf(buf + strlen(buf), buf_size - strlen(buf),
1117                      ", %d/%d",
1118                      enc->time_base.num/g, enc->time_base.den/g);
1119             }
1120         }
1121         if (encode) {
1122             snprintf(buf + strlen(buf), buf_size - strlen(buf),
1123                      ", q=%d-%d", enc->qmin, enc->qmax);
1124         }
1125         bitrate = enc->bit_rate;
1126         break;
1127     case CODEC_TYPE_AUDIO:
1128         snprintf(buf, buf_size,
1129                  "Audio: %s",
1130                  codec_name);
1131         switch (enc->channels) {
1132             case 1:
1133                 strcpy(channels_str, "mono");
1134                 break;
1135             case 2:
1136                 strcpy(channels_str, "stereo");
1137                 break;
1138             case 6:
1139                 strcpy(channels_str, "5:1");
1140                 break;
1141             default:
1142                 snprintf(channels_str, sizeof(channels_str), "%d channels", enc->channels);
1143                 break;
1144         }
1145         if (enc->sample_rate) {
1146             snprintf(buf + strlen(buf), buf_size - strlen(buf),
1147                      ", %d Hz, %s",
1148                      enc->sample_rate,
1149                      channels_str);
1150         }
1151
1152         /* for PCM codecs, compute bitrate directly */
1153         switch(enc->codec_id) {
1154         case CODEC_ID_PCM_S32LE:
1155         case CODEC_ID_PCM_S32BE:
1156         case CODEC_ID_PCM_U32LE:
1157         case CODEC_ID_PCM_U32BE:
1158             bitrate = enc->sample_rate * enc->channels * 32;
1159             break;
1160         case CODEC_ID_PCM_S24LE:
1161         case CODEC_ID_PCM_S24BE:
1162         case CODEC_ID_PCM_U24LE:
1163         case CODEC_ID_PCM_U24BE:
1164         case CODEC_ID_PCM_S24DAUD:
1165             bitrate = enc->sample_rate * enc->channels * 24;
1166             break;
1167         case CODEC_ID_PCM_S16LE:
1168         case CODEC_ID_PCM_S16BE:
1169         case CODEC_ID_PCM_U16LE:
1170         case CODEC_ID_PCM_U16BE:
1171             bitrate = enc->sample_rate * enc->channels * 16;
1172             break;
1173         case CODEC_ID_PCM_S8:
1174         case CODEC_ID_PCM_U8:
1175         case CODEC_ID_PCM_ALAW:
1176         case CODEC_ID_PCM_MULAW:
1177             bitrate = enc->sample_rate * enc->channels * 8;
1178             break;
1179         default:
1180             bitrate = enc->bit_rate;
1181             break;
1182         }
1183         break;
1184     case CODEC_TYPE_DATA:
1185         snprintf(buf, buf_size, "Data: %s", codec_name);
1186         bitrate = enc->bit_rate;
1187         break;
1188     case CODEC_TYPE_SUBTITLE:
1189         snprintf(buf, buf_size, "Subtitle: %s", codec_name);
1190         bitrate = enc->bit_rate;
1191         break;
1192     default:
1193         snprintf(buf, buf_size, "Invalid Codec type %d", enc->codec_type);
1194         return;
1195     }
1196     if (encode) {
1197         if (enc->flags & CODEC_FLAG_PASS1)
1198             snprintf(buf + strlen(buf), buf_size - strlen(buf),
1199                      ", pass 1");
1200         if (enc->flags & CODEC_FLAG_PASS2)
1201             snprintf(buf + strlen(buf), buf_size - strlen(buf),
1202                      ", pass 2");
1203     }
1204     if (bitrate != 0) {
1205         snprintf(buf + strlen(buf), buf_size - strlen(buf),
1206                  ", %d kb/s", bitrate / 1000);
1207     }
1208 }
1209
1210 unsigned avcodec_version( void )
1211 {
1212   return LIBAVCODEC_VERSION_INT;
1213 }
1214
1215 unsigned avcodec_build( void )
1216 {
1217   return LIBAVCODEC_BUILD;
1218 }
1219
1220 /* must be called before any other functions */
1221 void avcodec_init(void)
1222 {
1223     static int inited = 0;
1224
1225     if (inited != 0)
1226         return;
1227     inited = 1;
1228
1229     dsputil_static_init();
1230 }
1231
1232 /**
1233  * Flush buffers, should be called when seeking or when swicthing to a different stream.
1234  */
1235 void avcodec_flush_buffers(AVCodecContext *avctx)
1236 {
1237     if(avctx->codec->flush)
1238         avctx->codec->flush(avctx);
1239 }
1240
1241 void avcodec_default_free_buffers(AVCodecContext *s){
1242     int i, j;
1243
1244     if(s->internal_buffer==NULL) return;
1245
1246     for(i=0; i<INTERNAL_BUFFER_SIZE; i++){
1247         InternalBuffer *buf= &((InternalBuffer*)s->internal_buffer)[i];
1248         for(j=0; j<4; j++){
1249             av_freep(&buf->base[j]);
1250             buf->data[j]= NULL;
1251         }
1252     }
1253     av_freep(&s->internal_buffer);
1254
1255     s->internal_buffer_count=0;
1256 }
1257
1258 char av_get_pict_type_char(int pict_type){
1259     switch(pict_type){
1260     case I_TYPE: return 'I';
1261     case P_TYPE: return 'P';
1262     case B_TYPE: return 'B';
1263     case S_TYPE: return 'S';
1264     case SI_TYPE:return 'i';
1265     case SP_TYPE:return 'p';
1266     default:     return '?';
1267     }
1268 }
1269
1270 /* av_log API */
1271
1272 static int av_log_level = AV_LOG_INFO;
1273
1274 static void av_log_default_callback(void* ptr, int level, const char* fmt, va_list vl)
1275 {
1276     static int print_prefix=1;
1277     AVClass* avc= ptr ? *(AVClass**)ptr : NULL;
1278     if(level>av_log_level)
1279         return;
1280 #undef fprintf
1281     if(print_prefix && avc) {
1282             fprintf(stderr, "[%s @ %p]", avc->item_name(ptr), avc);
1283     }
1284 #define fprintf please_use_av_log
1285
1286     print_prefix= strstr(fmt, "\n") != NULL;
1287
1288     vfprintf(stderr, fmt, vl);
1289 }
1290
1291 static void (*av_log_callback)(void*, int, const char*, va_list) = av_log_default_callback;
1292
1293 void av_log(void* avcl, int level, const char *fmt, ...)
1294 {
1295     va_list vl;
1296     va_start(vl, fmt);
1297     av_vlog(avcl, level, fmt, vl);
1298     va_end(vl);
1299 }
1300
1301 void av_vlog(void* avcl, int level, const char *fmt, va_list vl)
1302 {
1303     av_log_callback(avcl, level, fmt, vl);
1304 }
1305
1306 int av_log_get_level(void)
1307 {
1308     return av_log_level;
1309 }
1310
1311 void av_log_set_level(int level)
1312 {
1313     av_log_level = level;
1314 }
1315
1316 void av_log_set_callback(void (*callback)(void*, int, const char*, va_list))
1317 {
1318     av_log_callback = callback;
1319 }
1320
1321 #if !defined(HAVE_THREADS)
1322 int avcodec_thread_init(AVCodecContext *s, int thread_count){
1323     return -1;
1324 }
1325 #endif
1326
1327 unsigned int av_xiphlacing(unsigned char *s, unsigned int v)
1328 {
1329     unsigned int n = 0;
1330
1331     while(v >= 0xff) {
1332         *s++ = 0xff;
1333         v -= 0xff;
1334         n++;
1335     }
1336     *s = v;
1337     n++;
1338     return n;
1339 }