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