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