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