OSDN Git Service

utils.c: fix crash with threading enabled.
[coroid/ffmpeg_saccubus.git] / libavcodec / utils.c
1 /*
2  * utils for libavcodec
3  * Copyright (c) 2001 Fabrice Bellard
4  * Copyright (c) 2002-2004 Michael Niedermayer <michaelni@gmx.at>
5  *
6  * This file is part of Libav.
7  *
8  * Libav 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  * Libav 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 Libav; 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 "libavutil/audioconvert.h"
33 #include "libavutil/imgutils.h"
34 #include "libavutil/samplefmt.h"
35 #include "avcodec.h"
36 #include "dsputil.h"
37 #include "libavutil/opt.h"
38 #include "imgconvert.h"
39 #include "thread.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 static 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, size_t 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, size_t 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 unsigned avcodec_get_edge_width(void)
98 {
99     return EDGE_WIDTH;
100 }
101
102 void avcodec_set_dimensions(AVCodecContext *s, int width, int height){
103     s->coded_width = width;
104     s->coded_height= height;
105     s->width = -((-width )>>s->lowres);
106     s->height= -((-height)>>s->lowres);
107 }
108
109 typedef struct InternalBuffer{
110     int last_pic_num;
111     uint8_t *base[4];
112     uint8_t *data[4];
113     int linesize[4];
114     int width, height;
115     enum PixelFormat pix_fmt;
116 }InternalBuffer;
117
118 #define INTERNAL_BUFFER_SIZE (32+1)
119
120 void avcodec_align_dimensions2(AVCodecContext *s, int *width, int *height, int linesize_align[4]){
121     int w_align= 1;
122     int h_align= 1;
123
124     switch(s->pix_fmt){
125     case PIX_FMT_YUV420P:
126     case PIX_FMT_YUYV422:
127     case PIX_FMT_UYVY422:
128     case PIX_FMT_YUV422P:
129     case PIX_FMT_YUV440P:
130     case PIX_FMT_YUV444P:
131     case PIX_FMT_GRAY8:
132     case PIX_FMT_GRAY16BE:
133     case PIX_FMT_GRAY16LE:
134     case PIX_FMT_YUVJ420P:
135     case PIX_FMT_YUVJ422P:
136     case PIX_FMT_YUVJ440P:
137     case PIX_FMT_YUVJ444P:
138     case PIX_FMT_YUVA420P:
139     case PIX_FMT_YUV420P9LE:
140     case PIX_FMT_YUV420P9BE:
141     case PIX_FMT_YUV420P10LE:
142     case PIX_FMT_YUV420P10BE:
143     case PIX_FMT_YUV422P10LE:
144     case PIX_FMT_YUV422P10BE:
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 || s->codec_id == CODEC_ID_MJPEG || s->codec_id == CODEC_ID_AMV || s->codec_id == CODEC_ID_THP || s->codec_id == CODEC_ID_H264)
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 = FFALIGN(*width , w_align);
186     *height= FFALIGN(*height, h_align);
187     if(s->codec_id == CODEC_ID_H264 || s->lowres)
188         *height+=2; // some of the optimized chroma MC reads one line too much
189                     // which is also done in mpeg decoders with lowres > 0
190
191     linesize_align[0] =
192     linesize_align[1] =
193     linesize_align[2] =
194     linesize_align[3] = STRIDE_ALIGN;
195 //STRIDE_ALIGN is 8 for SSE* but this does not work for SVQ1 chroma planes
196 //we could change STRIDE_ALIGN to 16 for x86/sse but it would increase the
197 //picture size unneccessarily in some cases. The solution here is not
198 //pretty and better ideas are welcome!
199 #if HAVE_MMX
200     if(s->codec_id == CODEC_ID_SVQ1 || s->codec_id == CODEC_ID_VP5 ||
201        s->codec_id == CODEC_ID_VP6 || s->codec_id == CODEC_ID_VP6F ||
202        s->codec_id == CODEC_ID_VP6A) {
203         linesize_align[0] =
204         linesize_align[1] =
205         linesize_align[2] = 16;
206     }
207 #endif
208 }
209
210 void avcodec_align_dimensions(AVCodecContext *s, int *width, int *height){
211     int chroma_shift = av_pix_fmt_descriptors[s->pix_fmt].log2_chroma_w;
212     int linesize_align[4];
213     int align;
214     avcodec_align_dimensions2(s, width, height, linesize_align);
215     align = FFMAX(linesize_align[0], linesize_align[3]);
216     linesize_align[1] <<= chroma_shift;
217     linesize_align[2] <<= chroma_shift;
218     align = FFMAX3(align, linesize_align[1], linesize_align[2]);
219     *width=FFALIGN(*width, align);
220 }
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_image_check_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         if(s->active_thread_type&FF_THREAD_FRAME) {
258             av_log_missing_feature(s, "Width/height changing with frame threads is", 0);
259             return -1;
260         }
261
262         for(i=0; i<4; i++){
263             av_freep(&buf->base[i]);
264             buf->data[i]= NULL;
265         }
266     }
267
268     if(buf->base[0]){
269         pic->age= *picture_number - buf->last_pic_num;
270         buf->last_pic_num= *picture_number;
271     }else{
272         int h_chroma_shift, v_chroma_shift;
273         int size[4] = {0};
274         int tmpsize;
275         int unaligned;
276         AVPicture picture;
277         int stride_align[4];
278         const int pixel_size = av_pix_fmt_descriptors[s->pix_fmt].comp[0].step_minus1+1;
279
280         avcodec_get_chroma_sub_sample(s->pix_fmt, &h_chroma_shift, &v_chroma_shift);
281
282         avcodec_align_dimensions2(s, &w, &h, stride_align);
283
284         if(!(s->flags&CODEC_FLAG_EMU_EDGE)){
285             w+= EDGE_WIDTH*2;
286             h+= EDGE_WIDTH*2;
287         }
288
289         do {
290             // NOTE: do not align linesizes individually, this breaks e.g. assumptions
291             // that linesize[0] == 2*linesize[1] in the MPEG-encoder for 4:2:2
292             av_image_fill_linesizes(picture.linesize, s->pix_fmt, w);
293             // increase alignment of w for next try (rhs gives the lowest bit set in w)
294             w += w & ~(w-1);
295
296             unaligned = 0;
297             for (i=0; i<4; i++){
298                 unaligned |= picture.linesize[i] % stride_align[i];
299             }
300         } while (unaligned);
301
302         tmpsize = av_image_fill_pointers(picture.data, s->pix_fmt, h, NULL, picture.linesize);
303         if (tmpsize < 0)
304             return -1;
305
306         for (i=0; i<3 && picture.data[i+1]; i++)
307             size[i] = picture.data[i+1] - picture.data[i];
308         size[i] = tmpsize - (picture.data[i] - picture.data[0]);
309
310         buf->last_pic_num= -256*256*256*64;
311         memset(buf->base, 0, sizeof(buf->base));
312         memset(buf->data, 0, sizeof(buf->data));
313
314         for(i=0; i<4 && size[i]; i++){
315             const int h_shift= i==0 ? 0 : h_chroma_shift;
316             const int v_shift= i==0 ? 0 : v_chroma_shift;
317
318             buf->linesize[i]= picture.linesize[i];
319
320             buf->base[i]= av_malloc(size[i]+16); //FIXME 16
321             if(buf->base[i]==NULL) return -1;
322             memset(buf->base[i], 128, size[i]);
323
324             // no edge if EDGE EMU or not planar YUV
325             if((s->flags&CODEC_FLAG_EMU_EDGE) || !size[2])
326                 buf->data[i] = buf->base[i];
327             else
328                 buf->data[i] = buf->base[i] + FFALIGN((buf->linesize[i]*EDGE_WIDTH>>v_shift) + (pixel_size*EDGE_WIDTH>>h_shift), stride_align[i]);
329         }
330         if(size[1] && !size[2])
331             ff_set_systematic_pal2((uint32_t*)buf->data[1], s->pix_fmt);
332         buf->width  = s->width;
333         buf->height = s->height;
334         buf->pix_fmt= s->pix_fmt;
335         pic->age= 256*256*256*64;
336     }
337     pic->type= FF_BUFFER_TYPE_INTERNAL;
338
339     for(i=0; i<4; i++){
340         pic->base[i]= buf->base[i];
341         pic->data[i]= buf->data[i];
342         pic->linesize[i]= buf->linesize[i];
343     }
344     s->internal_buffer_count++;
345
346     if(s->pkt) pic->pkt_pts= s->pkt->pts;
347     else       pic->pkt_pts= AV_NOPTS_VALUE;
348     pic->reordered_opaque= s->reordered_opaque;
349
350     if(s->debug&FF_DEBUG_BUFFERS)
351         av_log(s, AV_LOG_DEBUG, "default_get_buffer called on pic %p, %d buffers used\n", pic, s->internal_buffer_count);
352
353     return 0;
354 }
355
356 void avcodec_default_release_buffer(AVCodecContext *s, AVFrame *pic){
357     int i;
358     InternalBuffer *buf, *last;
359
360     assert(pic->type==FF_BUFFER_TYPE_INTERNAL);
361     assert(s->internal_buffer_count);
362
363     if(s->internal_buffer){
364     buf = NULL; /* avoids warning */
365     for(i=0; i<s->internal_buffer_count; i++){ //just 3-5 checks so is not worth to optimize
366         buf= &((InternalBuffer*)s->internal_buffer)[i];
367         if(buf->data[0] == pic->data[0])
368             break;
369     }
370     assert(i < s->internal_buffer_count);
371     s->internal_buffer_count--;
372     last = &((InternalBuffer*)s->internal_buffer)[s->internal_buffer_count];
373
374     FFSWAP(InternalBuffer, *buf, *last);
375     }
376
377     for(i=0; i<4; i++){
378         pic->data[i]=NULL;
379 //        pic->base[i]=NULL;
380     }
381 //printf("R%X\n", pic->opaque);
382
383     if(s->debug&FF_DEBUG_BUFFERS)
384         av_log(s, AV_LOG_DEBUG, "default_release_buffer called on pic %p, %d buffers used\n", pic, s->internal_buffer_count);
385 }
386
387 int avcodec_default_reget_buffer(AVCodecContext *s, AVFrame *pic){
388     AVFrame temp_pic;
389     int i;
390
391     /* If no picture return a new buffer */
392     if(pic->data[0] == NULL) {
393         /* We will copy from buffer, so must be readable */
394         pic->buffer_hints |= FF_BUFFER_HINTS_READABLE;
395         return s->get_buffer(s, pic);
396     }
397
398     /* If internal buffer type return the same buffer */
399     if(pic->type == FF_BUFFER_TYPE_INTERNAL) {
400         if(s->pkt) pic->pkt_pts= s->pkt->pts;
401         else       pic->pkt_pts= AV_NOPTS_VALUE;
402         pic->reordered_opaque= s->reordered_opaque;
403         return 0;
404     }
405
406     /*
407      * Not internal type and reget_buffer not overridden, emulate cr buffer
408      */
409     temp_pic = *pic;
410     for(i = 0; i < 4; i++)
411         pic->data[i] = pic->base[i] = NULL;
412     pic->opaque = NULL;
413     /* Allocate new frame */
414     if (s->get_buffer(s, pic))
415         return -1;
416     /* Copy image data from old buffer to new buffer */
417     av_picture_copy((AVPicture*)pic, (AVPicture*)&temp_pic, s->pix_fmt, s->width,
418              s->height);
419     s->release_buffer(s, &temp_pic); // Release old frame
420     return 0;
421 }
422
423 int avcodec_default_execute(AVCodecContext *c, int (*func)(AVCodecContext *c2, void *arg2),void *arg, int *ret, int count, int size){
424     int i;
425
426     for(i=0; i<count; i++){
427         int r= func(c, (char*)arg + i*size);
428         if(ret) ret[i]= r;
429     }
430     return 0;
431 }
432
433 int avcodec_default_execute2(AVCodecContext *c, int (*func)(AVCodecContext *c2, void *arg2, int jobnr, int threadnr),void *arg, int *ret, int count){
434     int i;
435
436     for(i=0; i<count; i++){
437         int r= func(c, arg, i, 0);
438         if(ret) ret[i]= r;
439     }
440     return 0;
441 }
442
443 enum PixelFormat avcodec_default_get_format(struct AVCodecContext *s, const enum PixelFormat *fmt){
444     while (*fmt != PIX_FMT_NONE && ff_is_hwaccel_pix_fmt(*fmt))
445         ++fmt;
446     return fmt[0];
447 }
448
449 void avcodec_get_frame_defaults(AVFrame *pic){
450     memset(pic, 0, sizeof(AVFrame));
451
452     pic->pts= AV_NOPTS_VALUE;
453     pic->key_frame= 1;
454 }
455
456 AVFrame *avcodec_alloc_frame(void){
457     AVFrame *pic= av_malloc(sizeof(AVFrame));
458
459     if(pic==NULL) return NULL;
460
461     avcodec_get_frame_defaults(pic);
462
463     return pic;
464 }
465
466 int attribute_align_arg avcodec_open(AVCodecContext *avctx, AVCodec *codec)
467 {
468     int ret = 0;
469
470     /* If there is a user-supplied mutex locking routine, call it. */
471     if (ff_lockmgr_cb) {
472         if ((*ff_lockmgr_cb)(&codec_mutex, AV_LOCK_OBTAIN))
473             return -1;
474     }
475
476     entangled_thread_counter++;
477     if(entangled_thread_counter != 1){
478         av_log(avctx, AV_LOG_ERROR, "insufficient thread locking around avcodec_open/close()\n");
479         ret = -1;
480         goto end;
481     }
482
483     if(avctx->codec || !codec) {
484         ret = AVERROR(EINVAL);
485         goto end;
486     }
487
488     if (codec->priv_data_size > 0) {
489       if(!avctx->priv_data){
490         avctx->priv_data = av_mallocz(codec->priv_data_size);
491         if (!avctx->priv_data) {
492             ret = AVERROR(ENOMEM);
493             goto end;
494         }
495         if(codec->priv_class){ //this can be droped once all user apps use   avcodec_get_context_defaults3()
496             *(AVClass**)avctx->priv_data= codec->priv_class;
497             av_opt_set_defaults(avctx->priv_data);
498         }
499       }
500     } else {
501         avctx->priv_data = NULL;
502     }
503
504     if(avctx->coded_width && avctx->coded_height)
505         avcodec_set_dimensions(avctx, avctx->coded_width, avctx->coded_height);
506     else if(avctx->width && avctx->height)
507         avcodec_set_dimensions(avctx, avctx->width, avctx->height);
508
509     if ((avctx->coded_width || avctx->coded_height || avctx->width || avctx->height)
510         && (  av_image_check_size(avctx->coded_width, avctx->coded_height, 0, avctx) < 0
511            || av_image_check_size(avctx->width,       avctx->height,       0, avctx) < 0)) {
512         av_log(avctx, AV_LOG_WARNING, "ignoring invalid width/height values\n");
513         avcodec_set_dimensions(avctx, 0, 0);
514     }
515
516     /* if the decoder init function was already called previously,
517        free the already allocated subtitle_header before overwriting it */
518     if (codec->decode)
519         av_freep(&avctx->subtitle_header);
520
521 #define SANE_NB_CHANNELS 128U
522     if (avctx->channels > SANE_NB_CHANNELS) {
523         ret = AVERROR(EINVAL);
524         goto free_and_end;
525     }
526
527     avctx->codec = codec;
528     if ((avctx->codec_type == AVMEDIA_TYPE_UNKNOWN || avctx->codec_type == codec->type) &&
529         avctx->codec_id == CODEC_ID_NONE) {
530         avctx->codec_type = codec->type;
531         avctx->codec_id   = codec->id;
532     }
533     if (avctx->codec_id != codec->id || (avctx->codec_type != codec->type
534                            && avctx->codec_type != AVMEDIA_TYPE_ATTACHMENT)) {
535         av_log(avctx, AV_LOG_ERROR, "codec type or id mismatches\n");
536         ret = AVERROR(EINVAL);
537         goto free_and_end;
538     }
539     avctx->frame_number = 0;
540
541     if (HAVE_THREADS && !avctx->thread_opaque) {
542         ret = ff_thread_init(avctx);
543         if (ret < 0) {
544             goto free_and_end;
545         }
546     }
547
548     if (avctx->codec->max_lowres < avctx->lowres) {
549         av_log(avctx, AV_LOG_ERROR, "The maximum value for lowres supported by the decoder is %d\n",
550                avctx->codec->max_lowres);
551         ret = AVERROR(EINVAL);
552         goto free_and_end;
553     }
554     if (avctx->codec->encode) {
555         int i;
556         if (avctx->codec->sample_fmts) {
557             for (i = 0; avctx->codec->sample_fmts[i] != AV_SAMPLE_FMT_NONE; i++)
558                 if (avctx->sample_fmt == avctx->codec->sample_fmts[i])
559                     break;
560             if (avctx->codec->sample_fmts[i] == AV_SAMPLE_FMT_NONE) {
561                 av_log(avctx, AV_LOG_ERROR, "Specified sample_fmt is not supported.\n");
562                 ret = AVERROR(EINVAL);
563                 goto free_and_end;
564             }
565         }
566         if (avctx->codec->supported_samplerates) {
567             for (i = 0; avctx->codec->supported_samplerates[i] != 0; i++)
568                 if (avctx->sample_rate == avctx->codec->supported_samplerates[i])
569                     break;
570             if (avctx->codec->supported_samplerates[i] == 0) {
571                 av_log(avctx, AV_LOG_ERROR, "Specified sample_rate is not supported\n");
572                 ret = AVERROR(EINVAL);
573                 goto free_and_end;
574             }
575         }
576         if (avctx->codec->channel_layouts) {
577             if (!avctx->channel_layout) {
578                 av_log(avctx, AV_LOG_WARNING, "channel_layout not specified\n");
579             } else {
580                 for (i = 0; avctx->codec->channel_layouts[i] != 0; i++)
581                     if (avctx->channel_layout == avctx->codec->channel_layouts[i])
582                         break;
583                 if (avctx->codec->channel_layouts[i] == 0) {
584                     av_log(avctx, AV_LOG_ERROR, "Specified channel_layout is not supported\n");
585                     ret = AVERROR(EINVAL);
586                     goto free_and_end;
587                 }
588             }
589         }
590         if (avctx->channel_layout && avctx->channels) {
591             if (av_get_channel_layout_nb_channels(avctx->channel_layout) != avctx->channels) {
592                 av_log(avctx, AV_LOG_ERROR, "channel layout does not match number of channels\n");
593                 ret = AVERROR(EINVAL);
594                 goto free_and_end;
595             }
596         } else if (avctx->channel_layout) {
597             avctx->channels = av_get_channel_layout_nb_channels(avctx->channel_layout);
598         }
599     }
600
601     if(avctx->codec->init && !(avctx->active_thread_type&FF_THREAD_FRAME)){
602         ret = avctx->codec->init(avctx);
603         if (ret < 0) {
604             goto free_and_end;
605         }
606     }
607 end:
608     entangled_thread_counter--;
609
610     /* Release any user-supplied mutex. */
611     if (ff_lockmgr_cb) {
612         (*ff_lockmgr_cb)(&codec_mutex, AV_LOCK_RELEASE);
613     }
614     return ret;
615 free_and_end:
616     av_freep(&avctx->priv_data);
617     avctx->codec= NULL;
618     goto end;
619 }
620
621 int attribute_align_arg avcodec_encode_audio(AVCodecContext *avctx, uint8_t *buf, int buf_size,
622                          const short *samples)
623 {
624     if(buf_size < FF_MIN_BUFFER_SIZE && 0){
625         av_log(avctx, AV_LOG_ERROR, "buffer smaller than minimum size\n");
626         return -1;
627     }
628     if((avctx->codec->capabilities & CODEC_CAP_DELAY) || samples){
629         int ret = avctx->codec->encode(avctx, buf, buf_size, samples);
630         avctx->frame_number++;
631         return ret;
632     }else
633         return 0;
634 }
635
636 int attribute_align_arg avcodec_encode_video(AVCodecContext *avctx, uint8_t *buf, int buf_size,
637                          const AVFrame *pict)
638 {
639     if(buf_size < FF_MIN_BUFFER_SIZE){
640         av_log(avctx, AV_LOG_ERROR, "buffer smaller than minimum size\n");
641         return -1;
642     }
643     if(av_image_check_size(avctx->width, avctx->height, 0, avctx))
644         return -1;
645     if((avctx->codec->capabilities & CODEC_CAP_DELAY) || pict){
646         int ret = avctx->codec->encode(avctx, buf, buf_size, pict);
647         avctx->frame_number++;
648         emms_c(); //needed to avoid an emms_c() call before every return;
649
650         return ret;
651     }else
652         return 0;
653 }
654
655 int avcodec_encode_subtitle(AVCodecContext *avctx, uint8_t *buf, int buf_size,
656                             const AVSubtitle *sub)
657 {
658     int ret;
659     if(sub->start_display_time) {
660         av_log(avctx, AV_LOG_ERROR, "start_display_time must be 0.\n");
661         return -1;
662     }
663     if(sub->num_rects == 0 || !sub->rects)
664         return -1;
665     ret = avctx->codec->encode(avctx, buf, buf_size, sub);
666     avctx->frame_number++;
667     return ret;
668 }
669
670 int attribute_align_arg avcodec_decode_video2(AVCodecContext *avctx, AVFrame *picture,
671                          int *got_picture_ptr,
672                          AVPacket *avpkt)
673 {
674     int ret;
675
676     *got_picture_ptr= 0;
677     if((avctx->coded_width||avctx->coded_height) && av_image_check_size(avctx->coded_width, avctx->coded_height, 0, avctx))
678         return -1;
679
680     avctx->pkt = avpkt;
681
682     if((avctx->codec->capabilities & CODEC_CAP_DELAY) || avpkt->size || (avctx->active_thread_type&FF_THREAD_FRAME)){
683         if (HAVE_PTHREADS && avctx->active_thread_type&FF_THREAD_FRAME)
684              ret = ff_thread_decode_frame(avctx, picture, got_picture_ptr,
685                                           avpkt);
686         else {
687             ret = avctx->codec->decode(avctx, picture, got_picture_ptr,
688                               avpkt);
689             picture->pkt_dts= avpkt->dts;
690         }
691
692         emms_c(); //needed to avoid an emms_c() call before every return;
693
694         if (*got_picture_ptr)
695             avctx->frame_number++;
696     }else
697         ret= 0;
698
699     return ret;
700 }
701
702 int attribute_align_arg avcodec_decode_audio3(AVCodecContext *avctx, int16_t *samples,
703                          int *frame_size_ptr,
704                          AVPacket *avpkt)
705 {
706     int ret;
707
708     avctx->pkt = avpkt;
709
710     if((avctx->codec->capabilities & CODEC_CAP_DELAY) || avpkt->size){
711         //FIXME remove the check below _after_ ensuring that all audio check that the available space is enough
712         if(*frame_size_ptr < AVCODEC_MAX_AUDIO_FRAME_SIZE){
713             av_log(avctx, AV_LOG_ERROR, "buffer smaller than AVCODEC_MAX_AUDIO_FRAME_SIZE\n");
714             return -1;
715         }
716         if(*frame_size_ptr < FF_MIN_BUFFER_SIZE ||
717         *frame_size_ptr < avctx->channels * avctx->frame_size * sizeof(int16_t)){
718             av_log(avctx, AV_LOG_ERROR, "buffer %d too small\n", *frame_size_ptr);
719             return -1;
720         }
721
722         ret = avctx->codec->decode(avctx, samples, frame_size_ptr, avpkt);
723         avctx->frame_number++;
724     }else{
725         ret= 0;
726         *frame_size_ptr=0;
727     }
728     return ret;
729 }
730
731 int avcodec_decode_subtitle2(AVCodecContext *avctx, AVSubtitle *sub,
732                             int *got_sub_ptr,
733                             AVPacket *avpkt)
734 {
735     int ret;
736
737     avctx->pkt = avpkt;
738     *got_sub_ptr = 0;
739     ret = avctx->codec->decode(avctx, sub, got_sub_ptr, avpkt);
740     if (*got_sub_ptr)
741         avctx->frame_number++;
742     return ret;
743 }
744
745 void avsubtitle_free(AVSubtitle *sub)
746 {
747     int i;
748
749     for (i = 0; i < sub->num_rects; i++)
750     {
751         av_freep(&sub->rects[i]->pict.data[0]);
752         av_freep(&sub->rects[i]->pict.data[1]);
753         av_freep(&sub->rects[i]->pict.data[2]);
754         av_freep(&sub->rects[i]->pict.data[3]);
755         av_freep(&sub->rects[i]->text);
756         av_freep(&sub->rects[i]->ass);
757         av_freep(&sub->rects[i]);
758     }
759
760     av_freep(&sub->rects);
761
762     memset(sub, 0, sizeof(AVSubtitle));
763 }
764
765 av_cold int avcodec_close(AVCodecContext *avctx)
766 {
767     /* If there is a user-supplied mutex locking routine, call it. */
768     if (ff_lockmgr_cb) {
769         if ((*ff_lockmgr_cb)(&codec_mutex, AV_LOCK_OBTAIN))
770             return -1;
771     }
772
773     entangled_thread_counter++;
774     if(entangled_thread_counter != 1){
775         av_log(avctx, AV_LOG_ERROR, "insufficient thread locking around avcodec_open/close()\n");
776         entangled_thread_counter--;
777         return -1;
778     }
779
780     if (HAVE_THREADS && avctx->thread_opaque)
781         ff_thread_free(avctx);
782     if (avctx->codec && avctx->codec->close)
783         avctx->codec->close(avctx);
784     avcodec_default_free_buffers(avctx);
785     avctx->coded_frame = NULL;
786     if (avctx->codec && avctx->codec->priv_class)
787         av_opt_free(avctx->priv_data);
788     av_opt_free(avctx);
789     av_freep(&avctx->priv_data);
790     if(avctx->codec && avctx->codec->encode)
791         av_freep(&avctx->extradata);
792     avctx->codec = NULL;
793     avctx->active_thread_type = 0;
794     entangled_thread_counter--;
795
796     /* Release any user-supplied mutex. */
797     if (ff_lockmgr_cb) {
798         (*ff_lockmgr_cb)(&codec_mutex, AV_LOCK_RELEASE);
799     }
800     return 0;
801 }
802
803 AVCodec *avcodec_find_encoder(enum CodecID id)
804 {
805     AVCodec *p, *experimental=NULL;
806     p = first_avcodec;
807     while (p) {
808         if (p->encode != NULL && p->id == id) {
809             if (p->capabilities & CODEC_CAP_EXPERIMENTAL && !experimental) {
810                 experimental = p;
811             } else
812                 return p;
813         }
814         p = p->next;
815     }
816     return experimental;
817 }
818
819 AVCodec *avcodec_find_encoder_by_name(const char *name)
820 {
821     AVCodec *p;
822     if (!name)
823         return NULL;
824     p = first_avcodec;
825     while (p) {
826         if (p->encode != NULL && strcmp(name,p->name) == 0)
827             return p;
828         p = p->next;
829     }
830     return NULL;
831 }
832
833 AVCodec *avcodec_find_decoder(enum CodecID id)
834 {
835     AVCodec *p;
836     p = first_avcodec;
837     while (p) {
838         if (p->decode != NULL && p->id == id)
839             return p;
840         p = p->next;
841     }
842     return NULL;
843 }
844
845 AVCodec *avcodec_find_decoder_by_name(const char *name)
846 {
847     AVCodec *p;
848     if (!name)
849         return NULL;
850     p = first_avcodec;
851     while (p) {
852         if (p->decode != NULL && strcmp(name,p->name) == 0)
853             return p;
854         p = p->next;
855     }
856     return NULL;
857 }
858
859 static int get_bit_rate(AVCodecContext *ctx)
860 {
861     int bit_rate;
862     int bits_per_sample;
863
864     switch(ctx->codec_type) {
865     case AVMEDIA_TYPE_VIDEO:
866     case AVMEDIA_TYPE_DATA:
867     case AVMEDIA_TYPE_SUBTITLE:
868     case AVMEDIA_TYPE_ATTACHMENT:
869         bit_rate = ctx->bit_rate;
870         break;
871     case AVMEDIA_TYPE_AUDIO:
872         bits_per_sample = av_get_bits_per_sample(ctx->codec_id);
873         bit_rate = bits_per_sample ? ctx->sample_rate * ctx->channels * bits_per_sample : ctx->bit_rate;
874         break;
875     default:
876         bit_rate = 0;
877         break;
878     }
879     return bit_rate;
880 }
881
882 size_t av_get_codec_tag_string(char *buf, size_t buf_size, unsigned int codec_tag)
883 {
884     int i, len, ret = 0;
885
886     for (i = 0; i < 4; i++) {
887         len = snprintf(buf, buf_size,
888                        isprint(codec_tag&0xFF) ? "%c" : "[%d]", codec_tag&0xFF);
889         buf      += len;
890         buf_size  = buf_size > len ? buf_size - len : 0;
891         ret      += len;
892         codec_tag>>=8;
893     }
894     return ret;
895 }
896
897 void avcodec_string(char *buf, int buf_size, AVCodecContext *enc, int encode)
898 {
899     const char *codec_name;
900     const char *profile = NULL;
901     AVCodec *p;
902     char buf1[32];
903     int bitrate;
904     AVRational display_aspect_ratio;
905
906     if (encode)
907         p = avcodec_find_encoder(enc->codec_id);
908     else
909         p = avcodec_find_decoder(enc->codec_id);
910
911     if (p) {
912         codec_name = p->name;
913         profile = av_get_profile_name(p, enc->profile);
914     } else if (enc->codec_id == CODEC_ID_MPEG2TS) {
915         /* fake mpeg2 transport stream codec (currently not
916            registered) */
917         codec_name = "mpeg2ts";
918     } else if (enc->codec_name[0] != '\0') {
919         codec_name = enc->codec_name;
920     } else {
921         /* output avi tags */
922         char tag_buf[32];
923         av_get_codec_tag_string(tag_buf, sizeof(tag_buf), enc->codec_tag);
924         snprintf(buf1, sizeof(buf1), "%s / 0x%04X", tag_buf, enc->codec_tag);
925         codec_name = buf1;
926     }
927
928     switch(enc->codec_type) {
929     case AVMEDIA_TYPE_VIDEO:
930         snprintf(buf, buf_size,
931                  "Video: %s%s",
932                  codec_name, enc->mb_decision ? " (hq)" : "");
933         if (profile)
934             snprintf(buf + strlen(buf), buf_size - strlen(buf),
935                      " (%s)", profile);
936         if (enc->pix_fmt != PIX_FMT_NONE) {
937             snprintf(buf + strlen(buf), buf_size - strlen(buf),
938                      ", %s",
939                      av_get_pix_fmt_name(enc->pix_fmt));
940         }
941         if (enc->width) {
942             snprintf(buf + strlen(buf), buf_size - strlen(buf),
943                      ", %dx%d",
944                      enc->width, enc->height);
945             if (enc->sample_aspect_ratio.num) {
946                 av_reduce(&display_aspect_ratio.num, &display_aspect_ratio.den,
947                           enc->width*enc->sample_aspect_ratio.num,
948                           enc->height*enc->sample_aspect_ratio.den,
949                           1024*1024);
950                 snprintf(buf + strlen(buf), buf_size - strlen(buf),
951                          " [PAR %d:%d DAR %d:%d]",
952                          enc->sample_aspect_ratio.num, enc->sample_aspect_ratio.den,
953                          display_aspect_ratio.num, display_aspect_ratio.den);
954             }
955             if(av_log_get_level() >= AV_LOG_DEBUG){
956                 int g= av_gcd(enc->time_base.num, enc->time_base.den);
957                 snprintf(buf + strlen(buf), buf_size - strlen(buf),
958                      ", %d/%d",
959                      enc->time_base.num/g, enc->time_base.den/g);
960             }
961         }
962         if (encode) {
963             snprintf(buf + strlen(buf), buf_size - strlen(buf),
964                      ", q=%d-%d", enc->qmin, enc->qmax);
965         }
966         break;
967     case AVMEDIA_TYPE_AUDIO:
968         snprintf(buf, buf_size,
969                  "Audio: %s",
970                  codec_name);
971         if (profile)
972             snprintf(buf + strlen(buf), buf_size - strlen(buf),
973                      " (%s)", profile);
974         if (enc->sample_rate) {
975             snprintf(buf + strlen(buf), buf_size - strlen(buf),
976                      ", %d Hz", enc->sample_rate);
977         }
978         av_strlcat(buf, ", ", buf_size);
979         av_get_channel_layout_string(buf + strlen(buf), buf_size - strlen(buf), enc->channels, enc->channel_layout);
980         if (enc->sample_fmt != AV_SAMPLE_FMT_NONE) {
981             snprintf(buf + strlen(buf), buf_size - strlen(buf),
982                      ", %s", av_get_sample_fmt_name(enc->sample_fmt));
983         }
984         break;
985     case AVMEDIA_TYPE_DATA:
986         snprintf(buf, buf_size, "Data: %s", codec_name);
987         break;
988     case AVMEDIA_TYPE_SUBTITLE:
989         snprintf(buf, buf_size, "Subtitle: %s", codec_name);
990         break;
991     case AVMEDIA_TYPE_ATTACHMENT:
992         snprintf(buf, buf_size, "Attachment: %s", codec_name);
993         break;
994     default:
995         snprintf(buf, buf_size, "Invalid Codec type %d", enc->codec_type);
996         return;
997     }
998     if (encode) {
999         if (enc->flags & CODEC_FLAG_PASS1)
1000             snprintf(buf + strlen(buf), buf_size - strlen(buf),
1001                      ", pass 1");
1002         if (enc->flags & CODEC_FLAG_PASS2)
1003             snprintf(buf + strlen(buf), buf_size - strlen(buf),
1004                      ", pass 2");
1005     }
1006     bitrate = get_bit_rate(enc);
1007     if (bitrate != 0) {
1008         snprintf(buf + strlen(buf), buf_size - strlen(buf),
1009                  ", %d kb/s", bitrate / 1000);
1010     }
1011 }
1012
1013 const char *av_get_profile_name(const AVCodec *codec, int profile)
1014 {
1015     const AVProfile *p;
1016     if (profile == FF_PROFILE_UNKNOWN || !codec->profiles)
1017         return NULL;
1018
1019     for (p = codec->profiles; p->profile != FF_PROFILE_UNKNOWN; p++)
1020         if (p->profile == profile)
1021             return p->name;
1022
1023     return NULL;
1024 }
1025
1026 unsigned avcodec_version( void )
1027 {
1028   return LIBAVCODEC_VERSION_INT;
1029 }
1030
1031 const char *avcodec_configuration(void)
1032 {
1033     return LIBAV_CONFIGURATION;
1034 }
1035
1036 const char *avcodec_license(void)
1037 {
1038 #define LICENSE_PREFIX "libavcodec license: "
1039     return LICENSE_PREFIX LIBAV_LICENSE + sizeof(LICENSE_PREFIX) - 1;
1040 }
1041
1042 void avcodec_init(void)
1043 {
1044     static int initialized = 0;
1045
1046     if (initialized != 0)
1047         return;
1048     initialized = 1;
1049
1050     dsputil_static_init();
1051 }
1052
1053 void avcodec_flush_buffers(AVCodecContext *avctx)
1054 {
1055     if(HAVE_PTHREADS && avctx->active_thread_type&FF_THREAD_FRAME)
1056         ff_thread_flush(avctx);
1057     if(avctx->codec->flush)
1058         avctx->codec->flush(avctx);
1059 }
1060
1061 void avcodec_default_free_buffers(AVCodecContext *s){
1062     int i, j;
1063
1064     if(s->internal_buffer==NULL) return;
1065
1066     if (s->internal_buffer_count)
1067         av_log(s, AV_LOG_WARNING, "Found %i unreleased buffers!\n", s->internal_buffer_count);
1068     for(i=0; i<INTERNAL_BUFFER_SIZE; i++){
1069         InternalBuffer *buf= &((InternalBuffer*)s->internal_buffer)[i];
1070         for(j=0; j<4; j++){
1071             av_freep(&buf->base[j]);
1072             buf->data[j]= NULL;
1073         }
1074     }
1075     av_freep(&s->internal_buffer);
1076
1077     s->internal_buffer_count=0;
1078 }
1079
1080 #if FF_API_OLD_FF_PICT_TYPES
1081 char av_get_pict_type_char(int pict_type){
1082     return av_get_picture_type_char(pict_type);
1083 }
1084 #endif
1085
1086 int av_get_bits_per_sample(enum CodecID codec_id){
1087     switch(codec_id){
1088     case CODEC_ID_ADPCM_SBPRO_2:
1089         return 2;
1090     case CODEC_ID_ADPCM_SBPRO_3:
1091         return 3;
1092     case CODEC_ID_ADPCM_SBPRO_4:
1093     case CODEC_ID_ADPCM_CT:
1094     case CODEC_ID_ADPCM_IMA_WAV:
1095     case CODEC_ID_ADPCM_MS:
1096     case CODEC_ID_ADPCM_YAMAHA:
1097         return 4;
1098     case CODEC_ID_ADPCM_G722:
1099     case CODEC_ID_PCM_ALAW:
1100     case CODEC_ID_PCM_MULAW:
1101     case CODEC_ID_PCM_S8:
1102     case CODEC_ID_PCM_U8:
1103     case CODEC_ID_PCM_ZORK:
1104         return 8;
1105     case CODEC_ID_PCM_S16BE:
1106     case CODEC_ID_PCM_S16LE:
1107     case CODEC_ID_PCM_S16LE_PLANAR:
1108     case CODEC_ID_PCM_U16BE:
1109     case CODEC_ID_PCM_U16LE:
1110         return 16;
1111     case CODEC_ID_PCM_S24DAUD:
1112     case CODEC_ID_PCM_S24BE:
1113     case CODEC_ID_PCM_S24LE:
1114     case CODEC_ID_PCM_U24BE:
1115     case CODEC_ID_PCM_U24LE:
1116         return 24;
1117     case CODEC_ID_PCM_S32BE:
1118     case CODEC_ID_PCM_S32LE:
1119     case CODEC_ID_PCM_U32BE:
1120     case CODEC_ID_PCM_U32LE:
1121     case CODEC_ID_PCM_F32BE:
1122     case CODEC_ID_PCM_F32LE:
1123         return 32;
1124     case CODEC_ID_PCM_F64BE:
1125     case CODEC_ID_PCM_F64LE:
1126         return 64;
1127     default:
1128         return 0;
1129     }
1130 }
1131
1132 #if FF_API_OLD_SAMPLE_FMT
1133 int av_get_bits_per_sample_format(enum AVSampleFormat sample_fmt) {
1134     return av_get_bits_per_sample_fmt(sample_fmt);
1135 }
1136 #endif
1137
1138 #if !HAVE_THREADS
1139 int ff_thread_init(AVCodecContext *s){
1140     return -1;
1141 }
1142 #endif
1143
1144 unsigned int av_xiphlacing(unsigned char *s, unsigned int v)
1145 {
1146     unsigned int n = 0;
1147
1148     while(v >= 0xff) {
1149         *s++ = 0xff;
1150         v -= 0xff;
1151         n++;
1152     }
1153     *s = v;
1154     n++;
1155     return n;
1156 }
1157
1158 int ff_match_2uint16(const uint16_t (*tab)[2], int size, int a, int b){
1159     int i;
1160     for(i=0; i<size && !(tab[i][0]==a && tab[i][1]==b); i++);
1161     return i;
1162 }
1163
1164 void av_log_missing_feature(void *avc, const char *feature, int want_sample)
1165 {
1166     av_log(avc, AV_LOG_WARNING, "%s not implemented. Update your Libav "
1167             "version to the newest one from Git. If the problem still "
1168             "occurs, it means that your file has a feature which has not "
1169             "been implemented.\n", feature);
1170     if(want_sample)
1171         av_log_ask_for_sample(avc, NULL);
1172 }
1173
1174 void av_log_ask_for_sample(void *avc, const char *msg, ...)
1175 {
1176     va_list argument_list;
1177
1178     va_start(argument_list, msg);
1179
1180     if (msg)
1181         av_vlog(avc, AV_LOG_WARNING, msg, argument_list);
1182     av_log(avc, AV_LOG_WARNING, "If you want to help, upload a sample "
1183             "of this file to ftp://upload.libav.org/incoming/ "
1184             "and contact the libav-devel mailing list.\n");
1185
1186     va_end(argument_list);
1187 }
1188
1189 static AVHWAccel *first_hwaccel = NULL;
1190
1191 void av_register_hwaccel(AVHWAccel *hwaccel)
1192 {
1193     AVHWAccel **p = &first_hwaccel;
1194     while (*p)
1195         p = &(*p)->next;
1196     *p = hwaccel;
1197     hwaccel->next = NULL;
1198 }
1199
1200 AVHWAccel *av_hwaccel_next(AVHWAccel *hwaccel)
1201 {
1202     return hwaccel ? hwaccel->next : first_hwaccel;
1203 }
1204
1205 AVHWAccel *ff_find_hwaccel(enum CodecID codec_id, enum PixelFormat pix_fmt)
1206 {
1207     AVHWAccel *hwaccel=NULL;
1208
1209     while((hwaccel= av_hwaccel_next(hwaccel))){
1210         if (   hwaccel->id      == codec_id
1211             && hwaccel->pix_fmt == pix_fmt)
1212             return hwaccel;
1213     }
1214     return NULL;
1215 }
1216
1217 int av_lockmgr_register(int (*cb)(void **mutex, enum AVLockOp op))
1218 {
1219     if (ff_lockmgr_cb) {
1220         if (ff_lockmgr_cb(&codec_mutex, AV_LOCK_DESTROY))
1221             return -1;
1222     }
1223
1224     ff_lockmgr_cb = cb;
1225
1226     if (ff_lockmgr_cb) {
1227         if (ff_lockmgr_cb(&codec_mutex, AV_LOCK_CREATE))
1228             return -1;
1229     }
1230     return 0;
1231 }
1232
1233 unsigned int ff_toupper4(unsigned int x)
1234 {
1235     return     toupper( x     &0xFF)
1236             + (toupper((x>>8 )&0xFF)<<8 )
1237             + (toupper((x>>16)&0xFF)<<16)
1238             + (toupper((x>>24)&0xFF)<<24);
1239 }
1240
1241 #if !HAVE_PTHREADS
1242
1243 int ff_thread_get_buffer(AVCodecContext *avctx, AVFrame *f)
1244 {
1245     f->owner = avctx;
1246     return avctx->get_buffer(avctx, f);
1247 }
1248
1249 void ff_thread_release_buffer(AVCodecContext *avctx, AVFrame *f)
1250 {
1251     f->owner->release_buffer(f->owner, f);
1252 }
1253
1254 void ff_thread_finish_setup(AVCodecContext *avctx)
1255 {
1256 }
1257
1258 void ff_thread_report_progress(AVFrame *f, int progress, int field)
1259 {
1260 }
1261
1262 void ff_thread_await_progress(AVFrame *f, int progress, int field)
1263 {
1264 }
1265
1266 #endif
1267
1268 #if FF_API_THREAD_INIT
1269 int avcodec_thread_init(AVCodecContext *s, int thread_count)
1270 {
1271     s->thread_count = thread_count;
1272     return ff_thread_init(s);
1273 }
1274 #endif