]> git.sesse.net Git - ffmpeg/blob - libavcodec/utils.c
Merge remote-tracking branch 'qatar/master'
[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 "libavutil/avassert.h"
37 #include "avcodec.h"
38 #include "dsputil.h"
39 #include "libavutil/opt.h"
40 #include "imgconvert.h"
41 #include "thread.h"
42 #include "audioconvert.h"
43 #include "internal.h"
44 #include "bytestream.h"
45 #include <stdlib.h>
46 #include <stdarg.h>
47 #include <limits.h>
48 #include <float.h>
49
50 static int volatile entangled_thread_counter=0;
51 static int (*ff_lockmgr_cb)(void **mutex, enum AVLockOp op);
52 static void *codec_mutex;
53 static void *avformat_mutex;
54
55 void *av_fast_realloc(void *ptr, unsigned int *size, size_t min_size)
56 {
57     if(min_size < *size)
58         return ptr;
59
60     min_size= FFMAX(17*min_size/16 + 32, min_size);
61
62     ptr= av_realloc(ptr, min_size);
63     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
64         min_size= 0;
65
66     *size= min_size;
67
68     return ptr;
69 }
70
71 void av_fast_malloc(void *ptr, unsigned int *size, size_t min_size)
72 {
73     void **p = ptr;
74     if (min_size < *size)
75         return;
76     min_size= FFMAX(17*min_size/16 + 32, min_size);
77     av_free(*p);
78     *p = av_malloc(min_size);
79     if (!*p) min_size = 0;
80     *size= min_size;
81 }
82
83 /* encoder management */
84 static AVCodec *first_avcodec = NULL;
85
86 AVCodec *av_codec_next(AVCodec *c){
87     if(c) return c->next;
88     else  return first_avcodec;
89 }
90
91 #if !FF_API_AVCODEC_INIT
92 static
93 #endif
94 void avcodec_init(void)
95 {
96     static int initialized = 0;
97
98     if (initialized != 0)
99         return;
100     initialized = 1;
101
102     dsputil_static_init();
103 }
104
105 void avcodec_register(AVCodec *codec)
106 {
107     AVCodec **p;
108     avcodec_init();
109     p = &first_avcodec;
110     while (*p != NULL) p = &(*p)->next;
111     *p = codec;
112     codec->next = NULL;
113
114     if (codec->init_static_data)
115         codec->init_static_data(codec);
116 }
117
118 unsigned avcodec_get_edge_width(void)
119 {
120     return EDGE_WIDTH;
121 }
122
123 void avcodec_set_dimensions(AVCodecContext *s, int width, int height){
124     s->coded_width = width;
125     s->coded_height= height;
126     s->width = -((-width )>>s->lowres);
127     s->height= -((-height)>>s->lowres);
128 }
129
130 #define INTERNAL_BUFFER_SIZE (32+1)
131
132 void avcodec_align_dimensions2(AVCodecContext *s, int *width, int *height,
133                                int linesize_align[AV_NUM_DATA_POINTERS])
134 {
135     int i;
136     int w_align= 1;
137     int h_align= 1;
138
139     switch(s->pix_fmt){
140     case PIX_FMT_YUV420P:
141     case PIX_FMT_YUYV422:
142     case PIX_FMT_UYVY422:
143     case PIX_FMT_YUV422P:
144     case PIX_FMT_YUV440P:
145     case PIX_FMT_YUV444P:
146     case PIX_FMT_GBRP:
147     case PIX_FMT_GRAY8:
148     case PIX_FMT_GRAY16BE:
149     case PIX_FMT_GRAY16LE:
150     case PIX_FMT_YUVJ420P:
151     case PIX_FMT_YUVJ422P:
152     case PIX_FMT_YUVJ440P:
153     case PIX_FMT_YUVJ444P:
154     case PIX_FMT_YUVA420P:
155     case PIX_FMT_YUV420P9LE:
156     case PIX_FMT_YUV420P9BE:
157     case PIX_FMT_YUV420P10LE:
158     case PIX_FMT_YUV420P10BE:
159     case PIX_FMT_YUV422P9LE:
160     case PIX_FMT_YUV422P9BE:
161     case PIX_FMT_YUV422P10LE:
162     case PIX_FMT_YUV422P10BE:
163     case PIX_FMT_YUV444P9LE:
164     case PIX_FMT_YUV444P9BE:
165     case PIX_FMT_YUV444P10LE:
166     case PIX_FMT_YUV444P10BE:
167     case PIX_FMT_GBRP9LE:
168     case PIX_FMT_GBRP9BE:
169     case PIX_FMT_GBRP10LE:
170     case PIX_FMT_GBRP10BE:
171         w_align = 16; //FIXME assume 16 pixel per macroblock
172         h_align = 16 * 2; // interlaced needs 2 macroblocks height
173         break;
174     case PIX_FMT_YUV411P:
175     case PIX_FMT_UYYVYY411:
176         w_align=32;
177         h_align=8;
178         break;
179     case PIX_FMT_YUV410P:
180         if(s->codec_id == CODEC_ID_SVQ1){
181             w_align=64;
182             h_align=64;
183         }
184     case PIX_FMT_RGB555:
185         if(s->codec_id == CODEC_ID_RPZA){
186             w_align=4;
187             h_align=4;
188         }
189     case PIX_FMT_PAL8:
190     case PIX_FMT_BGR8:
191     case PIX_FMT_RGB8:
192         if(s->codec_id == CODEC_ID_SMC){
193             w_align=4;
194             h_align=4;
195         }
196         break;
197     case PIX_FMT_BGR24:
198         if((s->codec_id == CODEC_ID_MSZH) || (s->codec_id == CODEC_ID_ZLIB)){
199             w_align=4;
200             h_align=4;
201         }
202         break;
203     default:
204         w_align= 1;
205         h_align= 1;
206         break;
207     }
208
209     if(s->codec_id == CODEC_ID_IFF_ILBM || s->codec_id == CODEC_ID_IFF_BYTERUN1){
210         w_align= FFMAX(w_align, 8);
211     }
212
213     *width = FFALIGN(*width , w_align);
214     *height= FFALIGN(*height, h_align);
215     if(s->codec_id == CODEC_ID_H264 || s->lowres)
216         *height+=2; // some of the optimized chroma MC reads one line too much
217                     // which is also done in mpeg decoders with lowres > 0
218
219     for (i = 0; i < AV_NUM_DATA_POINTERS; i++)
220         linesize_align[i] = 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         for (i = 0; i < AV_NUM_DATA_POINTERS; i++)
230             linesize_align[i] = 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[AV_NUM_DATA_POINTERS];
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 void ff_init_buffer_info(AVCodecContext *s, AVFrame *pic)
248 {
249     if (s->pkt) {
250         pic->pkt_pts = s->pkt->pts;
251         pic->pkt_pos = s->pkt->pos;
252     } else {
253         pic->pkt_pts = AV_NOPTS_VALUE;
254         pic->pkt_pos = -1;
255     }
256     pic->reordered_opaque= s->reordered_opaque;
257     pic->sample_aspect_ratio = s->sample_aspect_ratio;
258     pic->width               = s->width;
259     pic->height              = s->height;
260     pic->format              = s->pix_fmt;
261 }
262
263 static int audio_get_buffer(AVCodecContext *avctx, AVFrame *frame)
264 {
265     AVCodecInternal *avci = avctx->internal;
266     InternalBuffer *buf;
267     int buf_size, ret, i, needs_extended_data;
268
269     buf_size = av_samples_get_buffer_size(NULL, avctx->channels,
270                                           frame->nb_samples, avctx->sample_fmt,
271                                           32);
272     if (buf_size < 0)
273         return AVERROR(EINVAL);
274
275     needs_extended_data = av_sample_fmt_is_planar(avctx->sample_fmt) &&
276                           avctx->channels > AV_NUM_DATA_POINTERS;
277
278     /* allocate InternalBuffer if needed */
279     if (!avci->buffer) {
280         avci->buffer = av_mallocz(sizeof(InternalBuffer));
281         if (!avci->buffer)
282             return AVERROR(ENOMEM);
283     }
284     buf = avci->buffer;
285
286     /* if there is a previously-used internal buffer, check its size and
287        channel count to see if we can reuse it */
288     if (buf->extended_data) {
289         /* if current buffer is too small, free it */
290         if (buf->extended_data[0] && buf_size > buf->audio_data_size) {
291             av_free(buf->extended_data[0]);
292             if (buf->extended_data != buf->data)
293                 av_free(&buf->extended_data);
294             buf->extended_data = NULL;
295             buf->data[0] = NULL;
296         }
297         /* if number of channels has changed, reset and/or free extended data
298            pointers but leave data buffer in buf->data[0] for reuse */
299         if (buf->nb_channels != avctx->channels) {
300             if (buf->extended_data != buf->data)
301                 av_free(buf->extended_data);
302             buf->extended_data = NULL;
303         }
304     }
305
306     /* if there is no previous buffer or the previous buffer cannot be used
307        as-is, allocate a new buffer and/or rearrange the channel pointers */
308     if (!buf->extended_data) {
309         /* if the channel pointers will fit, just set extended_data to data,
310            otherwise allocate the extended_data channel pointers */
311         if (needs_extended_data) {
312             buf->extended_data = av_mallocz(avctx->channels *
313                                             sizeof(*buf->extended_data));
314             if (!buf->extended_data)
315                 return AVERROR(ENOMEM);
316         } else {
317             buf->extended_data = buf->data;
318         }
319
320         /* if there is a previous buffer and it is large enough, reuse it and
321            just fill-in new channel pointers and linesize, otherwise allocate
322            a new buffer */
323         if (buf->extended_data[0]) {
324             ret = av_samples_fill_arrays(buf->extended_data, &buf->linesize[0],
325                                          buf->extended_data[0], avctx->channels,
326                                          frame->nb_samples, avctx->sample_fmt,
327                                          32);
328         } else {
329             ret = av_samples_alloc(buf->extended_data, &buf->linesize[0],
330                                    avctx->channels, frame->nb_samples,
331                                    avctx->sample_fmt, 32);
332         }
333         if (ret)
334             return ret;
335
336         /* if data was not used for extended_data, we need to copy as many of
337            the extended_data channel pointers as will fit */
338         if (needs_extended_data) {
339             for (i = 0; i < AV_NUM_DATA_POINTERS; i++)
340                 buf->data[i] = buf->extended_data[i];
341         }
342         buf->audio_data_size = buf_size;
343         buf->nb_channels     = avctx->channels;
344     }
345
346     /* copy InternalBuffer info to the AVFrame */
347     frame->type          = FF_BUFFER_TYPE_INTERNAL;
348     frame->extended_data = buf->extended_data;
349     frame->linesize[0]   = buf->linesize[0];
350     memcpy(frame->data, buf->data, sizeof(frame->data));
351
352     if (avctx->pkt) {
353         frame->pkt_pts = avctx->pkt->pts;
354         frame->pkt_pos = avctx->pkt->pos;
355     } else {
356         frame->pkt_pts = AV_NOPTS_VALUE;
357         frame->pkt_pos = -1;
358     }
359
360     frame->reordered_opaque = avctx->reordered_opaque;
361
362     if (avctx->debug & FF_DEBUG_BUFFERS)
363         av_log(avctx, AV_LOG_DEBUG, "default_get_buffer called on frame %p, "
364                "internal audio buffer used\n", frame);
365
366     return 0;
367 }
368
369 static int video_get_buffer(AVCodecContext *s, AVFrame *pic)
370 {
371     int i;
372     int w= s->width;
373     int h= s->height;
374     InternalBuffer *buf;
375     AVCodecInternal *avci = s->internal;
376
377     if(pic->data[0]!=NULL) {
378         av_log(s, AV_LOG_ERROR, "pic->data[0]!=NULL in avcodec_default_get_buffer\n");
379         return -1;
380     }
381     if(avci->buffer_count >= INTERNAL_BUFFER_SIZE) {
382         av_log(s, AV_LOG_ERROR, "buffer_count overflow (missing release_buffer?)\n");
383         return -1;
384     }
385
386     if(av_image_check_size(w, h, 0, s))
387         return -1;
388
389     if (!avci->buffer) {
390         avci->buffer = av_mallocz((INTERNAL_BUFFER_SIZE+1) *
391                                   sizeof(InternalBuffer));
392     }
393
394     buf = &avci->buffer[avci->buffer_count];
395
396     if(buf->base[0] && (buf->width != w || buf->height != h || buf->pix_fmt != s->pix_fmt)){
397         if(s->active_thread_type&FF_THREAD_FRAME) {
398             av_log_missing_feature(s, "Width/height changing with frame threads is", 0);
399             return -1;
400         }
401
402         for (i = 0; i < AV_NUM_DATA_POINTERS; i++) {
403             av_freep(&buf->base[i]);
404             buf->data[i]= NULL;
405         }
406     }
407
408     if (!buf->base[0]) {
409         int h_chroma_shift, v_chroma_shift;
410         int size[4] = {0};
411         int tmpsize;
412         int unaligned;
413         AVPicture picture;
414         int stride_align[AV_NUM_DATA_POINTERS];
415         const int pixel_size = av_pix_fmt_descriptors[s->pix_fmt].comp[0].step_minus1+1;
416
417         avcodec_get_chroma_sub_sample(s->pix_fmt, &h_chroma_shift, &v_chroma_shift);
418
419         avcodec_align_dimensions2(s, &w, &h, stride_align);
420
421         if(!(s->flags&CODEC_FLAG_EMU_EDGE)){
422             w+= EDGE_WIDTH*2;
423             h+= EDGE_WIDTH*2;
424         }
425
426         do {
427             // NOTE: do not align linesizes individually, this breaks e.g. assumptions
428             // that linesize[0] == 2*linesize[1] in the MPEG-encoder for 4:2:2
429             av_image_fill_linesizes(picture.linesize, s->pix_fmt, w);
430             // increase alignment of w for next try (rhs gives the lowest bit set in w)
431             w += w & ~(w-1);
432
433             unaligned = 0;
434             for (i=0; i<4; i++){
435                 unaligned |= picture.linesize[i] % stride_align[i];
436             }
437         } while (unaligned);
438
439         tmpsize = av_image_fill_pointers(picture.data, s->pix_fmt, h, NULL, picture.linesize);
440         if (tmpsize < 0)
441             return -1;
442
443         for (i=0; i<3 && picture.data[i+1]; i++)
444             size[i] = picture.data[i+1] - picture.data[i];
445         size[i] = tmpsize - (picture.data[i] - picture.data[0]);
446
447         memset(buf->base, 0, sizeof(buf->base));
448         memset(buf->data, 0, sizeof(buf->data));
449
450         for(i=0; i<4 && size[i]; i++){
451             const int h_shift= i==0 ? 0 : h_chroma_shift;
452             const int v_shift= i==0 ? 0 : v_chroma_shift;
453
454             buf->linesize[i]= picture.linesize[i];
455
456             buf->base[i]= av_malloc(size[i]+16); //FIXME 16
457             if(buf->base[i]==NULL) return -1;
458             memset(buf->base[i], 128, size[i]);
459
460             // no edge if EDGE EMU or not planar YUV
461             if((s->flags&CODEC_FLAG_EMU_EDGE) || !size[2])
462                 buf->data[i] = buf->base[i];
463             else
464                 buf->data[i] = buf->base[i] + FFALIGN((buf->linesize[i]*EDGE_WIDTH>>v_shift) + (pixel_size*EDGE_WIDTH>>h_shift), stride_align[i]);
465         }
466         for (; i < AV_NUM_DATA_POINTERS; i++) {
467             buf->base[i] = buf->data[i] = NULL;
468             buf->linesize[i] = 0;
469         }
470         if(size[1] && !size[2])
471             ff_set_systematic_pal2((uint32_t*)buf->data[1], s->pix_fmt);
472         buf->width  = s->width;
473         buf->height = s->height;
474         buf->pix_fmt= s->pix_fmt;
475     }
476     pic->type= FF_BUFFER_TYPE_INTERNAL;
477
478     for (i = 0; i < AV_NUM_DATA_POINTERS; i++) {
479         pic->base[i]= buf->base[i];
480         pic->data[i]= buf->data[i];
481         pic->linesize[i]= buf->linesize[i];
482     }
483     pic->extended_data = pic->data;
484     avci->buffer_count++;
485
486     if (s->pkt) {
487         pic->pkt_pts = s->pkt->pts;
488         pic->pkt_pos = s->pkt->pos;
489     } else {
490         pic->pkt_pts = AV_NOPTS_VALUE;
491         pic->pkt_pos = -1;
492     }
493     pic->reordered_opaque= s->reordered_opaque;
494     pic->sample_aspect_ratio = s->sample_aspect_ratio;
495     pic->width               = s->width;
496     pic->height              = s->height;
497     pic->format              = s->pix_fmt;
498
499     if(s->debug&FF_DEBUG_BUFFERS)
500         av_log(s, AV_LOG_DEBUG, "default_get_buffer called on pic %p, %d "
501                "buffers used\n", pic, avci->buffer_count);
502
503     return 0;
504 }
505
506 int avcodec_default_get_buffer(AVCodecContext *avctx, AVFrame *frame)
507 {
508     switch (avctx->codec_type) {
509     case AVMEDIA_TYPE_VIDEO:
510         return video_get_buffer(avctx, frame);
511     case AVMEDIA_TYPE_AUDIO:
512         return audio_get_buffer(avctx, frame);
513     default:
514         return -1;
515     }
516 }
517
518 void avcodec_default_release_buffer(AVCodecContext *s, AVFrame *pic){
519     int i;
520     InternalBuffer *buf, *last;
521     AVCodecInternal *avci = s->internal;
522
523     assert(s->codec_type == AVMEDIA_TYPE_VIDEO);
524
525     assert(pic->type==FF_BUFFER_TYPE_INTERNAL);
526     assert(avci->buffer_count);
527
528     if (avci->buffer) {
529         buf = NULL; /* avoids warning */
530         for (i = 0; i < avci->buffer_count; i++) { //just 3-5 checks so is not worth to optimize
531             buf = &avci->buffer[i];
532             if (buf->data[0] == pic->data[0])
533                 break;
534         }
535         assert(i < avci->buffer_count);
536         avci->buffer_count--;
537         last = &avci->buffer[avci->buffer_count];
538
539         if (buf != last)
540             FFSWAP(InternalBuffer, *buf, *last);
541     }
542
543     for (i = 0; i < AV_NUM_DATA_POINTERS; i++) {
544         pic->data[i]=NULL;
545 //        pic->base[i]=NULL;
546     }
547 //printf("R%X\n", pic->opaque);
548
549     if(s->debug&FF_DEBUG_BUFFERS)
550         av_log(s, AV_LOG_DEBUG, "default_release_buffer called on pic %p, %d "
551                "buffers used\n", pic, avci->buffer_count);
552 }
553
554 int avcodec_default_reget_buffer(AVCodecContext *s, AVFrame *pic){
555     AVFrame temp_pic;
556     int i;
557
558     assert(s->codec_type == AVMEDIA_TYPE_VIDEO);
559
560     /* If no picture return a new buffer */
561     if(pic->data[0] == NULL) {
562         /* We will copy from buffer, so must be readable */
563         pic->buffer_hints |= FF_BUFFER_HINTS_READABLE;
564         return s->get_buffer(s, pic);
565     }
566
567     /* If internal buffer type return the same buffer */
568     if(pic->type == FF_BUFFER_TYPE_INTERNAL) {
569         if(s->pkt) pic->pkt_pts= s->pkt->pts;
570         else       pic->pkt_pts= AV_NOPTS_VALUE;
571         pic->reordered_opaque= s->reordered_opaque;
572         return 0;
573     }
574
575     /*
576      * Not internal type and reget_buffer not overridden, emulate cr buffer
577      */
578     temp_pic = *pic;
579     for(i = 0; i < AV_NUM_DATA_POINTERS; i++)
580         pic->data[i] = pic->base[i] = NULL;
581     pic->opaque = NULL;
582     /* Allocate new frame */
583     if (s->get_buffer(s, pic))
584         return -1;
585     /* Copy image data from old buffer to new buffer */
586     av_picture_copy((AVPicture*)pic, (AVPicture*)&temp_pic, s->pix_fmt, s->width,
587              s->height);
588     s->release_buffer(s, &temp_pic); // Release old frame
589     return 0;
590 }
591
592 int avcodec_default_execute(AVCodecContext *c, int (*func)(AVCodecContext *c2, void *arg2),void *arg, int *ret, int count, int size){
593     int i;
594
595     for(i=0; i<count; i++){
596         int r= func(c, (char*)arg + i*size);
597         if(ret) ret[i]= r;
598     }
599     return 0;
600 }
601
602 int avcodec_default_execute2(AVCodecContext *c, int (*func)(AVCodecContext *c2, void *arg2, int jobnr, int threadnr),void *arg, int *ret, int count){
603     int i;
604
605     for(i=0; i<count; i++){
606         int r= func(c, arg, i, 0);
607         if(ret) ret[i]= r;
608     }
609     return 0;
610 }
611
612 enum PixelFormat avcodec_default_get_format(struct AVCodecContext *s, const enum PixelFormat *fmt){
613     while (*fmt != PIX_FMT_NONE && ff_is_hwaccel_pix_fmt(*fmt))
614         ++fmt;
615     return fmt[0];
616 }
617
618 void avcodec_get_frame_defaults(AVFrame *pic){
619     memset(pic, 0, sizeof(AVFrame));
620
621     pic->pts = pic->pkt_dts = pic->pkt_pts = pic->best_effort_timestamp = AV_NOPTS_VALUE;
622     pic->pkt_pos = -1;
623     pic->key_frame= 1;
624     pic->sample_aspect_ratio = (AVRational){0, 1};
625     pic->format = -1;           /* unknown */
626 }
627
628 AVFrame *avcodec_alloc_frame(void){
629     AVFrame *pic= av_malloc(sizeof(AVFrame));
630
631     if(pic==NULL) return NULL;
632
633     avcodec_get_frame_defaults(pic);
634
635     return pic;
636 }
637
638 static void avcodec_get_subtitle_defaults(AVSubtitle *sub)
639 {
640     memset(sub, 0, sizeof(*sub));
641     sub->pts = AV_NOPTS_VALUE;
642 }
643
644 #if FF_API_AVCODEC_OPEN
645 int attribute_align_arg avcodec_open(AVCodecContext *avctx, AVCodec *codec)
646 {
647     return avcodec_open2(avctx, codec, NULL);
648 }
649 #endif
650
651 int attribute_align_arg avcodec_open2(AVCodecContext *avctx, AVCodec *codec, AVDictionary **options)
652 {
653     int ret = 0;
654     AVDictionary *tmp = NULL;
655
656     if (options)
657         av_dict_copy(&tmp, *options, 0);
658
659     /* If there is a user-supplied mutex locking routine, call it. */
660     if (ff_lockmgr_cb) {
661         if ((*ff_lockmgr_cb)(&codec_mutex, AV_LOCK_OBTAIN))
662             return -1;
663     }
664
665     entangled_thread_counter++;
666     if(entangled_thread_counter != 1){
667         av_log(avctx, AV_LOG_ERROR, "insufficient thread locking around avcodec_open/close()\n");
668         ret = -1;
669         goto end;
670     }
671
672     if(avctx->codec || !codec) {
673         ret = AVERROR(EINVAL);
674         goto end;
675     }
676
677     avctx->internal = av_mallocz(sizeof(AVCodecInternal));
678     if (!avctx->internal) {
679         ret = AVERROR(ENOMEM);
680         goto end;
681     }
682
683     if (codec->priv_data_size > 0) {
684       if(!avctx->priv_data){
685         avctx->priv_data = av_mallocz(codec->priv_data_size);
686         if (!avctx->priv_data) {
687             ret = AVERROR(ENOMEM);
688             goto end;
689         }
690         if (codec->priv_class) {
691             *(AVClass**)avctx->priv_data= codec->priv_class;
692             av_opt_set_defaults(avctx->priv_data);
693         }
694       }
695       if (codec->priv_class && (ret = av_opt_set_dict(avctx->priv_data, &tmp)) < 0)
696           goto free_and_end;
697     } else {
698         avctx->priv_data = NULL;
699     }
700     if ((ret = av_opt_set_dict(avctx, &tmp)) < 0)
701         goto free_and_end;
702
703     //We only call avcodec_set_dimensions() for non h264 codecs so as not to overwrite previously setup dimensions
704     if(!( avctx->coded_width && avctx->coded_height && avctx->width && avctx->height && avctx->codec_id == CODEC_ID_H264)){
705     if(avctx->coded_width && avctx->coded_height)
706         avcodec_set_dimensions(avctx, avctx->coded_width, avctx->coded_height);
707     else if(avctx->width && avctx->height)
708         avcodec_set_dimensions(avctx, avctx->width, avctx->height);
709     }
710
711     if ((avctx->coded_width || avctx->coded_height || avctx->width || avctx->height)
712         && (  av_image_check_size(avctx->coded_width, avctx->coded_height, 0, avctx) < 0
713            || av_image_check_size(avctx->width,       avctx->height,       0, avctx) < 0)) {
714         av_log(avctx, AV_LOG_WARNING, "ignoring invalid width/height values\n");
715         avcodec_set_dimensions(avctx, 0, 0);
716     }
717
718     /* if the decoder init function was already called previously,
719        free the already allocated subtitle_header before overwriting it */
720     if (codec->decode)
721         av_freep(&avctx->subtitle_header);
722
723 #define SANE_NB_CHANNELS 128U
724     if (avctx->channels > SANE_NB_CHANNELS) {
725         ret = AVERROR(EINVAL);
726         goto free_and_end;
727     }
728
729     avctx->codec = codec;
730     if ((avctx->codec_type == AVMEDIA_TYPE_UNKNOWN || avctx->codec_type == codec->type) &&
731         avctx->codec_id == CODEC_ID_NONE) {
732         avctx->codec_type = codec->type;
733         avctx->codec_id   = codec->id;
734     }
735     if (avctx->codec_id != codec->id || (avctx->codec_type != codec->type
736                            && avctx->codec_type != AVMEDIA_TYPE_ATTACHMENT)) {
737         av_log(avctx, AV_LOG_ERROR, "codec type or id mismatches\n");
738         ret = AVERROR(EINVAL);
739         goto free_and_end;
740     }
741     avctx->frame_number = 0;
742 #if FF_API_ER
743
744     av_log(avctx, AV_LOG_DEBUG, "err{or,}_recognition separate: %d; %X\n",
745            avctx->error_recognition, avctx->err_recognition);
746     switch(avctx->error_recognition){
747         case FF_ER_EXPLODE        : avctx->err_recognition |= AV_EF_EXPLODE | AV_EF_COMPLIANT | AV_EF_CAREFUL;
748             break;
749         case FF_ER_VERY_AGGRESSIVE:
750         case FF_ER_AGGRESSIVE     : avctx->err_recognition |= AV_EF_AGGRESSIVE;
751         case FF_ER_COMPLIANT      : avctx->err_recognition |= AV_EF_COMPLIANT;
752         case FF_ER_CAREFUL        : avctx->err_recognition |= AV_EF_CAREFUL;
753     }
754
755     av_log(avctx, AV_LOG_DEBUG, "err{or,}_recognition combined: %d; %X\n",
756            avctx->error_recognition, avctx->err_recognition);
757 #endif
758
759     if (!HAVE_THREADS)
760         av_log(avctx, AV_LOG_WARNING, "Warning: not compiled with thread support, using thread emulation\n");
761
762     if (HAVE_THREADS && !avctx->thread_opaque) {
763         ret = ff_thread_init(avctx);
764         if (ret < 0) {
765             goto free_and_end;
766         }
767     }
768     if (!HAVE_THREADS && !(codec->capabilities & CODEC_CAP_AUTO_THREADS))
769         avctx->thread_count = 1;
770
771     if (avctx->codec->max_lowres < avctx->lowres || avctx->lowres < 0) {
772         av_log(avctx, AV_LOG_ERROR, "The maximum value for lowres supported by the decoder is %d\n",
773                avctx->codec->max_lowres);
774         ret = AVERROR(EINVAL);
775         goto free_and_end;
776     }
777     if (avctx->codec->encode) {
778         int i;
779         if (avctx->codec->sample_fmts) {
780             for (i = 0; avctx->codec->sample_fmts[i] != AV_SAMPLE_FMT_NONE; i++)
781                 if (avctx->sample_fmt == avctx->codec->sample_fmts[i])
782                     break;
783             if (avctx->codec->sample_fmts[i] == AV_SAMPLE_FMT_NONE) {
784                 av_log(avctx, AV_LOG_ERROR, "Specified sample_fmt is not supported.\n");
785                 ret = AVERROR(EINVAL);
786                 goto free_and_end;
787             }
788         }
789         if (avctx->codec->supported_samplerates) {
790             for (i = 0; avctx->codec->supported_samplerates[i] != 0; i++)
791                 if (avctx->sample_rate == avctx->codec->supported_samplerates[i])
792                     break;
793             if (avctx->codec->supported_samplerates[i] == 0) {
794                 av_log(avctx, AV_LOG_ERROR, "Specified sample_rate is not supported\n");
795                 ret = AVERROR(EINVAL);
796                 goto free_and_end;
797             }
798         }
799         if (avctx->codec->channel_layouts) {
800             if (!avctx->channel_layout) {
801                 av_log(avctx, AV_LOG_WARNING, "channel_layout not specified\n");
802             } else {
803                 for (i = 0; avctx->codec->channel_layouts[i] != 0; i++)
804                     if (avctx->channel_layout == avctx->codec->channel_layouts[i])
805                         break;
806                 if (avctx->codec->channel_layouts[i] == 0) {
807                     av_log(avctx, AV_LOG_ERROR, "Specified channel_layout is not supported\n");
808                     ret = AVERROR(EINVAL);
809                     goto free_and_end;
810                 }
811             }
812         }
813         if (avctx->channel_layout && avctx->channels) {
814             if (av_get_channel_layout_nb_channels(avctx->channel_layout) != avctx->channels) {
815                 av_log(avctx, AV_LOG_ERROR, "channel layout does not match number of channels\n");
816                 ret = AVERROR(EINVAL);
817                 goto free_and_end;
818             }
819         } else if (avctx->channel_layout) {
820             avctx->channels = av_get_channel_layout_nb_channels(avctx->channel_layout);
821         }
822     }
823
824     avctx->pts_correction_num_faulty_pts =
825     avctx->pts_correction_num_faulty_dts = 0;
826     avctx->pts_correction_last_pts =
827     avctx->pts_correction_last_dts = INT64_MIN;
828
829     if(avctx->codec->init && !(avctx->active_thread_type&FF_THREAD_FRAME)){
830         ret = avctx->codec->init(avctx);
831         if (ret < 0) {
832             goto free_and_end;
833         }
834     }
835
836     ret=0;
837 end:
838     entangled_thread_counter--;
839
840     /* Release any user-supplied mutex. */
841     if (ff_lockmgr_cb) {
842         (*ff_lockmgr_cb)(&codec_mutex, AV_LOCK_RELEASE);
843     }
844     if (options) {
845         av_dict_free(options);
846         *options = tmp;
847     }
848
849     return ret;
850 free_and_end:
851     av_dict_free(&tmp);
852     av_freep(&avctx->priv_data);
853     av_freep(&avctx->internal);
854     avctx->codec= NULL;
855     goto end;
856 }
857
858 int attribute_align_arg avcodec_encode_audio(AVCodecContext *avctx, uint8_t *buf, int buf_size,
859                          const short *samples)
860 {
861     if(buf_size < FF_MIN_BUFFER_SIZE && 0){
862         av_log(avctx, AV_LOG_ERROR, "buffer smaller than minimum size\n");
863         return -1;
864     }
865     if((avctx->codec->capabilities & CODEC_CAP_DELAY) || samples){
866         int ret = avctx->codec->encode(avctx, buf, buf_size, samples);
867         avctx->frame_number++;
868         return ret;
869     }else
870         return 0;
871 }
872
873 int attribute_align_arg avcodec_encode_video(AVCodecContext *avctx, uint8_t *buf, int buf_size,
874                          const AVFrame *pict)
875 {
876     if(buf_size < FF_MIN_BUFFER_SIZE){
877         av_log(avctx, AV_LOG_ERROR, "buffer smaller than minimum size\n");
878         return -1;
879     }
880     if(av_image_check_size(avctx->width, avctx->height, 0, avctx))
881         return -1;
882     if((avctx->codec->capabilities & CODEC_CAP_DELAY) || pict){
883         int ret = avctx->codec->encode(avctx, buf, buf_size, pict);
884         avctx->frame_number++;
885         emms_c(); //needed to avoid an emms_c() call before every return;
886
887         return ret;
888     }else
889         return 0;
890 }
891
892 int avcodec_encode_subtitle(AVCodecContext *avctx, uint8_t *buf, int buf_size,
893                             const AVSubtitle *sub)
894 {
895     int ret;
896     if(sub->start_display_time) {
897         av_log(avctx, AV_LOG_ERROR, "start_display_time must be 0.\n");
898         return -1;
899     }
900
901     ret = avctx->codec->encode(avctx, buf, buf_size, sub);
902     avctx->frame_number++;
903     return ret;
904 }
905
906 /**
907  * Attempt to guess proper monotonic timestamps for decoded video frames
908  * which might have incorrect times. Input timestamps may wrap around, in
909  * which case the output will as well.
910  *
911  * @param pts the pts field of the decoded AVPacket, as passed through
912  * AVFrame.pkt_pts
913  * @param dts the dts field of the decoded AVPacket
914  * @return one of the input values, may be AV_NOPTS_VALUE
915  */
916 static int64_t guess_correct_pts(AVCodecContext *ctx,
917                                  int64_t reordered_pts, int64_t dts)
918 {
919     int64_t pts = AV_NOPTS_VALUE;
920
921     if (dts != AV_NOPTS_VALUE) {
922         ctx->pts_correction_num_faulty_dts += dts <= ctx->pts_correction_last_dts;
923         ctx->pts_correction_last_dts = dts;
924     }
925     if (reordered_pts != AV_NOPTS_VALUE) {
926         ctx->pts_correction_num_faulty_pts += reordered_pts <= ctx->pts_correction_last_pts;
927         ctx->pts_correction_last_pts = reordered_pts;
928     }
929     if ((ctx->pts_correction_num_faulty_pts<=ctx->pts_correction_num_faulty_dts || dts == AV_NOPTS_VALUE)
930        && reordered_pts != AV_NOPTS_VALUE)
931         pts = reordered_pts;
932     else
933         pts = dts;
934
935     return pts;
936 }
937
938 int attribute_align_arg avcodec_decode_video2(AVCodecContext *avctx, AVFrame *picture,
939                          int *got_picture_ptr,
940                          AVPacket *avpkt)
941 {
942     int ret;
943
944     *got_picture_ptr= 0;
945     if((avctx->coded_width||avctx->coded_height) && av_image_check_size(avctx->coded_width, avctx->coded_height, 0, avctx))
946         return -1;
947
948     if((avctx->codec->capabilities & CODEC_CAP_DELAY) || avpkt->size || (avctx->active_thread_type&FF_THREAD_FRAME)){
949         av_packet_split_side_data(avpkt);
950         avctx->pkt = avpkt;
951         if (HAVE_THREADS && avctx->active_thread_type&FF_THREAD_FRAME)
952              ret = ff_thread_decode_frame(avctx, picture, got_picture_ptr,
953                                           avpkt);
954         else {
955             ret = avctx->codec->decode(avctx, picture, got_picture_ptr,
956                               avpkt);
957             picture->pkt_dts= avpkt->dts;
958
959             if(!avctx->has_b_frames){
960             picture->pkt_pos= avpkt->pos;
961             }
962             //FIXME these should be under if(!avctx->has_b_frames)
963             if (!picture->sample_aspect_ratio.num)
964                 picture->sample_aspect_ratio = avctx->sample_aspect_ratio;
965             if (!picture->width)
966                 picture->width = avctx->width;
967             if (!picture->height)
968                 picture->height = avctx->height;
969             if (picture->format == PIX_FMT_NONE)
970                 picture->format = avctx->pix_fmt;
971         }
972
973         emms_c(); //needed to avoid an emms_c() call before every return;
974
975
976         if (*got_picture_ptr){
977             avctx->frame_number++;
978             picture->best_effort_timestamp = guess_correct_pts(avctx,
979                                                             picture->pkt_pts,
980                                                             picture->pkt_dts);
981         }
982     }else
983         ret= 0;
984
985     return ret;
986 }
987
988 #if FF_API_OLD_DECODE_AUDIO
989 int attribute_align_arg avcodec_decode_audio3(AVCodecContext *avctx, int16_t *samples,
990                          int *frame_size_ptr,
991                          AVPacket *avpkt)
992 {
993     AVFrame frame;
994     int ret, got_frame = 0;
995
996     if (avctx->get_buffer != avcodec_default_get_buffer) {
997         av_log(avctx, AV_LOG_ERROR, "Overriding custom get_buffer() for "
998                "avcodec_decode_audio3()\n");
999         avctx->get_buffer = avcodec_default_get_buffer;
1000         avctx->release_buffer = avcodec_default_release_buffer;
1001     }
1002
1003     ret = avcodec_decode_audio4(avctx, &frame, &got_frame, avpkt);
1004
1005     if (ret >= 0 && got_frame) {
1006         int ch, plane_size;
1007         int planar = av_sample_fmt_is_planar(avctx->sample_fmt);
1008         int data_size = av_samples_get_buffer_size(&plane_size, avctx->channels,
1009                                                    frame.nb_samples,
1010                                                    avctx->sample_fmt, 1);
1011         if (*frame_size_ptr < data_size) {
1012             av_log(avctx, AV_LOG_ERROR, "output buffer size is too small for "
1013                    "the current frame (%d < %d)\n", *frame_size_ptr, data_size);
1014             return AVERROR(EINVAL);
1015         }
1016
1017         memcpy(samples, frame.extended_data[0], plane_size);
1018
1019         if (planar && avctx->channels > 1) {
1020             uint8_t *out = ((uint8_t *)samples) + plane_size;
1021             for (ch = 1; ch < avctx->channels; ch++) {
1022                 memcpy(out, frame.extended_data[ch], plane_size);
1023                 out += plane_size;
1024             }
1025         }
1026         *frame_size_ptr = data_size;
1027     } else {
1028         *frame_size_ptr = 0;
1029     }
1030     return ret;
1031 }
1032 #endif
1033
1034 static void apply_param_change(AVCodecContext *avctx, AVPacket *avpkt)
1035 {
1036     int size = 0;
1037     const uint8_t *data;
1038     uint32_t flags;
1039
1040     if (!(avctx->codec->capabilities & CODEC_CAP_PARAM_CHANGE))
1041         return;
1042
1043     data = av_packet_get_side_data(avpkt, AV_PKT_DATA_PARAM_CHANGE, &size);
1044     if (!data || size < 4)
1045         return;
1046     flags = bytestream_get_le32(&data);
1047     size -= 4;
1048     if (size < 4) /* Required for any of the changes */
1049         return;
1050     if (flags & AV_SIDE_DATA_PARAM_CHANGE_CHANNEL_COUNT) {
1051         avctx->channels = bytestream_get_le32(&data);
1052         size -= 4;
1053     }
1054     if (flags & AV_SIDE_DATA_PARAM_CHANGE_CHANNEL_LAYOUT) {
1055         if (size < 8)
1056             return;
1057         avctx->channel_layout = bytestream_get_le64(&data);
1058         size -= 8;
1059     }
1060     if (size < 4)
1061         return;
1062     if (flags & AV_SIDE_DATA_PARAM_CHANGE_SAMPLE_RATE) {
1063         avctx->sample_rate = bytestream_get_le32(&data);
1064         size -= 4;
1065     }
1066     if (flags & AV_SIDE_DATA_PARAM_CHANGE_DIMENSIONS) {
1067         if (size < 8)
1068             return;
1069         avctx->width  = bytestream_get_le32(&data);
1070         avctx->height = bytestream_get_le32(&data);
1071         size -= 8;
1072     }
1073 }
1074
1075 int attribute_align_arg avcodec_decode_audio4(AVCodecContext *avctx,
1076                                               AVFrame *frame,
1077                                               int *got_frame_ptr,
1078                                               AVPacket *avpkt)
1079 {
1080     int ret = 0;
1081
1082     *got_frame_ptr = 0;
1083
1084     if (!avpkt->data && avpkt->size) {
1085         av_log(avctx, AV_LOG_ERROR, "invalid packet: NULL data, size != 0\n");
1086         return AVERROR(EINVAL);
1087     }
1088
1089     if ((avctx->codec->capabilities & CODEC_CAP_DELAY) || avpkt->size) {
1090         av_packet_split_side_data(avpkt);
1091         apply_param_change(avctx, avpkt);
1092
1093         avctx->pkt = avpkt;
1094         ret = avctx->codec->decode(avctx, frame, got_frame_ptr, avpkt);
1095         if (ret >= 0 && *got_frame_ptr) {
1096             avctx->frame_number++;
1097             frame->pkt_dts = avpkt->dts;
1098             if (frame->format == AV_SAMPLE_FMT_NONE)
1099                 frame->format = avctx->sample_fmt;
1100         }
1101     }
1102     return ret;
1103 }
1104
1105 int avcodec_decode_subtitle2(AVCodecContext *avctx, AVSubtitle *sub,
1106                             int *got_sub_ptr,
1107                             AVPacket *avpkt)
1108 {
1109     int ret;
1110
1111     avctx->pkt = avpkt;
1112     *got_sub_ptr = 0;
1113     avcodec_get_subtitle_defaults(sub);
1114     ret = avctx->codec->decode(avctx, sub, got_sub_ptr, avpkt);
1115     if (*got_sub_ptr)
1116         avctx->frame_number++;
1117     return ret;
1118 }
1119
1120 void avsubtitle_free(AVSubtitle *sub)
1121 {
1122     int i;
1123
1124     for (i = 0; i < sub->num_rects; i++)
1125     {
1126         av_freep(&sub->rects[i]->pict.data[0]);
1127         av_freep(&sub->rects[i]->pict.data[1]);
1128         av_freep(&sub->rects[i]->pict.data[2]);
1129         av_freep(&sub->rects[i]->pict.data[3]);
1130         av_freep(&sub->rects[i]->text);
1131         av_freep(&sub->rects[i]->ass);
1132         av_freep(&sub->rects[i]);
1133     }
1134
1135     av_freep(&sub->rects);
1136
1137     memset(sub, 0, sizeof(AVSubtitle));
1138 }
1139
1140 av_cold int avcodec_close(AVCodecContext *avctx)
1141 {
1142     /* If there is a user-supplied mutex locking routine, call it. */
1143     if (ff_lockmgr_cb) {
1144         if ((*ff_lockmgr_cb)(&codec_mutex, AV_LOCK_OBTAIN))
1145             return -1;
1146     }
1147
1148     entangled_thread_counter++;
1149     if(entangled_thread_counter != 1){
1150         av_log(avctx, AV_LOG_ERROR, "insufficient thread locking around avcodec_open/close()\n");
1151         entangled_thread_counter--;
1152         return -1;
1153     }
1154
1155     if (HAVE_THREADS && avctx->thread_opaque)
1156         ff_thread_free(avctx);
1157     if (avctx->codec && avctx->codec->close)
1158         avctx->codec->close(avctx);
1159     avcodec_default_free_buffers(avctx);
1160     avctx->coded_frame = NULL;
1161     av_freep(&avctx->internal);
1162     if (avctx->codec && avctx->codec->priv_class)
1163         av_opt_free(avctx->priv_data);
1164     av_opt_free(avctx);
1165     av_freep(&avctx->priv_data);
1166     if(avctx->codec && avctx->codec->encode)
1167         av_freep(&avctx->extradata);
1168     avctx->codec = NULL;
1169     avctx->active_thread_type = 0;
1170     entangled_thread_counter--;
1171
1172     /* Release any user-supplied mutex. */
1173     if (ff_lockmgr_cb) {
1174         (*ff_lockmgr_cb)(&codec_mutex, AV_LOCK_RELEASE);
1175     }
1176     return 0;
1177 }
1178
1179 static enum CodecID remap_deprecated_codec_id(enum CodecID id)
1180 {
1181     switch(id){
1182         case CODEC_ID_G723_1_DEPRECATED : return CODEC_ID_G723_1;
1183         case CODEC_ID_G729_DEPRECATED   : return CODEC_ID_G729;
1184         case CODEC_ID_UTVIDEO_DEPRECATED: return CODEC_ID_UTVIDEO;
1185         default                         : return id;
1186     }
1187 }
1188
1189 AVCodec *avcodec_find_encoder(enum CodecID id)
1190 {
1191     AVCodec *p, *experimental=NULL;
1192     p = first_avcodec;
1193     id= remap_deprecated_codec_id(id);
1194     while (p) {
1195         if (p->encode != NULL && p->id == id) {
1196             if (p->capabilities & CODEC_CAP_EXPERIMENTAL && !experimental) {
1197                 experimental = p;
1198             } else
1199                 return p;
1200         }
1201         p = p->next;
1202     }
1203     return experimental;
1204 }
1205
1206 AVCodec *avcodec_find_encoder_by_name(const char *name)
1207 {
1208     AVCodec *p;
1209     if (!name)
1210         return NULL;
1211     p = first_avcodec;
1212     while (p) {
1213         if (p->encode != NULL && strcmp(name,p->name) == 0)
1214             return p;
1215         p = p->next;
1216     }
1217     return NULL;
1218 }
1219
1220 AVCodec *avcodec_find_decoder(enum CodecID id)
1221 {
1222     AVCodec *p, *experimental=NULL;
1223     p = first_avcodec;
1224     id= remap_deprecated_codec_id(id);
1225     while (p) {
1226         if (p->decode != NULL && p->id == id) {
1227             if (p->capabilities & CODEC_CAP_EXPERIMENTAL && !experimental) {
1228                 experimental = p;
1229             } else
1230                 return p;
1231         }
1232         p = p->next;
1233     }
1234     return experimental;
1235 }
1236
1237 AVCodec *avcodec_find_decoder_by_name(const char *name)
1238 {
1239     AVCodec *p;
1240     if (!name)
1241         return NULL;
1242     p = first_avcodec;
1243     while (p) {
1244         if (p->decode != NULL && strcmp(name,p->name) == 0)
1245             return p;
1246         p = p->next;
1247     }
1248     return NULL;
1249 }
1250
1251 static int get_bit_rate(AVCodecContext *ctx)
1252 {
1253     int bit_rate;
1254     int bits_per_sample;
1255
1256     switch(ctx->codec_type) {
1257     case AVMEDIA_TYPE_VIDEO:
1258     case AVMEDIA_TYPE_DATA:
1259     case AVMEDIA_TYPE_SUBTITLE:
1260     case AVMEDIA_TYPE_ATTACHMENT:
1261         bit_rate = ctx->bit_rate;
1262         break;
1263     case AVMEDIA_TYPE_AUDIO:
1264         bits_per_sample = av_get_bits_per_sample(ctx->codec_id);
1265         bit_rate = bits_per_sample ? ctx->sample_rate * ctx->channels * bits_per_sample : ctx->bit_rate;
1266         break;
1267     default:
1268         bit_rate = 0;
1269         break;
1270     }
1271     return bit_rate;
1272 }
1273
1274 const char *avcodec_get_name(enum CodecID id)
1275 {
1276     AVCodec *codec;
1277
1278 #if !CONFIG_SMALL
1279     switch (id) {
1280 #include "libavcodec/codec_names.h"
1281     }
1282     av_log(NULL, AV_LOG_WARNING, "Codec 0x%x is not in the full list.\n", id);
1283 #endif
1284     codec = avcodec_find_decoder(id);
1285     if (codec)
1286         return codec->name;
1287     codec = avcodec_find_encoder(id);
1288     if (codec)
1289         return codec->name;
1290     return "unknown_codec";
1291 }
1292
1293 size_t av_get_codec_tag_string(char *buf, size_t buf_size, unsigned int codec_tag)
1294 {
1295     int i, len, ret = 0;
1296
1297     for (i = 0; i < 4; i++) {
1298         len = snprintf(buf, buf_size,
1299                        isprint(codec_tag&0xFF) ? "%c" : "[%d]", codec_tag&0xFF);
1300         buf      += len;
1301         buf_size  = buf_size > len ? buf_size - len : 0;
1302         ret      += len;
1303         codec_tag>>=8;
1304     }
1305     return ret;
1306 }
1307
1308 void avcodec_string(char *buf, int buf_size, AVCodecContext *enc, int encode)
1309 {
1310     const char *codec_type;
1311     const char *codec_name;
1312     const char *profile = NULL;
1313     AVCodec *p;
1314     int bitrate;
1315     AVRational display_aspect_ratio;
1316
1317     if (!buf || buf_size <= 0)
1318         return;
1319     codec_type = av_get_media_type_string(enc->codec_type);
1320     codec_name = avcodec_get_name(enc->codec_id);
1321     if (enc->profile != FF_PROFILE_UNKNOWN) {
1322         p = encode ? avcodec_find_encoder(enc->codec_id) :
1323                      avcodec_find_decoder(enc->codec_id);
1324         if (p)
1325             profile = av_get_profile_name(p, enc->profile);
1326     }
1327
1328     snprintf(buf, buf_size, "%s: %s%s", codec_type ? codec_type : "unknown",
1329              codec_name, enc->mb_decision ? " (hq)" : "");
1330     buf[0] ^= 'a' ^ 'A'; /* first letter in uppercase */
1331     if (profile)
1332         snprintf(buf + strlen(buf), buf_size - strlen(buf), " (%s)", profile);
1333     if (enc->codec_tag) {
1334         char tag_buf[32];
1335         av_get_codec_tag_string(tag_buf, sizeof(tag_buf), enc->codec_tag);
1336         snprintf(buf + strlen(buf), buf_size - strlen(buf),
1337                  " (%s / 0x%04X)", tag_buf, enc->codec_tag);
1338     }
1339     switch(enc->codec_type) {
1340     case AVMEDIA_TYPE_VIDEO:
1341         if (enc->pix_fmt != PIX_FMT_NONE) {
1342             snprintf(buf + strlen(buf), buf_size - strlen(buf),
1343                      ", %s",
1344                      av_get_pix_fmt_name(enc->pix_fmt));
1345         }
1346         if (enc->width) {
1347             snprintf(buf + strlen(buf), buf_size - strlen(buf),
1348                      ", %dx%d",
1349                      enc->width, enc->height);
1350             if (enc->sample_aspect_ratio.num) {
1351                 av_reduce(&display_aspect_ratio.num, &display_aspect_ratio.den,
1352                           enc->width*enc->sample_aspect_ratio.num,
1353                           enc->height*enc->sample_aspect_ratio.den,
1354                           1024*1024);
1355                 snprintf(buf + strlen(buf), buf_size - strlen(buf),
1356                          " [SAR %d:%d DAR %d:%d]",
1357                          enc->sample_aspect_ratio.num, enc->sample_aspect_ratio.den,
1358                          display_aspect_ratio.num, display_aspect_ratio.den);
1359             }
1360             if(av_log_get_level() >= AV_LOG_DEBUG){
1361                 int g= av_gcd(enc->time_base.num, enc->time_base.den);
1362                 snprintf(buf + strlen(buf), buf_size - strlen(buf),
1363                      ", %d/%d",
1364                      enc->time_base.num/g, enc->time_base.den/g);
1365             }
1366         }
1367         if (encode) {
1368             snprintf(buf + strlen(buf), buf_size - strlen(buf),
1369                      ", q=%d-%d", enc->qmin, enc->qmax);
1370         }
1371         break;
1372     case AVMEDIA_TYPE_AUDIO:
1373         if (enc->sample_rate) {
1374             snprintf(buf + strlen(buf), buf_size - strlen(buf),
1375                      ", %d Hz", enc->sample_rate);
1376         }
1377         av_strlcat(buf, ", ", buf_size);
1378         av_get_channel_layout_string(buf + strlen(buf), buf_size - strlen(buf), enc->channels, enc->channel_layout);
1379         if (enc->sample_fmt != AV_SAMPLE_FMT_NONE) {
1380             snprintf(buf + strlen(buf), buf_size - strlen(buf),
1381                      ", %s", av_get_sample_fmt_name(enc->sample_fmt));
1382         }
1383         break;
1384     default:
1385         return;
1386     }
1387     if (encode) {
1388         if (enc->flags & CODEC_FLAG_PASS1)
1389             snprintf(buf + strlen(buf), buf_size - strlen(buf),
1390                      ", pass 1");
1391         if (enc->flags & CODEC_FLAG_PASS2)
1392             snprintf(buf + strlen(buf), buf_size - strlen(buf),
1393                      ", pass 2");
1394     }
1395     bitrate = get_bit_rate(enc);
1396     if (bitrate != 0) {
1397         snprintf(buf + strlen(buf), buf_size - strlen(buf),
1398                  ", %d kb/s", bitrate / 1000);
1399     }
1400 }
1401
1402 const char *av_get_profile_name(const AVCodec *codec, int profile)
1403 {
1404     const AVProfile *p;
1405     if (profile == FF_PROFILE_UNKNOWN || !codec->profiles)
1406         return NULL;
1407
1408     for (p = codec->profiles; p->profile != FF_PROFILE_UNKNOWN; p++)
1409         if (p->profile == profile)
1410             return p->name;
1411
1412     return NULL;
1413 }
1414
1415 unsigned avcodec_version( void )
1416 {
1417     av_assert0(CODEC_ID_V410==164);
1418     av_assert0(CODEC_ID_PCM_S8_PLANAR==65563);
1419     av_assert0(CODEC_ID_ADPCM_G722==69660);
1420     av_assert0(CODEC_ID_BMV_AUDIO==86071);
1421     av_assert0(CODEC_ID_SRT==94216);
1422     av_assert0(LIBAVCODEC_VERSION_MICRO >= 100);
1423
1424   return LIBAVCODEC_VERSION_INT;
1425 }
1426
1427 const char *avcodec_configuration(void)
1428 {
1429     return FFMPEG_CONFIGURATION;
1430 }
1431
1432 const char *avcodec_license(void)
1433 {
1434 #define LICENSE_PREFIX "libavcodec license: "
1435     return LICENSE_PREFIX FFMPEG_LICENSE + sizeof(LICENSE_PREFIX) - 1;
1436 }
1437
1438 void avcodec_flush_buffers(AVCodecContext *avctx)
1439 {
1440     if(HAVE_THREADS && avctx->active_thread_type&FF_THREAD_FRAME)
1441         ff_thread_flush(avctx);
1442     else if(avctx->codec->flush)
1443         avctx->codec->flush(avctx);
1444 }
1445
1446 static void video_free_buffers(AVCodecContext *s)
1447 {
1448     AVCodecInternal *avci = s->internal;
1449     int i, j;
1450
1451     if (!avci->buffer)
1452         return;
1453
1454     if (avci->buffer_count)
1455         av_log(s, AV_LOG_WARNING, "Found %i unreleased buffers!\n",
1456                avci->buffer_count);
1457     for(i=0; i<INTERNAL_BUFFER_SIZE; i++){
1458         InternalBuffer *buf = &avci->buffer[i];
1459         for(j=0; j<4; j++){
1460             av_freep(&buf->base[j]);
1461             buf->data[j]= NULL;
1462         }
1463     }
1464     av_freep(&avci->buffer);
1465
1466     avci->buffer_count=0;
1467 }
1468
1469 static void audio_free_buffers(AVCodecContext *avctx)
1470 {
1471     AVCodecInternal *avci = avctx->internal;
1472     InternalBuffer *buf;
1473
1474     if (!avci->buffer)
1475         return;
1476     buf = avci->buffer;
1477
1478     if (buf->extended_data) {
1479         av_free(buf->extended_data[0]);
1480         if (buf->extended_data != buf->data)
1481             av_free(buf->extended_data);
1482     }
1483     av_freep(&avci->buffer);
1484 }
1485
1486 void avcodec_default_free_buffers(AVCodecContext *avctx)
1487 {
1488     switch (avctx->codec_type) {
1489     case AVMEDIA_TYPE_VIDEO:
1490         video_free_buffers(avctx);
1491         break;
1492     case AVMEDIA_TYPE_AUDIO:
1493         audio_free_buffers(avctx);
1494         break;
1495     default:
1496         break;
1497     }
1498 }
1499
1500 #if FF_API_OLD_FF_PICT_TYPES
1501 char av_get_pict_type_char(int pict_type){
1502     return av_get_picture_type_char(pict_type);
1503 }
1504 #endif
1505
1506 int av_get_bits_per_sample(enum CodecID codec_id){
1507     switch(codec_id){
1508     case CODEC_ID_ADPCM_SBPRO_2:
1509         return 2;
1510     case CODEC_ID_ADPCM_SBPRO_3:
1511         return 3;
1512     case CODEC_ID_ADPCM_SBPRO_4:
1513     case CODEC_ID_ADPCM_CT:
1514     case CODEC_ID_ADPCM_IMA_WAV:
1515     case CODEC_ID_ADPCM_IMA_QT:
1516     case CODEC_ID_ADPCM_SWF:
1517     case CODEC_ID_ADPCM_MS:
1518     case CODEC_ID_ADPCM_YAMAHA:
1519     case CODEC_ID_ADPCM_G722:
1520         return 4;
1521     case CODEC_ID_PCM_ALAW:
1522     case CODEC_ID_PCM_MULAW:
1523     case CODEC_ID_PCM_S8:
1524     case CODEC_ID_PCM_U8:
1525     case CODEC_ID_PCM_ZORK:
1526         return 8;
1527     case CODEC_ID_PCM_S16BE:
1528     case CODEC_ID_PCM_S16LE:
1529     case CODEC_ID_PCM_S16LE_PLANAR:
1530     case CODEC_ID_PCM_U16BE:
1531     case CODEC_ID_PCM_U16LE:
1532         return 16;
1533     case CODEC_ID_PCM_S24DAUD:
1534     case CODEC_ID_PCM_S24BE:
1535     case CODEC_ID_PCM_S24LE:
1536     case CODEC_ID_PCM_U24BE:
1537     case CODEC_ID_PCM_U24LE:
1538         return 24;
1539     case CODEC_ID_PCM_S32BE:
1540     case CODEC_ID_PCM_S32LE:
1541     case CODEC_ID_PCM_U32BE:
1542     case CODEC_ID_PCM_U32LE:
1543     case CODEC_ID_PCM_F32BE:
1544     case CODEC_ID_PCM_F32LE:
1545         return 32;
1546     case CODEC_ID_PCM_F64BE:
1547     case CODEC_ID_PCM_F64LE:
1548         return 64;
1549     default:
1550         return 0;
1551     }
1552 }
1553
1554 #if FF_API_OLD_SAMPLE_FMT
1555 int av_get_bits_per_sample_format(enum AVSampleFormat sample_fmt) {
1556     return av_get_bytes_per_sample(sample_fmt) << 3;
1557 }
1558 #endif
1559
1560 #if !HAVE_THREADS
1561 int ff_thread_init(AVCodecContext *s){
1562     return -1;
1563 }
1564 #endif
1565
1566 unsigned int av_xiphlacing(unsigned char *s, unsigned int v)
1567 {
1568     unsigned int n = 0;
1569
1570     while(v >= 0xff) {
1571         *s++ = 0xff;
1572         v -= 0xff;
1573         n++;
1574     }
1575     *s = v;
1576     n++;
1577     return n;
1578 }
1579
1580 int ff_match_2uint16(const uint16_t (*tab)[2], int size, int a, int b){
1581     int i;
1582     for(i=0; i<size && !(tab[i][0]==a && tab[i][1]==b); i++);
1583     return i;
1584 }
1585
1586 void av_log_missing_feature(void *avc, const char *feature, int want_sample)
1587 {
1588     av_log(avc, AV_LOG_WARNING, "%s not implemented. Update your FFmpeg "
1589             "version to the newest one from Git. If the problem still "
1590             "occurs, it means that your file has a feature which has not "
1591             "been implemented.\n", feature);
1592     if(want_sample)
1593         av_log_ask_for_sample(avc, NULL);
1594 }
1595
1596 void av_log_ask_for_sample(void *avc, const char *msg, ...)
1597 {
1598     va_list argument_list;
1599
1600     va_start(argument_list, msg);
1601
1602     if (msg)
1603         av_vlog(avc, AV_LOG_WARNING, msg, argument_list);
1604     av_log(avc, AV_LOG_WARNING, "If you want to help, upload a sample "
1605             "of this file to ftp://upload.ffmpeg.org/MPlayer/incoming/ "
1606             "and contact the ffmpeg-devel mailing list.\n");
1607
1608     va_end(argument_list);
1609 }
1610
1611 static AVHWAccel *first_hwaccel = NULL;
1612
1613 void av_register_hwaccel(AVHWAccel *hwaccel)
1614 {
1615     AVHWAccel **p = &first_hwaccel;
1616     while (*p)
1617         p = &(*p)->next;
1618     *p = hwaccel;
1619     hwaccel->next = NULL;
1620 }
1621
1622 AVHWAccel *av_hwaccel_next(AVHWAccel *hwaccel)
1623 {
1624     return hwaccel ? hwaccel->next : first_hwaccel;
1625 }
1626
1627 AVHWAccel *ff_find_hwaccel(enum CodecID codec_id, enum PixelFormat pix_fmt)
1628 {
1629     AVHWAccel *hwaccel=NULL;
1630
1631     while((hwaccel= av_hwaccel_next(hwaccel))){
1632         if (   hwaccel->id      == codec_id
1633             && hwaccel->pix_fmt == pix_fmt)
1634             return hwaccel;
1635     }
1636     return NULL;
1637 }
1638
1639 int av_lockmgr_register(int (*cb)(void **mutex, enum AVLockOp op))
1640 {
1641     if (ff_lockmgr_cb) {
1642         if (ff_lockmgr_cb(&codec_mutex, AV_LOCK_DESTROY))
1643             return -1;
1644         if (ff_lockmgr_cb(&avformat_mutex, AV_LOCK_DESTROY))
1645             return -1;
1646     }
1647
1648     ff_lockmgr_cb = cb;
1649
1650     if (ff_lockmgr_cb) {
1651         if (ff_lockmgr_cb(&codec_mutex, AV_LOCK_CREATE))
1652             return -1;
1653         if (ff_lockmgr_cb(&avformat_mutex, AV_LOCK_CREATE))
1654             return -1;
1655     }
1656     return 0;
1657 }
1658
1659 int avpriv_lock_avformat(void)
1660 {
1661     if (ff_lockmgr_cb) {
1662         if ((*ff_lockmgr_cb)(&avformat_mutex, AV_LOCK_OBTAIN))
1663             return -1;
1664     }
1665     return 0;
1666 }
1667
1668 int avpriv_unlock_avformat(void)
1669 {
1670     if (ff_lockmgr_cb) {
1671         if ((*ff_lockmgr_cb)(&avformat_mutex, AV_LOCK_RELEASE))
1672             return -1;
1673     }
1674     return 0;
1675 }
1676
1677 unsigned int avpriv_toupper4(unsigned int x)
1678 {
1679     return     toupper( x     &0xFF)
1680             + (toupper((x>>8 )&0xFF)<<8 )
1681             + (toupper((x>>16)&0xFF)<<16)
1682             + (toupper((x>>24)&0xFF)<<24);
1683 }
1684
1685 #if !HAVE_THREADS
1686
1687 int ff_thread_get_buffer(AVCodecContext *avctx, AVFrame *f)
1688 {
1689     f->owner = avctx;
1690
1691     ff_init_buffer_info(avctx, f);
1692
1693     return avctx->get_buffer(avctx, f);
1694 }
1695
1696 void ff_thread_release_buffer(AVCodecContext *avctx, AVFrame *f)
1697 {
1698     f->owner->release_buffer(f->owner, f);
1699 }
1700
1701 void ff_thread_finish_setup(AVCodecContext *avctx)
1702 {
1703 }
1704
1705 void ff_thread_report_progress(AVFrame *f, int progress, int field)
1706 {
1707 }
1708
1709 void ff_thread_await_progress(AVFrame *f, int progress, int field)
1710 {
1711 }
1712
1713 #endif
1714
1715 #if FF_API_THREAD_INIT
1716 int avcodec_thread_init(AVCodecContext *s, int thread_count)
1717 {
1718     s->thread_count = thread_count;
1719     return ff_thread_init(s);
1720 }
1721 #endif
1722
1723 enum AVMediaType avcodec_get_type(enum CodecID codec_id)
1724 {
1725     AVCodec *c= avcodec_find_decoder(codec_id);
1726     if(!c)
1727         c= avcodec_find_encoder(codec_id);
1728     if(c)
1729         return c->type;
1730
1731     if (codec_id <= CODEC_ID_NONE)
1732         return AVMEDIA_TYPE_UNKNOWN;
1733     else if (codec_id < CODEC_ID_FIRST_AUDIO)
1734         return AVMEDIA_TYPE_VIDEO;
1735     else if (codec_id < CODEC_ID_FIRST_SUBTITLE)
1736         return AVMEDIA_TYPE_AUDIO;
1737     else if (codec_id < CODEC_ID_FIRST_UNKNOWN)
1738         return AVMEDIA_TYPE_SUBTITLE;
1739
1740     return AVMEDIA_TYPE_UNKNOWN;
1741 }