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