]> rtime.felk.cvut.cz Git - frescor/ffmpeg.git/blob - libavcodec/utils.c
Rename register_avcodec() as avcodec_register() and deprecate the old
[frescor/ffmpeg.git] / libavcodec / utils.c
1 /*
2  * utils for libavcodec
3  * Copyright (c) 2001 Fabrice Bellard
4  * Copyright (c) 2002-2004 Michael Niedermayer <michaelni@gmx.at>
5  *
6  * This file is part of FFmpeg.
7  *
8  * FFmpeg is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2.1 of the License, or (at your option) any later version.
12  *
13  * FFmpeg is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with FFmpeg; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21  */
22
23 /**
24  * @file libavcodec/utils.c
25  * utils.
26  */
27
28 /* needed for mkstemp() */
29 #define _XOPEN_SOURCE 600
30
31 #include "libavutil/avstring.h"
32 #include "libavutil/integer.h"
33 #include "libavutil/crc.h"
34 #include "avcodec.h"
35 #include "dsputil.h"
36 #include "opt.h"
37 #include "imgconvert.h"
38 #include "audioconvert.h"
39 #include "internal.h"
40 #include <stdlib.h>
41 #include <stdarg.h>
42 #include <limits.h>
43 #include <float.h>
44 #if !HAVE_MKSTEMP
45 #include <fcntl.h>
46 #endif
47
48 const uint8_t ff_reverse[256]={
49 0x00,0x80,0x40,0xC0,0x20,0xA0,0x60,0xE0,0x10,0x90,0x50,0xD0,0x30,0xB0,0x70,0xF0,
50 0x08,0x88,0x48,0xC8,0x28,0xA8,0x68,0xE8,0x18,0x98,0x58,0xD8,0x38,0xB8,0x78,0xF8,
51 0x04,0x84,0x44,0xC4,0x24,0xA4,0x64,0xE4,0x14,0x94,0x54,0xD4,0x34,0xB4,0x74,0xF4,
52 0x0C,0x8C,0x4C,0xCC,0x2C,0xAC,0x6C,0xEC,0x1C,0x9C,0x5C,0xDC,0x3C,0xBC,0x7C,0xFC,
53 0x02,0x82,0x42,0xC2,0x22,0xA2,0x62,0xE2,0x12,0x92,0x52,0xD2,0x32,0xB2,0x72,0xF2,
54 0x0A,0x8A,0x4A,0xCA,0x2A,0xAA,0x6A,0xEA,0x1A,0x9A,0x5A,0xDA,0x3A,0xBA,0x7A,0xFA,
55 0x06,0x86,0x46,0xC6,0x26,0xA6,0x66,0xE6,0x16,0x96,0x56,0xD6,0x36,0xB6,0x76,0xF6,
56 0x0E,0x8E,0x4E,0xCE,0x2E,0xAE,0x6E,0xEE,0x1E,0x9E,0x5E,0xDE,0x3E,0xBE,0x7E,0xFE,
57 0x01,0x81,0x41,0xC1,0x21,0xA1,0x61,0xE1,0x11,0x91,0x51,0xD1,0x31,0xB1,0x71,0xF1,
58 0x09,0x89,0x49,0xC9,0x29,0xA9,0x69,0xE9,0x19,0x99,0x59,0xD9,0x39,0xB9,0x79,0xF9,
59 0x05,0x85,0x45,0xC5,0x25,0xA5,0x65,0xE5,0x15,0x95,0x55,0xD5,0x35,0xB5,0x75,0xF5,
60 0x0D,0x8D,0x4D,0xCD,0x2D,0xAD,0x6D,0xED,0x1D,0x9D,0x5D,0xDD,0x3D,0xBD,0x7D,0xFD,
61 0x03,0x83,0x43,0xC3,0x23,0xA3,0x63,0xE3,0x13,0x93,0x53,0xD3,0x33,0xB3,0x73,0xF3,
62 0x0B,0x8B,0x4B,0xCB,0x2B,0xAB,0x6B,0xEB,0x1B,0x9B,0x5B,0xDB,0x3B,0xBB,0x7B,0xFB,
63 0x07,0x87,0x47,0xC7,0x27,0xA7,0x67,0xE7,0x17,0x97,0x57,0xD7,0x37,0xB7,0x77,0xF7,
64 0x0F,0x8F,0x4F,0xCF,0x2F,0xAF,0x6F,0xEF,0x1F,0x9F,0x5F,0xDF,0x3F,0xBF,0x7F,0xFF,
65 };
66
67 static int volatile entangled_thread_counter=0;
68
69 void *av_fast_realloc(void *ptr, unsigned int *size, unsigned int min_size)
70 {
71     if(min_size < *size)
72         return ptr;
73
74     *size= FFMAX(17*min_size/16 + 32, min_size);
75
76     ptr= av_realloc(ptr, *size);
77     if(!ptr) //we could set this to the unmodified min_size but this is safer if the user lost the ptr and uses NULL now
78         *size= 0;
79
80     return ptr;
81 }
82
83 /* encoder management */
84 static AVCodec *first_avcodec = NULL;
85
86 AVCodec *av_codec_next(AVCodec *c){
87     if(c) return c->next;
88     else  return first_avcodec;
89 }
90
91 void avcodec_register(AVCodec *codec)
92 {
93     AVCodec **p;
94     avcodec_init();
95     p = &first_avcodec;
96     while (*p != NULL) p = &(*p)->next;
97     *p = codec;
98     codec->next = NULL;
99 }
100
101 void register_avcodec(AVCodec *codec)
102 {
103     avcodec_register(codec);
104 }
105
106 void avcodec_set_dimensions(AVCodecContext *s, int width, int height){
107     s->coded_width = width;
108     s->coded_height= height;
109     s->width = -((-width )>>s->lowres);
110     s->height= -((-height)>>s->lowres);
111 }
112
113 typedef struct InternalBuffer{
114     int last_pic_num;
115     uint8_t *base[4];
116     uint8_t *data[4];
117     int linesize[4];
118     int width, height;
119     enum PixelFormat pix_fmt;
120 }InternalBuffer;
121
122 #define INTERNAL_BUFFER_SIZE 32
123
124 #define ALIGN(x, a) (((x)+(a)-1)&~((a)-1))
125
126 void avcodec_align_dimensions(AVCodecContext *s, int *width, int *height){
127     int w_align= 1;
128     int h_align= 1;
129
130     switch(s->pix_fmt){
131     case PIX_FMT_YUV420P:
132     case PIX_FMT_YUYV422:
133     case PIX_FMT_UYVY422:
134     case PIX_FMT_YUV422P:
135     case PIX_FMT_YUV444P:
136     case PIX_FMT_GRAY8:
137     case PIX_FMT_GRAY16BE:
138     case PIX_FMT_GRAY16LE:
139     case PIX_FMT_YUVJ420P:
140     case PIX_FMT_YUVJ422P:
141     case PIX_FMT_YUVJ444P:
142     case PIX_FMT_YUVA420P:
143         w_align= 16; //FIXME check for non mpeg style codecs and use less alignment
144         h_align= 16;
145         break;
146     case PIX_FMT_YUV411P:
147     case PIX_FMT_UYYVYY411:
148         w_align=32;
149         h_align=8;
150         break;
151     case PIX_FMT_YUV410P:
152         if(s->codec_id == CODEC_ID_SVQ1){
153             w_align=64;
154             h_align=64;
155         }
156     case PIX_FMT_RGB555:
157         if(s->codec_id == CODEC_ID_RPZA){
158             w_align=4;
159             h_align=4;
160         }
161     case PIX_FMT_PAL8:
162     case PIX_FMT_BGR8:
163     case PIX_FMT_RGB8:
164         if(s->codec_id == CODEC_ID_SMC){
165             w_align=4;
166             h_align=4;
167         }
168         break;
169     case PIX_FMT_BGR24:
170         if((s->codec_id == CODEC_ID_MSZH) || (s->codec_id == CODEC_ID_ZLIB)){
171             w_align=4;
172             h_align=4;
173         }
174         break;
175     default:
176         w_align= 1;
177         h_align= 1;
178         break;
179     }
180
181     *width = ALIGN(*width , w_align);
182     *height= ALIGN(*height, h_align);
183     if(s->codec_id == CODEC_ID_H264)
184         *height+=2; // some of the optimized chroma MC reads one line too much
185 }
186
187 int avcodec_check_dimensions(void *av_log_ctx, unsigned int w, unsigned int h){
188     if((int)w>0 && (int)h>0 && (w+128)*(uint64_t)(h+128) < INT_MAX/4)
189         return 0;
190
191     av_log(av_log_ctx, AV_LOG_ERROR, "picture size invalid (%ux%u)\n", w, h);
192     return -1;
193 }
194
195 int avcodec_default_get_buffer(AVCodecContext *s, AVFrame *pic){
196     int i;
197     int w= s->width;
198     int h= s->height;
199     InternalBuffer *buf;
200     int *picture_number;
201
202     if(pic->data[0]!=NULL) {
203         av_log(s, AV_LOG_ERROR, "pic->data[0]!=NULL in avcodec_default_get_buffer\n");
204         return -1;
205     }
206     if(s->internal_buffer_count >= INTERNAL_BUFFER_SIZE) {
207         av_log(s, AV_LOG_ERROR, "internal_buffer_count overflow (missing release_buffer?)\n");
208         return -1;
209     }
210
211     if(avcodec_check_dimensions(s,w,h))
212         return -1;
213
214     if(s->internal_buffer==NULL){
215         s->internal_buffer= av_mallocz((INTERNAL_BUFFER_SIZE+1)*sizeof(InternalBuffer));
216     }
217 #if 0
218     s->internal_buffer= av_fast_realloc(
219         s->internal_buffer,
220         &s->internal_buffer_size,
221         sizeof(InternalBuffer)*FFMAX(99,  s->internal_buffer_count+1)/*FIXME*/
222         );
223 #endif
224
225     buf= &((InternalBuffer*)s->internal_buffer)[s->internal_buffer_count];
226     picture_number= &(((InternalBuffer*)s->internal_buffer)[INTERNAL_BUFFER_SIZE]).last_pic_num; //FIXME ugly hack
227     (*picture_number)++;
228
229     if(buf->base[0] && (buf->width != w || buf->height != h || buf->pix_fmt != s->pix_fmt)){
230         for(i=0; i<4; i++){
231             av_freep(&buf->base[i]);
232             buf->data[i]= NULL;
233         }
234     }
235
236     if(buf->base[0]){
237         pic->age= *picture_number - buf->last_pic_num;
238         buf->last_pic_num= *picture_number;
239     }else{
240         int h_chroma_shift, v_chroma_shift;
241         int size[4] = {0};
242         int tmpsize;
243         AVPicture picture;
244         int stride_align[4];
245
246         avcodec_get_chroma_sub_sample(s->pix_fmt, &h_chroma_shift, &v_chroma_shift);
247
248         avcodec_align_dimensions(s, &w, &h);
249
250         if(!(s->flags&CODEC_FLAG_EMU_EDGE)){
251             w+= EDGE_WIDTH*2;
252             h+= EDGE_WIDTH*2;
253         }
254
255         ff_fill_linesize(&picture, s->pix_fmt, w);
256
257         for (i=0; i<4; i++){
258 //STRIDE_ALIGN is 8 for SSE* but this does not work for SVQ1 chroma planes
259 //we could change STRIDE_ALIGN to 16 for x86/sse but it would increase the
260 //picture size unneccessarily in some cases. The solution here is not
261 //pretty and better ideas are welcome!
262 #if HAVE_MMX
263             if(s->codec_id == CODEC_ID_SVQ1)
264                 stride_align[i]= 16;
265             else
266 #endif
267             stride_align[i] = STRIDE_ALIGN;
268             picture.linesize[i] = ALIGN(picture.linesize[i], stride_align[i]);
269         }
270
271         tmpsize = ff_fill_pointer(&picture, NULL, s->pix_fmt, h);
272
273         for (i=0; i<3 && picture.data[i+1]; i++)
274             size[i] = picture.data[i+1] - picture.data[i];
275         size[i] = tmpsize - (picture.data[i] - picture.data[0]);
276
277         buf->last_pic_num= -256*256*256*64;
278         memset(buf->base, 0, sizeof(buf->base));
279         memset(buf->data, 0, sizeof(buf->data));
280
281         for(i=0; i<4 && size[i]; i++){
282             const int h_shift= i==0 ? 0 : h_chroma_shift;
283             const int v_shift= i==0 ? 0 : v_chroma_shift;
284
285             buf->linesize[i]= picture.linesize[i];
286
287             buf->base[i]= av_malloc(size[i]+16); //FIXME 16
288             if(buf->base[i]==NULL) return -1;
289             memset(buf->base[i], 128, size[i]);
290
291             // no edge if EDEG EMU or not planar YUV
292             if((s->flags&CODEC_FLAG_EMU_EDGE) || !size[2])
293                 buf->data[i] = buf->base[i];
294             else
295                 buf->data[i] = buf->base[i] + ALIGN((buf->linesize[i]*EDGE_WIDTH>>v_shift) + (EDGE_WIDTH>>h_shift), stride_align[i]);
296         }
297         if(size[1] && !size[2])
298             ff_set_systematic_pal((uint32_t*)buf->data[1], s->pix_fmt);
299         buf->width  = s->width;
300         buf->height = s->height;
301         buf->pix_fmt= s->pix_fmt;
302         pic->age= 256*256*256*64;
303     }
304     pic->type= FF_BUFFER_TYPE_INTERNAL;
305
306     for(i=0; i<4; i++){
307         pic->base[i]= buf->base[i];
308         pic->data[i]= buf->data[i];
309         pic->linesize[i]= buf->linesize[i];
310     }
311     s->internal_buffer_count++;
312
313     pic->reordered_opaque= s->reordered_opaque;
314
315     if(s->debug&FF_DEBUG_BUFFERS)
316         av_log(s, AV_LOG_DEBUG, "default_get_buffer called on pic %p, %d buffers used\n", pic, s->internal_buffer_count);
317
318     return 0;
319 }
320
321 void avcodec_default_release_buffer(AVCodecContext *s, AVFrame *pic){
322     int i;
323     InternalBuffer *buf, *last;
324
325     assert(pic->type==FF_BUFFER_TYPE_INTERNAL);
326     assert(s->internal_buffer_count);
327
328     buf = NULL; /* avoids warning */
329     for(i=0; i<s->internal_buffer_count; i++){ //just 3-5 checks so is not worth to optimize
330         buf= &((InternalBuffer*)s->internal_buffer)[i];
331         if(buf->data[0] == pic->data[0])
332             break;
333     }
334     assert(i < s->internal_buffer_count);
335     s->internal_buffer_count--;
336     last = &((InternalBuffer*)s->internal_buffer)[s->internal_buffer_count];
337
338     FFSWAP(InternalBuffer, *buf, *last);
339
340     for(i=0; i<4; i++){
341         pic->data[i]=NULL;
342 //        pic->base[i]=NULL;
343     }
344 //printf("R%X\n", pic->opaque);
345
346     if(s->debug&FF_DEBUG_BUFFERS)
347         av_log(s, AV_LOG_DEBUG, "default_release_buffer called on pic %p, %d buffers used\n", pic, s->internal_buffer_count);
348 }
349
350 int avcodec_default_reget_buffer(AVCodecContext *s, AVFrame *pic){
351     AVFrame temp_pic;
352     int i;
353
354     /* If no picture return a new buffer */
355     if(pic->data[0] == NULL) {
356         /* We will copy from buffer, so must be readable */
357         pic->buffer_hints |= FF_BUFFER_HINTS_READABLE;
358         return s->get_buffer(s, pic);
359     }
360
361     /* If internal buffer type return the same buffer */
362     if(pic->type == FF_BUFFER_TYPE_INTERNAL)
363         return 0;
364
365     /*
366      * Not internal type and reget_buffer not overridden, emulate cr buffer
367      */
368     temp_pic = *pic;
369     for(i = 0; i < 4; i++)
370         pic->data[i] = pic->base[i] = NULL;
371     pic->opaque = NULL;
372     /* Allocate new frame */
373     if (s->get_buffer(s, pic))
374         return -1;
375     /* Copy image data from old buffer to new buffer */
376     av_picture_copy((AVPicture*)pic, (AVPicture*)&temp_pic, s->pix_fmt, s->width,
377              s->height);
378     s->release_buffer(s, &temp_pic); // Release old frame
379     return 0;
380 }
381
382 int avcodec_default_execute(AVCodecContext *c, int (*func)(AVCodecContext *c2, void *arg2),void *arg, int *ret, int count, int size){
383     int i;
384
385     for(i=0; i<count; i++){
386         int r= func(c, (char*)arg + i*size);
387         if(ret) ret[i]= r;
388     }
389     return 0;
390 }
391
392 enum PixelFormat avcodec_default_get_format(struct AVCodecContext *s, const enum PixelFormat * fmt){
393     return fmt[0];
394 }
395
396 void avcodec_get_frame_defaults(AVFrame *pic){
397     memset(pic, 0, sizeof(AVFrame));
398
399     pic->pts= AV_NOPTS_VALUE;
400     pic->key_frame= 1;
401 }
402
403 AVFrame *avcodec_alloc_frame(void){
404     AVFrame *pic= av_malloc(sizeof(AVFrame));
405
406     if(pic==NULL) return NULL;
407
408     avcodec_get_frame_defaults(pic);
409
410     return pic;
411 }
412
413 int attribute_align_arg avcodec_open(AVCodecContext *avctx, AVCodec *codec)
414 {
415     int ret= -1;
416
417     entangled_thread_counter++;
418     if(entangled_thread_counter != 1){
419         av_log(avctx, AV_LOG_ERROR, "insufficient thread locking around avcodec_open/close()\n");
420         goto end;
421     }
422
423     if(avctx->codec || !codec)
424         goto end;
425
426     if (codec->priv_data_size > 0) {
427         avctx->priv_data = av_mallocz(codec->priv_data_size);
428         if (!avctx->priv_data) {
429             ret = AVERROR(ENOMEM);
430             goto end;
431         }
432     } else {
433         avctx->priv_data = NULL;
434     }
435
436     if(avctx->coded_width && avctx->coded_height)
437         avcodec_set_dimensions(avctx, avctx->coded_width, avctx->coded_height);
438     else if(avctx->width && avctx->height)
439         avcodec_set_dimensions(avctx, avctx->width, avctx->height);
440
441     if((avctx->coded_width||avctx->coded_height) && avcodec_check_dimensions(avctx,avctx->coded_width,avctx->coded_height)){
442         av_freep(&avctx->priv_data);
443         ret = AVERROR(EINVAL);
444         goto end;
445     }
446
447     avctx->codec = codec;
448     avctx->codec_id = codec->id;
449     avctx->frame_number = 0;
450     if(avctx->codec->init){
451         ret = avctx->codec->init(avctx);
452         if (ret < 0) {
453             av_freep(&avctx->priv_data);
454             avctx->codec= NULL;
455             goto end;
456         }
457     }
458     ret=0;
459 end:
460     entangled_thread_counter--;
461     return ret;
462 }
463
464 int attribute_align_arg avcodec_encode_audio(AVCodecContext *avctx, uint8_t *buf, int buf_size,
465                          const short *samples)
466 {
467     if(buf_size < FF_MIN_BUFFER_SIZE && 0){
468         av_log(avctx, AV_LOG_ERROR, "buffer smaller than minimum size\n");
469         return -1;
470     }
471     if((avctx->codec->capabilities & CODEC_CAP_DELAY) || samples){
472         int ret = avctx->codec->encode(avctx, buf, buf_size, (void *)samples);
473         avctx->frame_number++;
474         return ret;
475     }else
476         return 0;
477 }
478
479 int attribute_align_arg avcodec_encode_video(AVCodecContext *avctx, uint8_t *buf, int buf_size,
480                          const AVFrame *pict)
481 {
482     if(buf_size < FF_MIN_BUFFER_SIZE){
483         av_log(avctx, AV_LOG_ERROR, "buffer smaller than minimum size\n");
484         return -1;
485     }
486     if(avcodec_check_dimensions(avctx,avctx->width,avctx->height))
487         return -1;
488     if((avctx->codec->capabilities & CODEC_CAP_DELAY) || pict){
489         int ret = avctx->codec->encode(avctx, buf, buf_size, (void *)pict);
490         avctx->frame_number++;
491         emms_c(); //needed to avoid an emms_c() call before every return;
492
493         return ret;
494     }else
495         return 0;
496 }
497
498 int avcodec_encode_subtitle(AVCodecContext *avctx, uint8_t *buf, int buf_size,
499                             const AVSubtitle *sub)
500 {
501     int ret;
502     ret = avctx->codec->encode(avctx, buf, buf_size, (void *)sub);
503     avctx->frame_number++;
504     return ret;
505 }
506
507 int attribute_align_arg avcodec_decode_video(AVCodecContext *avctx, AVFrame *picture,
508                          int *got_picture_ptr,
509                          const uint8_t *buf, int buf_size)
510 {
511     int ret;
512
513     *got_picture_ptr= 0;
514     if((avctx->coded_width||avctx->coded_height) && avcodec_check_dimensions(avctx,avctx->coded_width,avctx->coded_height))
515         return -1;
516     if((avctx->codec->capabilities & CODEC_CAP_DELAY) || buf_size){
517         ret = avctx->codec->decode(avctx, picture, got_picture_ptr,
518                                 buf, buf_size);
519
520         emms_c(); //needed to avoid an emms_c() call before every return;
521
522         if (*got_picture_ptr)
523             avctx->frame_number++;
524     }else
525         ret= 0;
526
527     return ret;
528 }
529
530 int attribute_align_arg avcodec_decode_audio2(AVCodecContext *avctx, int16_t *samples,
531                          int *frame_size_ptr,
532                          const uint8_t *buf, int buf_size)
533 {
534     int ret;
535
536     if((avctx->codec->capabilities & CODEC_CAP_DELAY) || buf_size){
537         //FIXME remove the check below _after_ ensuring that all audio check that the available space is enough
538         if(*frame_size_ptr < AVCODEC_MAX_AUDIO_FRAME_SIZE){
539             av_log(avctx, AV_LOG_ERROR, "buffer smaller than AVCODEC_MAX_AUDIO_FRAME_SIZE\n");
540             return -1;
541         }
542         if(*frame_size_ptr < FF_MIN_BUFFER_SIZE ||
543         *frame_size_ptr < avctx->channels * avctx->frame_size * sizeof(int16_t)){
544             av_log(avctx, AV_LOG_ERROR, "buffer %d too small\n", *frame_size_ptr);
545             return -1;
546         }
547
548         ret = avctx->codec->decode(avctx, samples, frame_size_ptr,
549                                 buf, buf_size);
550         avctx->frame_number++;
551     }else{
552         ret= 0;
553         *frame_size_ptr=0;
554     }
555     return ret;
556 }
557
558 int avcodec_decode_subtitle(AVCodecContext *avctx, AVSubtitle *sub,
559                             int *got_sub_ptr,
560                             const uint8_t *buf, int buf_size)
561 {
562     int ret;
563
564     *got_sub_ptr = 0;
565     ret = avctx->codec->decode(avctx, sub, got_sub_ptr,
566                                buf, buf_size);
567     if (*got_sub_ptr)
568         avctx->frame_number++;
569     return ret;
570 }
571
572 int avcodec_close(AVCodecContext *avctx)
573 {
574     entangled_thread_counter++;
575     if(entangled_thread_counter != 1){
576         av_log(avctx, AV_LOG_ERROR, "insufficient thread locking around avcodec_open/close()\n");
577         entangled_thread_counter--;
578         return -1;
579     }
580
581     if (HAVE_THREADS && avctx->thread_opaque)
582         avcodec_thread_free(avctx);
583     if (avctx->codec->close)
584         avctx->codec->close(avctx);
585     avcodec_default_free_buffers(avctx);
586     av_freep(&avctx->priv_data);
587     avctx->codec = NULL;
588     entangled_thread_counter--;
589     return 0;
590 }
591
592 AVCodec *avcodec_find_encoder(enum CodecID id)
593 {
594     AVCodec *p;
595     p = first_avcodec;
596     while (p) {
597         if (p->encode != NULL && p->id == id)
598             return p;
599         p = p->next;
600     }
601     return NULL;
602 }
603
604 AVCodec *avcodec_find_encoder_by_name(const char *name)
605 {
606     AVCodec *p;
607     if (!name)
608         return NULL;
609     p = first_avcodec;
610     while (p) {
611         if (p->encode != NULL && strcmp(name,p->name) == 0)
612             return p;
613         p = p->next;
614     }
615     return NULL;
616 }
617
618 AVCodec *avcodec_find_decoder(enum CodecID id)
619 {
620     AVCodec *p;
621     p = first_avcodec;
622     while (p) {
623         if (p->decode != NULL && p->id == id)
624             return p;
625         p = p->next;
626     }
627     return NULL;
628 }
629
630 AVCodec *avcodec_find_decoder_by_name(const char *name)
631 {
632     AVCodec *p;
633     if (!name)
634         return NULL;
635     p = first_avcodec;
636     while (p) {
637         if (p->decode != NULL && strcmp(name,p->name) == 0)
638             return p;
639         p = p->next;
640     }
641     return NULL;
642 }
643
644 void avcodec_string(char *buf, int buf_size, AVCodecContext *enc, int encode)
645 {
646     const char *codec_name;
647     AVCodec *p;
648     char buf1[32];
649     int bitrate;
650     AVRational display_aspect_ratio;
651
652     if (encode)
653         p = avcodec_find_encoder(enc->codec_id);
654     else
655         p = avcodec_find_decoder(enc->codec_id);
656
657     if (p) {
658         codec_name = p->name;
659     } else if (enc->codec_id == CODEC_ID_MPEG2TS) {
660         /* fake mpeg2 transport stream codec (currently not
661            registered) */
662         codec_name = "mpeg2ts";
663     } else if (enc->codec_name[0] != '\0') {
664         codec_name = enc->codec_name;
665     } else {
666         /* output avi tags */
667         if(   isprint(enc->codec_tag&0xFF) && isprint((enc->codec_tag>>8)&0xFF)
668            && isprint((enc->codec_tag>>16)&0xFF) && isprint((enc->codec_tag>>24)&0xFF)){
669             snprintf(buf1, sizeof(buf1), "%c%c%c%c / 0x%04X",
670                      enc->codec_tag & 0xff,
671                      (enc->codec_tag >> 8) & 0xff,
672                      (enc->codec_tag >> 16) & 0xff,
673                      (enc->codec_tag >> 24) & 0xff,
674                       enc->codec_tag);
675         } else {
676             snprintf(buf1, sizeof(buf1), "0x%04x", enc->codec_tag);
677         }
678         codec_name = buf1;
679     }
680
681     switch(enc->codec_type) {
682     case CODEC_TYPE_VIDEO:
683         snprintf(buf, buf_size,
684                  "Video: %s%s",
685                  codec_name, enc->mb_decision ? " (hq)" : "");
686         if (enc->pix_fmt != PIX_FMT_NONE) {
687             snprintf(buf + strlen(buf), buf_size - strlen(buf),
688                      ", %s",
689                      avcodec_get_pix_fmt_name(enc->pix_fmt));
690         }
691         if (enc->width) {
692             snprintf(buf + strlen(buf), buf_size - strlen(buf),
693                      ", %dx%d",
694                      enc->width, enc->height);
695             if (enc->sample_aspect_ratio.num) {
696                 av_reduce(&display_aspect_ratio.num, &display_aspect_ratio.den,
697                           enc->width*enc->sample_aspect_ratio.num,
698                           enc->height*enc->sample_aspect_ratio.den,
699                           1024*1024);
700                 snprintf(buf + strlen(buf), buf_size - strlen(buf),
701                          " [PAR %d:%d DAR %d:%d]",
702                          enc->sample_aspect_ratio.num, enc->sample_aspect_ratio.den,
703                          display_aspect_ratio.num, display_aspect_ratio.den);
704             }
705             if(av_log_get_level() >= AV_LOG_DEBUG){
706                 int g= av_gcd(enc->time_base.num, enc->time_base.den);
707                 snprintf(buf + strlen(buf), buf_size - strlen(buf),
708                      ", %d/%d",
709                      enc->time_base.num/g, enc->time_base.den/g);
710             }
711         }
712         if (encode) {
713             snprintf(buf + strlen(buf), buf_size - strlen(buf),
714                      ", q=%d-%d", enc->qmin, enc->qmax);
715         }
716         bitrate = enc->bit_rate;
717         break;
718     case CODEC_TYPE_AUDIO:
719         snprintf(buf, buf_size,
720                  "Audio: %s",
721                  codec_name);
722         if (enc->sample_rate) {
723             snprintf(buf + strlen(buf), buf_size - strlen(buf),
724                      ", %d Hz", enc->sample_rate);
725         }
726         av_strlcat(buf, ", ", buf_size);
727         avcodec_get_channel_layout_string(buf + strlen(buf), buf_size - strlen(buf), enc->channels, enc->channel_layout);
728         if (enc->sample_fmt != SAMPLE_FMT_NONE) {
729             snprintf(buf + strlen(buf), buf_size - strlen(buf),
730                      ", %s", avcodec_get_sample_fmt_name(enc->sample_fmt));
731         }
732
733         /* for PCM codecs, compute bitrate directly */
734         switch(enc->codec_id) {
735         case CODEC_ID_PCM_F64BE:
736         case CODEC_ID_PCM_F64LE:
737             bitrate = enc->sample_rate * enc->channels * 64;
738             break;
739         case CODEC_ID_PCM_S32LE:
740         case CODEC_ID_PCM_S32BE:
741         case CODEC_ID_PCM_U32LE:
742         case CODEC_ID_PCM_U32BE:
743         case CODEC_ID_PCM_F32BE:
744         case CODEC_ID_PCM_F32LE:
745             bitrate = enc->sample_rate * enc->channels * 32;
746             break;
747         case CODEC_ID_PCM_S24LE:
748         case CODEC_ID_PCM_S24BE:
749         case CODEC_ID_PCM_U24LE:
750         case CODEC_ID_PCM_U24BE:
751         case CODEC_ID_PCM_S24DAUD:
752             bitrate = enc->sample_rate * enc->channels * 24;
753             break;
754         case CODEC_ID_PCM_S16LE:
755         case CODEC_ID_PCM_S16BE:
756         case CODEC_ID_PCM_S16LE_PLANAR:
757         case CODEC_ID_PCM_U16LE:
758         case CODEC_ID_PCM_U16BE:
759             bitrate = enc->sample_rate * enc->channels * 16;
760             break;
761         case CODEC_ID_PCM_S8:
762         case CODEC_ID_PCM_U8:
763         case CODEC_ID_PCM_ALAW:
764         case CODEC_ID_PCM_MULAW:
765         case CODEC_ID_PCM_ZORK:
766             bitrate = enc->sample_rate * enc->channels * 8;
767             break;
768         default:
769             bitrate = enc->bit_rate;
770             break;
771         }
772         break;
773     case CODEC_TYPE_DATA:
774         snprintf(buf, buf_size, "Data: %s", codec_name);
775         bitrate = enc->bit_rate;
776         break;
777     case CODEC_TYPE_SUBTITLE:
778         snprintf(buf, buf_size, "Subtitle: %s", codec_name);
779         bitrate = enc->bit_rate;
780         break;
781     case CODEC_TYPE_ATTACHMENT:
782         snprintf(buf, buf_size, "Attachment: %s", codec_name);
783         bitrate = enc->bit_rate;
784         break;
785     default:
786         snprintf(buf, buf_size, "Invalid Codec type %d", enc->codec_type);
787         return;
788     }
789     if (encode) {
790         if (enc->flags & CODEC_FLAG_PASS1)
791             snprintf(buf + strlen(buf), buf_size - strlen(buf),
792                      ", pass 1");
793         if (enc->flags & CODEC_FLAG_PASS2)
794             snprintf(buf + strlen(buf), buf_size - strlen(buf),
795                      ", pass 2");
796     }
797     if (bitrate != 0) {
798         snprintf(buf + strlen(buf), buf_size - strlen(buf),
799                  ", %d kb/s", bitrate / 1000);
800     }
801 }
802
803 unsigned avcodec_version( void )
804 {
805   return LIBAVCODEC_VERSION_INT;
806 }
807
808 void avcodec_init(void)
809 {
810     static int initialized = 0;
811
812     if (initialized != 0)
813         return;
814     initialized = 1;
815
816     dsputil_static_init();
817 }
818
819 void avcodec_flush_buffers(AVCodecContext *avctx)
820 {
821     if(avctx->codec->flush)
822         avctx->codec->flush(avctx);
823 }
824
825 void avcodec_default_free_buffers(AVCodecContext *s){
826     int i, j;
827
828     if(s->internal_buffer==NULL) return;
829
830     for(i=0; i<INTERNAL_BUFFER_SIZE; i++){
831         InternalBuffer *buf= &((InternalBuffer*)s->internal_buffer)[i];
832         for(j=0; j<4; j++){
833             av_freep(&buf->base[j]);
834             buf->data[j]= NULL;
835         }
836     }
837     av_freep(&s->internal_buffer);
838
839     s->internal_buffer_count=0;
840 }
841
842 char av_get_pict_type_char(int pict_type){
843     switch(pict_type){
844     case FF_I_TYPE: return 'I';
845     case FF_P_TYPE: return 'P';
846     case FF_B_TYPE: return 'B';
847     case FF_S_TYPE: return 'S';
848     case FF_SI_TYPE:return 'i';
849     case FF_SP_TYPE:return 'p';
850     case FF_BI_TYPE:return 'b';
851     default:        return '?';
852     }
853 }
854
855 int av_get_bits_per_sample(enum CodecID codec_id){
856     switch(codec_id){
857     case CODEC_ID_ADPCM_SBPRO_2:
858         return 2;
859     case CODEC_ID_ADPCM_SBPRO_3:
860         return 3;
861     case CODEC_ID_ADPCM_SBPRO_4:
862     case CODEC_ID_ADPCM_CT:
863         return 4;
864     case CODEC_ID_PCM_ALAW:
865     case CODEC_ID_PCM_MULAW:
866     case CODEC_ID_PCM_S8:
867     case CODEC_ID_PCM_U8:
868     case CODEC_ID_PCM_ZORK:
869         return 8;
870     case CODEC_ID_PCM_S16BE:
871     case CODEC_ID_PCM_S16LE:
872     case CODEC_ID_PCM_S16LE_PLANAR:
873     case CODEC_ID_PCM_U16BE:
874     case CODEC_ID_PCM_U16LE:
875         return 16;
876     case CODEC_ID_PCM_S24DAUD:
877     case CODEC_ID_PCM_S24BE:
878     case CODEC_ID_PCM_S24LE:
879     case CODEC_ID_PCM_U24BE:
880     case CODEC_ID_PCM_U24LE:
881         return 24;
882     case CODEC_ID_PCM_S32BE:
883     case CODEC_ID_PCM_S32LE:
884     case CODEC_ID_PCM_U32BE:
885     case CODEC_ID_PCM_U32LE:
886     case CODEC_ID_PCM_F32BE:
887     case CODEC_ID_PCM_F32LE:
888         return 32;
889     case CODEC_ID_PCM_F64BE:
890     case CODEC_ID_PCM_F64LE:
891         return 64;
892     default:
893         return 0;
894     }
895 }
896
897 int av_get_bits_per_sample_format(enum SampleFormat sample_fmt) {
898     switch (sample_fmt) {
899     case SAMPLE_FMT_U8:
900         return 8;
901     case SAMPLE_FMT_S16:
902         return 16;
903     case SAMPLE_FMT_S32:
904     case SAMPLE_FMT_FLT:
905         return 32;
906     case SAMPLE_FMT_DBL:
907         return 64;
908     default:
909         return 0;
910     }
911 }
912
913 #if !HAVE_THREADS
914 int avcodec_thread_init(AVCodecContext *s, int thread_count){
915     return -1;
916 }
917 #endif
918
919 unsigned int av_xiphlacing(unsigned char *s, unsigned int v)
920 {
921     unsigned int n = 0;
922
923     while(v >= 0xff) {
924         *s++ = 0xff;
925         v -= 0xff;
926         n++;
927     }
928     *s = v;
929     n++;
930     return n;
931 }
932
933 /* Wrapper to work around the lack of mkstemp() on mingw/cygin.
934  * Also, tries to create file in /tmp first, if possible.
935  * *prefix can be a character constant; *filename will be allocated internally.
936  * Returns file descriptor of opened file (or -1 on error)
937  * and opened file name in **filename. */
938 int av_tempfile(char *prefix, char **filename) {
939     int fd=-1;
940 #if !HAVE_MKSTEMP
941     *filename = tempnam(".", prefix);
942 #else
943     size_t len = strlen(prefix) + 12; /* room for "/tmp/" and "XXXXXX\0" */
944     *filename = av_malloc(len);
945 #endif
946     /* -----common section-----*/
947     if (*filename == NULL) {
948         av_log(NULL, AV_LOG_ERROR, "ff_tempfile: Cannot allocate file name\n");
949         return -1;
950     }
951 #if !HAVE_MKSTEMP
952     fd = open(*filename, O_RDWR | O_BINARY | O_CREAT, 0444);
953 #else
954     snprintf(*filename, len, "/tmp/%sXXXXXX", prefix);
955     fd = mkstemp(*filename);
956     if (fd < 0) {
957         snprintf(*filename, len, "./%sXXXXXX", prefix);
958         fd = mkstemp(*filename);
959     }
960 #endif
961     /* -----common section-----*/
962     if (fd < 0) {
963         av_log(NULL, AV_LOG_ERROR, "ff_tempfile: Cannot open temporary file %s\n", *filename);
964         return -1;
965     }
966     return fd; /* success */
967 }
968
969 typedef struct {
970     const char *abbr;
971     int width, height;
972 } VideoFrameSizeAbbr;
973
974 typedef struct {
975     const char *abbr;
976     int rate_num, rate_den;
977 } VideoFrameRateAbbr;
978
979 static const VideoFrameSizeAbbr video_frame_size_abbrs[] = {
980     { "ntsc",      720, 480 },
981     { "pal",       720, 576 },
982     { "qntsc",     352, 240 }, /* VCD compliant NTSC */
983     { "qpal",      352, 288 }, /* VCD compliant PAL */
984     { "sntsc",     640, 480 }, /* square pixel NTSC */
985     { "spal",      768, 576 }, /* square pixel PAL */
986     { "film",      352, 240 },
987     { "ntsc-film", 352, 240 },
988     { "sqcif",     128,  96 },
989     { "qcif",      176, 144 },
990     { "cif",       352, 288 },
991     { "4cif",      704, 576 },
992     { "qqvga",     160, 120 },
993     { "qvga",      320, 240 },
994     { "vga",       640, 480 },
995     { "svga",      800, 600 },
996     { "xga",      1024, 768 },
997     { "uxga",     1600,1200 },
998     { "qxga",     2048,1536 },
999     { "sxga",     1280,1024 },
1000     { "qsxga",    2560,2048 },
1001     { "hsxga",    5120,4096 },
1002     { "wvga",      852, 480 },
1003     { "wxga",     1366, 768 },
1004     { "wsxga",    1600,1024 },
1005     { "wuxga",    1920,1200 },
1006     { "woxga",    2560,1600 },
1007     { "wqsxga",   3200,2048 },
1008     { "wquxga",   3840,2400 },
1009     { "whsxga",   6400,4096 },
1010     { "whuxga",   7680,4800 },
1011     { "cga",       320, 200 },
1012     { "ega",       640, 350 },
1013     { "hd480",     852, 480 },
1014     { "hd720",    1280, 720 },
1015     { "hd1080",   1920,1080 },
1016 };
1017
1018 static const VideoFrameRateAbbr video_frame_rate_abbrs[]= {
1019     { "ntsc",      30000, 1001 },
1020     { "pal",          25,    1 },
1021     { "qntsc",     30000, 1001 }, /* VCD compliant NTSC */
1022     { "qpal",         25,    1 }, /* VCD compliant PAL */
1023     { "sntsc",     30000, 1001 }, /* square pixel NTSC */
1024     { "spal",         25,    1 }, /* square pixel PAL */
1025     { "film",         24,    1 },
1026     { "ntsc-film", 24000, 1001 },
1027 };
1028
1029 int av_parse_video_frame_size(int *width_ptr, int *height_ptr, const char *str)
1030 {
1031     int i;
1032     int n = FF_ARRAY_ELEMS(video_frame_size_abbrs);
1033     const char *p;
1034     int frame_width = 0, frame_height = 0;
1035
1036     for(i=0;i<n;i++) {
1037         if (!strcmp(video_frame_size_abbrs[i].abbr, str)) {
1038             frame_width = video_frame_size_abbrs[i].width;
1039             frame_height = video_frame_size_abbrs[i].height;
1040             break;
1041         }
1042     }
1043     if (i == n) {
1044         p = str;
1045         frame_width = strtol(p, (char **)&p, 10);
1046         if (*p)
1047             p++;
1048         frame_height = strtol(p, (char **)&p, 10);
1049     }
1050     if (frame_width <= 0 || frame_height <= 0)
1051         return -1;
1052     *width_ptr = frame_width;
1053     *height_ptr = frame_height;
1054     return 0;
1055 }
1056
1057 int av_parse_video_frame_rate(AVRational *frame_rate, const char *arg)
1058 {
1059     int i;
1060     int n = FF_ARRAY_ELEMS(video_frame_rate_abbrs);
1061     char* cp;
1062
1063     /* First, we check our abbreviation table */
1064     for (i = 0; i < n; ++i)
1065          if (!strcmp(video_frame_rate_abbrs[i].abbr, arg)) {
1066              frame_rate->num = video_frame_rate_abbrs[i].rate_num;
1067              frame_rate->den = video_frame_rate_abbrs[i].rate_den;
1068              return 0;
1069          }
1070
1071     /* Then, we try to parse it as fraction */
1072     cp = strchr(arg, '/');
1073     if (!cp)
1074         cp = strchr(arg, ':');
1075     if (cp) {
1076         char* cpp;
1077         frame_rate->num = strtol(arg, &cpp, 10);
1078         if (cpp != arg || cpp == cp)
1079             frame_rate->den = strtol(cp+1, &cpp, 10);
1080         else
1081            frame_rate->num = 0;
1082     }
1083     else {
1084         /* Finally we give up and parse it as double */
1085         AVRational time_base = av_d2q(strtod(arg, 0), 1001000);
1086         frame_rate->den = time_base.den;
1087         frame_rate->num = time_base.num;
1088     }
1089     if (!frame_rate->num || !frame_rate->den)
1090         return -1;
1091     else
1092         return 0;
1093 }
1094
1095 void ff_log_missing_feature(void *avc, const char *feature, int want_sample)
1096 {
1097     av_log(avc, AV_LOG_WARNING, "%s not implemented. Update your FFmpeg "
1098             "version to the newest one from SVN. If the problem still "
1099             "occurs, it means that your file has a feature which has not "
1100             "been implemented.", feature);
1101     if(want_sample)
1102         ff_log_ask_for_sample(avc, NULL);
1103     else
1104         av_log(avc, AV_LOG_WARNING, "\n");
1105 }
1106
1107 void ff_log_ask_for_sample(void *avc, const char *msg)
1108 {
1109     if (msg)
1110         av_log(avc, AV_LOG_WARNING, "%s ", msg);
1111     av_log(avc, AV_LOG_WARNING, "If you want to help, upload a sample "
1112             "of this file to ftp://upload.ffmpeg.org/MPlayer/incoming/ "
1113             "and contact the ffmpeg-devel mailing list.\n");
1114 }