]> git.sesse.net Git - ffmpeg/blob - libavcodec/utils.c
Use the new avcodec_decode_* API.
[ffmpeg] / 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 #if LIBAVCODEC_VERSION_MAJOR < 53
102 void register_avcodec(AVCodec *codec)
103 {
104     avcodec_register(codec);
105 }
106 #endif
107
108 void avcodec_set_dimensions(AVCodecContext *s, int width, int height){
109     s->coded_width = width;
110     s->coded_height= height;
111     s->width = -((-width )>>s->lowres);
112     s->height= -((-height)>>s->lowres);
113 }
114
115 typedef struct InternalBuffer{
116     int last_pic_num;
117     uint8_t *base[4];
118     uint8_t *data[4];
119     int linesize[4];
120     int width, height;
121     enum PixelFormat pix_fmt;
122 }InternalBuffer;
123
124 #define INTERNAL_BUFFER_SIZE 32
125
126 #define ALIGN(x, a) (((x)+(a)-1)&~((a)-1))
127
128 void avcodec_align_dimensions(AVCodecContext *s, int *width, int *height){
129     int w_align= 1;
130     int h_align= 1;
131
132     switch(s->pix_fmt){
133     case PIX_FMT_YUV420P:
134     case PIX_FMT_YUYV422:
135     case PIX_FMT_UYVY422:
136     case PIX_FMT_YUV422P:
137     case PIX_FMT_YUV444P:
138     case PIX_FMT_GRAY8:
139     case PIX_FMT_GRAY16BE:
140     case PIX_FMT_GRAY16LE:
141     case PIX_FMT_YUVJ420P:
142     case PIX_FMT_YUVJ422P:
143     case PIX_FMT_YUVJ444P:
144     case PIX_FMT_YUVA420P:
145         w_align= 16; //FIXME check for non mpeg style codecs and use less alignment
146         h_align= 16;
147         if(s->codec_id == CODEC_ID_MPEG2VIDEO)
148             h_align= 32; // interlaced is rounded up to 2 MBs
149         break;
150     case PIX_FMT_YUV411P:
151     case PIX_FMT_UYYVYY411:
152         w_align=32;
153         h_align=8;
154         break;
155     case PIX_FMT_YUV410P:
156         if(s->codec_id == CODEC_ID_SVQ1){
157             w_align=64;
158             h_align=64;
159         }
160     case PIX_FMT_RGB555:
161         if(s->codec_id == CODEC_ID_RPZA){
162             w_align=4;
163             h_align=4;
164         }
165     case PIX_FMT_PAL8:
166     case PIX_FMT_BGR8:
167     case PIX_FMT_RGB8:
168         if(s->codec_id == CODEC_ID_SMC){
169             w_align=4;
170             h_align=4;
171         }
172         break;
173     case PIX_FMT_BGR24:
174         if((s->codec_id == CODEC_ID_MSZH) || (s->codec_id == CODEC_ID_ZLIB)){
175             w_align=4;
176             h_align=4;
177         }
178         break;
179     default:
180         w_align= 1;
181         h_align= 1;
182         break;
183     }
184
185     *width = ALIGN(*width , w_align);
186     *height= ALIGN(*height, h_align);
187     if(s->codec_id == CODEC_ID_H264)
188         *height+=2; // some of the optimized chroma MC reads one line too much
189 }
190
191 int avcodec_check_dimensions(void *av_log_ctx, unsigned int w, unsigned int h){
192     if((int)w>0 && (int)h>0 && (w+128)*(uint64_t)(h+128) < INT_MAX/4)
193         return 0;
194
195     av_log(av_log_ctx, AV_LOG_ERROR, "picture size invalid (%ux%u)\n", w, h);
196     return -1;
197 }
198
199 int avcodec_default_get_buffer(AVCodecContext *s, AVFrame *pic){
200     int i;
201     int w= s->width;
202     int h= s->height;
203     InternalBuffer *buf;
204     int *picture_number;
205
206     if(pic->data[0]!=NULL) {
207         av_log(s, AV_LOG_ERROR, "pic->data[0]!=NULL in avcodec_default_get_buffer\n");
208         return -1;
209     }
210     if(s->internal_buffer_count >= INTERNAL_BUFFER_SIZE) {
211         av_log(s, AV_LOG_ERROR, "internal_buffer_count overflow (missing release_buffer?)\n");
212         return -1;
213     }
214
215     if(avcodec_check_dimensions(s,w,h))
216         return -1;
217
218     if(s->internal_buffer==NULL){
219         s->internal_buffer= av_mallocz((INTERNAL_BUFFER_SIZE+1)*sizeof(InternalBuffer));
220     }
221 #if 0
222     s->internal_buffer= av_fast_realloc(
223         s->internal_buffer,
224         &s->internal_buffer_size,
225         sizeof(InternalBuffer)*FFMAX(99,  s->internal_buffer_count+1)/*FIXME*/
226         );
227 #endif
228
229     buf= &((InternalBuffer*)s->internal_buffer)[s->internal_buffer_count];
230     picture_number= &(((InternalBuffer*)s->internal_buffer)[INTERNAL_BUFFER_SIZE]).last_pic_num; //FIXME ugly hack
231     (*picture_number)++;
232
233     if(buf->base[0] && (buf->width != w || buf->height != h || buf->pix_fmt != s->pix_fmt)){
234         for(i=0; i<4; i++){
235             av_freep(&buf->base[i]);
236             buf->data[i]= NULL;
237         }
238     }
239
240     if(buf->base[0]){
241         pic->age= *picture_number - buf->last_pic_num;
242         buf->last_pic_num= *picture_number;
243     }else{
244         int h_chroma_shift, v_chroma_shift;
245         int size[4] = {0};
246         int tmpsize;
247         int unaligned;
248         AVPicture picture;
249         int stride_align[4];
250
251         avcodec_get_chroma_sub_sample(s->pix_fmt, &h_chroma_shift, &v_chroma_shift);
252
253         avcodec_align_dimensions(s, &w, &h);
254
255         if(!(s->flags&CODEC_FLAG_EMU_EDGE)){
256             w+= EDGE_WIDTH*2;
257             h+= EDGE_WIDTH*2;
258         }
259
260         do {
261             // NOTE: do not align linesizes individually, this breaks e.g. assumptions
262             // that linesize[0] == 2*linesize[1] in the MPEG-encoder for 4:2:2
263             ff_fill_linesize(&picture, s->pix_fmt, w);
264             // increase alignment of w for next try (rhs gives the lowest bit set in w)
265             w += w & ~(w-1);
266
267             unaligned = 0;
268             for (i=0; i<4; i++){
269 //STRIDE_ALIGN is 8 for SSE* but this does not work for SVQ1 chroma planes
270 //we could change STRIDE_ALIGN to 16 for x86/sse but it would increase the
271 //picture size unneccessarily in some cases. The solution here is not
272 //pretty and better ideas are welcome!
273 #if HAVE_MMX
274                 if(s->codec_id == CODEC_ID_SVQ1)
275                     stride_align[i]= 16;
276                 else
277 #endif
278                 stride_align[i] = STRIDE_ALIGN;
279                 unaligned |= picture.linesize[i] % stride_align[i];
280             }
281         } while (unaligned);
282
283         tmpsize = ff_fill_pointer(&picture, NULL, s->pix_fmt, h);
284         if (tmpsize < 0)
285             return -1;
286
287         for (i=0; i<3 && picture.data[i+1]; i++)
288             size[i] = picture.data[i+1] - picture.data[i];
289         size[i] = tmpsize - (picture.data[i] - picture.data[0]);
290
291         buf->last_pic_num= -256*256*256*64;
292         memset(buf->base, 0, sizeof(buf->base));
293         memset(buf->data, 0, sizeof(buf->data));
294
295         for(i=0; i<4 && size[i]; i++){
296             const int h_shift= i==0 ? 0 : h_chroma_shift;
297             const int v_shift= i==0 ? 0 : v_chroma_shift;
298
299             buf->linesize[i]= picture.linesize[i];
300
301             buf->base[i]= av_malloc(size[i]+16); //FIXME 16
302             if(buf->base[i]==NULL) return -1;
303             memset(buf->base[i], 128, size[i]);
304
305             // no edge if EDEG EMU or not planar YUV
306             if((s->flags&CODEC_FLAG_EMU_EDGE) || !size[2])
307                 buf->data[i] = buf->base[i];
308             else
309                 buf->data[i] = buf->base[i] + ALIGN((buf->linesize[i]*EDGE_WIDTH>>v_shift) + (EDGE_WIDTH>>h_shift), stride_align[i]);
310         }
311         if(size[1] && !size[2])
312             ff_set_systematic_pal((uint32_t*)buf->data[1], s->pix_fmt);
313         buf->width  = s->width;
314         buf->height = s->height;
315         buf->pix_fmt= s->pix_fmt;
316         pic->age= 256*256*256*64;
317     }
318     pic->type= FF_BUFFER_TYPE_INTERNAL;
319
320     for(i=0; i<4; i++){
321         pic->base[i]= buf->base[i];
322         pic->data[i]= buf->data[i];
323         pic->linesize[i]= buf->linesize[i];
324     }
325     s->internal_buffer_count++;
326
327     pic->reordered_opaque= s->reordered_opaque;
328
329     if(s->debug&FF_DEBUG_BUFFERS)
330         av_log(s, AV_LOG_DEBUG, "default_get_buffer called on pic %p, %d buffers used\n", pic, s->internal_buffer_count);
331
332     return 0;
333 }
334
335 void avcodec_default_release_buffer(AVCodecContext *s, AVFrame *pic){
336     int i;
337     InternalBuffer *buf, *last;
338
339     assert(pic->type==FF_BUFFER_TYPE_INTERNAL);
340     assert(s->internal_buffer_count);
341
342     buf = NULL; /* avoids warning */
343     for(i=0; i<s->internal_buffer_count; i++){ //just 3-5 checks so is not worth to optimize
344         buf= &((InternalBuffer*)s->internal_buffer)[i];
345         if(buf->data[0] == pic->data[0])
346             break;
347     }
348     assert(i < s->internal_buffer_count);
349     s->internal_buffer_count--;
350     last = &((InternalBuffer*)s->internal_buffer)[s->internal_buffer_count];
351
352     FFSWAP(InternalBuffer, *buf, *last);
353
354     for(i=0; i<4; i++){
355         pic->data[i]=NULL;
356 //        pic->base[i]=NULL;
357     }
358 //printf("R%X\n", pic->opaque);
359
360     if(s->debug&FF_DEBUG_BUFFERS)
361         av_log(s, AV_LOG_DEBUG, "default_release_buffer called on pic %p, %d buffers used\n", pic, s->internal_buffer_count);
362 }
363
364 int avcodec_default_reget_buffer(AVCodecContext *s, AVFrame *pic){
365     AVFrame temp_pic;
366     int i;
367
368     /* If no picture return a new buffer */
369     if(pic->data[0] == NULL) {
370         /* We will copy from buffer, so must be readable */
371         pic->buffer_hints |= FF_BUFFER_HINTS_READABLE;
372         return s->get_buffer(s, pic);
373     }
374
375     /* If internal buffer type return the same buffer */
376     if(pic->type == FF_BUFFER_TYPE_INTERNAL)
377         return 0;
378
379     /*
380      * Not internal type and reget_buffer not overridden, emulate cr buffer
381      */
382     temp_pic = *pic;
383     for(i = 0; i < 4; i++)
384         pic->data[i] = pic->base[i] = NULL;
385     pic->opaque = NULL;
386     /* Allocate new frame */
387     if (s->get_buffer(s, pic))
388         return -1;
389     /* Copy image data from old buffer to new buffer */
390     av_picture_copy((AVPicture*)pic, (AVPicture*)&temp_pic, s->pix_fmt, s->width,
391              s->height);
392     s->release_buffer(s, &temp_pic); // Release old frame
393     return 0;
394 }
395
396 int avcodec_default_execute(AVCodecContext *c, int (*func)(AVCodecContext *c2, void *arg2),void *arg, int *ret, int count, int size){
397     int i;
398
399     for(i=0; i<count; i++){
400         int r= func(c, (char*)arg + i*size);
401         if(ret) ret[i]= r;
402     }
403     return 0;
404 }
405
406 enum PixelFormat avcodec_default_get_format(struct AVCodecContext *s, const enum PixelFormat *fmt){
407     while (*fmt != PIX_FMT_NONE && ff_is_hwaccel_pix_fmt(*fmt))
408         ++fmt;
409     return fmt[0];
410 }
411
412 void avcodec_get_frame_defaults(AVFrame *pic){
413     memset(pic, 0, sizeof(AVFrame));
414
415     pic->pts= AV_NOPTS_VALUE;
416     pic->key_frame= 1;
417 }
418
419 AVFrame *avcodec_alloc_frame(void){
420     AVFrame *pic= av_malloc(sizeof(AVFrame));
421
422     if(pic==NULL) return NULL;
423
424     avcodec_get_frame_defaults(pic);
425
426     return pic;
427 }
428
429 int attribute_align_arg avcodec_open(AVCodecContext *avctx, AVCodec *codec)
430 {
431     int ret= -1;
432
433     entangled_thread_counter++;
434     if(entangled_thread_counter != 1){
435         av_log(avctx, AV_LOG_ERROR, "insufficient thread locking around avcodec_open/close()\n");
436         goto end;
437     }
438
439     if(avctx->codec || !codec)
440         goto end;
441
442     if (codec->priv_data_size > 0) {
443         avctx->priv_data = av_mallocz(codec->priv_data_size);
444         if (!avctx->priv_data) {
445             ret = AVERROR(ENOMEM);
446             goto end;
447         }
448     } else {
449         avctx->priv_data = NULL;
450     }
451
452     if(avctx->coded_width && avctx->coded_height)
453         avcodec_set_dimensions(avctx, avctx->coded_width, avctx->coded_height);
454     else if(avctx->width && avctx->height)
455         avcodec_set_dimensions(avctx, avctx->width, avctx->height);
456
457     if((avctx->coded_width||avctx->coded_height) && avcodec_check_dimensions(avctx,avctx->coded_width,avctx->coded_height)){
458         av_freep(&avctx->priv_data);
459         ret = AVERROR(EINVAL);
460         goto end;
461     }
462
463     avctx->codec = codec;
464     avctx->codec_id = codec->id;
465     avctx->frame_number = 0;
466     if(avctx->codec->init){
467         ret = avctx->codec->init(avctx);
468         if (ret < 0) {
469             av_freep(&avctx->priv_data);
470             avctx->codec= NULL;
471             goto end;
472         }
473     }
474     ret=0;
475 end:
476     entangled_thread_counter--;
477     return ret;
478 }
479
480 int attribute_align_arg avcodec_encode_audio(AVCodecContext *avctx, uint8_t *buf, int buf_size,
481                          const short *samples)
482 {
483     if(buf_size < FF_MIN_BUFFER_SIZE && 0){
484         av_log(avctx, AV_LOG_ERROR, "buffer smaller than minimum size\n");
485         return -1;
486     }
487     if((avctx->codec->capabilities & CODEC_CAP_DELAY) || samples){
488         int ret = avctx->codec->encode(avctx, buf, buf_size, samples);
489         avctx->frame_number++;
490         return ret;
491     }else
492         return 0;
493 }
494
495 int attribute_align_arg avcodec_encode_video(AVCodecContext *avctx, uint8_t *buf, int buf_size,
496                          const AVFrame *pict)
497 {
498     if(buf_size < FF_MIN_BUFFER_SIZE){
499         av_log(avctx, AV_LOG_ERROR, "buffer smaller than minimum size\n");
500         return -1;
501     }
502     if(avcodec_check_dimensions(avctx,avctx->width,avctx->height))
503         return -1;
504     if((avctx->codec->capabilities & CODEC_CAP_DELAY) || pict){
505         int ret = avctx->codec->encode(avctx, buf, buf_size, pict);
506         avctx->frame_number++;
507         emms_c(); //needed to avoid an emms_c() call before every return;
508
509         return ret;
510     }else
511         return 0;
512 }
513
514 int avcodec_encode_subtitle(AVCodecContext *avctx, uint8_t *buf, int buf_size,
515                             const AVSubtitle *sub)
516 {
517     int ret;
518     if(sub->start_display_time) {
519         av_log(avctx, AV_LOG_ERROR, "start_display_time must be 0.\n");
520         return -1;
521     }
522     if(sub->num_rects == 0 || !sub->rects)
523         return -1;
524     ret = avctx->codec->encode(avctx, buf, buf_size, sub);
525     avctx->frame_number++;
526     return ret;
527 }
528
529 #if LIBAVCODEC_VERSION_MAJOR < 53
530 int attribute_align_arg avcodec_decode_video(AVCodecContext *avctx, AVFrame *picture,
531                          int *got_picture_ptr,
532                          const uint8_t *buf, int buf_size)
533 {
534     AVPacket avpkt;
535     av_init_packet(&avpkt);
536     avpkt.data = buf;
537     avpkt.size = buf_size;
538
539     return avcodec_decode_video2(avctx, picture, got_picture_ptr, &avpkt);
540 }
541 #endif
542
543 int attribute_align_arg avcodec_decode_video2(AVCodecContext *avctx, AVFrame *picture,
544                          int *got_picture_ptr,
545                          AVPacket *avpkt)
546 {
547     int ret;
548
549     *got_picture_ptr= 0;
550     if((avctx->coded_width||avctx->coded_height) && avcodec_check_dimensions(avctx,avctx->coded_width,avctx->coded_height))
551         return -1;
552     if((avctx->codec->capabilities & CODEC_CAP_DELAY) || avpkt->size){
553         ret = avctx->codec->decode(avctx, picture, got_picture_ptr,
554                                 avpkt);
555
556         emms_c(); //needed to avoid an emms_c() call before every return;
557
558         if (*got_picture_ptr)
559             avctx->frame_number++;
560     }else
561         ret= 0;
562
563     return ret;
564 }
565
566 #if LIBAVCODEC_VERSION_MAJOR < 53
567 int attribute_align_arg avcodec_decode_audio2(AVCodecContext *avctx, int16_t *samples,
568                          int *frame_size_ptr,
569                          const uint8_t *buf, int buf_size)
570 {
571     AVPacket avpkt;
572     av_init_packet(&avpkt);
573     avpkt.data = buf;
574     avpkt.size = buf_size;
575
576     return avcodec_decode_audio3(avctx, samples, frame_size_ptr, &avpkt);
577 }
578 #endif
579
580 int attribute_align_arg avcodec_decode_audio3(AVCodecContext *avctx, int16_t *samples,
581                          int *frame_size_ptr,
582                          AVPacket *avpkt)
583 {
584     int ret;
585
586     if((avctx->codec->capabilities & CODEC_CAP_DELAY) || avpkt->size){
587         //FIXME remove the check below _after_ ensuring that all audio check that the available space is enough
588         if(*frame_size_ptr < AVCODEC_MAX_AUDIO_FRAME_SIZE){
589             av_log(avctx, AV_LOG_ERROR, "buffer smaller than AVCODEC_MAX_AUDIO_FRAME_SIZE\n");
590             return -1;
591         }
592         if(*frame_size_ptr < FF_MIN_BUFFER_SIZE ||
593         *frame_size_ptr < avctx->channels * avctx->frame_size * sizeof(int16_t)){
594             av_log(avctx, AV_LOG_ERROR, "buffer %d too small\n", *frame_size_ptr);
595             return -1;
596         }
597
598         ret = avctx->codec->decode(avctx, samples, frame_size_ptr, avpkt);
599         avctx->frame_number++;
600     }else{
601         ret= 0;
602         *frame_size_ptr=0;
603     }
604     return ret;
605 }
606
607 #if LIBAVCODEC_VERSION_MAJOR < 53
608 int avcodec_decode_subtitle(AVCodecContext *avctx, AVSubtitle *sub,
609                             int *got_sub_ptr,
610                             const uint8_t *buf, int buf_size)
611 {
612     AVPacket avpkt;
613     av_init_packet(&avpkt);
614     avpkt.data = buf;
615     avpkt.size = buf_size;
616
617     return avcodec_decode_subtitle2(avctx, sub, got_sub_ptr, &avpkt);
618 }
619 #endif
620
621 int avcodec_decode_subtitle2(AVCodecContext *avctx, AVSubtitle *sub,
622                             int *got_sub_ptr,
623                             AVPacket *avpkt)
624 {
625     int ret;
626
627     *got_sub_ptr = 0;
628     ret = avctx->codec->decode(avctx, sub, got_sub_ptr, avpkt);
629     if (*got_sub_ptr)
630         avctx->frame_number++;
631     return ret;
632 }
633
634 int avcodec_close(AVCodecContext *avctx)
635 {
636     entangled_thread_counter++;
637     if(entangled_thread_counter != 1){
638         av_log(avctx, AV_LOG_ERROR, "insufficient thread locking around avcodec_open/close()\n");
639         entangled_thread_counter--;
640         return -1;
641     }
642
643     if (HAVE_THREADS && avctx->thread_opaque)
644         avcodec_thread_free(avctx);
645     if (avctx->codec->close)
646         avctx->codec->close(avctx);
647     avcodec_default_free_buffers(avctx);
648     av_freep(&avctx->priv_data);
649     avctx->codec = NULL;
650     entangled_thread_counter--;
651     return 0;
652 }
653
654 AVCodec *avcodec_find_encoder(enum CodecID id)
655 {
656     AVCodec *p;
657     p = first_avcodec;
658     while (p) {
659         if (p->encode != NULL && p->id == id)
660             return p;
661         p = p->next;
662     }
663     return NULL;
664 }
665
666 AVCodec *avcodec_find_encoder_by_name(const char *name)
667 {
668     AVCodec *p;
669     if (!name)
670         return NULL;
671     p = first_avcodec;
672     while (p) {
673         if (p->encode != NULL && strcmp(name,p->name) == 0)
674             return p;
675         p = p->next;
676     }
677     return NULL;
678 }
679
680 AVCodec *avcodec_find_decoder(enum CodecID id)
681 {
682     AVCodec *p;
683     p = first_avcodec;
684     while (p) {
685         if (p->decode != NULL && p->id == id)
686             return p;
687         p = p->next;
688     }
689     return NULL;
690 }
691
692 AVCodec *avcodec_find_decoder_by_name(const char *name)
693 {
694     AVCodec *p;
695     if (!name)
696         return NULL;
697     p = first_avcodec;
698     while (p) {
699         if (p->decode != NULL && strcmp(name,p->name) == 0)
700             return p;
701         p = p->next;
702     }
703     return NULL;
704 }
705
706 void avcodec_string(char *buf, int buf_size, AVCodecContext *enc, int encode)
707 {
708     const char *codec_name;
709     AVCodec *p;
710     char buf1[32];
711     int bitrate;
712     AVRational display_aspect_ratio;
713
714     if (encode)
715         p = avcodec_find_encoder(enc->codec_id);
716     else
717         p = avcodec_find_decoder(enc->codec_id);
718
719     if (p) {
720         codec_name = p->name;
721     } else if (enc->codec_id == CODEC_ID_MPEG2TS) {
722         /* fake mpeg2 transport stream codec (currently not
723            registered) */
724         codec_name = "mpeg2ts";
725     } else if (enc->codec_name[0] != '\0') {
726         codec_name = enc->codec_name;
727     } else {
728         /* output avi tags */
729         if(   isprint(enc->codec_tag&0xFF) && isprint((enc->codec_tag>>8)&0xFF)
730            && isprint((enc->codec_tag>>16)&0xFF) && isprint((enc->codec_tag>>24)&0xFF)){
731             snprintf(buf1, sizeof(buf1), "%c%c%c%c / 0x%04X",
732                      enc->codec_tag & 0xff,
733                      (enc->codec_tag >> 8) & 0xff,
734                      (enc->codec_tag >> 16) & 0xff,
735                      (enc->codec_tag >> 24) & 0xff,
736                       enc->codec_tag);
737         } else {
738             snprintf(buf1, sizeof(buf1), "0x%04x", enc->codec_tag);
739         }
740         codec_name = buf1;
741     }
742
743     switch(enc->codec_type) {
744     case CODEC_TYPE_VIDEO:
745         snprintf(buf, buf_size,
746                  "Video: %s%s",
747                  codec_name, enc->mb_decision ? " (hq)" : "");
748         if (enc->pix_fmt != PIX_FMT_NONE) {
749             snprintf(buf + strlen(buf), buf_size - strlen(buf),
750                      ", %s",
751                      avcodec_get_pix_fmt_name(enc->pix_fmt));
752         }
753         if (enc->width) {
754             snprintf(buf + strlen(buf), buf_size - strlen(buf),
755                      ", %dx%d",
756                      enc->width, enc->height);
757             if (enc->sample_aspect_ratio.num) {
758                 av_reduce(&display_aspect_ratio.num, &display_aspect_ratio.den,
759                           enc->width*enc->sample_aspect_ratio.num,
760                           enc->height*enc->sample_aspect_ratio.den,
761                           1024*1024);
762                 snprintf(buf + strlen(buf), buf_size - strlen(buf),
763                          " [PAR %d:%d DAR %d:%d]",
764                          enc->sample_aspect_ratio.num, enc->sample_aspect_ratio.den,
765                          display_aspect_ratio.num, display_aspect_ratio.den);
766             }
767             if(av_log_get_level() >= AV_LOG_DEBUG){
768                 int g= av_gcd(enc->time_base.num, enc->time_base.den);
769                 snprintf(buf + strlen(buf), buf_size - strlen(buf),
770                      ", %d/%d",
771                      enc->time_base.num/g, enc->time_base.den/g);
772             }
773         }
774         if (encode) {
775             snprintf(buf + strlen(buf), buf_size - strlen(buf),
776                      ", q=%d-%d", enc->qmin, enc->qmax);
777         }
778         bitrate = enc->bit_rate;
779         break;
780     case CODEC_TYPE_AUDIO:
781         snprintf(buf, buf_size,
782                  "Audio: %s",
783                  codec_name);
784         if (enc->sample_rate) {
785             snprintf(buf + strlen(buf), buf_size - strlen(buf),
786                      ", %d Hz", enc->sample_rate);
787         }
788         av_strlcat(buf, ", ", buf_size);
789         avcodec_get_channel_layout_string(buf + strlen(buf), buf_size - strlen(buf), enc->channels, enc->channel_layout);
790         if (enc->sample_fmt != SAMPLE_FMT_NONE) {
791             snprintf(buf + strlen(buf), buf_size - strlen(buf),
792                      ", %s", avcodec_get_sample_fmt_name(enc->sample_fmt));
793         }
794
795         /* for PCM codecs, compute bitrate directly */
796         switch(enc->codec_id) {
797         case CODEC_ID_PCM_F64BE:
798         case CODEC_ID_PCM_F64LE:
799             bitrate = enc->sample_rate * enc->channels * 64;
800             break;
801         case CODEC_ID_PCM_S32LE:
802         case CODEC_ID_PCM_S32BE:
803         case CODEC_ID_PCM_U32LE:
804         case CODEC_ID_PCM_U32BE:
805         case CODEC_ID_PCM_F32BE:
806         case CODEC_ID_PCM_F32LE:
807             bitrate = enc->sample_rate * enc->channels * 32;
808             break;
809         case CODEC_ID_PCM_S24LE:
810         case CODEC_ID_PCM_S24BE:
811         case CODEC_ID_PCM_U24LE:
812         case CODEC_ID_PCM_U24BE:
813         case CODEC_ID_PCM_S24DAUD:
814             bitrate = enc->sample_rate * enc->channels * 24;
815             break;
816         case CODEC_ID_PCM_S16LE:
817         case CODEC_ID_PCM_S16BE:
818         case CODEC_ID_PCM_S16LE_PLANAR:
819         case CODEC_ID_PCM_U16LE:
820         case CODEC_ID_PCM_U16BE:
821             bitrate = enc->sample_rate * enc->channels * 16;
822             break;
823         case CODEC_ID_PCM_S8:
824         case CODEC_ID_PCM_U8:
825         case CODEC_ID_PCM_ALAW:
826         case CODEC_ID_PCM_MULAW:
827         case CODEC_ID_PCM_ZORK:
828             bitrate = enc->sample_rate * enc->channels * 8;
829             break;
830         default:
831             bitrate = enc->bit_rate;
832             break;
833         }
834         break;
835     case CODEC_TYPE_DATA:
836         snprintf(buf, buf_size, "Data: %s", codec_name);
837         bitrate = enc->bit_rate;
838         break;
839     case CODEC_TYPE_SUBTITLE:
840         snprintf(buf, buf_size, "Subtitle: %s", codec_name);
841         bitrate = enc->bit_rate;
842         break;
843     case CODEC_TYPE_ATTACHMENT:
844         snprintf(buf, buf_size, "Attachment: %s", codec_name);
845         bitrate = enc->bit_rate;
846         break;
847     default:
848         snprintf(buf, buf_size, "Invalid Codec type %d", enc->codec_type);
849         return;
850     }
851     if (encode) {
852         if (enc->flags & CODEC_FLAG_PASS1)
853             snprintf(buf + strlen(buf), buf_size - strlen(buf),
854                      ", pass 1");
855         if (enc->flags & CODEC_FLAG_PASS2)
856             snprintf(buf + strlen(buf), buf_size - strlen(buf),
857                      ", pass 2");
858     }
859     if (bitrate != 0) {
860         snprintf(buf + strlen(buf), buf_size - strlen(buf),
861                  ", %d kb/s", bitrate / 1000);
862     }
863 }
864
865 unsigned avcodec_version( void )
866 {
867   return LIBAVCODEC_VERSION_INT;
868 }
869
870 void avcodec_init(void)
871 {
872     static int initialized = 0;
873
874     if (initialized != 0)
875         return;
876     initialized = 1;
877
878     dsputil_static_init();
879 }
880
881 void avcodec_flush_buffers(AVCodecContext *avctx)
882 {
883     if(avctx->codec->flush)
884         avctx->codec->flush(avctx);
885 }
886
887 void avcodec_default_free_buffers(AVCodecContext *s){
888     int i, j;
889
890     if(s->internal_buffer==NULL) return;
891
892     for(i=0; i<INTERNAL_BUFFER_SIZE; i++){
893         InternalBuffer *buf= &((InternalBuffer*)s->internal_buffer)[i];
894         for(j=0; j<4; j++){
895             av_freep(&buf->base[j]);
896             buf->data[j]= NULL;
897         }
898     }
899     av_freep(&s->internal_buffer);
900
901     s->internal_buffer_count=0;
902 }
903
904 char av_get_pict_type_char(int pict_type){
905     switch(pict_type){
906     case FF_I_TYPE: return 'I';
907     case FF_P_TYPE: return 'P';
908     case FF_B_TYPE: return 'B';
909     case FF_S_TYPE: return 'S';
910     case FF_SI_TYPE:return 'i';
911     case FF_SP_TYPE:return 'p';
912     case FF_BI_TYPE:return 'b';
913     default:        return '?';
914     }
915 }
916
917 int av_get_bits_per_sample(enum CodecID codec_id){
918     switch(codec_id){
919     case CODEC_ID_ADPCM_SBPRO_2:
920         return 2;
921     case CODEC_ID_ADPCM_SBPRO_3:
922         return 3;
923     case CODEC_ID_ADPCM_SBPRO_4:
924     case CODEC_ID_ADPCM_CT:
925         return 4;
926     case CODEC_ID_PCM_ALAW:
927     case CODEC_ID_PCM_MULAW:
928     case CODEC_ID_PCM_S8:
929     case CODEC_ID_PCM_U8:
930     case CODEC_ID_PCM_ZORK:
931         return 8;
932     case CODEC_ID_PCM_S16BE:
933     case CODEC_ID_PCM_S16LE:
934     case CODEC_ID_PCM_S16LE_PLANAR:
935     case CODEC_ID_PCM_U16BE:
936     case CODEC_ID_PCM_U16LE:
937         return 16;
938     case CODEC_ID_PCM_S24DAUD:
939     case CODEC_ID_PCM_S24BE:
940     case CODEC_ID_PCM_S24LE:
941     case CODEC_ID_PCM_U24BE:
942     case CODEC_ID_PCM_U24LE:
943         return 24;
944     case CODEC_ID_PCM_S32BE:
945     case CODEC_ID_PCM_S32LE:
946     case CODEC_ID_PCM_U32BE:
947     case CODEC_ID_PCM_U32LE:
948     case CODEC_ID_PCM_F32BE:
949     case CODEC_ID_PCM_F32LE:
950         return 32;
951     case CODEC_ID_PCM_F64BE:
952     case CODEC_ID_PCM_F64LE:
953         return 64;
954     default:
955         return 0;
956     }
957 }
958
959 int av_get_bits_per_sample_format(enum SampleFormat sample_fmt) {
960     switch (sample_fmt) {
961     case SAMPLE_FMT_U8:
962         return 8;
963     case SAMPLE_FMT_S16:
964         return 16;
965     case SAMPLE_FMT_S32:
966     case SAMPLE_FMT_FLT:
967         return 32;
968     case SAMPLE_FMT_DBL:
969         return 64;
970     default:
971         return 0;
972     }
973 }
974
975 #if !HAVE_THREADS
976 int avcodec_thread_init(AVCodecContext *s, int thread_count){
977     return -1;
978 }
979 #endif
980
981 unsigned int av_xiphlacing(unsigned char *s, unsigned int v)
982 {
983     unsigned int n = 0;
984
985     while(v >= 0xff) {
986         *s++ = 0xff;
987         v -= 0xff;
988         n++;
989     }
990     *s = v;
991     n++;
992     return n;
993 }
994
995 /* Wrapper to work around the lack of mkstemp() on mingw/cygin.
996  * Also, tries to create file in /tmp first, if possible.
997  * *prefix can be a character constant; *filename will be allocated internally.
998  * Returns file descriptor of opened file (or -1 on error)
999  * and opened file name in **filename. */
1000 int av_tempfile(char *prefix, char **filename) {
1001     int fd=-1;
1002 #if !HAVE_MKSTEMP
1003     *filename = tempnam(".", prefix);
1004 #else
1005     size_t len = strlen(prefix) + 12; /* room for "/tmp/" and "XXXXXX\0" */
1006     *filename = av_malloc(len);
1007 #endif
1008     /* -----common section-----*/
1009     if (*filename == NULL) {
1010         av_log(NULL, AV_LOG_ERROR, "ff_tempfile: Cannot allocate file name\n");
1011         return -1;
1012     }
1013 #if !HAVE_MKSTEMP
1014     fd = open(*filename, O_RDWR | O_BINARY | O_CREAT, 0444);
1015 #else
1016     snprintf(*filename, len, "/tmp/%sXXXXXX", prefix);
1017     fd = mkstemp(*filename);
1018     if (fd < 0) {
1019         snprintf(*filename, len, "./%sXXXXXX", prefix);
1020         fd = mkstemp(*filename);
1021     }
1022 #endif
1023     /* -----common section-----*/
1024     if (fd < 0) {
1025         av_log(NULL, AV_LOG_ERROR, "ff_tempfile: Cannot open temporary file %s\n", *filename);
1026         return -1;
1027     }
1028     return fd; /* success */
1029 }
1030
1031 typedef struct {
1032     const char *abbr;
1033     int width, height;
1034 } VideoFrameSizeAbbr;
1035
1036 typedef struct {
1037     const char *abbr;
1038     int rate_num, rate_den;
1039 } VideoFrameRateAbbr;
1040
1041 static const VideoFrameSizeAbbr video_frame_size_abbrs[] = {
1042     { "ntsc",      720, 480 },
1043     { "pal",       720, 576 },
1044     { "qntsc",     352, 240 }, /* VCD compliant NTSC */
1045     { "qpal",      352, 288 }, /* VCD compliant PAL */
1046     { "sntsc",     640, 480 }, /* square pixel NTSC */
1047     { "spal",      768, 576 }, /* square pixel PAL */
1048     { "film",      352, 240 },
1049     { "ntsc-film", 352, 240 },
1050     { "sqcif",     128,  96 },
1051     { "qcif",      176, 144 },
1052     { "cif",       352, 288 },
1053     { "4cif",      704, 576 },
1054     { "16cif",    1408,1152 },
1055     { "qqvga",     160, 120 },
1056     { "qvga",      320, 240 },
1057     { "vga",       640, 480 },
1058     { "svga",      800, 600 },
1059     { "xga",      1024, 768 },
1060     { "uxga",     1600,1200 },
1061     { "qxga",     2048,1536 },
1062     { "sxga",     1280,1024 },
1063     { "qsxga",    2560,2048 },
1064     { "hsxga",    5120,4096 },
1065     { "wvga",      852, 480 },
1066     { "wxga",     1366, 768 },
1067     { "wsxga",    1600,1024 },
1068     { "wuxga",    1920,1200 },
1069     { "woxga",    2560,1600 },
1070     { "wqsxga",   3200,2048 },
1071     { "wquxga",   3840,2400 },
1072     { "whsxga",   6400,4096 },
1073     { "whuxga",   7680,4800 },
1074     { "cga",       320, 200 },
1075     { "ega",       640, 350 },
1076     { "hd480",     852, 480 },
1077     { "hd720",    1280, 720 },
1078     { "hd1080",   1920,1080 },
1079 };
1080
1081 static const VideoFrameRateAbbr video_frame_rate_abbrs[]= {
1082     { "ntsc",      30000, 1001 },
1083     { "pal",          25,    1 },
1084     { "qntsc",     30000, 1001 }, /* VCD compliant NTSC */
1085     { "qpal",         25,    1 }, /* VCD compliant PAL */
1086     { "sntsc",     30000, 1001 }, /* square pixel NTSC */
1087     { "spal",         25,    1 }, /* square pixel PAL */
1088     { "film",         24,    1 },
1089     { "ntsc-film", 24000, 1001 },
1090 };
1091
1092 int av_parse_video_frame_size(int *width_ptr, int *height_ptr, const char *str)
1093 {
1094     int i;
1095     int n = FF_ARRAY_ELEMS(video_frame_size_abbrs);
1096     char *p;
1097     int frame_width = 0, frame_height = 0;
1098
1099     for(i=0;i<n;i++) {
1100         if (!strcmp(video_frame_size_abbrs[i].abbr, str)) {
1101             frame_width = video_frame_size_abbrs[i].width;
1102             frame_height = video_frame_size_abbrs[i].height;
1103             break;
1104         }
1105     }
1106     if (i == n) {
1107         p = str;
1108         frame_width = strtol(p, &p, 10);
1109         if (*p)
1110             p++;
1111         frame_height = strtol(p, &p, 10);
1112     }
1113     if (frame_width <= 0 || frame_height <= 0)
1114         return -1;
1115     *width_ptr = frame_width;
1116     *height_ptr = frame_height;
1117     return 0;
1118 }
1119
1120 int av_parse_video_frame_rate(AVRational *frame_rate, const char *arg)
1121 {
1122     int i;
1123     int n = FF_ARRAY_ELEMS(video_frame_rate_abbrs);
1124     char* cp;
1125
1126     /* First, we check our abbreviation table */
1127     for (i = 0; i < n; ++i)
1128          if (!strcmp(video_frame_rate_abbrs[i].abbr, arg)) {
1129              frame_rate->num = video_frame_rate_abbrs[i].rate_num;
1130              frame_rate->den = video_frame_rate_abbrs[i].rate_den;
1131              return 0;
1132          }
1133
1134     /* Then, we try to parse it as fraction */
1135     cp = strchr(arg, '/');
1136     if (!cp)
1137         cp = strchr(arg, ':');
1138     if (cp) {
1139         char* cpp;
1140         frame_rate->num = strtol(arg, &cpp, 10);
1141         if (cpp != arg || cpp == cp)
1142             frame_rate->den = strtol(cp+1, &cpp, 10);
1143         else
1144            frame_rate->num = 0;
1145     }
1146     else {
1147         /* Finally we give up and parse it as double */
1148         AVRational time_base = av_d2q(strtod(arg, 0), 1001000);
1149         frame_rate->den = time_base.den;
1150         frame_rate->num = time_base.num;
1151     }
1152     if (!frame_rate->num || !frame_rate->den)
1153         return -1;
1154     else
1155         return 0;
1156 }
1157
1158 void ff_log_missing_feature(void *avc, const char *feature, int want_sample)
1159 {
1160     av_log(avc, AV_LOG_WARNING, "%s not implemented. Update your FFmpeg "
1161             "version to the newest one from SVN. If the problem still "
1162             "occurs, it means that your file has a feature which has not "
1163             "been implemented.", feature);
1164     if(want_sample)
1165         ff_log_ask_for_sample(avc, NULL);
1166     else
1167         av_log(avc, AV_LOG_WARNING, "\n");
1168 }
1169
1170 void ff_log_ask_for_sample(void *avc, const char *msg)
1171 {
1172     if (msg)
1173         av_log(avc, AV_LOG_WARNING, "%s ", msg);
1174     av_log(avc, AV_LOG_WARNING, "If you want to help, upload a sample "
1175             "of this file to ftp://upload.ffmpeg.org/MPlayer/incoming/ "
1176             "and contact the ffmpeg-devel mailing list.\n");
1177 }
1178
1179 static AVHWAccel *first_hwaccel = NULL;
1180
1181 void av_register_hwaccel(AVHWAccel *hwaccel)
1182 {
1183     AVHWAccel **p = &first_hwaccel;
1184     while (*p)
1185         p = &(*p)->next;
1186     *p = hwaccel;
1187     hwaccel->next = NULL;
1188 }
1189
1190 AVHWAccel *av_hwaccel_next(AVHWAccel *hwaccel)
1191 {
1192     return hwaccel ? hwaccel->next : first_hwaccel;
1193 }
1194
1195 AVHWAccel *ff_find_hwaccel(enum CodecID codec_id, enum PixelFormat pix_fmt)
1196 {
1197     AVHWAccel *hwaccel=NULL;
1198
1199     while((hwaccel= av_hwaccel_next(hwaccel))){
1200         if (   hwaccel->id      == codec_id
1201             && hwaccel->pix_fmt == pix_fmt)
1202             return hwaccel;
1203     }
1204     return NULL;
1205 }