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