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