]> git.sesse.net Git - ffmpeg/blob - libavcodec/utils.c
lavc: update pkt_duration for skipped samples.
[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/avassert.h"
29 #include "libavutil/avstring.h"
30 #include "libavutil/crc.h"
31 #include "libavutil/mathematics.h"
32 #include "libavutil/pixdesc.h"
33 #include "libavutil/audioconvert.h"
34 #include "libavutil/imgutils.h"
35 #include "libavutil/samplefmt.h"
36 #include "libavutil/dict.h"
37 #include "libavutil/avassert.h"
38 #include "avcodec.h"
39 #include "dsputil.h"
40 #include "libavutil/opt.h"
41 #include "imgconvert.h"
42 #include "thread.h"
43 #include "frame_thread_encoder.h"
44 #include "audioconvert.h"
45 #include "internal.h"
46 #include "bytestream.h"
47 #include <stdlib.h>
48 #include <stdarg.h>
49 #include <limits.h>
50 #include <float.h>
51
52 static int volatile entangled_thread_counter=0;
53 static int (*ff_lockmgr_cb)(void **mutex, enum AVLockOp op);
54 static void *codec_mutex;
55 static void *avformat_mutex;
56
57 void *av_fast_realloc(void *ptr, unsigned int *size, size_t min_size)
58 {
59     if(min_size < *size)
60         return ptr;
61
62     min_size= FFMAX(17*min_size/16 + 32, min_size);
63
64     ptr= av_realloc(ptr, min_size);
65     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
66         min_size= 0;
67
68     *size= min_size;
69
70     return ptr;
71 }
72
73 static inline int ff_fast_malloc(void *ptr, unsigned int *size, size_t min_size, int zero_realloc)
74 {
75     void **p = ptr;
76     if (min_size < *size)
77         return 0;
78     min_size= FFMAX(17*min_size/16 + 32, min_size);
79     av_free(*p);
80     *p = zero_realloc ? av_mallocz(min_size) : av_malloc(min_size);
81     if (!*p) min_size = 0;
82     *size= min_size;
83     return 1;
84 }
85
86 void av_fast_malloc(void *ptr, unsigned int *size, size_t min_size)
87 {
88     ff_fast_malloc(ptr, size, min_size, 0);
89 }
90
91 void av_fast_padded_malloc(void *ptr, unsigned int *size, size_t min_size)
92 {
93     uint8_t **p = ptr;
94     if (min_size > SIZE_MAX - FF_INPUT_BUFFER_PADDING_SIZE) {
95         av_freep(p);
96         *size = 0;
97         return;
98     }
99     if (!ff_fast_malloc(p, size, min_size + FF_INPUT_BUFFER_PADDING_SIZE, 1))
100         memset(*p + min_size, 0, FF_INPUT_BUFFER_PADDING_SIZE);
101 }
102
103 void av_fast_padded_mallocz(void *ptr, unsigned int *size, size_t min_size)
104 {
105     uint8_t **p = ptr;
106     if (min_size > SIZE_MAX - FF_INPUT_BUFFER_PADDING_SIZE) {
107         av_freep(p);
108         *size = 0;
109         return;
110     }
111     if (!ff_fast_malloc(p, size, min_size + FF_INPUT_BUFFER_PADDING_SIZE, 1))
112         memset(*p, 0, min_size + FF_INPUT_BUFFER_PADDING_SIZE);
113 }
114
115 /* encoder management */
116 static AVCodec *first_avcodec = NULL;
117
118 AVCodec *av_codec_next(AVCodec *c){
119     if(c) return c->next;
120     else  return first_avcodec;
121 }
122
123 static void avcodec_init(void)
124 {
125     static int initialized = 0;
126
127     if (initialized != 0)
128         return;
129     initialized = 1;
130
131     ff_dsputil_static_init();
132 }
133
134 int av_codec_is_encoder(AVCodec *codec)
135 {
136     return codec && (codec->encode || codec->encode2);
137 }
138
139 int av_codec_is_decoder(AVCodec *codec)
140 {
141     return codec && codec->decode;
142 }
143
144 void avcodec_register(AVCodec *codec)
145 {
146     AVCodec **p;
147     avcodec_init();
148     p = &first_avcodec;
149     while (*p != NULL) p = &(*p)->next;
150     *p = codec;
151     codec->next = NULL;
152
153     if (codec->init_static_data)
154         codec->init_static_data(codec);
155 }
156
157 unsigned avcodec_get_edge_width(void)
158 {
159     return EDGE_WIDTH;
160 }
161
162 void avcodec_set_dimensions(AVCodecContext *s, int width, int height){
163     s->coded_width = width;
164     s->coded_height= height;
165     s->width = -((-width )>>s->lowres);
166     s->height= -((-height)>>s->lowres);
167 }
168
169 #define INTERNAL_BUFFER_SIZE (32+1)
170
171 void avcodec_align_dimensions2(AVCodecContext *s, int *width, int *height,
172                                int linesize_align[AV_NUM_DATA_POINTERS])
173 {
174     int i;
175     int w_align= 1;
176     int h_align= 1;
177
178     switch(s->pix_fmt){
179     case PIX_FMT_YUV420P:
180     case PIX_FMT_YUYV422:
181     case PIX_FMT_UYVY422:
182     case PIX_FMT_YUV422P:
183     case PIX_FMT_YUV440P:
184     case PIX_FMT_YUV444P:
185     case PIX_FMT_GBRP:
186     case PIX_FMT_GRAY8:
187     case PIX_FMT_GRAY16BE:
188     case PIX_FMT_GRAY16LE:
189     case PIX_FMT_YUVJ420P:
190     case PIX_FMT_YUVJ422P:
191     case PIX_FMT_YUVJ440P:
192     case PIX_FMT_YUVJ444P:
193     case PIX_FMT_YUVA420P:
194     case PIX_FMT_YUVA422P:
195     case PIX_FMT_YUVA444P:
196     case PIX_FMT_YUV420P9LE:
197     case PIX_FMT_YUV420P9BE:
198     case PIX_FMT_YUV420P10LE:
199     case PIX_FMT_YUV420P10BE:
200     case PIX_FMT_YUV420P12LE:
201     case PIX_FMT_YUV420P12BE:
202     case PIX_FMT_YUV420P14LE:
203     case PIX_FMT_YUV420P14BE:
204     case PIX_FMT_YUV422P9LE:
205     case PIX_FMT_YUV422P9BE:
206     case PIX_FMT_YUV422P10LE:
207     case PIX_FMT_YUV422P10BE:
208     case PIX_FMT_YUV422P12LE:
209     case PIX_FMT_YUV422P12BE:
210     case PIX_FMT_YUV422P14LE:
211     case PIX_FMT_YUV422P14BE:
212     case PIX_FMT_YUV444P9LE:
213     case PIX_FMT_YUV444P9BE:
214     case PIX_FMT_YUV444P10LE:
215     case PIX_FMT_YUV444P10BE:
216     case PIX_FMT_YUV444P12LE:
217     case PIX_FMT_YUV444P12BE:
218     case PIX_FMT_YUV444P14LE:
219     case PIX_FMT_YUV444P14BE:
220     case PIX_FMT_GBRP9LE:
221     case PIX_FMT_GBRP9BE:
222     case PIX_FMT_GBRP10LE:
223     case PIX_FMT_GBRP10BE:
224     case PIX_FMT_GBRP12LE:
225     case PIX_FMT_GBRP12BE:
226     case PIX_FMT_GBRP14LE:
227     case PIX_FMT_GBRP14BE:
228         w_align = 16; //FIXME assume 16 pixel per macroblock
229         h_align = 16 * 2; // interlaced needs 2 macroblocks height
230         break;
231     case PIX_FMT_YUV411P:
232     case PIX_FMT_UYYVYY411:
233         w_align=32;
234         h_align=8;
235         break;
236     case PIX_FMT_YUV410P:
237         if(s->codec_id == CODEC_ID_SVQ1){
238             w_align=64;
239             h_align=64;
240         }
241     case PIX_FMT_RGB555:
242         if(s->codec_id == CODEC_ID_RPZA){
243             w_align=4;
244             h_align=4;
245         }
246     case PIX_FMT_PAL8:
247     case PIX_FMT_BGR8:
248     case PIX_FMT_RGB8:
249         if(s->codec_id == CODEC_ID_SMC){
250             w_align=4;
251             h_align=4;
252         }
253         break;
254     case PIX_FMT_BGR24:
255         if((s->codec_id == CODEC_ID_MSZH) || (s->codec_id == CODEC_ID_ZLIB)){
256             w_align=4;
257             h_align=4;
258         }
259         break;
260     default:
261         w_align= 1;
262         h_align= 1;
263         break;
264     }
265
266     if(s->codec_id == CODEC_ID_IFF_ILBM || s->codec_id == CODEC_ID_IFF_BYTERUN1){
267         w_align= FFMAX(w_align, 8);
268     }
269
270     *width = FFALIGN(*width , w_align);
271     *height= FFALIGN(*height, h_align);
272     if(s->codec_id == CODEC_ID_H264 || s->lowres)
273         *height+=2; // some of the optimized chroma MC reads one line too much
274                     // which is also done in mpeg decoders with lowres > 0
275
276     for (i = 0; i < 4; i++)
277         linesize_align[i] = STRIDE_ALIGN;
278 }
279
280 void avcodec_align_dimensions(AVCodecContext *s, int *width, int *height){
281     int chroma_shift = av_pix_fmt_descriptors[s->pix_fmt].log2_chroma_w;
282     int linesize_align[AV_NUM_DATA_POINTERS];
283     int align;
284     avcodec_align_dimensions2(s, width, height, linesize_align);
285     align = FFMAX(linesize_align[0], linesize_align[3]);
286     linesize_align[1] <<= chroma_shift;
287     linesize_align[2] <<= chroma_shift;
288     align = FFMAX3(align, linesize_align[1], linesize_align[2]);
289     *width=FFALIGN(*width, align);
290 }
291
292 void ff_init_buffer_info(AVCodecContext *s, AVFrame *pic)
293 {
294     if (s->pkt) {
295         pic->pkt_pts = s->pkt->pts;
296         pic->pkt_pos = s->pkt->pos;
297         pic->pkt_duration = s->pkt->duration;
298     } else {
299         pic->pkt_pts = AV_NOPTS_VALUE;
300         pic->pkt_pos = -1;
301         pic->pkt_duration = 0;
302     }
303     pic->reordered_opaque= s->reordered_opaque;
304     pic->sample_aspect_ratio = s->sample_aspect_ratio;
305     pic->width               = s->width;
306     pic->height              = s->height;
307     pic->format              = s->pix_fmt;
308 }
309
310 int avcodec_fill_audio_frame(AVFrame *frame, int nb_channels,
311                              enum AVSampleFormat sample_fmt, const uint8_t *buf,
312                              int buf_size, int align)
313 {
314     int ch, planar, needed_size, ret = 0;
315
316     needed_size = av_samples_get_buffer_size(NULL, nb_channels,
317                                              frame->nb_samples, sample_fmt,
318                                              align);
319     if (buf_size < needed_size)
320         return AVERROR(EINVAL);
321
322     planar = av_sample_fmt_is_planar(sample_fmt);
323     if (planar && nb_channels > AV_NUM_DATA_POINTERS) {
324         if (!(frame->extended_data = av_mallocz(nb_channels *
325                                                 sizeof(*frame->extended_data))))
326             return AVERROR(ENOMEM);
327     } else {
328         frame->extended_data = frame->data;
329     }
330
331     if ((ret = av_samples_fill_arrays(frame->extended_data, &frame->linesize[0],
332                                       (uint8_t *)(intptr_t)buf, nb_channels, frame->nb_samples,
333                                       sample_fmt, align)) < 0) {
334         if (frame->extended_data != frame->data)
335             av_freep(&frame->extended_data);
336         return ret;
337     }
338     if (frame->extended_data != frame->data) {
339         for (ch = 0; ch < AV_NUM_DATA_POINTERS; ch++)
340             frame->data[ch] = frame->extended_data[ch];
341     }
342
343     return ret;
344 }
345
346 static int audio_get_buffer(AVCodecContext *avctx, AVFrame *frame)
347 {
348     AVCodecInternal *avci = avctx->internal;
349     InternalBuffer *buf;
350     int buf_size, ret;
351
352     buf_size = av_samples_get_buffer_size(NULL, avctx->channels,
353                                           frame->nb_samples, avctx->sample_fmt,
354                                           0);
355     if (buf_size < 0)
356         return AVERROR(EINVAL);
357
358     /* allocate InternalBuffer if needed */
359     if (!avci->buffer) {
360         avci->buffer = av_mallocz(sizeof(InternalBuffer));
361         if (!avci->buffer)
362             return AVERROR(ENOMEM);
363     }
364     buf = avci->buffer;
365
366     /* if there is a previously-used internal buffer, check its size and
367        channel count to see if we can reuse it */
368     if (buf->extended_data) {
369         /* if current buffer is too small, free it */
370         if (buf->extended_data[0] && buf_size > buf->audio_data_size) {
371             av_free(buf->extended_data[0]);
372             if (buf->extended_data != buf->data)
373                 av_freep(&buf->extended_data);
374             buf->extended_data = NULL;
375             buf->data[0] = NULL;
376         }
377         /* if number of channels has changed, reset and/or free extended data
378            pointers but leave data buffer in buf->data[0] for reuse */
379         if (buf->nb_channels != avctx->channels) {
380             if (buf->extended_data != buf->data)
381                 av_free(buf->extended_data);
382             buf->extended_data = NULL;
383         }
384     }
385
386     /* if there is no previous buffer or the previous buffer cannot be used
387        as-is, allocate a new buffer and/or rearrange the channel pointers */
388     if (!buf->extended_data) {
389         if (!buf->data[0]) {
390             if (!(buf->data[0] = av_mallocz(buf_size)))
391                 return AVERROR(ENOMEM);
392             buf->audio_data_size = buf_size;
393         }
394         if ((ret = avcodec_fill_audio_frame(frame, avctx->channels,
395                                             avctx->sample_fmt, buf->data[0],
396                                             buf->audio_data_size, 0)))
397             return ret;
398
399         if (frame->extended_data == frame->data)
400             buf->extended_data = buf->data;
401         else
402             buf->extended_data = frame->extended_data;
403         memcpy(buf->data, frame->data, sizeof(frame->data));
404         buf->linesize[0] = frame->linesize[0];
405         buf->nb_channels = avctx->channels;
406     } else {
407         /* copy InternalBuffer info to the AVFrame */
408         frame->extended_data = buf->extended_data;
409         frame->linesize[0]   = buf->linesize[0];
410         memcpy(frame->data, buf->data, sizeof(frame->data));
411     }
412
413     frame->type          = FF_BUFFER_TYPE_INTERNAL;
414
415     if (avctx->pkt) {
416         frame->pkt_pts = avctx->pkt->pts;
417         frame->pkt_pos = avctx->pkt->pos;
418         frame->pkt_duration = avctx->pkt->duration;
419     } else {
420         frame->pkt_pts = AV_NOPTS_VALUE;
421         frame->pkt_pos = -1;
422         frame->pkt_duration = 0;
423     }
424
425     frame->reordered_opaque = avctx->reordered_opaque;
426
427     frame->sample_rate    = avctx->sample_rate;
428     frame->format         = avctx->sample_fmt;
429     frame->channel_layout = avctx->channel_layout;
430
431     if (avctx->debug & FF_DEBUG_BUFFERS)
432         av_log(avctx, AV_LOG_DEBUG, "default_get_buffer called on frame %p, "
433                "internal audio buffer used\n", frame);
434
435     return 0;
436 }
437
438 static int video_get_buffer(AVCodecContext *s, AVFrame *pic)
439 {
440     int i;
441     int w= s->width;
442     int h= s->height;
443     InternalBuffer *buf;
444     AVCodecInternal *avci = s->internal;
445
446     if(pic->data[0]!=NULL) {
447         av_log(s, AV_LOG_ERROR, "pic->data[0]!=NULL in avcodec_default_get_buffer\n");
448         return -1;
449     }
450     if(avci->buffer_count >= INTERNAL_BUFFER_SIZE) {
451         av_log(s, AV_LOG_ERROR, "buffer_count overflow (missing release_buffer?)\n");
452         return -1;
453     }
454
455     if(av_image_check_size(w, h, 0, s) || s->pix_fmt<0) {
456         av_log(s, AV_LOG_ERROR, "video_get_buffer: image parameters invalid\n");
457         return -1;
458     }
459
460     if (!avci->buffer) {
461         avci->buffer = av_mallocz((INTERNAL_BUFFER_SIZE+1) *
462                                   sizeof(InternalBuffer));
463     }
464
465     buf = &avci->buffer[avci->buffer_count];
466
467     if(buf->base[0] && (buf->width != w || buf->height != h || buf->pix_fmt != s->pix_fmt)){
468         for (i = 0; i < AV_NUM_DATA_POINTERS; i++) {
469             av_freep(&buf->base[i]);
470             buf->data[i]= NULL;
471         }
472     }
473
474     if (!buf->base[0]) {
475         int h_chroma_shift, v_chroma_shift;
476         int size[4] = {0};
477         int tmpsize;
478         int unaligned;
479         AVPicture picture;
480         int stride_align[AV_NUM_DATA_POINTERS];
481         const int pixel_size = av_pix_fmt_descriptors[s->pix_fmt].comp[0].step_minus1+1;
482
483         avcodec_get_chroma_sub_sample(s->pix_fmt, &h_chroma_shift, &v_chroma_shift);
484
485         avcodec_align_dimensions2(s, &w, &h, stride_align);
486
487         if(!(s->flags&CODEC_FLAG_EMU_EDGE)){
488             w+= EDGE_WIDTH*2;
489             h+= EDGE_WIDTH*2;
490         }
491
492         do {
493             // NOTE: do not align linesizes individually, this breaks e.g. assumptions
494             // that linesize[0] == 2*linesize[1] in the MPEG-encoder for 4:2:2
495             av_image_fill_linesizes(picture.linesize, s->pix_fmt, w);
496             // increase alignment of w for next try (rhs gives the lowest bit set in w)
497             w += w & ~(w-1);
498
499             unaligned = 0;
500             for (i=0; i<4; i++){
501                 unaligned |= picture.linesize[i] % stride_align[i];
502             }
503         } while (unaligned);
504
505         tmpsize = av_image_fill_pointers(picture.data, s->pix_fmt, h, NULL, picture.linesize);
506         if (tmpsize < 0)
507             return -1;
508
509         for (i=0; i<3 && picture.data[i+1]; i++)
510             size[i] = picture.data[i+1] - picture.data[i];
511         size[i] = tmpsize - (picture.data[i] - picture.data[0]);
512
513         memset(buf->base, 0, sizeof(buf->base));
514         memset(buf->data, 0, sizeof(buf->data));
515
516         for(i=0; i<4 && size[i]; i++){
517             const int h_shift= i==0 ? 0 : h_chroma_shift;
518             const int v_shift= i==0 ? 0 : v_chroma_shift;
519
520             buf->linesize[i]= picture.linesize[i];
521
522             buf->base[i]= av_malloc(size[i]+16); //FIXME 16
523             if(buf->base[i]==NULL)
524                 return AVERROR(ENOMEM);
525             memset(buf->base[i], 128, size[i]);
526
527             // no edge if EDGE EMU or not planar YUV
528             if((s->flags&CODEC_FLAG_EMU_EDGE) || !size[2])
529                 buf->data[i] = buf->base[i];
530             else
531                 buf->data[i] = buf->base[i] + FFALIGN((buf->linesize[i]*EDGE_WIDTH>>v_shift) + (pixel_size*EDGE_WIDTH>>h_shift), stride_align[i]);
532         }
533         for (; i < AV_NUM_DATA_POINTERS; i++) {
534             buf->base[i] = buf->data[i] = NULL;
535             buf->linesize[i] = 0;
536         }
537         if(size[1] && !size[2])
538             ff_set_systematic_pal2((uint32_t*)buf->data[1], s->pix_fmt);
539         buf->width  = s->width;
540         buf->height = s->height;
541         buf->pix_fmt= s->pix_fmt;
542     }
543     pic->type= FF_BUFFER_TYPE_INTERNAL;
544
545     for (i = 0; i < AV_NUM_DATA_POINTERS; i++) {
546         pic->base[i]= buf->base[i];
547         pic->data[i]= buf->data[i];
548         pic->linesize[i]= buf->linesize[i];
549     }
550     pic->extended_data = pic->data;
551     avci->buffer_count++;
552     pic->width  = buf->width;
553     pic->height = buf->height;
554     pic->format = buf->pix_fmt;
555     pic->sample_aspect_ratio = s->sample_aspect_ratio;
556
557     if (s->pkt) {
558         pic->pkt_pts = s->pkt->pts;
559         pic->pkt_pos = s->pkt->pos;
560         pic->pkt_duration = s->pkt->duration;
561     } else {
562         pic->pkt_pts = AV_NOPTS_VALUE;
563         pic->pkt_pos = -1;
564         pic->pkt_duration = 0;
565     }
566     pic->reordered_opaque= s->reordered_opaque;
567     pic->sample_aspect_ratio = s->sample_aspect_ratio;
568     pic->width               = s->width;
569     pic->height              = s->height;
570     pic->format              = s->pix_fmt;
571
572     if(s->debug&FF_DEBUG_BUFFERS)
573         av_log(s, AV_LOG_DEBUG, "default_get_buffer called on pic %p, %d "
574                "buffers used\n", pic, avci->buffer_count);
575
576     return 0;
577 }
578
579 int avcodec_default_get_buffer(AVCodecContext *avctx, AVFrame *frame)
580 {
581     switch (avctx->codec_type) {
582     case AVMEDIA_TYPE_VIDEO:
583         return video_get_buffer(avctx, frame);
584     case AVMEDIA_TYPE_AUDIO:
585         return audio_get_buffer(avctx, frame);
586     default:
587         return -1;
588     }
589 }
590
591 void avcodec_default_release_buffer(AVCodecContext *s, AVFrame *pic){
592     int i;
593     InternalBuffer *buf, *last;
594     AVCodecInternal *avci = s->internal;
595
596     av_assert0(s->codec_type == AVMEDIA_TYPE_VIDEO);
597
598     assert(pic->type==FF_BUFFER_TYPE_INTERNAL);
599     assert(avci->buffer_count);
600
601     if (avci->buffer) {
602         buf = NULL; /* avoids warning */
603         for (i = 0; i < avci->buffer_count; i++) { //just 3-5 checks so is not worth to optimize
604             buf = &avci->buffer[i];
605             if (buf->data[0] == pic->data[0])
606                 break;
607         }
608         av_assert0(i < avci->buffer_count);
609         avci->buffer_count--;
610         last = &avci->buffer[avci->buffer_count];
611
612         if (buf != last)
613             FFSWAP(InternalBuffer, *buf, *last);
614     }
615
616     for (i = 0; i < AV_NUM_DATA_POINTERS; i++) {
617         pic->data[i]=NULL;
618 //        pic->base[i]=NULL;
619     }
620 //printf("R%X\n", pic->opaque);
621
622     if(s->debug&FF_DEBUG_BUFFERS)
623         av_log(s, AV_LOG_DEBUG, "default_release_buffer called on pic %p, %d "
624                "buffers used\n", pic, avci->buffer_count);
625 }
626
627 int avcodec_default_reget_buffer(AVCodecContext *s, AVFrame *pic){
628     AVFrame temp_pic;
629     int i;
630
631     av_assert0(s->codec_type == AVMEDIA_TYPE_VIDEO);
632
633     if (pic->data[0] && (pic->width != s->width || pic->height != s->height || pic->format != s->pix_fmt)) {
634         av_log(s, AV_LOG_WARNING, "Picture changed from size:%dx%d fmt:%s to size:%dx%d fmt:%s in reget buffer()\n",
635                pic->width, pic->height, av_get_pix_fmt_name(pic->format), s->width, s->height, av_get_pix_fmt_name(s->pix_fmt));
636         s->release_buffer(s, pic);
637     }
638
639     ff_init_buffer_info(s, pic);
640
641     /* If no picture return a new buffer */
642     if(pic->data[0] == NULL) {
643         /* We will copy from buffer, so must be readable */
644         pic->buffer_hints |= FF_BUFFER_HINTS_READABLE;
645         return s->get_buffer(s, pic);
646     }
647
648     assert(s->pix_fmt == pic->format);
649
650     /* If internal buffer type return the same buffer */
651     if(pic->type == FF_BUFFER_TYPE_INTERNAL) {
652         return 0;
653     }
654
655     /*
656      * Not internal type and reget_buffer not overridden, emulate cr buffer
657      */
658     temp_pic = *pic;
659     for(i = 0; i < AV_NUM_DATA_POINTERS; i++)
660         pic->data[i] = pic->base[i] = NULL;
661     pic->opaque = NULL;
662     /* Allocate new frame */
663     if (s->get_buffer(s, pic))
664         return -1;
665     /* Copy image data from old buffer to new buffer */
666     av_picture_copy((AVPicture*)pic, (AVPicture*)&temp_pic, s->pix_fmt, s->width,
667              s->height);
668     s->release_buffer(s, &temp_pic); // Release old frame
669     return 0;
670 }
671
672 int avcodec_default_execute(AVCodecContext *c, int (*func)(AVCodecContext *c2, void *arg2),void *arg, int *ret, int count, int size){
673     int i;
674
675     for(i=0; i<count; i++){
676         int r= func(c, (char*)arg + i*size);
677         if(ret) ret[i]= r;
678     }
679     return 0;
680 }
681
682 int avcodec_default_execute2(AVCodecContext *c, int (*func)(AVCodecContext *c2, void *arg2, int jobnr, int threadnr),void *arg, int *ret, int count){
683     int i;
684
685     for(i=0; i<count; i++){
686         int r= func(c, arg, i, 0);
687         if(ret) ret[i]= r;
688     }
689     return 0;
690 }
691
692 enum PixelFormat avcodec_default_get_format(struct AVCodecContext *s, const enum PixelFormat *fmt){
693     while (*fmt != PIX_FMT_NONE && ff_is_hwaccel_pix_fmt(*fmt))
694         ++fmt;
695     return fmt[0];
696 }
697
698 void avcodec_get_frame_defaults(AVFrame *pic){
699     memset(pic, 0, sizeof(AVFrame));
700
701     pic->pts = pic->pkt_dts = pic->pkt_pts = pic->best_effort_timestamp = AV_NOPTS_VALUE;
702     pic->pkt_duration = 0;
703     pic->pkt_pos = -1;
704     pic->key_frame= 1;
705     pic->sample_aspect_ratio = (AVRational){0, 1};
706     pic->format = -1;           /* unknown */
707 }
708
709 AVFrame *avcodec_alloc_frame(void){
710     AVFrame *pic= av_malloc(sizeof(AVFrame));
711
712     if(pic==NULL) return NULL;
713
714     avcodec_get_frame_defaults(pic);
715
716     return pic;
717 }
718
719 #define MAKE_ACCESSORS(str, name, type, field) \
720     type av_##name##_get_##field(const str *s) { return s->field; } \
721     void av_##name##_set_##field(str *s, type v) { s->field = v; }
722
723 MAKE_ACCESSORS(AVFrame, frame, int64_t, best_effort_timestamp)
724 MAKE_ACCESSORS(AVFrame, frame, int64_t, pkt_duration)
725 MAKE_ACCESSORS(AVFrame, frame, int64_t, pkt_pos)
726 MAKE_ACCESSORS(AVFrame, frame, int64_t, channel_layout)
727 MAKE_ACCESSORS(AVFrame, frame, int,     sample_rate)
728 MAKE_ACCESSORS(AVFrame, frame, AVDictionary *, metadata)
729
730 MAKE_ACCESSORS(AVCodecContext, codec, AVRational, pkt_timebase)
731
732 static void avcodec_get_subtitle_defaults(AVSubtitle *sub)
733 {
734     memset(sub, 0, sizeof(*sub));
735     sub->pts = AV_NOPTS_VALUE;
736 }
737
738 static int get_bit_rate(AVCodecContext *ctx)
739 {
740     int bit_rate;
741     int bits_per_sample;
742
743     switch(ctx->codec_type) {
744     case AVMEDIA_TYPE_VIDEO:
745     case AVMEDIA_TYPE_DATA:
746     case AVMEDIA_TYPE_SUBTITLE:
747     case AVMEDIA_TYPE_ATTACHMENT:
748         bit_rate = ctx->bit_rate;
749         break;
750     case AVMEDIA_TYPE_AUDIO:
751         bits_per_sample = av_get_bits_per_sample(ctx->codec_id);
752         bit_rate = bits_per_sample ? ctx->sample_rate * ctx->channels * bits_per_sample : ctx->bit_rate;
753         break;
754     default:
755         bit_rate = 0;
756         break;
757     }
758     return bit_rate;
759 }
760
761 #if FF_API_AVCODEC_OPEN
762 int attribute_align_arg avcodec_open(AVCodecContext *avctx, AVCodec *codec)
763 {
764     return avcodec_open2(avctx, codec, NULL);
765 }
766 #endif
767
768 int attribute_align_arg avcodec_open2(AVCodecContext *avctx, AVCodec *codec, AVDictionary **options)
769 {
770     int ret = 0;
771     AVDictionary *tmp = NULL;
772
773     if (avcodec_is_open(avctx))
774         return 0;
775
776     if ((!codec && !avctx->codec)) {
777         av_log(avctx, AV_LOG_ERROR, "No codec provided to avcodec_open2().\n");
778         return AVERROR(EINVAL);
779     }
780     if ((codec && avctx->codec && codec != avctx->codec)) {
781         av_log(avctx, AV_LOG_ERROR, "This AVCodecContext was allocated for %s, "
782                "but %s passed to avcodec_open2().\n", avctx->codec->name, codec->name);
783         return AVERROR(EINVAL);
784     }
785     if (!codec)
786         codec = avctx->codec;
787
788     if (avctx->extradata_size < 0 || avctx->extradata_size >= FF_MAX_EXTRADATA_SIZE)
789         return AVERROR(EINVAL);
790
791     if (options)
792         av_dict_copy(&tmp, *options, 0);
793
794     /* If there is a user-supplied mutex locking routine, call it. */
795     if (ff_lockmgr_cb) {
796         if ((*ff_lockmgr_cb)(&codec_mutex, AV_LOCK_OBTAIN))
797             return -1;
798     }
799
800     entangled_thread_counter++;
801     if(entangled_thread_counter != 1){
802         av_log(avctx, AV_LOG_ERROR, "insufficient thread locking around avcodec_open/close()\n");
803         ret = -1;
804         goto end;
805     }
806
807     avctx->internal = av_mallocz(sizeof(AVCodecInternal));
808     if (!avctx->internal) {
809         ret = AVERROR(ENOMEM);
810         goto end;
811     }
812
813     if (codec->priv_data_size > 0) {
814       if(!avctx->priv_data){
815         avctx->priv_data = av_mallocz(codec->priv_data_size);
816         if (!avctx->priv_data) {
817             ret = AVERROR(ENOMEM);
818             goto end;
819         }
820         if (codec->priv_class) {
821             *(const AVClass**)avctx->priv_data= codec->priv_class;
822             av_opt_set_defaults(avctx->priv_data);
823         }
824       }
825       if (codec->priv_class && (ret = av_opt_set_dict(avctx->priv_data, &tmp)) < 0)
826           goto free_and_end;
827     } else {
828         avctx->priv_data = NULL;
829     }
830     if ((ret = av_opt_set_dict(avctx, &tmp)) < 0)
831         goto free_and_end;
832
833     if (codec->capabilities & CODEC_CAP_EXPERIMENTAL)
834         if (avctx->strict_std_compliance > FF_COMPLIANCE_EXPERIMENTAL) {
835             av_log(avctx, AV_LOG_ERROR, "Codec is experimental but experimental codecs are not enabled, try -strict -2\n");
836             ret = -1;
837             goto free_and_end;
838         }
839
840     //We only call avcodec_set_dimensions() for non h264 codecs so as not to overwrite previously setup dimensions
841     if(!( avctx->coded_width && avctx->coded_height && avctx->width && avctx->height && avctx->codec_id == CODEC_ID_H264)){
842     if(avctx->coded_width && avctx->coded_height)
843         avcodec_set_dimensions(avctx, avctx->coded_width, avctx->coded_height);
844     else if(avctx->width && avctx->height)
845         avcodec_set_dimensions(avctx, avctx->width, avctx->height);
846     }
847
848     if ((avctx->coded_width || avctx->coded_height || avctx->width || avctx->height)
849         && (  av_image_check_size(avctx->coded_width, avctx->coded_height, 0, avctx) < 0
850            || av_image_check_size(avctx->width,       avctx->height,       0, avctx) < 0)) {
851         av_log(avctx, AV_LOG_WARNING, "ignoring invalid width/height values\n");
852         avcodec_set_dimensions(avctx, 0, 0);
853     }
854
855     /* if the decoder init function was already called previously,
856        free the already allocated subtitle_header before overwriting it */
857     if (av_codec_is_decoder(codec))
858         av_freep(&avctx->subtitle_header);
859
860 #define SANE_NB_CHANNELS 128U
861     if (avctx->channels > SANE_NB_CHANNELS) {
862         ret = AVERROR(EINVAL);
863         goto free_and_end;
864     }
865
866     avctx->codec = codec;
867     if ((avctx->codec_type == AVMEDIA_TYPE_UNKNOWN || avctx->codec_type == codec->type) &&
868         avctx->codec_id == CODEC_ID_NONE) {
869         avctx->codec_type = codec->type;
870         avctx->codec_id   = codec->id;
871     }
872     if (avctx->codec_id != codec->id || (avctx->codec_type != codec->type
873                            && avctx->codec_type != AVMEDIA_TYPE_ATTACHMENT)) {
874         av_log(avctx, AV_LOG_ERROR, "codec type or id mismatches\n");
875         ret = AVERROR(EINVAL);
876         goto free_and_end;
877     }
878     avctx->frame_number = 0;
879
880     if (avctx->codec_type == AVMEDIA_TYPE_AUDIO &&
881         (!avctx->time_base.num || !avctx->time_base.den)) {
882         avctx->time_base.num = 1;
883         avctx->time_base.den = avctx->sample_rate;
884     }
885
886     if (!HAVE_THREADS)
887         av_log(avctx, AV_LOG_WARNING, "Warning: not compiled with thread support, using thread emulation\n");
888
889     entangled_thread_counter--; //we will instanciate a few encoders thus kick the counter to prevent false detection of a problem
890     ret = ff_frame_thread_encoder_init(avctx);
891     entangled_thread_counter++;
892     if (ret < 0)
893         goto free_and_end;
894
895     if (HAVE_THREADS && !avctx->thread_opaque
896         && !(avctx->internal->frame_thread_encoder && (avctx->active_thread_type&FF_THREAD_FRAME))) {
897         ret = ff_thread_init(avctx);
898         if (ret < 0) {
899             goto free_and_end;
900         }
901     }
902     if (!HAVE_THREADS && !(codec->capabilities & CODEC_CAP_AUTO_THREADS))
903         avctx->thread_count = 1;
904
905     if (avctx->codec->max_lowres < avctx->lowres || avctx->lowres < 0) {
906         av_log(avctx, AV_LOG_ERROR, "The maximum value for lowres supported by the decoder is %d\n",
907                avctx->codec->max_lowres);
908         ret = AVERROR(EINVAL);
909         goto free_and_end;
910     }
911
912     if (av_codec_is_encoder(avctx->codec)) {
913         int i;
914         if (avctx->codec->sample_fmts) {
915             for (i = 0; avctx->codec->sample_fmts[i] != AV_SAMPLE_FMT_NONE; i++)
916                 if (avctx->sample_fmt == avctx->codec->sample_fmts[i])
917                     break;
918             if (avctx->codec->sample_fmts[i] == AV_SAMPLE_FMT_NONE) {
919                 av_log(avctx, AV_LOG_ERROR, "Specified sample_fmt is not supported.\n");
920                 ret = AVERROR(EINVAL);
921                 goto free_and_end;
922             }
923         }
924         if (avctx->codec->pix_fmts) {
925             for (i = 0; avctx->codec->pix_fmts[i] != PIX_FMT_NONE; i++)
926                 if (avctx->pix_fmt == avctx->codec->pix_fmts[i])
927                     break;
928             if (avctx->codec->pix_fmts[i] == PIX_FMT_NONE
929                 && !((avctx->codec_id == CODEC_ID_MJPEG || avctx->codec_id == CODEC_ID_LJPEG)
930                      && avctx->strict_std_compliance <= FF_COMPLIANCE_UNOFFICIAL)) {
931                 av_log(avctx, AV_LOG_ERROR, "Specified pix_fmt is not supported\n");
932                 ret = AVERROR(EINVAL);
933                 goto free_and_end;
934             }
935         }
936         if (avctx->codec->supported_samplerates) {
937             for (i = 0; avctx->codec->supported_samplerates[i] != 0; i++)
938                 if (avctx->sample_rate == avctx->codec->supported_samplerates[i])
939                     break;
940             if (avctx->codec->supported_samplerates[i] == 0) {
941                 av_log(avctx, AV_LOG_ERROR, "Specified sample_rate is not supported\n");
942                 ret = AVERROR(EINVAL);
943                 goto free_and_end;
944             }
945         }
946         if (avctx->codec->channel_layouts) {
947             if (!avctx->channel_layout) {
948                 av_log(avctx, AV_LOG_WARNING, "channel_layout not specified\n");
949             } else {
950                 for (i = 0; avctx->codec->channel_layouts[i] != 0; i++)
951                     if (avctx->channel_layout == avctx->codec->channel_layouts[i])
952                         break;
953                 if (avctx->codec->channel_layouts[i] == 0) {
954                     av_log(avctx, AV_LOG_ERROR, "Specified channel_layout is not supported\n");
955                     ret = AVERROR(EINVAL);
956                     goto free_and_end;
957                 }
958             }
959         }
960         if (avctx->channel_layout && avctx->channels) {
961             if (av_get_channel_layout_nb_channels(avctx->channel_layout) != avctx->channels) {
962                 av_log(avctx, AV_LOG_ERROR, "channel layout does not match number of channels\n");
963                 ret = AVERROR(EINVAL);
964                 goto free_and_end;
965             }
966         } else if (avctx->channel_layout) {
967             avctx->channels = av_get_channel_layout_nb_channels(avctx->channel_layout);
968         }
969     }
970
971     avctx->pts_correction_num_faulty_pts =
972     avctx->pts_correction_num_faulty_dts = 0;
973     avctx->pts_correction_last_pts =
974     avctx->pts_correction_last_dts = INT64_MIN;
975
976     if(avctx->codec->init && (!(avctx->active_thread_type&FF_THREAD_FRAME) || avctx->internal->frame_thread_encoder)){
977         ret = avctx->codec->init(avctx);
978         if (ret < 0) {
979             goto free_and_end;
980         }
981     }
982
983     ret=0;
984
985     if (av_codec_is_decoder(avctx->codec)) {
986         if (!avctx->bit_rate)
987             avctx->bit_rate = get_bit_rate(avctx);
988         /* validate channel layout from the decoder */
989         if (avctx->channel_layout &&
990             av_get_channel_layout_nb_channels(avctx->channel_layout) != avctx->channels) {
991             av_log(avctx, AV_LOG_WARNING, "channel layout does not match number of channels\n");
992             avctx->channel_layout = 0;
993         }
994     }
995 end:
996     entangled_thread_counter--;
997
998     /* Release any user-supplied mutex. */
999     if (ff_lockmgr_cb) {
1000         (*ff_lockmgr_cb)(&codec_mutex, AV_LOCK_RELEASE);
1001     }
1002     if (options) {
1003         av_dict_free(options);
1004         *options = tmp;
1005     }
1006
1007     return ret;
1008 free_and_end:
1009     av_dict_free(&tmp);
1010     av_freep(&avctx->priv_data);
1011     av_freep(&avctx->internal);
1012     avctx->codec= NULL;
1013     goto end;
1014 }
1015
1016 int ff_alloc_packet2(AVCodecContext *avctx, AVPacket *avpkt, int size)
1017 {
1018     if (size < 0 || avpkt->size < 0 || size > INT_MAX - FF_INPUT_BUFFER_PADDING_SIZE) {
1019         av_log(avctx, AV_LOG_ERROR, "Size %d invalid\n", size);
1020         return AVERROR(EINVAL);
1021     }
1022
1023     if (avctx) {
1024         av_assert0(!avpkt->data || avpkt->data != avctx->internal->byte_buffer);
1025         if (!avpkt->data || avpkt->size < size) {
1026             av_fast_padded_malloc(&avctx->internal->byte_buffer, &avctx->internal->byte_buffer_size, size);
1027             avpkt->data = avctx->internal->byte_buffer;
1028             avpkt->size = avctx->internal->byte_buffer_size;
1029             avpkt->destruct = NULL;
1030         }
1031     }
1032
1033     if (avpkt->data) {
1034         void *destruct = avpkt->destruct;
1035
1036         if (avpkt->size < size) {
1037             av_log(avctx, AV_LOG_ERROR, "User packet is too small (%d < %d)\n", avpkt->size, size);
1038             return AVERROR(EINVAL);
1039         }
1040
1041         av_init_packet(avpkt);
1042         avpkt->destruct = destruct;
1043         avpkt->size = size;
1044         return 0;
1045     } else {
1046         int ret = av_new_packet(avpkt, size);
1047         if (ret < 0)
1048             av_log(avctx, AV_LOG_ERROR, "Failed to allocate packet of size %d\n", size);
1049         return ret;
1050     }
1051 }
1052
1053 int ff_alloc_packet(AVPacket *avpkt, int size)
1054 {
1055     return ff_alloc_packet2(NULL, avpkt, size);
1056 }
1057
1058 /**
1059  * Pad last frame with silence.
1060  */
1061 static int pad_last_frame(AVCodecContext *s, AVFrame **dst, const AVFrame *src)
1062 {
1063     AVFrame *frame = NULL;
1064     uint8_t *buf   = NULL;
1065     int ret;
1066
1067     if (!(frame = avcodec_alloc_frame()))
1068         return AVERROR(ENOMEM);
1069     *frame = *src;
1070
1071     if ((ret = av_samples_get_buffer_size(&frame->linesize[0], s->channels,
1072                                           s->frame_size, s->sample_fmt, 0)) < 0)
1073         goto fail;
1074
1075     if (!(buf = av_malloc(ret))) {
1076         ret = AVERROR(ENOMEM);
1077         goto fail;
1078     }
1079
1080     frame->nb_samples = s->frame_size;
1081     if ((ret = avcodec_fill_audio_frame(frame, s->channels, s->sample_fmt,
1082                                         buf, ret, 0)) < 0)
1083         goto fail;
1084     if ((ret = av_samples_copy(frame->extended_data, src->extended_data, 0, 0,
1085                                src->nb_samples, s->channels, s->sample_fmt)) < 0)
1086         goto fail;
1087     if ((ret = av_samples_set_silence(frame->extended_data, src->nb_samples,
1088                                       frame->nb_samples - src->nb_samples,
1089                                       s->channels, s->sample_fmt)) < 0)
1090         goto fail;
1091
1092     *dst = frame;
1093
1094     return 0;
1095
1096 fail:
1097     if (frame->extended_data != frame->data)
1098         av_freep(&frame->extended_data);
1099     av_freep(&buf);
1100     av_freep(&frame);
1101     return ret;
1102 }
1103
1104 int attribute_align_arg avcodec_encode_audio2(AVCodecContext *avctx,
1105                                               AVPacket *avpkt,
1106                                               const AVFrame *frame,
1107                                               int *got_packet_ptr)
1108 {
1109     AVFrame tmp;
1110     AVFrame *padded_frame = NULL;
1111     int ret;
1112     AVPacket user_pkt = *avpkt;
1113     int needs_realloc = !user_pkt.data;
1114
1115     *got_packet_ptr = 0;
1116
1117     if (!(avctx->codec->capabilities & CODEC_CAP_DELAY) && !frame) {
1118         av_free_packet(avpkt);
1119         av_init_packet(avpkt);
1120         return 0;
1121     }
1122
1123     /* ensure that extended_data is properly set */
1124     if (frame && !frame->extended_data) {
1125         if (av_sample_fmt_is_planar(avctx->sample_fmt) &&
1126             avctx->channels > AV_NUM_DATA_POINTERS) {
1127             av_log(avctx, AV_LOG_ERROR, "Encoding to a planar sample format, "
1128                    "with more than %d channels, but extended_data is not set.\n",
1129                    AV_NUM_DATA_POINTERS);
1130             return AVERROR(EINVAL);
1131         }
1132         av_log(avctx, AV_LOG_WARNING, "extended_data is not set.\n");
1133
1134         tmp = *frame;
1135         tmp.extended_data = tmp.data;
1136         frame = &tmp;
1137     }
1138
1139     /* check for valid frame size */
1140     if (frame) {
1141         if (avctx->codec->capabilities & CODEC_CAP_SMALL_LAST_FRAME) {
1142             if (frame->nb_samples > avctx->frame_size) {
1143                 av_log(avctx, AV_LOG_ERROR, "more samples than frame size (avcodec_encode_audio2)\n");
1144                 return AVERROR(EINVAL);
1145             }
1146         } else if (!(avctx->codec->capabilities & CODEC_CAP_VARIABLE_FRAME_SIZE)) {
1147             if (frame->nb_samples < avctx->frame_size &&
1148                 !avctx->internal->last_audio_frame) {
1149                 ret = pad_last_frame(avctx, &padded_frame, frame);
1150                 if (ret < 0)
1151                     return ret;
1152
1153                 frame = padded_frame;
1154                 avctx->internal->last_audio_frame = 1;
1155             }
1156
1157             if (frame->nb_samples != avctx->frame_size) {
1158                 av_log(avctx, AV_LOG_ERROR, "nb_samples (%d) != frame_size (%d) (avcodec_encode_audio2)\n", frame->nb_samples, avctx->frame_size);
1159                 return AVERROR(EINVAL);
1160             }
1161         }
1162     }
1163
1164     ret = avctx->codec->encode2(avctx, avpkt, frame, got_packet_ptr);
1165     if (!ret) {
1166         if (*got_packet_ptr) {
1167             if (!(avctx->codec->capabilities & CODEC_CAP_DELAY)) {
1168                 if (avpkt->pts == AV_NOPTS_VALUE)
1169                     avpkt->pts = frame->pts;
1170                 if (!avpkt->duration)
1171                     avpkt->duration = ff_samples_to_time_base(avctx,
1172                                                               frame->nb_samples);
1173             }
1174             avpkt->dts = avpkt->pts;
1175         } else {
1176             avpkt->size = 0;
1177         }
1178     }
1179     if (avpkt->data && avpkt->data == avctx->internal->byte_buffer) {
1180         needs_realloc = 0;
1181         if (user_pkt.data) {
1182             if (user_pkt.size >= avpkt->size) {
1183                 memcpy(user_pkt.data, avpkt->data, avpkt->size);
1184             } else {
1185                 av_log(avctx, AV_LOG_ERROR, "Provided packet is too small, needs to be %d\n", avpkt->size);
1186                 avpkt->size = user_pkt.size;
1187                 ret = -1;
1188             }
1189             avpkt->data     = user_pkt.data;
1190             avpkt->destruct = user_pkt.destruct;
1191         } else {
1192             if (av_dup_packet(avpkt) < 0) {
1193                 ret = AVERROR(ENOMEM);
1194             }
1195         }
1196     }
1197
1198     if (!ret) {
1199         if (needs_realloc && avpkt->data) {
1200             uint8_t *new_data = av_realloc(avpkt->data, avpkt->size + FF_INPUT_BUFFER_PADDING_SIZE);
1201             if (new_data)
1202                 avpkt->data = new_data;
1203         }
1204
1205         avctx->frame_number++;
1206     }
1207
1208     if (ret < 0 || !*got_packet_ptr) {
1209         av_free_packet(avpkt);
1210         av_init_packet(avpkt);
1211         return ret;
1212     }
1213
1214     /* NOTE: if we add any audio encoders which output non-keyframe packets,
1215              this needs to be moved to the encoders, but for now we can do it
1216              here to simplify things */
1217     avpkt->flags |= AV_PKT_FLAG_KEY;
1218
1219     if (padded_frame) {
1220         av_freep(&padded_frame->data[0]);
1221         if (padded_frame->extended_data != padded_frame->data)
1222             av_freep(&padded_frame->extended_data);
1223         av_freep(&padded_frame);
1224     }
1225
1226     return ret;
1227 }
1228
1229 #if FF_API_OLD_DECODE_AUDIO
1230 int attribute_align_arg avcodec_encode_audio(AVCodecContext *avctx,
1231                                              uint8_t *buf, int buf_size,
1232                                              const short *samples)
1233 {
1234     AVPacket pkt;
1235     AVFrame frame0;
1236     AVFrame *frame;
1237     int ret, samples_size, got_packet;
1238
1239     av_init_packet(&pkt);
1240     pkt.data = buf;
1241     pkt.size = buf_size;
1242
1243     if (samples) {
1244         frame = &frame0;
1245         avcodec_get_frame_defaults(frame);
1246
1247         if (avctx->frame_size) {
1248             frame->nb_samples = avctx->frame_size;
1249         } else {
1250             /* if frame_size is not set, the number of samples must be
1251                calculated from the buffer size */
1252             int64_t nb_samples;
1253             if (!av_get_bits_per_sample(avctx->codec_id)) {
1254                 av_log(avctx, AV_LOG_ERROR, "avcodec_encode_audio() does not "
1255                        "support this codec\n");
1256                 return AVERROR(EINVAL);
1257             }
1258             nb_samples = (int64_t)buf_size * 8 /
1259                          (av_get_bits_per_sample(avctx->codec_id) *
1260                          avctx->channels);
1261             if (nb_samples >= INT_MAX)
1262                 return AVERROR(EINVAL);
1263             frame->nb_samples = nb_samples;
1264         }
1265
1266         /* it is assumed that the samples buffer is large enough based on the
1267            relevant parameters */
1268         samples_size = av_samples_get_buffer_size(NULL, avctx->channels,
1269                                                   frame->nb_samples,
1270                                                   avctx->sample_fmt, 1);
1271         if ((ret = avcodec_fill_audio_frame(frame, avctx->channels,
1272                                             avctx->sample_fmt,
1273                                             (const uint8_t *) samples,
1274                                             samples_size, 1)))
1275             return ret;
1276
1277         /* fabricate frame pts from sample count.
1278            this is needed because the avcodec_encode_audio() API does not have
1279            a way for the user to provide pts */
1280         if(avctx->sample_rate && avctx->time_base.num)
1281             frame->pts = ff_samples_to_time_base(avctx,
1282                                                 avctx->internal->sample_count);
1283         else
1284             frame->pts = AV_NOPTS_VALUE;
1285         avctx->internal->sample_count += frame->nb_samples;
1286     } else {
1287         frame = NULL;
1288     }
1289
1290     got_packet = 0;
1291     ret = avcodec_encode_audio2(avctx, &pkt, frame, &got_packet);
1292     if (!ret && got_packet && avctx->coded_frame) {
1293         avctx->coded_frame->pts       = pkt.pts;
1294         avctx->coded_frame->key_frame = !!(pkt.flags & AV_PKT_FLAG_KEY);
1295     }
1296     /* free any side data since we cannot return it */
1297     ff_packet_free_side_data(&pkt);
1298
1299     if (frame && frame->extended_data != frame->data)
1300         av_freep(&frame->extended_data);
1301
1302     return ret ? ret : pkt.size;
1303 }
1304 #endif
1305
1306 #if FF_API_OLD_ENCODE_VIDEO
1307 int attribute_align_arg avcodec_encode_video(AVCodecContext *avctx, uint8_t *buf, int buf_size,
1308                          const AVFrame *pict)
1309 {
1310     AVPacket pkt;
1311     int ret, got_packet = 0;
1312
1313     if(buf_size < FF_MIN_BUFFER_SIZE){
1314         av_log(avctx, AV_LOG_ERROR, "buffer smaller than minimum size\n");
1315         return -1;
1316     }
1317
1318     av_init_packet(&pkt);
1319     pkt.data = buf;
1320     pkt.size = buf_size;
1321
1322     ret = avcodec_encode_video2(avctx, &pkt, pict, &got_packet);
1323     if (!ret && got_packet && avctx->coded_frame) {
1324         avctx->coded_frame->pts       = pkt.pts;
1325         avctx->coded_frame->key_frame = !!(pkt.flags & AV_PKT_FLAG_KEY);
1326     }
1327
1328     /* free any side data since we cannot return it */
1329     if (pkt.side_data_elems > 0) {
1330         int i;
1331         for (i = 0; i < pkt.side_data_elems; i++)
1332             av_free(pkt.side_data[i].data);
1333         av_freep(&pkt.side_data);
1334         pkt.side_data_elems = 0;
1335     }
1336
1337     return ret ? ret : pkt.size;
1338 }
1339 #endif
1340
1341 int attribute_align_arg avcodec_encode_video2(AVCodecContext *avctx,
1342                                               AVPacket *avpkt,
1343                                               const AVFrame *frame,
1344                                               int *got_packet_ptr)
1345 {
1346     int ret;
1347     AVPacket user_pkt = *avpkt;
1348     int needs_realloc = !user_pkt.data;
1349
1350     *got_packet_ptr = 0;
1351
1352     if(avctx->internal->frame_thread_encoder && (avctx->active_thread_type&FF_THREAD_FRAME))
1353         return ff_thread_video_encode_frame(avctx, avpkt, frame, got_packet_ptr);
1354
1355     if (!(avctx->codec->capabilities & CODEC_CAP_DELAY) && !frame) {
1356         av_free_packet(avpkt);
1357         av_init_packet(avpkt);
1358         avpkt->size     = 0;
1359         return 0;
1360     }
1361
1362     if (av_image_check_size(avctx->width, avctx->height, 0, avctx))
1363         return AVERROR(EINVAL);
1364
1365     av_assert0(avctx->codec->encode2);
1366
1367     ret = avctx->codec->encode2(avctx, avpkt, frame, got_packet_ptr);
1368     av_assert0(ret <= 0);
1369
1370     if (avpkt->data && avpkt->data == avctx->internal->byte_buffer) {
1371         needs_realloc = 0;
1372         if (user_pkt.data) {
1373             if (user_pkt.size >= avpkt->size) {
1374                 memcpy(user_pkt.data, avpkt->data, avpkt->size);
1375             } else {
1376                 av_log(avctx, AV_LOG_ERROR, "Provided packet is too small, needs to be %d\n", avpkt->size);
1377                 avpkt->size = user_pkt.size;
1378                 ret = -1;
1379             }
1380             avpkt->data     = user_pkt.data;
1381             avpkt->destruct = user_pkt.destruct;
1382         } else {
1383             if (av_dup_packet(avpkt) < 0) {
1384                 ret = AVERROR(ENOMEM);
1385             }
1386         }
1387     }
1388
1389     if (!ret) {
1390         if (!*got_packet_ptr)
1391             avpkt->size = 0;
1392         else if (!(avctx->codec->capabilities & CODEC_CAP_DELAY))
1393             avpkt->pts = avpkt->dts = frame->pts;
1394
1395         if (needs_realloc && avpkt->data &&
1396             avpkt->destruct == av_destruct_packet) {
1397             uint8_t *new_data = av_realloc(avpkt->data, avpkt->size + FF_INPUT_BUFFER_PADDING_SIZE);
1398             if (new_data)
1399                 avpkt->data = new_data;
1400         }
1401
1402         avctx->frame_number++;
1403     }
1404
1405     if (ret < 0 || !*got_packet_ptr)
1406         av_free_packet(avpkt);
1407
1408     emms_c();
1409     return ret;
1410 }
1411
1412 int avcodec_encode_subtitle(AVCodecContext *avctx, uint8_t *buf, int buf_size,
1413                             const AVSubtitle *sub)
1414 {
1415     int ret;
1416     if(sub->start_display_time) {
1417         av_log(avctx, AV_LOG_ERROR, "start_display_time must be 0.\n");
1418         return -1;
1419     }
1420
1421     ret = avctx->codec->encode(avctx, buf, buf_size, (void *)(intptr_t)sub);
1422     avctx->frame_number++;
1423     return ret;
1424 }
1425
1426 /**
1427  * Attempt to guess proper monotonic timestamps for decoded video frames
1428  * which might have incorrect times. Input timestamps may wrap around, in
1429  * which case the output will as well.
1430  *
1431  * @param pts the pts field of the decoded AVPacket, as passed through
1432  * AVFrame.pkt_pts
1433  * @param dts the dts field of the decoded AVPacket
1434  * @return one of the input values, may be AV_NOPTS_VALUE
1435  */
1436 static int64_t guess_correct_pts(AVCodecContext *ctx,
1437                                  int64_t reordered_pts, int64_t dts)
1438 {
1439     int64_t pts = AV_NOPTS_VALUE;
1440
1441     if (dts != AV_NOPTS_VALUE) {
1442         ctx->pts_correction_num_faulty_dts += dts <= ctx->pts_correction_last_dts;
1443         ctx->pts_correction_last_dts = dts;
1444     }
1445     if (reordered_pts != AV_NOPTS_VALUE) {
1446         ctx->pts_correction_num_faulty_pts += reordered_pts <= ctx->pts_correction_last_pts;
1447         ctx->pts_correction_last_pts = reordered_pts;
1448     }
1449     if ((ctx->pts_correction_num_faulty_pts<=ctx->pts_correction_num_faulty_dts || dts == AV_NOPTS_VALUE)
1450        && reordered_pts != AV_NOPTS_VALUE)
1451         pts = reordered_pts;
1452     else
1453         pts = dts;
1454
1455     return pts;
1456 }
1457
1458 static void apply_param_change(AVCodecContext *avctx, AVPacket *avpkt)
1459 {
1460     int size = 0;
1461     const uint8_t *data;
1462     uint32_t flags;
1463
1464     if (!(avctx->codec->capabilities & CODEC_CAP_PARAM_CHANGE))
1465         return;
1466
1467     data = av_packet_get_side_data(avpkt, AV_PKT_DATA_PARAM_CHANGE, &size);
1468     if (!data || size < 4)
1469         return;
1470     flags = bytestream_get_le32(&data);
1471     size -= 4;
1472     if (size < 4) /* Required for any of the changes */
1473         return;
1474     if (flags & AV_SIDE_DATA_PARAM_CHANGE_CHANNEL_COUNT) {
1475         avctx->channels = bytestream_get_le32(&data);
1476         size -= 4;
1477     }
1478     if (flags & AV_SIDE_DATA_PARAM_CHANGE_CHANNEL_LAYOUT) {
1479         if (size < 8)
1480             return;
1481         avctx->channel_layout = bytestream_get_le64(&data);
1482         size -= 8;
1483     }
1484     if (size < 4)
1485         return;
1486     if (flags & AV_SIDE_DATA_PARAM_CHANGE_SAMPLE_RATE) {
1487         avctx->sample_rate = bytestream_get_le32(&data);
1488         size -= 4;
1489     }
1490     if (flags & AV_SIDE_DATA_PARAM_CHANGE_DIMENSIONS) {
1491         if (size < 8)
1492             return;
1493         avctx->width  = bytestream_get_le32(&data);
1494         avctx->height = bytestream_get_le32(&data);
1495         avcodec_set_dimensions(avctx, avctx->width, avctx->height);
1496         size -= 8;
1497     }
1498 }
1499
1500 int attribute_align_arg avcodec_decode_video2(AVCodecContext *avctx, AVFrame *picture,
1501                          int *got_picture_ptr,
1502                          const AVPacket *avpkt)
1503 {
1504     int ret;
1505     // copy to ensure we do not change avpkt
1506     AVPacket tmp = *avpkt;
1507
1508     if (avctx->codec->type != AVMEDIA_TYPE_VIDEO) {
1509         av_log(avctx, AV_LOG_ERROR, "Invalid media type for video\n");
1510         return AVERROR(EINVAL);
1511     }
1512
1513     *got_picture_ptr= 0;
1514     if((avctx->coded_width||avctx->coded_height) && av_image_check_size(avctx->coded_width, avctx->coded_height, 0, avctx))
1515         return AVERROR(EINVAL);
1516
1517     if((avctx->codec->capabilities & CODEC_CAP_DELAY) || avpkt->size || (avctx->active_thread_type&FF_THREAD_FRAME)){
1518         int did_split = av_packet_split_side_data(&tmp);
1519         apply_param_change(avctx, &tmp);
1520         avctx->pkt = &tmp;
1521         if (HAVE_THREADS && avctx->active_thread_type&FF_THREAD_FRAME)
1522              ret = ff_thread_decode_frame(avctx, picture, got_picture_ptr,
1523                                           &tmp);
1524         else {
1525             ret = avctx->codec->decode(avctx, picture, got_picture_ptr,
1526                               &tmp);
1527             picture->pkt_dts= avpkt->dts;
1528
1529             if(!avctx->has_b_frames){
1530             picture->pkt_pos= avpkt->pos;
1531             }
1532             //FIXME these should be under if(!avctx->has_b_frames)
1533             if (!picture->sample_aspect_ratio.num)
1534                 picture->sample_aspect_ratio = avctx->sample_aspect_ratio;
1535             if (!picture->width)
1536                 picture->width = avctx->width;
1537             if (!picture->height)
1538                 picture->height = avctx->height;
1539             if (picture->format == PIX_FMT_NONE)
1540                 picture->format = avctx->pix_fmt;
1541         }
1542
1543         emms_c(); //needed to avoid an emms_c() call before every return;
1544
1545         avctx->pkt = NULL;
1546         if (did_split) {
1547             ff_packet_free_side_data(&tmp);
1548             if(ret == tmp.size)
1549                 ret = avpkt->size;
1550         }
1551
1552         if (*got_picture_ptr){
1553             avctx->frame_number++;
1554             picture->best_effort_timestamp = guess_correct_pts(avctx,
1555                                                             picture->pkt_pts,
1556                                                             picture->pkt_dts);
1557         }
1558     }else
1559         ret= 0;
1560
1561     return ret;
1562 }
1563
1564 #if FF_API_OLD_DECODE_AUDIO
1565 int attribute_align_arg avcodec_decode_audio3(AVCodecContext *avctx, int16_t *samples,
1566                          int *frame_size_ptr,
1567                          AVPacket *avpkt)
1568 {
1569     AVFrame frame;
1570     int ret, got_frame = 0;
1571
1572     if (avctx->get_buffer != avcodec_default_get_buffer) {
1573         av_log(avctx, AV_LOG_ERROR, "Custom get_buffer() for use with"
1574                "avcodec_decode_audio3() detected. Overriding with avcodec_default_get_buffer\n");
1575         av_log(avctx, AV_LOG_ERROR, "Please port your application to "
1576                "avcodec_decode_audio4()\n");
1577         avctx->get_buffer = avcodec_default_get_buffer;
1578         avctx->release_buffer = avcodec_default_release_buffer;
1579     }
1580
1581     ret = avcodec_decode_audio4(avctx, &frame, &got_frame, avpkt);
1582
1583     if (ret >= 0 && got_frame) {
1584         int ch, plane_size;
1585         int planar = av_sample_fmt_is_planar(avctx->sample_fmt);
1586         int data_size = av_samples_get_buffer_size(&plane_size, avctx->channels,
1587                                                    frame.nb_samples,
1588                                                    avctx->sample_fmt, 1);
1589         if (*frame_size_ptr < data_size) {
1590             av_log(avctx, AV_LOG_ERROR, "output buffer size is too small for "
1591                    "the current frame (%d < %d)\n", *frame_size_ptr, data_size);
1592             return AVERROR(EINVAL);
1593         }
1594
1595         memcpy(samples, frame.extended_data[0], plane_size);
1596
1597         if (planar && avctx->channels > 1) {
1598             uint8_t *out = ((uint8_t *)samples) + plane_size;
1599             for (ch = 1; ch < avctx->channels; ch++) {
1600                 memcpy(out, frame.extended_data[ch], plane_size);
1601                 out += plane_size;
1602             }
1603         }
1604         *frame_size_ptr = data_size;
1605     } else {
1606         *frame_size_ptr = 0;
1607     }
1608     return ret;
1609 }
1610 #endif
1611
1612 int attribute_align_arg avcodec_decode_audio4(AVCodecContext *avctx,
1613                                               AVFrame *frame,
1614                                               int *got_frame_ptr,
1615                                               const AVPacket *avpkt)
1616 {
1617     int ret = 0;
1618
1619     *got_frame_ptr = 0;
1620
1621     if (!avpkt->data && avpkt->size) {
1622         av_log(avctx, AV_LOG_ERROR, "invalid packet: NULL data, size != 0\n");
1623         return AVERROR(EINVAL);
1624     }
1625     if (avctx->codec->type != AVMEDIA_TYPE_AUDIO) {
1626         av_log(avctx, AV_LOG_ERROR, "Invalid media type for audio\n");
1627         return AVERROR(EINVAL);
1628     }
1629
1630     if ((avctx->codec->capabilities & CODEC_CAP_DELAY) || avpkt->size) {
1631         uint8_t *side;
1632         int side_size;
1633         // copy to ensure we do not change avpkt
1634         AVPacket tmp = *avpkt;
1635         int did_split = av_packet_split_side_data(&tmp);
1636         apply_param_change(avctx, &tmp);
1637
1638         avctx->pkt = &tmp;
1639         ret = avctx->codec->decode(avctx, frame, got_frame_ptr, &tmp);
1640         if (ret >= 0 && *got_frame_ptr) {
1641             avctx->frame_number++;
1642             frame->pkt_dts = avpkt->dts;
1643             if (frame->format == AV_SAMPLE_FMT_NONE)
1644                 frame->format = avctx->sample_fmt;
1645             if (!frame->channel_layout)
1646                 frame->channel_layout = avctx->channel_layout;
1647             if (!frame->sample_rate)
1648                 frame->sample_rate = avctx->sample_rate;
1649         }
1650
1651         side= av_packet_get_side_data(avctx->pkt, AV_PKT_DATA_SKIP_SAMPLES, &side_size);
1652         if(side && side_size>=10) {
1653             avctx->internal->skip_samples = AV_RL32(side);
1654             av_log(avctx, AV_LOG_DEBUG, "skip %d samples due to side data\n",
1655                    avctx->internal->skip_samples);
1656         }
1657         if (avctx->internal->skip_samples) {
1658             if(frame->nb_samples <= avctx->internal->skip_samples){
1659                 *got_frame_ptr = 0;
1660                 avctx->internal->skip_samples -= frame->nb_samples;
1661                 av_log(avctx, AV_LOG_DEBUG, "skip whole frame, skip left: %d\n",
1662                        avctx->internal->skip_samples);
1663             } else {
1664                 av_samples_copy(frame->extended_data, frame->extended_data, 0, avctx->internal->skip_samples,
1665                                 frame->nb_samples - avctx->internal->skip_samples, avctx->channels, frame->format);
1666                 if(avctx->pkt_timebase.num && avctx->sample_rate) {
1667                     int64_t diff_ts = av_rescale_q(avctx->internal->skip_samples,
1668                                                    (AVRational){1, avctx->sample_rate},
1669                                                    avctx->pkt_timebase);
1670                     if(frame->pkt_pts!=AV_NOPTS_VALUE)
1671                         frame->pkt_pts += diff_ts;
1672                     if(frame->pkt_dts!=AV_NOPTS_VALUE)
1673                         frame->pkt_dts += diff_ts;
1674                     if (frame->pkt_duration >= diff_ts)
1675                         frame->pkt_duration -= diff_ts;
1676                 } else {
1677                     av_log(avctx, AV_LOG_WARNING, "Could not update timestamps for skipped samples.\n");
1678                 }
1679                 av_log(avctx, AV_LOG_DEBUG, "skip %d/%d samples\n",
1680                        avctx->internal->skip_samples, frame->nb_samples);
1681                 frame->nb_samples -= avctx->internal->skip_samples;
1682                 avctx->internal->skip_samples = 0;
1683             }
1684         }
1685
1686         avctx->pkt = NULL;
1687         if (did_split) {
1688             ff_packet_free_side_data(&tmp);
1689             if(ret == tmp.size)
1690                 ret = avpkt->size;
1691         }
1692     }
1693     return ret;
1694 }
1695
1696 int avcodec_decode_subtitle2(AVCodecContext *avctx, AVSubtitle *sub,
1697                             int *got_sub_ptr,
1698                             AVPacket *avpkt)
1699 {
1700     int ret;
1701
1702     if (avctx->codec->type != AVMEDIA_TYPE_SUBTITLE) {
1703         av_log(avctx, AV_LOG_ERROR, "Invalid media type for subtitles\n");
1704         return AVERROR(EINVAL);
1705     }
1706
1707     avctx->pkt = avpkt;
1708     *got_sub_ptr = 0;
1709     avcodec_get_subtitle_defaults(sub);
1710     ret = avctx->codec->decode(avctx, sub, got_sub_ptr, avpkt);
1711     if (*got_sub_ptr)
1712         avctx->frame_number++;
1713     return ret;
1714 }
1715
1716 void avsubtitle_free(AVSubtitle *sub)
1717 {
1718     int i;
1719
1720     for (i = 0; i < sub->num_rects; i++)
1721     {
1722         av_freep(&sub->rects[i]->pict.data[0]);
1723         av_freep(&sub->rects[i]->pict.data[1]);
1724         av_freep(&sub->rects[i]->pict.data[2]);
1725         av_freep(&sub->rects[i]->pict.data[3]);
1726         av_freep(&sub->rects[i]->text);
1727         av_freep(&sub->rects[i]->ass);
1728         av_freep(&sub->rects[i]);
1729     }
1730
1731     av_freep(&sub->rects);
1732
1733     memset(sub, 0, sizeof(AVSubtitle));
1734 }
1735
1736 av_cold int avcodec_close(AVCodecContext *avctx)
1737 {
1738     /* If there is a user-supplied mutex locking routine, call it. */
1739     if (ff_lockmgr_cb) {
1740         if ((*ff_lockmgr_cb)(&codec_mutex, AV_LOCK_OBTAIN))
1741             return -1;
1742     }
1743
1744     entangled_thread_counter++;
1745     if(entangled_thread_counter != 1){
1746         av_log(avctx, AV_LOG_ERROR, "insufficient thread locking around avcodec_open/close()\n");
1747         entangled_thread_counter--;
1748         return -1;
1749     }
1750
1751     if (avcodec_is_open(avctx)) {
1752         if (avctx->internal->frame_thread_encoder && avctx->thread_count > 1) {
1753             entangled_thread_counter --;
1754             ff_frame_thread_encoder_free(avctx);
1755             entangled_thread_counter ++;
1756         }
1757         if (HAVE_THREADS && avctx->thread_opaque)
1758             ff_thread_free(avctx);
1759         if (avctx->codec && avctx->codec->close)
1760             avctx->codec->close(avctx);
1761         avcodec_default_free_buffers(avctx);
1762         avctx->coded_frame = NULL;
1763         avctx->internal->byte_buffer_size = 0;
1764         av_freep(&avctx->internal->byte_buffer);
1765         av_freep(&avctx->internal);
1766     }
1767
1768     if (avctx->priv_data && avctx->codec && avctx->codec->priv_class)
1769         av_opt_free(avctx->priv_data);
1770     av_opt_free(avctx);
1771     av_freep(&avctx->priv_data);
1772     if (av_codec_is_encoder(avctx->codec))
1773         av_freep(&avctx->extradata);
1774     avctx->codec = NULL;
1775     avctx->active_thread_type = 0;
1776     entangled_thread_counter--;
1777
1778     /* Release any user-supplied mutex. */
1779     if (ff_lockmgr_cb) {
1780         (*ff_lockmgr_cb)(&codec_mutex, AV_LOCK_RELEASE);
1781     }
1782     return 0;
1783 }
1784
1785 static enum CodecID remap_deprecated_codec_id(enum CodecID id)
1786 {
1787     switch(id){
1788         //This is for future deprecatec codec ids, its empty since
1789         //last major bump but will fill up again over time, please don't remove it
1790 //         case CODEC_ID_UTVIDEO_DEPRECATED: return CODEC_ID_UTVIDEO;
1791         default                         : return id;
1792     }
1793 }
1794
1795 AVCodec *avcodec_find_encoder(enum CodecID id)
1796 {
1797     AVCodec *p, *experimental=NULL;
1798     p = first_avcodec;
1799     id= remap_deprecated_codec_id(id);
1800     while (p) {
1801         if (av_codec_is_encoder(p) && p->id == id) {
1802             if (p->capabilities & CODEC_CAP_EXPERIMENTAL && !experimental) {
1803                 experimental = p;
1804             } else
1805                 return p;
1806         }
1807         p = p->next;
1808     }
1809     return experimental;
1810 }
1811
1812 AVCodec *avcodec_find_encoder_by_name(const char *name)
1813 {
1814     AVCodec *p;
1815     if (!name)
1816         return NULL;
1817     p = first_avcodec;
1818     while (p) {
1819         if (av_codec_is_encoder(p) && strcmp(name,p->name) == 0)
1820             return p;
1821         p = p->next;
1822     }
1823     return NULL;
1824 }
1825
1826 AVCodec *avcodec_find_decoder(enum CodecID id)
1827 {
1828     AVCodec *p, *experimental=NULL;
1829     p = first_avcodec;
1830     id= remap_deprecated_codec_id(id);
1831     while (p) {
1832         if (av_codec_is_decoder(p) && p->id == id) {
1833             if (p->capabilities & CODEC_CAP_EXPERIMENTAL && !experimental) {
1834                 experimental = p;
1835             } else
1836                 return p;
1837         }
1838         p = p->next;
1839     }
1840     return experimental;
1841 }
1842
1843 AVCodec *avcodec_find_decoder_by_name(const char *name)
1844 {
1845     AVCodec *p;
1846     if (!name)
1847         return NULL;
1848     p = first_avcodec;
1849     while (p) {
1850         if (av_codec_is_decoder(p) && strcmp(name,p->name) == 0)
1851             return p;
1852         p = p->next;
1853     }
1854     return NULL;
1855 }
1856
1857 const char *avcodec_get_name(enum CodecID id)
1858 {
1859     AVCodec *codec;
1860
1861 #if !CONFIG_SMALL
1862     switch (id) {
1863 #include "libavcodec/codec_names.h"
1864     }
1865     av_log(NULL, AV_LOG_WARNING, "Codec 0x%x is not in the full list.\n", id);
1866 #endif
1867     codec = avcodec_find_decoder(id);
1868     if (codec)
1869         return codec->name;
1870     codec = avcodec_find_encoder(id);
1871     if (codec)
1872         return codec->name;
1873     return "unknown_codec";
1874 }
1875
1876 size_t av_get_codec_tag_string(char *buf, size_t buf_size, unsigned int codec_tag)
1877 {
1878     int i, len, ret = 0;
1879
1880 #define IS_PRINT(x)                                               \
1881     (((x) >= '0' && (x) <= '9') ||                                \
1882      ((x) >= 'a' && (x) <= 'z') || ((x) >= 'A' && (x) <= 'Z') ||  \
1883      ((x) == '.' || (x) == ' ' || (x) == '-'))
1884
1885     for (i = 0; i < 4; i++) {
1886         len = snprintf(buf, buf_size,
1887                        IS_PRINT(codec_tag&0xFF) ? "%c" : "[%d]", codec_tag&0xFF);
1888         buf      += len;
1889         buf_size  = buf_size > len ? buf_size - len : 0;
1890         ret      += len;
1891         codec_tag>>=8;
1892     }
1893     return ret;
1894 }
1895
1896 void avcodec_string(char *buf, int buf_size, AVCodecContext *enc, int encode)
1897 {
1898     const char *codec_type;
1899     const char *codec_name;
1900     const char *profile = NULL;
1901     AVCodec *p;
1902     int bitrate;
1903     AVRational display_aspect_ratio;
1904
1905     if (!buf || buf_size <= 0)
1906         return;
1907     codec_type = av_get_media_type_string(enc->codec_type);
1908     codec_name = avcodec_get_name(enc->codec_id);
1909     if (enc->profile != FF_PROFILE_UNKNOWN) {
1910         if (enc->codec)
1911             p = enc->codec;
1912         else
1913             p = encode ? avcodec_find_encoder(enc->codec_id) :
1914                         avcodec_find_decoder(enc->codec_id);
1915         if (p)
1916             profile = av_get_profile_name(p, enc->profile);
1917     }
1918
1919     snprintf(buf, buf_size, "%s: %s%s", codec_type ? codec_type : "unknown",
1920              codec_name, enc->mb_decision ? " (hq)" : "");
1921     buf[0] ^= 'a' ^ 'A'; /* first letter in uppercase */
1922     if (profile)
1923         snprintf(buf + strlen(buf), buf_size - strlen(buf), " (%s)", profile);
1924     if (enc->codec_tag) {
1925         char tag_buf[32];
1926         av_get_codec_tag_string(tag_buf, sizeof(tag_buf), enc->codec_tag);
1927         snprintf(buf + strlen(buf), buf_size - strlen(buf),
1928                  " (%s / 0x%04X)", tag_buf, enc->codec_tag);
1929     }
1930     switch(enc->codec_type) {
1931     case AVMEDIA_TYPE_VIDEO:
1932         if (enc->pix_fmt != PIX_FMT_NONE) {
1933             snprintf(buf + strlen(buf), buf_size - strlen(buf),
1934                      ", %s",
1935                      av_get_pix_fmt_name(enc->pix_fmt));
1936         }
1937         if (enc->width) {
1938             snprintf(buf + strlen(buf), buf_size - strlen(buf),
1939                      ", %dx%d",
1940                      enc->width, enc->height);
1941             if (enc->sample_aspect_ratio.num) {
1942                 av_reduce(&display_aspect_ratio.num, &display_aspect_ratio.den,
1943                           enc->width*enc->sample_aspect_ratio.num,
1944                           enc->height*enc->sample_aspect_ratio.den,
1945                           1024*1024);
1946                 snprintf(buf + strlen(buf), buf_size - strlen(buf),
1947                          " [SAR %d:%d DAR %d:%d]",
1948                          enc->sample_aspect_ratio.num, enc->sample_aspect_ratio.den,
1949                          display_aspect_ratio.num, display_aspect_ratio.den);
1950             }
1951             if(av_log_get_level() >= AV_LOG_DEBUG){
1952                 int g= av_gcd(enc->time_base.num, enc->time_base.den);
1953                 snprintf(buf + strlen(buf), buf_size - strlen(buf),
1954                      ", %d/%d",
1955                      enc->time_base.num/g, enc->time_base.den/g);
1956             }
1957         }
1958         if (encode) {
1959             snprintf(buf + strlen(buf), buf_size - strlen(buf),
1960                      ", q=%d-%d", enc->qmin, enc->qmax);
1961         }
1962         break;
1963     case AVMEDIA_TYPE_AUDIO:
1964         if (enc->sample_rate) {
1965             snprintf(buf + strlen(buf), buf_size - strlen(buf),
1966                      ", %d Hz", enc->sample_rate);
1967         }
1968         av_strlcat(buf, ", ", buf_size);
1969         av_get_channel_layout_string(buf + strlen(buf), buf_size - strlen(buf), enc->channels, enc->channel_layout);
1970         if (enc->sample_fmt != AV_SAMPLE_FMT_NONE) {
1971             snprintf(buf + strlen(buf), buf_size - strlen(buf),
1972                      ", %s", av_get_sample_fmt_name(enc->sample_fmt));
1973         }
1974         break;
1975     default:
1976         return;
1977     }
1978     if (encode) {
1979         if (enc->flags & CODEC_FLAG_PASS1)
1980             snprintf(buf + strlen(buf), buf_size - strlen(buf),
1981                      ", pass 1");
1982         if (enc->flags & CODEC_FLAG_PASS2)
1983             snprintf(buf + strlen(buf), buf_size - strlen(buf),
1984                      ", pass 2");
1985     }
1986     bitrate = get_bit_rate(enc);
1987     if (bitrate != 0) {
1988         snprintf(buf + strlen(buf), buf_size - strlen(buf),
1989                  ", %d kb/s", bitrate / 1000);
1990     }
1991 }
1992
1993 const char *av_get_profile_name(const AVCodec *codec, int profile)
1994 {
1995     const AVProfile *p;
1996     if (profile == FF_PROFILE_UNKNOWN || !codec->profiles)
1997         return NULL;
1998
1999     for (p = codec->profiles; p->profile != FF_PROFILE_UNKNOWN; p++)
2000         if (p->profile == profile)
2001             return p->name;
2002
2003     return NULL;
2004 }
2005
2006 unsigned avcodec_version( void )
2007 {
2008 //    av_assert0(CODEC_ID_V410==164);
2009     av_assert0(CODEC_ID_PCM_S8_PLANAR==65563);
2010     av_assert0(CODEC_ID_ADPCM_G722==69660);
2011 //     av_assert0(CODEC_ID_BMV_AUDIO==86071);
2012     av_assert0(CODEC_ID_SRT==94216);
2013     av_assert0(LIBAVCODEC_VERSION_MICRO >= 100);
2014
2015   return LIBAVCODEC_VERSION_INT;
2016 }
2017
2018 const char *avcodec_configuration(void)
2019 {
2020     return FFMPEG_CONFIGURATION;
2021 }
2022
2023 const char *avcodec_license(void)
2024 {
2025 #define LICENSE_PREFIX "libavcodec license: "
2026     return LICENSE_PREFIX FFMPEG_LICENSE + sizeof(LICENSE_PREFIX) - 1;
2027 }
2028
2029 void avcodec_flush_buffers(AVCodecContext *avctx)
2030 {
2031     if(HAVE_THREADS && avctx->active_thread_type&FF_THREAD_FRAME)
2032         ff_thread_flush(avctx);
2033     else if(avctx->codec->flush)
2034         avctx->codec->flush(avctx);
2035
2036     avctx->pts_correction_last_pts =
2037     avctx->pts_correction_last_dts = INT64_MIN;
2038 }
2039
2040 static void video_free_buffers(AVCodecContext *s)
2041 {
2042     AVCodecInternal *avci = s->internal;
2043     int i, j;
2044
2045     if (!avci->buffer)
2046         return;
2047
2048     if (avci->buffer_count)
2049         av_log(s, AV_LOG_WARNING, "Found %i unreleased buffers!\n",
2050                avci->buffer_count);
2051     for(i=0; i<INTERNAL_BUFFER_SIZE; i++){
2052         InternalBuffer *buf = &avci->buffer[i];
2053         for(j=0; j<4; j++){
2054             av_freep(&buf->base[j]);
2055             buf->data[j]= NULL;
2056         }
2057     }
2058     av_freep(&avci->buffer);
2059
2060     avci->buffer_count=0;
2061 }
2062
2063 static void audio_free_buffers(AVCodecContext *avctx)
2064 {
2065     AVCodecInternal *avci = avctx->internal;
2066     InternalBuffer *buf;
2067
2068     if (!avci->buffer)
2069         return;
2070     buf = avci->buffer;
2071
2072     if (buf->extended_data) {
2073         av_free(buf->extended_data[0]);
2074         if (buf->extended_data != buf->data)
2075             av_freep(&buf->extended_data);
2076     }
2077     av_freep(&avci->buffer);
2078 }
2079
2080 void avcodec_default_free_buffers(AVCodecContext *avctx)
2081 {
2082     switch (avctx->codec_type) {
2083     case AVMEDIA_TYPE_VIDEO:
2084         video_free_buffers(avctx);
2085         break;
2086     case AVMEDIA_TYPE_AUDIO:
2087         audio_free_buffers(avctx);
2088         break;
2089     default:
2090         break;
2091     }
2092 }
2093
2094 int av_get_exact_bits_per_sample(enum CodecID codec_id)
2095 {
2096     switch(codec_id){
2097     case CODEC_ID_ADPCM_CT:
2098     case CODEC_ID_ADPCM_IMA_APC:
2099     case CODEC_ID_ADPCM_IMA_EA_SEAD:
2100     case CODEC_ID_ADPCM_IMA_WS:
2101     case CODEC_ID_ADPCM_G722:
2102     case CODEC_ID_ADPCM_YAMAHA:
2103         return 4;
2104     case CODEC_ID_PCM_ALAW:
2105     case CODEC_ID_PCM_MULAW:
2106     case CODEC_ID_PCM_S8:
2107     case CODEC_ID_PCM_U8:
2108     case CODEC_ID_PCM_ZORK:
2109         return 8;
2110     case CODEC_ID_PCM_S16BE:
2111     case CODEC_ID_PCM_S16LE:
2112     case CODEC_ID_PCM_S16LE_PLANAR:
2113     case CODEC_ID_PCM_U16BE:
2114     case CODEC_ID_PCM_U16LE:
2115         return 16;
2116     case CODEC_ID_PCM_S24DAUD:
2117     case CODEC_ID_PCM_S24BE:
2118     case CODEC_ID_PCM_S24LE:
2119     case CODEC_ID_PCM_U24BE:
2120     case CODEC_ID_PCM_U24LE:
2121         return 24;
2122     case CODEC_ID_PCM_S32BE:
2123     case CODEC_ID_PCM_S32LE:
2124     case CODEC_ID_PCM_U32BE:
2125     case CODEC_ID_PCM_U32LE:
2126     case CODEC_ID_PCM_F32BE:
2127     case CODEC_ID_PCM_F32LE:
2128         return 32;
2129     case CODEC_ID_PCM_F64BE:
2130     case CODEC_ID_PCM_F64LE:
2131         return 64;
2132     default:
2133         return 0;
2134     }
2135 }
2136
2137 enum CodecID av_get_pcm_codec(enum AVSampleFormat fmt, int be)
2138 {
2139     static const enum CodecID map[AV_SAMPLE_FMT_NB][2] = {
2140         [AV_SAMPLE_FMT_U8  ] = { CODEC_ID_PCM_U8,    CODEC_ID_PCM_U8    },
2141         [AV_SAMPLE_FMT_S16 ] = { CODEC_ID_PCM_S16LE, CODEC_ID_PCM_S16BE },
2142         [AV_SAMPLE_FMT_S32 ] = { CODEC_ID_PCM_S32LE, CODEC_ID_PCM_S32BE },
2143         [AV_SAMPLE_FMT_FLT ] = { CODEC_ID_PCM_F32LE, CODEC_ID_PCM_F32BE },
2144         [AV_SAMPLE_FMT_DBL ] = { CODEC_ID_PCM_F64LE, CODEC_ID_PCM_F64BE },
2145         [AV_SAMPLE_FMT_U8P ] = { CODEC_ID_PCM_U8,    CODEC_ID_PCM_U8    },
2146         [AV_SAMPLE_FMT_S16P] = { CODEC_ID_PCM_S16LE, CODEC_ID_PCM_S16BE },
2147         [AV_SAMPLE_FMT_S32P] = { CODEC_ID_PCM_S32LE, CODEC_ID_PCM_S32BE },
2148         [AV_SAMPLE_FMT_FLTP] = { CODEC_ID_PCM_F32LE, CODEC_ID_PCM_F32BE },
2149         [AV_SAMPLE_FMT_DBLP] = { CODEC_ID_PCM_F64LE, CODEC_ID_PCM_F64BE },
2150     };
2151     if (fmt < 0 || fmt >= AV_SAMPLE_FMT_NB)
2152         return CODEC_ID_NONE;
2153     if (be < 0 || be > 1)
2154         be = AV_NE(1, 0);
2155     return map[fmt][be];
2156 }
2157
2158 int av_get_bits_per_sample(enum CodecID codec_id)
2159 {
2160     switch (codec_id) {
2161     case CODEC_ID_ADPCM_SBPRO_2:
2162         return 2;
2163     case CODEC_ID_ADPCM_SBPRO_3:
2164         return 3;
2165     case CODEC_ID_ADPCM_SBPRO_4:
2166     case CODEC_ID_ADPCM_IMA_WAV:
2167     case CODEC_ID_ADPCM_IMA_QT:
2168     case CODEC_ID_ADPCM_SWF:
2169     case CODEC_ID_ADPCM_MS:
2170         return 4;
2171     default:
2172         return av_get_exact_bits_per_sample(codec_id);
2173     }
2174 }
2175
2176 int av_get_audio_frame_duration(AVCodecContext *avctx, int frame_bytes)
2177 {
2178     int id, sr, ch, ba, tag, bps;
2179
2180     id  = avctx->codec_id;
2181     sr  = avctx->sample_rate;
2182     ch  = avctx->channels;
2183     ba  = avctx->block_align;
2184     tag = avctx->codec_tag;
2185     bps = av_get_exact_bits_per_sample(avctx->codec_id);
2186
2187     /* codecs with an exact constant bits per sample */
2188     if (bps > 0 && ch > 0 && frame_bytes > 0 && ch < 32768 && bps < 32768)
2189         return (frame_bytes * 8LL) / (bps * ch);
2190     bps = avctx->bits_per_coded_sample;
2191
2192     /* codecs with a fixed packet duration */
2193     switch (id) {
2194     case CODEC_ID_ADPCM_ADX:    return   32;
2195     case CODEC_ID_ADPCM_IMA_QT: return   64;
2196     case CODEC_ID_ADPCM_EA_XAS: return  128;
2197     case CODEC_ID_AMR_NB:
2198     case CODEC_ID_GSM:
2199     case CODEC_ID_QCELP:
2200     case CODEC_ID_RA_144:
2201     case CODEC_ID_RA_288:       return  160;
2202     case CODEC_ID_IMC:          return  256;
2203     case CODEC_ID_AMR_WB:
2204     case CODEC_ID_GSM_MS:       return  320;
2205     case CODEC_ID_MP1:          return  384;
2206     case CODEC_ID_ATRAC1:       return  512;
2207     case CODEC_ID_ATRAC3:       return 1024;
2208     case CODEC_ID_MP2:
2209     case CODEC_ID_MUSEPACK7:    return 1152;
2210     case CODEC_ID_AC3:          return 1536;
2211     }
2212
2213     if (sr > 0) {
2214         /* calc from sample rate */
2215         if (id == CODEC_ID_TTA)
2216             return 256 * sr / 245;
2217
2218         if (ch > 0) {
2219             /* calc from sample rate and channels */
2220             if (id == CODEC_ID_BINKAUDIO_DCT)
2221                 return (480 << (sr / 22050)) / ch;
2222         }
2223     }
2224
2225     if (ba > 0) {
2226         /* calc from block_align */
2227         if (id == CODEC_ID_SIPR) {
2228             switch (ba) {
2229             case 20: return 160;
2230             case 19: return 144;
2231             case 29: return 288;
2232             case 37: return 480;
2233             }
2234         } else if (id == CODEC_ID_ILBC) {
2235             switch (ba) {
2236             case 38: return 160;
2237             case 50: return 240;
2238             }
2239         }
2240     }
2241
2242     if (frame_bytes > 0) {
2243         /* calc from frame_bytes only */
2244         if (id == CODEC_ID_TRUESPEECH)
2245             return 240 * (frame_bytes / 32);
2246         if (id == CODEC_ID_NELLYMOSER)
2247             return 256 * (frame_bytes / 64);
2248
2249         if (bps > 0) {
2250             /* calc from frame_bytes and bits_per_coded_sample */
2251             if (id == CODEC_ID_ADPCM_G726)
2252                 return frame_bytes * 8 / bps;
2253         }
2254
2255         if (ch > 0) {
2256             /* calc from frame_bytes and channels */
2257             switch (id) {
2258             case CODEC_ID_ADPCM_4XM:
2259             case CODEC_ID_ADPCM_IMA_ISS:
2260                 return (frame_bytes - 4 * ch) * 2 / ch;
2261             case CODEC_ID_ADPCM_IMA_SMJPEG:
2262                 return (frame_bytes - 4) * 2 / ch;
2263             case CODEC_ID_ADPCM_IMA_AMV:
2264                 return (frame_bytes - 8) * 2 / ch;
2265             case CODEC_ID_ADPCM_XA:
2266                 return (frame_bytes / 128) * 224 / ch;
2267             case CODEC_ID_INTERPLAY_DPCM:
2268                 return (frame_bytes - 6 - ch) / ch;
2269             case CODEC_ID_ROQ_DPCM:
2270                 return (frame_bytes - 8) / ch;
2271             case CODEC_ID_XAN_DPCM:
2272                 return (frame_bytes - 2 * ch) / ch;
2273             case CODEC_ID_MACE3:
2274                 return 3 * frame_bytes / ch;
2275             case CODEC_ID_MACE6:
2276                 return 6 * frame_bytes / ch;
2277             case CODEC_ID_PCM_LXF:
2278                 return 2 * (frame_bytes / (5 * ch));
2279             }
2280
2281             if (tag) {
2282                 /* calc from frame_bytes, channels, and codec_tag */
2283                 if (id == CODEC_ID_SOL_DPCM) {
2284                     if (tag == 3)
2285                         return frame_bytes / ch;
2286                     else
2287                         return frame_bytes * 2 / ch;
2288                 }
2289             }
2290
2291             if (ba > 0) {
2292                 /* calc from frame_bytes, channels, and block_align */
2293                 int blocks = frame_bytes / ba;
2294                 switch (avctx->codec_id) {
2295                 case CODEC_ID_ADPCM_IMA_WAV:
2296                     return blocks * (1 + (ba - 4 * ch) / (4 * ch) * 8);
2297                 case CODEC_ID_ADPCM_IMA_DK3:
2298                     return blocks * (((ba - 16) * 2 / 3 * 4) / ch);
2299                 case CODEC_ID_ADPCM_IMA_DK4:
2300                     return blocks * (1 + (ba - 4 * ch) * 2 / ch);
2301                 case CODEC_ID_ADPCM_MS:
2302                     return blocks * (2 + (ba - 7 * ch) * 2 / ch);
2303                 }
2304             }
2305
2306             if (bps > 0) {
2307                 /* calc from frame_bytes, channels, and bits_per_coded_sample */
2308                 switch (avctx->codec_id) {
2309                 case CODEC_ID_PCM_DVD:
2310                     if(bps<4)
2311                         return 0;
2312                     return 2 * (frame_bytes / ((bps * 2 / 8) * ch));
2313                 case CODEC_ID_PCM_BLURAY:
2314                     if(bps<4)
2315                         return 0;
2316                     return frame_bytes / ((FFALIGN(ch, 2) * bps) / 8);
2317                 case CODEC_ID_S302M:
2318                     return 2 * (frame_bytes / ((bps + 4) / 4)) / ch;
2319                 }
2320             }
2321         }
2322     }
2323
2324     return 0;
2325 }
2326
2327 #if !HAVE_THREADS
2328 int ff_thread_init(AVCodecContext *s){
2329     return -1;
2330 }
2331 #endif
2332
2333 unsigned int av_xiphlacing(unsigned char *s, unsigned int v)
2334 {
2335     unsigned int n = 0;
2336
2337     while(v >= 0xff) {
2338         *s++ = 0xff;
2339         v -= 0xff;
2340         n++;
2341     }
2342     *s = v;
2343     n++;
2344     return n;
2345 }
2346
2347 int ff_match_2uint16(const uint16_t (*tab)[2], int size, int a, int b){
2348     int i;
2349     for(i=0; i<size && !(tab[i][0]==a && tab[i][1]==b); i++);
2350     return i;
2351 }
2352
2353 void av_log_missing_feature(void *avc, const char *feature, int want_sample)
2354 {
2355     av_log(avc, AV_LOG_WARNING, "%s not implemented. Update your FFmpeg "
2356             "version to the newest one from Git. If the problem still "
2357             "occurs, it means that your file has a feature which has not "
2358             "been implemented.\n", feature);
2359     if(want_sample)
2360         av_log_ask_for_sample(avc, NULL);
2361 }
2362
2363 void av_log_ask_for_sample(void *avc, const char *msg, ...)
2364 {
2365     va_list argument_list;
2366
2367     va_start(argument_list, msg);
2368
2369     if (msg)
2370         av_vlog(avc, AV_LOG_WARNING, msg, argument_list);
2371     av_log(avc, AV_LOG_WARNING, "If you want to help, upload a sample "
2372             "of this file to ftp://upload.ffmpeg.org/MPlayer/incoming/ "
2373             "and contact the ffmpeg-devel mailing list.\n");
2374
2375     va_end(argument_list);
2376 }
2377
2378 static AVHWAccel *first_hwaccel = NULL;
2379
2380 void av_register_hwaccel(AVHWAccel *hwaccel)
2381 {
2382     AVHWAccel **p = &first_hwaccel;
2383     while (*p)
2384         p = &(*p)->next;
2385     *p = hwaccel;
2386     hwaccel->next = NULL;
2387 }
2388
2389 AVHWAccel *av_hwaccel_next(AVHWAccel *hwaccel)
2390 {
2391     return hwaccel ? hwaccel->next : first_hwaccel;
2392 }
2393
2394 AVHWAccel *ff_find_hwaccel(enum CodecID codec_id, enum PixelFormat pix_fmt)
2395 {
2396     AVHWAccel *hwaccel=NULL;
2397
2398     while((hwaccel= av_hwaccel_next(hwaccel))){
2399         if (   hwaccel->id      == codec_id
2400             && hwaccel->pix_fmt == pix_fmt)
2401             return hwaccel;
2402     }
2403     return NULL;
2404 }
2405
2406 int av_lockmgr_register(int (*cb)(void **mutex, enum AVLockOp op))
2407 {
2408     if (ff_lockmgr_cb) {
2409         if (ff_lockmgr_cb(&codec_mutex, AV_LOCK_DESTROY))
2410             return -1;
2411         if (ff_lockmgr_cb(&avformat_mutex, AV_LOCK_DESTROY))
2412             return -1;
2413     }
2414
2415     ff_lockmgr_cb = cb;
2416
2417     if (ff_lockmgr_cb) {
2418         if (ff_lockmgr_cb(&codec_mutex, AV_LOCK_CREATE))
2419             return -1;
2420         if (ff_lockmgr_cb(&avformat_mutex, AV_LOCK_CREATE))
2421             return -1;
2422     }
2423     return 0;
2424 }
2425
2426 int avpriv_lock_avformat(void)
2427 {
2428     if (ff_lockmgr_cb) {
2429         if ((*ff_lockmgr_cb)(&avformat_mutex, AV_LOCK_OBTAIN))
2430             return -1;
2431     }
2432     return 0;
2433 }
2434
2435 int avpriv_unlock_avformat(void)
2436 {
2437     if (ff_lockmgr_cb) {
2438         if ((*ff_lockmgr_cb)(&avformat_mutex, AV_LOCK_RELEASE))
2439             return -1;
2440     }
2441     return 0;
2442 }
2443
2444 unsigned int avpriv_toupper4(unsigned int x)
2445 {
2446     return     toupper( x     &0xFF)
2447             + (toupper((x>>8 )&0xFF)<<8 )
2448             + (toupper((x>>16)&0xFF)<<16)
2449             + (toupper((x>>24)&0xFF)<<24);
2450 }
2451
2452 #if !HAVE_THREADS
2453
2454 int ff_thread_get_buffer(AVCodecContext *avctx, AVFrame *f)
2455 {
2456     f->owner = avctx;
2457
2458     ff_init_buffer_info(avctx, f);
2459
2460     return avctx->get_buffer(avctx, f);
2461 }
2462
2463 void ff_thread_release_buffer(AVCodecContext *avctx, AVFrame *f)
2464 {
2465     f->owner->release_buffer(f->owner, f);
2466 }
2467
2468 void ff_thread_finish_setup(AVCodecContext *avctx)
2469 {
2470 }
2471
2472 void ff_thread_report_progress(AVFrame *f, int progress, int field)
2473 {
2474 }
2475
2476 void ff_thread_await_progress(AVFrame *f, int progress, int field)
2477 {
2478 }
2479
2480 int ff_thread_can_start_frame(AVCodecContext *avctx)
2481 {
2482     return 1;
2483 }
2484
2485 #endif
2486
2487 enum AVMediaType avcodec_get_type(enum CodecID codec_id)
2488 {
2489     AVCodec *c= avcodec_find_decoder(codec_id);
2490     if(!c)
2491         c= avcodec_find_encoder(codec_id);
2492     if(c)
2493         return c->type;
2494
2495     if (codec_id <= CODEC_ID_NONE)
2496         return AVMEDIA_TYPE_UNKNOWN;
2497     else if (codec_id < CODEC_ID_FIRST_AUDIO)
2498         return AVMEDIA_TYPE_VIDEO;
2499     else if (codec_id < CODEC_ID_FIRST_SUBTITLE)
2500         return AVMEDIA_TYPE_AUDIO;
2501     else if (codec_id < CODEC_ID_FIRST_UNKNOWN)
2502         return AVMEDIA_TYPE_SUBTITLE;
2503
2504     return AVMEDIA_TYPE_UNKNOWN;
2505 }
2506
2507 int avcodec_is_open(AVCodecContext *s)
2508 {
2509     return !!s->internal;
2510 }