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