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