]> git.sesse.net Git - ffmpeg/blob - libavcodec/utils.c
sgidec: make compiler optimize away memcpy call in inner loop.
[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 static void apply_param_change(AVCodecContext *avctx, AVPacket *avpkt)
939 {
940     int size = 0;
941     const uint8_t *data;
942     uint32_t flags;
943
944     if (!(avctx->codec->capabilities & CODEC_CAP_PARAM_CHANGE))
945         return;
946
947     data = av_packet_get_side_data(avpkt, AV_PKT_DATA_PARAM_CHANGE, &size);
948     if (!data || size < 4)
949         return;
950     flags = bytestream_get_le32(&data);
951     size -= 4;
952     if (size < 4) /* Required for any of the changes */
953         return;
954     if (flags & AV_SIDE_DATA_PARAM_CHANGE_CHANNEL_COUNT) {
955         avctx->channels = bytestream_get_le32(&data);
956         size -= 4;
957     }
958     if (flags & AV_SIDE_DATA_PARAM_CHANGE_CHANNEL_LAYOUT) {
959         if (size < 8)
960             return;
961         avctx->channel_layout = bytestream_get_le64(&data);
962         size -= 8;
963     }
964     if (size < 4)
965         return;
966     if (flags & AV_SIDE_DATA_PARAM_CHANGE_SAMPLE_RATE) {
967         avctx->sample_rate = bytestream_get_le32(&data);
968         size -= 4;
969     }
970     if (flags & AV_SIDE_DATA_PARAM_CHANGE_DIMENSIONS) {
971         if (size < 8)
972             return;
973         avctx->width  = bytestream_get_le32(&data);
974         avctx->height = bytestream_get_le32(&data);
975         avcodec_set_dimensions(avctx, avctx->width, avctx->height);
976         size -= 8;
977     }
978 }
979
980 int attribute_align_arg avcodec_decode_video2(AVCodecContext *avctx, AVFrame *picture,
981                          int *got_picture_ptr,
982                          AVPacket *avpkt)
983 {
984     int ret;
985
986     *got_picture_ptr= 0;
987     if((avctx->coded_width||avctx->coded_height) && av_image_check_size(avctx->coded_width, avctx->coded_height, 0, avctx))
988         return -1;
989
990     if((avctx->codec->capabilities & CODEC_CAP_DELAY) || avpkt->size || (avctx->active_thread_type&FF_THREAD_FRAME)){
991         av_packet_split_side_data(avpkt);
992         apply_param_change(avctx, avpkt);
993         avctx->pkt = avpkt;
994         if (HAVE_THREADS && avctx->active_thread_type&FF_THREAD_FRAME)
995              ret = ff_thread_decode_frame(avctx, picture, got_picture_ptr,
996                                           avpkt);
997         else {
998             ret = avctx->codec->decode(avctx, picture, got_picture_ptr,
999                               avpkt);
1000             picture->pkt_dts= avpkt->dts;
1001
1002             if(!avctx->has_b_frames){
1003             picture->pkt_pos= avpkt->pos;
1004             }
1005             //FIXME these should be under if(!avctx->has_b_frames)
1006             if (!picture->sample_aspect_ratio.num)
1007                 picture->sample_aspect_ratio = avctx->sample_aspect_ratio;
1008             if (!picture->width)
1009                 picture->width = avctx->width;
1010             if (!picture->height)
1011                 picture->height = avctx->height;
1012             if (picture->format == PIX_FMT_NONE)
1013                 picture->format = avctx->pix_fmt;
1014         }
1015
1016         emms_c(); //needed to avoid an emms_c() call before every return;
1017
1018
1019         if (*got_picture_ptr){
1020             avctx->frame_number++;
1021             picture->best_effort_timestamp = guess_correct_pts(avctx,
1022                                                             picture->pkt_pts,
1023                                                             picture->pkt_dts);
1024         }
1025     }else
1026         ret= 0;
1027
1028     return ret;
1029 }
1030
1031 #if FF_API_OLD_DECODE_AUDIO
1032 int attribute_align_arg avcodec_decode_audio3(AVCodecContext *avctx, int16_t *samples,
1033                          int *frame_size_ptr,
1034                          AVPacket *avpkt)
1035 {
1036     AVFrame frame;
1037     int ret, got_frame = 0;
1038
1039     if (avctx->get_buffer != avcodec_default_get_buffer) {
1040         av_log(avctx, AV_LOG_ERROR, "Overriding custom get_buffer() for "
1041                "avcodec_decode_audio3()\n");
1042         avctx->get_buffer = avcodec_default_get_buffer;
1043         avctx->release_buffer = avcodec_default_release_buffer;
1044     }
1045
1046     ret = avcodec_decode_audio4(avctx, &frame, &got_frame, avpkt);
1047
1048     if (ret >= 0 && got_frame) {
1049         int ch, plane_size;
1050         int planar = av_sample_fmt_is_planar(avctx->sample_fmt);
1051         int data_size = av_samples_get_buffer_size(&plane_size, avctx->channels,
1052                                                    frame.nb_samples,
1053                                                    avctx->sample_fmt, 1);
1054         if (*frame_size_ptr < data_size) {
1055             av_log(avctx, AV_LOG_ERROR, "output buffer size is too small for "
1056                    "the current frame (%d < %d)\n", *frame_size_ptr, data_size);
1057             return AVERROR(EINVAL);
1058         }
1059
1060         memcpy(samples, frame.extended_data[0], plane_size);
1061
1062         if (planar && avctx->channels > 1) {
1063             uint8_t *out = ((uint8_t *)samples) + plane_size;
1064             for (ch = 1; ch < avctx->channels; ch++) {
1065                 memcpy(out, frame.extended_data[ch], plane_size);
1066                 out += plane_size;
1067             }
1068         }
1069         *frame_size_ptr = data_size;
1070     } else {
1071         *frame_size_ptr = 0;
1072     }
1073     return ret;
1074 }
1075 #endif
1076
1077 int attribute_align_arg avcodec_decode_audio4(AVCodecContext *avctx,
1078                                               AVFrame *frame,
1079                                               int *got_frame_ptr,
1080                                               AVPacket *avpkt)
1081 {
1082     int ret = 0;
1083
1084     *got_frame_ptr = 0;
1085
1086     if (!avpkt->data && avpkt->size) {
1087         av_log(avctx, AV_LOG_ERROR, "invalid packet: NULL data, size != 0\n");
1088         return AVERROR(EINVAL);
1089     }
1090
1091     if ((avctx->codec->capabilities & CODEC_CAP_DELAY) || avpkt->size) {
1092         av_packet_split_side_data(avpkt);
1093         apply_param_change(avctx, avpkt);
1094
1095         avctx->pkt = avpkt;
1096         ret = avctx->codec->decode(avctx, frame, got_frame_ptr, avpkt);
1097         if (ret >= 0 && *got_frame_ptr) {
1098             avctx->frame_number++;
1099             frame->pkt_dts = avpkt->dts;
1100             if (frame->format == AV_SAMPLE_FMT_NONE)
1101                 frame->format = avctx->sample_fmt;
1102         }
1103     }
1104     return ret;
1105 }
1106
1107 int avcodec_decode_subtitle2(AVCodecContext *avctx, AVSubtitle *sub,
1108                             int *got_sub_ptr,
1109                             AVPacket *avpkt)
1110 {
1111     int ret;
1112
1113     avctx->pkt = avpkt;
1114     *got_sub_ptr = 0;
1115     avcodec_get_subtitle_defaults(sub);
1116     ret = avctx->codec->decode(avctx, sub, got_sub_ptr, avpkt);
1117     if (*got_sub_ptr)
1118         avctx->frame_number++;
1119     return ret;
1120 }
1121
1122 void avsubtitle_free(AVSubtitle *sub)
1123 {
1124     int i;
1125
1126     for (i = 0; i < sub->num_rects; i++)
1127     {
1128         av_freep(&sub->rects[i]->pict.data[0]);
1129         av_freep(&sub->rects[i]->pict.data[1]);
1130         av_freep(&sub->rects[i]->pict.data[2]);
1131         av_freep(&sub->rects[i]->pict.data[3]);
1132         av_freep(&sub->rects[i]->text);
1133         av_freep(&sub->rects[i]->ass);
1134         av_freep(&sub->rects[i]);
1135     }
1136
1137     av_freep(&sub->rects);
1138
1139     memset(sub, 0, sizeof(AVSubtitle));
1140 }
1141
1142 av_cold int avcodec_close(AVCodecContext *avctx)
1143 {
1144     /* If there is a user-supplied mutex locking routine, call it. */
1145     if (ff_lockmgr_cb) {
1146         if ((*ff_lockmgr_cb)(&codec_mutex, AV_LOCK_OBTAIN))
1147             return -1;
1148     }
1149
1150     entangled_thread_counter++;
1151     if(entangled_thread_counter != 1){
1152         av_log(avctx, AV_LOG_ERROR, "insufficient thread locking around avcodec_open/close()\n");
1153         entangled_thread_counter--;
1154         return -1;
1155     }
1156
1157     if (HAVE_THREADS && avctx->thread_opaque)
1158         ff_thread_free(avctx);
1159     if (avctx->codec && avctx->codec->close)
1160         avctx->codec->close(avctx);
1161     avcodec_default_free_buffers(avctx);
1162     avctx->coded_frame = NULL;
1163     av_freep(&avctx->internal);
1164     if (avctx->codec && avctx->codec->priv_class)
1165         av_opt_free(avctx->priv_data);
1166     av_opt_free(avctx);
1167     av_freep(&avctx->priv_data);
1168     if(avctx->codec && avctx->codec->encode)
1169         av_freep(&avctx->extradata);
1170     avctx->codec = NULL;
1171     avctx->active_thread_type = 0;
1172     entangled_thread_counter--;
1173
1174     /* Release any user-supplied mutex. */
1175     if (ff_lockmgr_cb) {
1176         (*ff_lockmgr_cb)(&codec_mutex, AV_LOCK_RELEASE);
1177     }
1178     return 0;
1179 }
1180
1181 static enum CodecID remap_deprecated_codec_id(enum CodecID id)
1182 {
1183     switch(id){
1184         case CODEC_ID_G723_1_DEPRECATED : return CODEC_ID_G723_1;
1185         case CODEC_ID_G729_DEPRECATED   : return CODEC_ID_G729;
1186         case CODEC_ID_UTVIDEO_DEPRECATED: return CODEC_ID_UTVIDEO;
1187         default                         : return id;
1188     }
1189 }
1190
1191 AVCodec *avcodec_find_encoder(enum CodecID id)
1192 {
1193     AVCodec *p, *experimental=NULL;
1194     p = first_avcodec;
1195     id= remap_deprecated_codec_id(id);
1196     while (p) {
1197         if (p->encode != NULL && p->id == id) {
1198             if (p->capabilities & CODEC_CAP_EXPERIMENTAL && !experimental) {
1199                 experimental = p;
1200             } else
1201                 return p;
1202         }
1203         p = p->next;
1204     }
1205     return experimental;
1206 }
1207
1208 AVCodec *avcodec_find_encoder_by_name(const char *name)
1209 {
1210     AVCodec *p;
1211     if (!name)
1212         return NULL;
1213     p = first_avcodec;
1214     while (p) {
1215         if (p->encode != NULL && strcmp(name,p->name) == 0)
1216             return p;
1217         p = p->next;
1218     }
1219     return NULL;
1220 }
1221
1222 AVCodec *avcodec_find_decoder(enum CodecID id)
1223 {
1224     AVCodec *p, *experimental=NULL;
1225     p = first_avcodec;
1226     id= remap_deprecated_codec_id(id);
1227     while (p) {
1228         if (p->decode != NULL && p->id == id) {
1229             if (p->capabilities & CODEC_CAP_EXPERIMENTAL && !experimental) {
1230                 experimental = p;
1231             } else
1232                 return p;
1233         }
1234         p = p->next;
1235     }
1236     return experimental;
1237 }
1238
1239 AVCodec *avcodec_find_decoder_by_name(const char *name)
1240 {
1241     AVCodec *p;
1242     if (!name)
1243         return NULL;
1244     p = first_avcodec;
1245     while (p) {
1246         if (p->decode != NULL && strcmp(name,p->name) == 0)
1247             return p;
1248         p = p->next;
1249     }
1250     return NULL;
1251 }
1252
1253 static int get_bit_rate(AVCodecContext *ctx)
1254 {
1255     int bit_rate;
1256     int bits_per_sample;
1257
1258     switch(ctx->codec_type) {
1259     case AVMEDIA_TYPE_VIDEO:
1260     case AVMEDIA_TYPE_DATA:
1261     case AVMEDIA_TYPE_SUBTITLE:
1262     case AVMEDIA_TYPE_ATTACHMENT:
1263         bit_rate = ctx->bit_rate;
1264         break;
1265     case AVMEDIA_TYPE_AUDIO:
1266         bits_per_sample = av_get_bits_per_sample(ctx->codec_id);
1267         bit_rate = bits_per_sample ? ctx->sample_rate * ctx->channels * bits_per_sample : ctx->bit_rate;
1268         break;
1269     default:
1270         bit_rate = 0;
1271         break;
1272     }
1273     return bit_rate;
1274 }
1275
1276 const char *avcodec_get_name(enum CodecID id)
1277 {
1278     AVCodec *codec;
1279
1280 #if !CONFIG_SMALL
1281     switch (id) {
1282 #include "libavcodec/codec_names.h"
1283     }
1284     av_log(NULL, AV_LOG_WARNING, "Codec 0x%x is not in the full list.\n", id);
1285 #endif
1286     codec = avcodec_find_decoder(id);
1287     if (codec)
1288         return codec->name;
1289     codec = avcodec_find_encoder(id);
1290     if (codec)
1291         return codec->name;
1292     return "unknown_codec";
1293 }
1294
1295 size_t av_get_codec_tag_string(char *buf, size_t buf_size, unsigned int codec_tag)
1296 {
1297     int i, len, ret = 0;
1298
1299     for (i = 0; i < 4; i++) {
1300         len = snprintf(buf, buf_size,
1301                        isprint(codec_tag&0xFF) ? "%c" : "[%d]", codec_tag&0xFF);
1302         buf      += len;
1303         buf_size  = buf_size > len ? buf_size - len : 0;
1304         ret      += len;
1305         codec_tag>>=8;
1306     }
1307     return ret;
1308 }
1309
1310 void avcodec_string(char *buf, int buf_size, AVCodecContext *enc, int encode)
1311 {
1312     const char *codec_type;
1313     const char *codec_name;
1314     const char *profile = NULL;
1315     AVCodec *p;
1316     int bitrate;
1317     AVRational display_aspect_ratio;
1318
1319     if (!buf || buf_size <= 0)
1320         return;
1321     codec_type = av_get_media_type_string(enc->codec_type);
1322     codec_name = avcodec_get_name(enc->codec_id);
1323     if (enc->profile != FF_PROFILE_UNKNOWN) {
1324         p = encode ? avcodec_find_encoder(enc->codec_id) :
1325                      avcodec_find_decoder(enc->codec_id);
1326         if (p)
1327             profile = av_get_profile_name(p, enc->profile);
1328     }
1329
1330     snprintf(buf, buf_size, "%s: %s%s", codec_type ? codec_type : "unknown",
1331              codec_name, enc->mb_decision ? " (hq)" : "");
1332     buf[0] ^= 'a' ^ 'A'; /* first letter in uppercase */
1333     if (profile)
1334         snprintf(buf + strlen(buf), buf_size - strlen(buf), " (%s)", profile);
1335     if (enc->codec_tag) {
1336         char tag_buf[32];
1337         av_get_codec_tag_string(tag_buf, sizeof(tag_buf), enc->codec_tag);
1338         snprintf(buf + strlen(buf), buf_size - strlen(buf),
1339                  " (%s / 0x%04X)", tag_buf, enc->codec_tag);
1340     }
1341     switch(enc->codec_type) {
1342     case AVMEDIA_TYPE_VIDEO:
1343         if (enc->pix_fmt != PIX_FMT_NONE) {
1344             snprintf(buf + strlen(buf), buf_size - strlen(buf),
1345                      ", %s",
1346                      av_get_pix_fmt_name(enc->pix_fmt));
1347         }
1348         if (enc->width) {
1349             snprintf(buf + strlen(buf), buf_size - strlen(buf),
1350                      ", %dx%d",
1351                      enc->width, enc->height);
1352             if (enc->sample_aspect_ratio.num) {
1353                 av_reduce(&display_aspect_ratio.num, &display_aspect_ratio.den,
1354                           enc->width*enc->sample_aspect_ratio.num,
1355                           enc->height*enc->sample_aspect_ratio.den,
1356                           1024*1024);
1357                 snprintf(buf + strlen(buf), buf_size - strlen(buf),
1358                          " [SAR %d:%d DAR %d:%d]",
1359                          enc->sample_aspect_ratio.num, enc->sample_aspect_ratio.den,
1360                          display_aspect_ratio.num, display_aspect_ratio.den);
1361             }
1362             if(av_log_get_level() >= AV_LOG_DEBUG){
1363                 int g= av_gcd(enc->time_base.num, enc->time_base.den);
1364                 snprintf(buf + strlen(buf), buf_size - strlen(buf),
1365                      ", %d/%d",
1366                      enc->time_base.num/g, enc->time_base.den/g);
1367             }
1368         }
1369         if (encode) {
1370             snprintf(buf + strlen(buf), buf_size - strlen(buf),
1371                      ", q=%d-%d", enc->qmin, enc->qmax);
1372         }
1373         break;
1374     case AVMEDIA_TYPE_AUDIO:
1375         if (enc->sample_rate) {
1376             snprintf(buf + strlen(buf), buf_size - strlen(buf),
1377                      ", %d Hz", enc->sample_rate);
1378         }
1379         av_strlcat(buf, ", ", buf_size);
1380         av_get_channel_layout_string(buf + strlen(buf), buf_size - strlen(buf), enc->channels, enc->channel_layout);
1381         if (enc->sample_fmt != AV_SAMPLE_FMT_NONE) {
1382             snprintf(buf + strlen(buf), buf_size - strlen(buf),
1383                      ", %s", av_get_sample_fmt_name(enc->sample_fmt));
1384         }
1385         break;
1386     default:
1387         return;
1388     }
1389     if (encode) {
1390         if (enc->flags & CODEC_FLAG_PASS1)
1391             snprintf(buf + strlen(buf), buf_size - strlen(buf),
1392                      ", pass 1");
1393         if (enc->flags & CODEC_FLAG_PASS2)
1394             snprintf(buf + strlen(buf), buf_size - strlen(buf),
1395                      ", pass 2");
1396     }
1397     bitrate = get_bit_rate(enc);
1398     if (bitrate != 0) {
1399         snprintf(buf + strlen(buf), buf_size - strlen(buf),
1400                  ", %d kb/s", bitrate / 1000);
1401     }
1402 }
1403
1404 const char *av_get_profile_name(const AVCodec *codec, int profile)
1405 {
1406     const AVProfile *p;
1407     if (profile == FF_PROFILE_UNKNOWN || !codec->profiles)
1408         return NULL;
1409
1410     for (p = codec->profiles; p->profile != FF_PROFILE_UNKNOWN; p++)
1411         if (p->profile == profile)
1412             return p->name;
1413
1414     return NULL;
1415 }
1416
1417 unsigned avcodec_version( void )
1418 {
1419     av_assert0(CODEC_ID_V410==164);
1420     av_assert0(CODEC_ID_PCM_S8_PLANAR==65563);
1421     av_assert0(CODEC_ID_ADPCM_G722==69660);
1422     av_assert0(CODEC_ID_BMV_AUDIO==86071);
1423     av_assert0(CODEC_ID_SRT==94216);
1424     av_assert0(LIBAVCODEC_VERSION_MICRO >= 100);
1425
1426   return LIBAVCODEC_VERSION_INT;
1427 }
1428
1429 const char *avcodec_configuration(void)
1430 {
1431     return FFMPEG_CONFIGURATION;
1432 }
1433
1434 const char *avcodec_license(void)
1435 {
1436 #define LICENSE_PREFIX "libavcodec license: "
1437     return LICENSE_PREFIX FFMPEG_LICENSE + sizeof(LICENSE_PREFIX) - 1;
1438 }
1439
1440 void avcodec_flush_buffers(AVCodecContext *avctx)
1441 {
1442     if(HAVE_THREADS && avctx->active_thread_type&FF_THREAD_FRAME)
1443         ff_thread_flush(avctx);
1444     else if(avctx->codec->flush)
1445         avctx->codec->flush(avctx);
1446 }
1447
1448 static void video_free_buffers(AVCodecContext *s)
1449 {
1450     AVCodecInternal *avci = s->internal;
1451     int i, j;
1452
1453     if (!avci->buffer)
1454         return;
1455
1456     if (avci->buffer_count)
1457         av_log(s, AV_LOG_WARNING, "Found %i unreleased buffers!\n",
1458                avci->buffer_count);
1459     for(i=0; i<INTERNAL_BUFFER_SIZE; i++){
1460         InternalBuffer *buf = &avci->buffer[i];
1461         for(j=0; j<4; j++){
1462             av_freep(&buf->base[j]);
1463             buf->data[j]= NULL;
1464         }
1465     }
1466     av_freep(&avci->buffer);
1467
1468     avci->buffer_count=0;
1469 }
1470
1471 static void audio_free_buffers(AVCodecContext *avctx)
1472 {
1473     AVCodecInternal *avci = avctx->internal;
1474     InternalBuffer *buf;
1475
1476     if (!avci->buffer)
1477         return;
1478     buf = avci->buffer;
1479
1480     if (buf->extended_data) {
1481         av_free(buf->extended_data[0]);
1482         if (buf->extended_data != buf->data)
1483             av_free(buf->extended_data);
1484     }
1485     av_freep(&avci->buffer);
1486 }
1487
1488 void avcodec_default_free_buffers(AVCodecContext *avctx)
1489 {
1490     switch (avctx->codec_type) {
1491     case AVMEDIA_TYPE_VIDEO:
1492         video_free_buffers(avctx);
1493         break;
1494     case AVMEDIA_TYPE_AUDIO:
1495         audio_free_buffers(avctx);
1496         break;
1497     default:
1498         break;
1499     }
1500 }
1501
1502 #if FF_API_OLD_FF_PICT_TYPES
1503 char av_get_pict_type_char(int pict_type){
1504     return av_get_picture_type_char(pict_type);
1505 }
1506 #endif
1507
1508 int av_get_bits_per_sample(enum CodecID codec_id){
1509     switch(codec_id){
1510     case CODEC_ID_ADPCM_SBPRO_2:
1511         return 2;
1512     case CODEC_ID_ADPCM_SBPRO_3:
1513         return 3;
1514     case CODEC_ID_ADPCM_SBPRO_4:
1515     case CODEC_ID_ADPCM_CT:
1516     case CODEC_ID_ADPCM_IMA_WAV:
1517     case CODEC_ID_ADPCM_IMA_QT:
1518     case CODEC_ID_ADPCM_SWF:
1519     case CODEC_ID_ADPCM_MS:
1520     case CODEC_ID_ADPCM_YAMAHA:
1521     case CODEC_ID_ADPCM_G722:
1522         return 4;
1523     case CODEC_ID_PCM_ALAW:
1524     case CODEC_ID_PCM_MULAW:
1525     case CODEC_ID_PCM_S8:
1526     case CODEC_ID_PCM_U8:
1527     case CODEC_ID_PCM_ZORK:
1528         return 8;
1529     case CODEC_ID_PCM_S16BE:
1530     case CODEC_ID_PCM_S16LE:
1531     case CODEC_ID_PCM_S16LE_PLANAR:
1532     case CODEC_ID_PCM_U16BE:
1533     case CODEC_ID_PCM_U16LE:
1534         return 16;
1535     case CODEC_ID_PCM_S24DAUD:
1536     case CODEC_ID_PCM_S24BE:
1537     case CODEC_ID_PCM_S24LE:
1538     case CODEC_ID_PCM_U24BE:
1539     case CODEC_ID_PCM_U24LE:
1540         return 24;
1541     case CODEC_ID_PCM_S32BE:
1542     case CODEC_ID_PCM_S32LE:
1543     case CODEC_ID_PCM_U32BE:
1544     case CODEC_ID_PCM_U32LE:
1545     case CODEC_ID_PCM_F32BE:
1546     case CODEC_ID_PCM_F32LE:
1547         return 32;
1548     case CODEC_ID_PCM_F64BE:
1549     case CODEC_ID_PCM_F64LE:
1550         return 64;
1551     default:
1552         return 0;
1553     }
1554 }
1555
1556 #if FF_API_OLD_SAMPLE_FMT
1557 int av_get_bits_per_sample_format(enum AVSampleFormat sample_fmt) {
1558     return av_get_bytes_per_sample(sample_fmt) << 3;
1559 }
1560 #endif
1561
1562 #if !HAVE_THREADS
1563 int ff_thread_init(AVCodecContext *s){
1564     return -1;
1565 }
1566 #endif
1567
1568 unsigned int av_xiphlacing(unsigned char *s, unsigned int v)
1569 {
1570     unsigned int n = 0;
1571
1572     while(v >= 0xff) {
1573         *s++ = 0xff;
1574         v -= 0xff;
1575         n++;
1576     }
1577     *s = v;
1578     n++;
1579     return n;
1580 }
1581
1582 int ff_match_2uint16(const uint16_t (*tab)[2], int size, int a, int b){
1583     int i;
1584     for(i=0; i<size && !(tab[i][0]==a && tab[i][1]==b); i++);
1585     return i;
1586 }
1587
1588 void av_log_missing_feature(void *avc, const char *feature, int want_sample)
1589 {
1590     av_log(avc, AV_LOG_WARNING, "%s not implemented. Update your FFmpeg "
1591             "version to the newest one from Git. If the problem still "
1592             "occurs, it means that your file has a feature which has not "
1593             "been implemented.\n", feature);
1594     if(want_sample)
1595         av_log_ask_for_sample(avc, NULL);
1596 }
1597
1598 void av_log_ask_for_sample(void *avc, const char *msg, ...)
1599 {
1600     va_list argument_list;
1601
1602     va_start(argument_list, msg);
1603
1604     if (msg)
1605         av_vlog(avc, AV_LOG_WARNING, msg, argument_list);
1606     av_log(avc, AV_LOG_WARNING, "If you want to help, upload a sample "
1607             "of this file to ftp://upload.ffmpeg.org/MPlayer/incoming/ "
1608             "and contact the ffmpeg-devel mailing list.\n");
1609
1610     va_end(argument_list);
1611 }
1612
1613 static AVHWAccel *first_hwaccel = NULL;
1614
1615 void av_register_hwaccel(AVHWAccel *hwaccel)
1616 {
1617     AVHWAccel **p = &first_hwaccel;
1618     while (*p)
1619         p = &(*p)->next;
1620     *p = hwaccel;
1621     hwaccel->next = NULL;
1622 }
1623
1624 AVHWAccel *av_hwaccel_next(AVHWAccel *hwaccel)
1625 {
1626     return hwaccel ? hwaccel->next : first_hwaccel;
1627 }
1628
1629 AVHWAccel *ff_find_hwaccel(enum CodecID codec_id, enum PixelFormat pix_fmt)
1630 {
1631     AVHWAccel *hwaccel=NULL;
1632
1633     while((hwaccel= av_hwaccel_next(hwaccel))){
1634         if (   hwaccel->id      == codec_id
1635             && hwaccel->pix_fmt == pix_fmt)
1636             return hwaccel;
1637     }
1638     return NULL;
1639 }
1640
1641 int av_lockmgr_register(int (*cb)(void **mutex, enum AVLockOp op))
1642 {
1643     if (ff_lockmgr_cb) {
1644         if (ff_lockmgr_cb(&codec_mutex, AV_LOCK_DESTROY))
1645             return -1;
1646         if (ff_lockmgr_cb(&avformat_mutex, AV_LOCK_DESTROY))
1647             return -1;
1648     }
1649
1650     ff_lockmgr_cb = cb;
1651
1652     if (ff_lockmgr_cb) {
1653         if (ff_lockmgr_cb(&codec_mutex, AV_LOCK_CREATE))
1654             return -1;
1655         if (ff_lockmgr_cb(&avformat_mutex, AV_LOCK_CREATE))
1656             return -1;
1657     }
1658     return 0;
1659 }
1660
1661 int avpriv_lock_avformat(void)
1662 {
1663     if (ff_lockmgr_cb) {
1664         if ((*ff_lockmgr_cb)(&avformat_mutex, AV_LOCK_OBTAIN))
1665             return -1;
1666     }
1667     return 0;
1668 }
1669
1670 int avpriv_unlock_avformat(void)
1671 {
1672     if (ff_lockmgr_cb) {
1673         if ((*ff_lockmgr_cb)(&avformat_mutex, AV_LOCK_RELEASE))
1674             return -1;
1675     }
1676     return 0;
1677 }
1678
1679 unsigned int avpriv_toupper4(unsigned int x)
1680 {
1681     return     toupper( x     &0xFF)
1682             + (toupper((x>>8 )&0xFF)<<8 )
1683             + (toupper((x>>16)&0xFF)<<16)
1684             + (toupper((x>>24)&0xFF)<<24);
1685 }
1686
1687 #if !HAVE_THREADS
1688
1689 int ff_thread_get_buffer(AVCodecContext *avctx, AVFrame *f)
1690 {
1691     f->owner = avctx;
1692
1693     ff_init_buffer_info(avctx, f);
1694
1695     return avctx->get_buffer(avctx, f);
1696 }
1697
1698 void ff_thread_release_buffer(AVCodecContext *avctx, AVFrame *f)
1699 {
1700     f->owner->release_buffer(f->owner, f);
1701 }
1702
1703 void ff_thread_finish_setup(AVCodecContext *avctx)
1704 {
1705 }
1706
1707 void ff_thread_report_progress(AVFrame *f, int progress, int field)
1708 {
1709 }
1710
1711 void ff_thread_await_progress(AVFrame *f, int progress, int field)
1712 {
1713 }
1714
1715 #endif
1716
1717 #if FF_API_THREAD_INIT
1718 int avcodec_thread_init(AVCodecContext *s, int thread_count)
1719 {
1720     s->thread_count = thread_count;
1721     return ff_thread_init(s);
1722 }
1723 #endif
1724
1725 enum AVMediaType avcodec_get_type(enum CodecID codec_id)
1726 {
1727     AVCodec *c= avcodec_find_decoder(codec_id);
1728     if(!c)
1729         c= avcodec_find_encoder(codec_id);
1730     if(c)
1731         return c->type;
1732
1733     if (codec_id <= CODEC_ID_NONE)
1734         return AVMEDIA_TYPE_UNKNOWN;
1735     else if (codec_id < CODEC_ID_FIRST_AUDIO)
1736         return AVMEDIA_TYPE_VIDEO;
1737     else if (codec_id < CODEC_ID_FIRST_SUBTITLE)
1738         return AVMEDIA_TYPE_AUDIO;
1739     else if (codec_id < CODEC_ID_FIRST_UNKNOWN)
1740         return AVMEDIA_TYPE_SUBTITLE;
1741
1742     return AVMEDIA_TYPE_UNKNOWN;
1743 }