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