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