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