]> git.sesse.net Git - ffmpeg/blob - libavcodec/utils.c
lavc/v4l2_m2m_enc: Add missing braces around initializers.
[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 FFmpeg.
7  *
8  * FFmpeg 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  * FFmpeg 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 FFmpeg; 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/bprint.h"
33 #include "libavutil/channel_layout.h"
34 #include "libavutil/crc.h"
35 #include "libavutil/frame.h"
36 #include "libavutil/hwcontext.h"
37 #include "libavutil/internal.h"
38 #include "libavutil/mathematics.h"
39 #include "libavutil/mem_internal.h"
40 #include "libavutil/pixdesc.h"
41 #include "libavutil/imgutils.h"
42 #include "libavutil/samplefmt.h"
43 #include "libavutil/dict.h"
44 #include "libavutil/thread.h"
45 #include "avcodec.h"
46 #include "decode.h"
47 #include "hwaccel.h"
48 #include "libavutil/opt.h"
49 #include "mpegvideo.h"
50 #include "thread.h"
51 #include "frame_thread_encoder.h"
52 #include "internal.h"
53 #include "raw.h"
54 #include "bytestream.h"
55 #include "version.h"
56 #include <stdlib.h>
57 #include <stdarg.h>
58 #include <stdatomic.h>
59 #include <limits.h>
60 #include <float.h>
61 #if CONFIG_ICONV
62 # include <iconv.h>
63 #endif
64
65 #include "libavutil/ffversion.h"
66 const char av_codec_ffversion[] = "FFmpeg version " FFMPEG_VERSION;
67
68 static AVMutex codec_mutex = AV_MUTEX_INITIALIZER;
69
70 void av_fast_padded_malloc(void *ptr, unsigned int *size, size_t min_size)
71 {
72     uint8_t **p = ptr;
73     if (min_size > SIZE_MAX - AV_INPUT_BUFFER_PADDING_SIZE) {
74         av_freep(p);
75         *size = 0;
76         return;
77     }
78     if (!ff_fast_malloc(p, size, min_size + AV_INPUT_BUFFER_PADDING_SIZE, 1))
79         memset(*p + min_size, 0, AV_INPUT_BUFFER_PADDING_SIZE);
80 }
81
82 void av_fast_padded_mallocz(void *ptr, unsigned int *size, size_t min_size)
83 {
84     uint8_t **p = ptr;
85     if (min_size > SIZE_MAX - AV_INPUT_BUFFER_PADDING_SIZE) {
86         av_freep(p);
87         *size = 0;
88         return;
89     }
90     if (!ff_fast_malloc(p, size, min_size + AV_INPUT_BUFFER_PADDING_SIZE, 1))
91         memset(*p, 0, min_size + AV_INPUT_BUFFER_PADDING_SIZE);
92 }
93
94 int av_codec_is_encoder(const AVCodec *codec)
95 {
96     return codec && (codec->encode_sub || codec->encode2 ||codec->send_frame);
97 }
98
99 int av_codec_is_decoder(const AVCodec *codec)
100 {
101     return codec && (codec->decode || codec->receive_frame);
102 }
103
104 int ff_set_dimensions(AVCodecContext *s, int width, int height)
105 {
106     int ret = av_image_check_size2(width, height, s->max_pixels, AV_PIX_FMT_NONE, 0, s);
107
108     if (ret < 0)
109         width = height = 0;
110
111     s->coded_width  = width;
112     s->coded_height = height;
113     s->width        = AV_CEIL_RSHIFT(width,  s->lowres);
114     s->height       = AV_CEIL_RSHIFT(height, s->lowres);
115
116     return ret;
117 }
118
119 int ff_set_sar(AVCodecContext *avctx, AVRational sar)
120 {
121     int ret = av_image_check_sar(avctx->width, avctx->height, sar);
122
123     if (ret < 0) {
124         av_log(avctx, AV_LOG_WARNING, "ignoring invalid SAR: %d/%d\n",
125                sar.num, sar.den);
126         avctx->sample_aspect_ratio = (AVRational){ 0, 1 };
127         return ret;
128     } else {
129         avctx->sample_aspect_ratio = sar;
130     }
131     return 0;
132 }
133
134 int ff_side_data_update_matrix_encoding(AVFrame *frame,
135                                         enum AVMatrixEncoding matrix_encoding)
136 {
137     AVFrameSideData *side_data;
138     enum AVMatrixEncoding *data;
139
140     side_data = av_frame_get_side_data(frame, AV_FRAME_DATA_MATRIXENCODING);
141     if (!side_data)
142         side_data = av_frame_new_side_data(frame, AV_FRAME_DATA_MATRIXENCODING,
143                                            sizeof(enum AVMatrixEncoding));
144
145     if (!side_data)
146         return AVERROR(ENOMEM);
147
148     data  = (enum AVMatrixEncoding*)side_data->data;
149     *data = matrix_encoding;
150
151     return 0;
152 }
153
154 void avcodec_align_dimensions2(AVCodecContext *s, int *width, int *height,
155                                int linesize_align[AV_NUM_DATA_POINTERS])
156 {
157     int i;
158     int w_align = 1;
159     int h_align = 1;
160     AVPixFmtDescriptor const *desc = av_pix_fmt_desc_get(s->pix_fmt);
161
162     if (desc) {
163         w_align = 1 << desc->log2_chroma_w;
164         h_align = 1 << desc->log2_chroma_h;
165     }
166
167     switch (s->pix_fmt) {
168     case AV_PIX_FMT_YUV420P:
169     case AV_PIX_FMT_YUYV422:
170     case AV_PIX_FMT_YVYU422:
171     case AV_PIX_FMT_UYVY422:
172     case AV_PIX_FMT_YUV422P:
173     case AV_PIX_FMT_YUV440P:
174     case AV_PIX_FMT_YUV444P:
175     case AV_PIX_FMT_GBRP:
176     case AV_PIX_FMT_GBRAP:
177     case AV_PIX_FMT_GRAY8:
178     case AV_PIX_FMT_GRAY16BE:
179     case AV_PIX_FMT_GRAY16LE:
180     case AV_PIX_FMT_YUVJ420P:
181     case AV_PIX_FMT_YUVJ422P:
182     case AV_PIX_FMT_YUVJ440P:
183     case AV_PIX_FMT_YUVJ444P:
184     case AV_PIX_FMT_YUVA420P:
185     case AV_PIX_FMT_YUVA422P:
186     case AV_PIX_FMT_YUVA444P:
187     case AV_PIX_FMT_YUV420P9LE:
188     case AV_PIX_FMT_YUV420P9BE:
189     case AV_PIX_FMT_YUV420P10LE:
190     case AV_PIX_FMT_YUV420P10BE:
191     case AV_PIX_FMT_YUV420P12LE:
192     case AV_PIX_FMT_YUV420P12BE:
193     case AV_PIX_FMT_YUV420P14LE:
194     case AV_PIX_FMT_YUV420P14BE:
195     case AV_PIX_FMT_YUV420P16LE:
196     case AV_PIX_FMT_YUV420P16BE:
197     case AV_PIX_FMT_YUVA420P9LE:
198     case AV_PIX_FMT_YUVA420P9BE:
199     case AV_PIX_FMT_YUVA420P10LE:
200     case AV_PIX_FMT_YUVA420P10BE:
201     case AV_PIX_FMT_YUVA420P16LE:
202     case AV_PIX_FMT_YUVA420P16BE:
203     case AV_PIX_FMT_YUV422P9LE:
204     case AV_PIX_FMT_YUV422P9BE:
205     case AV_PIX_FMT_YUV422P10LE:
206     case AV_PIX_FMT_YUV422P10BE:
207     case AV_PIX_FMT_YUV422P12LE:
208     case AV_PIX_FMT_YUV422P12BE:
209     case AV_PIX_FMT_YUV422P14LE:
210     case AV_PIX_FMT_YUV422P14BE:
211     case AV_PIX_FMT_YUV422P16LE:
212     case AV_PIX_FMT_YUV422P16BE:
213     case AV_PIX_FMT_YUVA422P9LE:
214     case AV_PIX_FMT_YUVA422P9BE:
215     case AV_PIX_FMT_YUVA422P10LE:
216     case AV_PIX_FMT_YUVA422P10BE:
217     case AV_PIX_FMT_YUVA422P16LE:
218     case AV_PIX_FMT_YUVA422P16BE:
219     case AV_PIX_FMT_YUV440P10LE:
220     case AV_PIX_FMT_YUV440P10BE:
221     case AV_PIX_FMT_YUV440P12LE:
222     case AV_PIX_FMT_YUV440P12BE:
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_YUV444P12LE:
228     case AV_PIX_FMT_YUV444P12BE:
229     case AV_PIX_FMT_YUV444P14LE:
230     case AV_PIX_FMT_YUV444P14BE:
231     case AV_PIX_FMT_YUV444P16LE:
232     case AV_PIX_FMT_YUV444P16BE:
233     case AV_PIX_FMT_YUVA444P9LE:
234     case AV_PIX_FMT_YUVA444P9BE:
235     case AV_PIX_FMT_YUVA444P10LE:
236     case AV_PIX_FMT_YUVA444P10BE:
237     case AV_PIX_FMT_YUVA444P16LE:
238     case AV_PIX_FMT_YUVA444P16BE:
239     case AV_PIX_FMT_GBRP9LE:
240     case AV_PIX_FMT_GBRP9BE:
241     case AV_PIX_FMT_GBRP10LE:
242     case AV_PIX_FMT_GBRP10BE:
243     case AV_PIX_FMT_GBRP12LE:
244     case AV_PIX_FMT_GBRP12BE:
245     case AV_PIX_FMT_GBRP14LE:
246     case AV_PIX_FMT_GBRP14BE:
247     case AV_PIX_FMT_GBRP16LE:
248     case AV_PIX_FMT_GBRP16BE:
249     case AV_PIX_FMT_GBRAP12LE:
250     case AV_PIX_FMT_GBRAP12BE:
251     case AV_PIX_FMT_GBRAP16LE:
252     case AV_PIX_FMT_GBRAP16BE:
253         w_align = 16; //FIXME assume 16 pixel per macroblock
254         h_align = 16 * 2; // interlaced needs 2 macroblocks height
255         break;
256     case AV_PIX_FMT_YUV411P:
257     case AV_PIX_FMT_YUVJ411P:
258     case AV_PIX_FMT_UYYVYY411:
259         w_align = 32;
260         h_align = 16 * 2;
261         break;
262     case AV_PIX_FMT_YUV410P:
263         if (s->codec_id == AV_CODEC_ID_SVQ1) {
264             w_align = 64;
265             h_align = 64;
266         }
267         break;
268     case AV_PIX_FMT_RGB555:
269         if (s->codec_id == AV_CODEC_ID_RPZA) {
270             w_align = 4;
271             h_align = 4;
272         }
273         if (s->codec_id == AV_CODEC_ID_INTERPLAY_VIDEO) {
274             w_align = 8;
275             h_align = 8;
276         }
277         break;
278     case AV_PIX_FMT_PAL8:
279     case AV_PIX_FMT_BGR8:
280     case AV_PIX_FMT_RGB8:
281         if (s->codec_id == AV_CODEC_ID_SMC ||
282             s->codec_id == AV_CODEC_ID_CINEPAK) {
283             w_align = 4;
284             h_align = 4;
285         }
286         if (s->codec_id == AV_CODEC_ID_JV ||
287             s->codec_id == AV_CODEC_ID_INTERPLAY_VIDEO) {
288             w_align = 8;
289             h_align = 8;
290         }
291         break;
292     case AV_PIX_FMT_BGR24:
293         if ((s->codec_id == AV_CODEC_ID_MSZH) ||
294             (s->codec_id == AV_CODEC_ID_ZLIB)) {
295             w_align = 4;
296             h_align = 4;
297         }
298         break;
299     case AV_PIX_FMT_RGB24:
300         if (s->codec_id == AV_CODEC_ID_CINEPAK) {
301             w_align = 4;
302             h_align = 4;
303         }
304         break;
305     default:
306         break;
307     }
308
309     if (s->codec_id == AV_CODEC_ID_IFF_ILBM) {
310         w_align = FFMAX(w_align, 8);
311     }
312
313     *width  = FFALIGN(*width, w_align);
314     *height = FFALIGN(*height, h_align);
315     if (s->codec_id == AV_CODEC_ID_H264 || s->lowres ||
316         s->codec_id == AV_CODEC_ID_VP5  || s->codec_id == AV_CODEC_ID_VP6 ||
317         s->codec_id == AV_CODEC_ID_VP6F || s->codec_id == AV_CODEC_ID_VP6A
318     ) {
319         // some of the optimized chroma MC reads one line too much
320         // which is also done in mpeg decoders with lowres > 0
321         *height += 2;
322
323         // H.264 uses edge emulation for out of frame motion vectors, for this
324         // it requires a temporary area large enough to hold a 21x21 block,
325         // increasing witdth ensure that the temporary area is large enough,
326         // the next rounded up width is 32
327         *width = FFMAX(*width, 32);
328     }
329
330     for (i = 0; i < 4; i++)
331         linesize_align[i] = STRIDE_ALIGN;
332 }
333
334 void avcodec_align_dimensions(AVCodecContext *s, int *width, int *height)
335 {
336     const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(s->pix_fmt);
337     int chroma_shift = desc->log2_chroma_w;
338     int linesize_align[AV_NUM_DATA_POINTERS];
339     int align;
340
341     avcodec_align_dimensions2(s, width, height, linesize_align);
342     align               = FFMAX(linesize_align[0], linesize_align[3]);
343     linesize_align[1] <<= chroma_shift;
344     linesize_align[2] <<= chroma_shift;
345     align               = FFMAX3(align, linesize_align[1], linesize_align[2]);
346     *width              = FFALIGN(*width, align);
347 }
348
349 int avcodec_enum_to_chroma_pos(int *xpos, int *ypos, enum AVChromaLocation pos)
350 {
351     if (pos <= AVCHROMA_LOC_UNSPECIFIED || pos >= AVCHROMA_LOC_NB)
352         return AVERROR(EINVAL);
353     pos--;
354
355     *xpos = (pos&1) * 128;
356     *ypos = ((pos>>1)^(pos<4)) * 128;
357
358     return 0;
359 }
360
361 enum AVChromaLocation avcodec_chroma_pos_to_enum(int xpos, int ypos)
362 {
363     int pos, xout, yout;
364
365     for (pos = AVCHROMA_LOC_UNSPECIFIED + 1; pos < AVCHROMA_LOC_NB; pos++) {
366         if (avcodec_enum_to_chroma_pos(&xout, &yout, pos) == 0 && xout == xpos && yout == ypos)
367             return pos;
368     }
369     return AVCHROMA_LOC_UNSPECIFIED;
370 }
371
372 int avcodec_fill_audio_frame(AVFrame *frame, int nb_channels,
373                              enum AVSampleFormat sample_fmt, const uint8_t *buf,
374                              int buf_size, int align)
375 {
376     int ch, planar, needed_size, ret = 0;
377
378     needed_size = av_samples_get_buffer_size(NULL, nb_channels,
379                                              frame->nb_samples, sample_fmt,
380                                              align);
381     if (buf_size < needed_size)
382         return AVERROR(EINVAL);
383
384     planar = av_sample_fmt_is_planar(sample_fmt);
385     if (planar && nb_channels > AV_NUM_DATA_POINTERS) {
386         if (!(frame->extended_data = av_mallocz_array(nb_channels,
387                                                 sizeof(*frame->extended_data))))
388             return AVERROR(ENOMEM);
389     } else {
390         frame->extended_data = frame->data;
391     }
392
393     if ((ret = av_samples_fill_arrays(frame->extended_data, &frame->linesize[0],
394                                       (uint8_t *)(intptr_t)buf, nb_channels, frame->nb_samples,
395                                       sample_fmt, align)) < 0) {
396         if (frame->extended_data != frame->data)
397             av_freep(&frame->extended_data);
398         return ret;
399     }
400     if (frame->extended_data != frame->data) {
401         for (ch = 0; ch < AV_NUM_DATA_POINTERS; ch++)
402             frame->data[ch] = frame->extended_data[ch];
403     }
404
405     return ret;
406 }
407
408 void ff_color_frame(AVFrame *frame, const int c[4])
409 {
410     const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(frame->format);
411     int p, y, x;
412
413     av_assert0(desc->flags & AV_PIX_FMT_FLAG_PLANAR);
414
415     for (p = 0; p<desc->nb_components; p++) {
416         uint8_t *dst = frame->data[p];
417         int is_chroma = p == 1 || p == 2;
418         int bytes  = is_chroma ? AV_CEIL_RSHIFT(frame->width,  desc->log2_chroma_w) : frame->width;
419         int height = is_chroma ? AV_CEIL_RSHIFT(frame->height, desc->log2_chroma_h) : frame->height;
420         for (y = 0; y < height; y++) {
421             if (desc->comp[0].depth >= 9) {
422                 for (x = 0; x<bytes; x++)
423                     ((uint16_t*)dst)[x] = c[p];
424             }else
425                 memset(dst, c[p], bytes);
426             dst += frame->linesize[p];
427         }
428     }
429 }
430
431 int avcodec_default_execute(AVCodecContext *c, int (*func)(AVCodecContext *c2, void *arg2), void *arg, int *ret, int count, int size)
432 {
433     int i;
434
435     for (i = 0; i < count; i++) {
436         int r = func(c, (char *)arg + i * size);
437         if (ret)
438             ret[i] = r;
439     }
440     emms_c();
441     return 0;
442 }
443
444 int avcodec_default_execute2(AVCodecContext *c, int (*func)(AVCodecContext *c2, void *arg2, int jobnr, int threadnr), void *arg, int *ret, int count)
445 {
446     int i;
447
448     for (i = 0; i < count; i++) {
449         int r = func(c, arg, i, 0);
450         if (ret)
451             ret[i] = r;
452     }
453     emms_c();
454     return 0;
455 }
456
457 enum AVPixelFormat avpriv_find_pix_fmt(const PixelFormatTag *tags,
458                                        unsigned int fourcc)
459 {
460     while (tags->pix_fmt >= 0) {
461         if (tags->fourcc == fourcc)
462             return tags->pix_fmt;
463         tags++;
464     }
465     return AV_PIX_FMT_NONE;
466 }
467
468 #if FF_API_CODEC_GET_SET
469 MAKE_ACCESSORS(AVCodecContext, codec, AVRational, pkt_timebase)
470 MAKE_ACCESSORS(AVCodecContext, codec, const AVCodecDescriptor *, codec_descriptor)
471 MAKE_ACCESSORS(AVCodecContext, codec, int, lowres)
472 MAKE_ACCESSORS(AVCodecContext, codec, int, seek_preroll)
473 MAKE_ACCESSORS(AVCodecContext, codec, uint16_t*, chroma_intra_matrix)
474
475 unsigned av_codec_get_codec_properties(const AVCodecContext *codec)
476 {
477     return codec->properties;
478 }
479
480 int av_codec_get_max_lowres(const AVCodec *codec)
481 {
482     return codec->max_lowres;
483 }
484 #endif
485
486 int avpriv_codec_get_cap_skip_frame_fill_param(const AVCodec *codec){
487     return !!(codec->caps_internal & FF_CODEC_CAP_SKIP_FRAME_FILL_PARAM);
488 }
489
490 static int64_t get_bit_rate(AVCodecContext *ctx)
491 {
492     int64_t bit_rate;
493     int bits_per_sample;
494
495     switch (ctx->codec_type) {
496     case AVMEDIA_TYPE_VIDEO:
497     case AVMEDIA_TYPE_DATA:
498     case AVMEDIA_TYPE_SUBTITLE:
499     case AVMEDIA_TYPE_ATTACHMENT:
500         bit_rate = ctx->bit_rate;
501         break;
502     case AVMEDIA_TYPE_AUDIO:
503         bits_per_sample = av_get_bits_per_sample(ctx->codec_id);
504         bit_rate = bits_per_sample ? ctx->sample_rate * (int64_t)ctx->channels * bits_per_sample : ctx->bit_rate;
505         break;
506     default:
507         bit_rate = 0;
508         break;
509     }
510     return bit_rate;
511 }
512
513
514 static void ff_lock_avcodec(AVCodecContext *log_ctx, const AVCodec *codec)
515 {
516     if (!(codec->caps_internal & FF_CODEC_CAP_INIT_THREADSAFE) && codec->init)
517         ff_mutex_lock(&codec_mutex);
518 }
519
520 static void ff_unlock_avcodec(const AVCodec *codec)
521 {
522     if (!(codec->caps_internal & FF_CODEC_CAP_INIT_THREADSAFE) && codec->init)
523         ff_mutex_unlock(&codec_mutex);
524 }
525
526 int attribute_align_arg ff_codec_open2_recursive(AVCodecContext *avctx, const AVCodec *codec, AVDictionary **options)
527 {
528     int ret = 0;
529
530     ff_unlock_avcodec(codec);
531
532     ret = avcodec_open2(avctx, codec, options);
533
534     ff_lock_avcodec(avctx, codec);
535     return ret;
536 }
537
538 int attribute_align_arg avcodec_open2(AVCodecContext *avctx, const AVCodec *codec, AVDictionary **options)
539 {
540     int ret = 0;
541     AVDictionary *tmp = NULL;
542     const AVPixFmtDescriptor *pixdesc;
543
544     if (avcodec_is_open(avctx))
545         return 0;
546
547     if ((!codec && !avctx->codec)) {
548         av_log(avctx, AV_LOG_ERROR, "No codec provided to avcodec_open2()\n");
549         return AVERROR(EINVAL);
550     }
551     if ((codec && avctx->codec && codec != avctx->codec)) {
552         av_log(avctx, AV_LOG_ERROR, "This AVCodecContext was allocated for %s, "
553                                     "but %s passed to avcodec_open2()\n", avctx->codec->name, codec->name);
554         return AVERROR(EINVAL);
555     }
556     if (!codec)
557         codec = avctx->codec;
558
559     if (avctx->extradata_size < 0 || avctx->extradata_size >= FF_MAX_EXTRADATA_SIZE)
560         return AVERROR(EINVAL);
561
562     if (options)
563         av_dict_copy(&tmp, *options, 0);
564
565     ff_lock_avcodec(avctx, codec);
566
567     avctx->internal = av_mallocz(sizeof(*avctx->internal));
568     if (!avctx->internal) {
569         ret = AVERROR(ENOMEM);
570         goto end;
571     }
572
573     avctx->internal->pool = av_mallocz(sizeof(*avctx->internal->pool));
574     if (!avctx->internal->pool) {
575         ret = AVERROR(ENOMEM);
576         goto free_and_end;
577     }
578
579     avctx->internal->to_free = av_frame_alloc();
580     if (!avctx->internal->to_free) {
581         ret = AVERROR(ENOMEM);
582         goto free_and_end;
583     }
584
585     avctx->internal->compat_decode_frame = av_frame_alloc();
586     if (!avctx->internal->compat_decode_frame) {
587         ret = AVERROR(ENOMEM);
588         goto free_and_end;
589     }
590
591     avctx->internal->buffer_frame = av_frame_alloc();
592     if (!avctx->internal->buffer_frame) {
593         ret = AVERROR(ENOMEM);
594         goto free_and_end;
595     }
596
597     avctx->internal->buffer_pkt = av_packet_alloc();
598     if (!avctx->internal->buffer_pkt) {
599         ret = AVERROR(ENOMEM);
600         goto free_and_end;
601     }
602
603     avctx->internal->ds.in_pkt = av_packet_alloc();
604     if (!avctx->internal->ds.in_pkt) {
605         ret = AVERROR(ENOMEM);
606         goto free_and_end;
607     }
608
609     avctx->internal->last_pkt_props = av_packet_alloc();
610     if (!avctx->internal->last_pkt_props) {
611         ret = AVERROR(ENOMEM);
612         goto free_and_end;
613     }
614
615     avctx->internal->skip_samples_multiplier = 1;
616
617     if (codec->priv_data_size > 0) {
618         if (!avctx->priv_data) {
619             avctx->priv_data = av_mallocz(codec->priv_data_size);
620             if (!avctx->priv_data) {
621                 ret = AVERROR(ENOMEM);
622                 goto end;
623             }
624             if (codec->priv_class) {
625                 *(const AVClass **)avctx->priv_data = codec->priv_class;
626                 av_opt_set_defaults(avctx->priv_data);
627             }
628         }
629         if (codec->priv_class && (ret = av_opt_set_dict(avctx->priv_data, &tmp)) < 0)
630             goto free_and_end;
631     } else {
632         avctx->priv_data = NULL;
633     }
634     if ((ret = av_opt_set_dict(avctx, &tmp)) < 0)
635         goto free_and_end;
636
637     if (avctx->codec_whitelist && av_match_list(codec->name, avctx->codec_whitelist, ',') <= 0) {
638         av_log(avctx, AV_LOG_ERROR, "Codec (%s) not on whitelist \'%s\'\n", codec->name, avctx->codec_whitelist);
639         ret = AVERROR(EINVAL);
640         goto free_and_end;
641     }
642
643     // only call ff_set_dimensions() for non H.264/VP6F/DXV codecs so as not to overwrite previously setup dimensions
644     if (!(avctx->coded_width && avctx->coded_height && avctx->width && avctx->height &&
645           (avctx->codec_id == AV_CODEC_ID_H264 || avctx->codec_id == AV_CODEC_ID_VP6F || avctx->codec_id == AV_CODEC_ID_DXV))) {
646     if (avctx->coded_width && avctx->coded_height)
647         ret = ff_set_dimensions(avctx, avctx->coded_width, avctx->coded_height);
648     else if (avctx->width && avctx->height)
649         ret = ff_set_dimensions(avctx, avctx->width, avctx->height);
650     if (ret < 0)
651         goto free_and_end;
652     }
653
654     if ((avctx->coded_width || avctx->coded_height || avctx->width || avctx->height)
655         && (  av_image_check_size2(avctx->coded_width, avctx->coded_height, avctx->max_pixels, AV_PIX_FMT_NONE, 0, avctx) < 0
656            || av_image_check_size2(avctx->width,       avctx->height,       avctx->max_pixels, AV_PIX_FMT_NONE, 0, avctx) < 0)) {
657         av_log(avctx, AV_LOG_WARNING, "Ignoring invalid width/height values\n");
658         ff_set_dimensions(avctx, 0, 0);
659     }
660
661     if (avctx->width > 0 && avctx->height > 0) {
662         if (av_image_check_sar(avctx->width, avctx->height,
663                                avctx->sample_aspect_ratio) < 0) {
664             av_log(avctx, AV_LOG_WARNING, "ignoring invalid SAR: %u/%u\n",
665                    avctx->sample_aspect_ratio.num,
666                    avctx->sample_aspect_ratio.den);
667             avctx->sample_aspect_ratio = (AVRational){ 0, 1 };
668         }
669     }
670
671     /* if the decoder init function was already called previously,
672      * free the already allocated subtitle_header before overwriting it */
673     if (av_codec_is_decoder(codec))
674         av_freep(&avctx->subtitle_header);
675
676     if (avctx->channels > FF_SANE_NB_CHANNELS) {
677         av_log(avctx, AV_LOG_ERROR, "Too many channels: %d\n", avctx->channels);
678         ret = AVERROR(EINVAL);
679         goto free_and_end;
680     }
681
682     avctx->codec = codec;
683     if ((avctx->codec_type == AVMEDIA_TYPE_UNKNOWN || avctx->codec_type == codec->type) &&
684         avctx->codec_id == AV_CODEC_ID_NONE) {
685         avctx->codec_type = codec->type;
686         avctx->codec_id   = codec->id;
687     }
688     if (avctx->codec_id != codec->id || (avctx->codec_type != codec->type
689                                          && avctx->codec_type != AVMEDIA_TYPE_ATTACHMENT)) {
690         av_log(avctx, AV_LOG_ERROR, "Codec type or id mismatches\n");
691         ret = AVERROR(EINVAL);
692         goto free_and_end;
693     }
694     avctx->frame_number = 0;
695     avctx->codec_descriptor = avcodec_descriptor_get(avctx->codec_id);
696
697     if ((avctx->codec->capabilities & AV_CODEC_CAP_EXPERIMENTAL) &&
698         avctx->strict_std_compliance > FF_COMPLIANCE_EXPERIMENTAL) {
699         const char *codec_string = av_codec_is_encoder(codec) ? "encoder" : "decoder";
700         AVCodec *codec2;
701         av_log(avctx, AV_LOG_ERROR,
702                "The %s '%s' is experimental but experimental codecs are not enabled, "
703                "add '-strict %d' if you want to use it.\n",
704                codec_string, codec->name, FF_COMPLIANCE_EXPERIMENTAL);
705         codec2 = av_codec_is_encoder(codec) ? avcodec_find_encoder(codec->id) : avcodec_find_decoder(codec->id);
706         if (!(codec2->capabilities & AV_CODEC_CAP_EXPERIMENTAL))
707             av_log(avctx, AV_LOG_ERROR, "Alternatively use the non experimental %s '%s'.\n",
708                 codec_string, codec2->name);
709         ret = AVERROR_EXPERIMENTAL;
710         goto free_and_end;
711     }
712
713     if (avctx->codec_type == AVMEDIA_TYPE_AUDIO &&
714         (!avctx->time_base.num || !avctx->time_base.den)) {
715         avctx->time_base.num = 1;
716         avctx->time_base.den = avctx->sample_rate;
717     }
718
719     if (!HAVE_THREADS)
720         av_log(avctx, AV_LOG_WARNING, "Warning: not compiled with thread support, using thread emulation\n");
721
722     if (CONFIG_FRAME_THREAD_ENCODER && av_codec_is_encoder(avctx->codec)) {
723         ff_unlock_avcodec(codec); //we will instantiate a few encoders thus kick the counter to prevent false detection of a problem
724         ret = ff_frame_thread_encoder_init(avctx, options ? *options : NULL);
725         ff_lock_avcodec(avctx, codec);
726         if (ret < 0)
727             goto free_and_end;
728     }
729
730     if (av_codec_is_decoder(avctx->codec)) {
731         ret = ff_decode_bsfs_init(avctx);
732         if (ret < 0)
733             goto free_and_end;
734     }
735
736     if (HAVE_THREADS
737         && !(avctx->internal->frame_thread_encoder && (avctx->active_thread_type&FF_THREAD_FRAME))) {
738         ret = ff_thread_init(avctx);
739         if (ret < 0) {
740             goto free_and_end;
741         }
742     }
743     if (!HAVE_THREADS && !(codec->capabilities & AV_CODEC_CAP_AUTO_THREADS))
744         avctx->thread_count = 1;
745
746     if (avctx->codec->max_lowres < avctx->lowres || avctx->lowres < 0) {
747         av_log(avctx, AV_LOG_WARNING, "The maximum value for lowres supported by the decoder is %d\n",
748                avctx->codec->max_lowres);
749         avctx->lowres = avctx->codec->max_lowres;
750     }
751
752     if (av_codec_is_encoder(avctx->codec)) {
753         int i;
754 #if FF_API_CODED_FRAME
755 FF_DISABLE_DEPRECATION_WARNINGS
756         avctx->coded_frame = av_frame_alloc();
757         if (!avctx->coded_frame) {
758             ret = AVERROR(ENOMEM);
759             goto free_and_end;
760         }
761 FF_ENABLE_DEPRECATION_WARNINGS
762 #endif
763
764         if (avctx->time_base.num <= 0 || avctx->time_base.den <= 0) {
765             av_log(avctx, AV_LOG_ERROR, "The encoder timebase is not set.\n");
766             ret = AVERROR(EINVAL);
767             goto free_and_end;
768         }
769
770         if (avctx->codec->sample_fmts) {
771             for (i = 0; avctx->codec->sample_fmts[i] != AV_SAMPLE_FMT_NONE; i++) {
772                 if (avctx->sample_fmt == avctx->codec->sample_fmts[i])
773                     break;
774                 if (avctx->channels == 1 &&
775                     av_get_planar_sample_fmt(avctx->sample_fmt) ==
776                     av_get_planar_sample_fmt(avctx->codec->sample_fmts[i])) {
777                     avctx->sample_fmt = avctx->codec->sample_fmts[i];
778                     break;
779                 }
780             }
781             if (avctx->codec->sample_fmts[i] == AV_SAMPLE_FMT_NONE) {
782                 char buf[128];
783                 snprintf(buf, sizeof(buf), "%d", avctx->sample_fmt);
784                 av_log(avctx, AV_LOG_ERROR, "Specified sample format %s is invalid or not supported\n",
785                        (char *)av_x_if_null(av_get_sample_fmt_name(avctx->sample_fmt), buf));
786                 ret = AVERROR(EINVAL);
787                 goto free_and_end;
788             }
789         }
790         if (avctx->codec->pix_fmts) {
791             for (i = 0; avctx->codec->pix_fmts[i] != AV_PIX_FMT_NONE; i++)
792                 if (avctx->pix_fmt == avctx->codec->pix_fmts[i])
793                     break;
794             if (avctx->codec->pix_fmts[i] == AV_PIX_FMT_NONE
795                 && !((avctx->codec_id == AV_CODEC_ID_MJPEG || avctx->codec_id == AV_CODEC_ID_LJPEG)
796                      && avctx->strict_std_compliance <= FF_COMPLIANCE_UNOFFICIAL)) {
797                 char buf[128];
798                 snprintf(buf, sizeof(buf), "%d", avctx->pix_fmt);
799                 av_log(avctx, AV_LOG_ERROR, "Specified pixel format %s is invalid or not supported\n",
800                        (char *)av_x_if_null(av_get_pix_fmt_name(avctx->pix_fmt), buf));
801                 ret = AVERROR(EINVAL);
802                 goto free_and_end;
803             }
804             if (avctx->codec->pix_fmts[i] == AV_PIX_FMT_YUVJ420P ||
805                 avctx->codec->pix_fmts[i] == AV_PIX_FMT_YUVJ411P ||
806                 avctx->codec->pix_fmts[i] == AV_PIX_FMT_YUVJ422P ||
807                 avctx->codec->pix_fmts[i] == AV_PIX_FMT_YUVJ440P ||
808                 avctx->codec->pix_fmts[i] == AV_PIX_FMT_YUVJ444P)
809                 avctx->color_range = AVCOL_RANGE_JPEG;
810         }
811         if (avctx->codec->supported_samplerates) {
812             for (i = 0; avctx->codec->supported_samplerates[i] != 0; i++)
813                 if (avctx->sample_rate == avctx->codec->supported_samplerates[i])
814                     break;
815             if (avctx->codec->supported_samplerates[i] == 0) {
816                 av_log(avctx, AV_LOG_ERROR, "Specified sample rate %d is not supported\n",
817                        avctx->sample_rate);
818                 ret = AVERROR(EINVAL);
819                 goto free_and_end;
820             }
821         }
822         if (avctx->sample_rate < 0) {
823             av_log(avctx, AV_LOG_ERROR, "Specified sample rate %d is not supported\n",
824                     avctx->sample_rate);
825             ret = AVERROR(EINVAL);
826             goto free_and_end;
827         }
828         if (avctx->codec->channel_layouts) {
829             if (!avctx->channel_layout) {
830                 av_log(avctx, AV_LOG_WARNING, "Channel layout not specified\n");
831             } else {
832                 for (i = 0; avctx->codec->channel_layouts[i] != 0; i++)
833                     if (avctx->channel_layout == avctx->codec->channel_layouts[i])
834                         break;
835                 if (avctx->codec->channel_layouts[i] == 0) {
836                     char buf[512];
837                     av_get_channel_layout_string(buf, sizeof(buf), -1, avctx->channel_layout);
838                     av_log(avctx, AV_LOG_ERROR, "Specified channel layout '%s' is not supported\n", buf);
839                     ret = AVERROR(EINVAL);
840                     goto free_and_end;
841                 }
842             }
843         }
844         if (avctx->channel_layout && avctx->channels) {
845             int channels = av_get_channel_layout_nb_channels(avctx->channel_layout);
846             if (channels != avctx->channels) {
847                 char buf[512];
848                 av_get_channel_layout_string(buf, sizeof(buf), -1, avctx->channel_layout);
849                 av_log(avctx, AV_LOG_ERROR,
850                        "Channel layout '%s' with %d channels does not match number of specified channels %d\n",
851                        buf, channels, avctx->channels);
852                 ret = AVERROR(EINVAL);
853                 goto free_and_end;
854             }
855         } else if (avctx->channel_layout) {
856             avctx->channels = av_get_channel_layout_nb_channels(avctx->channel_layout);
857         }
858         if (avctx->channels < 0) {
859             av_log(avctx, AV_LOG_ERROR, "Specified number of channels %d is not supported\n",
860                     avctx->channels);
861             ret = AVERROR(EINVAL);
862             goto free_and_end;
863         }
864         if(avctx->codec_type == AVMEDIA_TYPE_VIDEO) {
865             pixdesc = av_pix_fmt_desc_get(avctx->pix_fmt);
866             if (    avctx->bits_per_raw_sample < 0
867                 || (avctx->bits_per_raw_sample > 8 && pixdesc->comp[0].depth <= 8)) {
868                 av_log(avctx, AV_LOG_WARNING, "Specified bit depth %d not possible with the specified pixel formats depth %d\n",
869                     avctx->bits_per_raw_sample, pixdesc->comp[0].depth);
870                 avctx->bits_per_raw_sample = pixdesc->comp[0].depth;
871             }
872             if (avctx->width <= 0 || avctx->height <= 0) {
873                 av_log(avctx, AV_LOG_ERROR, "dimensions not set\n");
874                 ret = AVERROR(EINVAL);
875                 goto free_and_end;
876             }
877         }
878         if (   (avctx->codec_type == AVMEDIA_TYPE_VIDEO || avctx->codec_type == AVMEDIA_TYPE_AUDIO)
879             && avctx->bit_rate>0 && avctx->bit_rate<1000) {
880             av_log(avctx, AV_LOG_WARNING, "Bitrate %"PRId64" is extremely low, maybe you mean %"PRId64"k\n", avctx->bit_rate, avctx->bit_rate);
881         }
882
883         if (!avctx->rc_initial_buffer_occupancy)
884             avctx->rc_initial_buffer_occupancy = avctx->rc_buffer_size * 3LL / 4;
885
886         if (avctx->ticks_per_frame && avctx->time_base.num &&
887             avctx->ticks_per_frame > INT_MAX / avctx->time_base.num) {
888             av_log(avctx, AV_LOG_ERROR,
889                    "ticks_per_frame %d too large for the timebase %d/%d.",
890                    avctx->ticks_per_frame,
891                    avctx->time_base.num,
892                    avctx->time_base.den);
893             goto free_and_end;
894         }
895
896         if (avctx->hw_frames_ctx) {
897             AVHWFramesContext *frames_ctx = (AVHWFramesContext*)avctx->hw_frames_ctx->data;
898             if (frames_ctx->format != avctx->pix_fmt) {
899                 av_log(avctx, AV_LOG_ERROR,
900                        "Mismatching AVCodecContext.pix_fmt and AVHWFramesContext.format\n");
901                 ret = AVERROR(EINVAL);
902                 goto free_and_end;
903             }
904             if (avctx->sw_pix_fmt != AV_PIX_FMT_NONE &&
905                 avctx->sw_pix_fmt != frames_ctx->sw_format) {
906                 av_log(avctx, AV_LOG_ERROR,
907                        "Mismatching AVCodecContext.sw_pix_fmt (%s) "
908                        "and AVHWFramesContext.sw_format (%s)\n",
909                        av_get_pix_fmt_name(avctx->sw_pix_fmt),
910                        av_get_pix_fmt_name(frames_ctx->sw_format));
911                 ret = AVERROR(EINVAL);
912                 goto free_and_end;
913             }
914             avctx->sw_pix_fmt = frames_ctx->sw_format;
915         }
916     }
917
918     avctx->pts_correction_num_faulty_pts =
919     avctx->pts_correction_num_faulty_dts = 0;
920     avctx->pts_correction_last_pts =
921     avctx->pts_correction_last_dts = INT64_MIN;
922
923     if (   !CONFIG_GRAY && avctx->flags & AV_CODEC_FLAG_GRAY
924         && avctx->codec_descriptor->type == AVMEDIA_TYPE_VIDEO)
925         av_log(avctx, AV_LOG_WARNING,
926                "gray decoding requested but not enabled at configuration time\n");
927
928     if (   avctx->codec->init && (!(avctx->active_thread_type&FF_THREAD_FRAME)
929         || avctx->internal->frame_thread_encoder)) {
930         ret = avctx->codec->init(avctx);
931         if (ret < 0) {
932             goto free_and_end;
933         }
934     }
935
936     ret=0;
937
938     if (av_codec_is_decoder(avctx->codec)) {
939         if (!avctx->bit_rate)
940             avctx->bit_rate = get_bit_rate(avctx);
941         /* validate channel layout from the decoder */
942         if (avctx->channel_layout) {
943             int channels = av_get_channel_layout_nb_channels(avctx->channel_layout);
944             if (!avctx->channels)
945                 avctx->channels = channels;
946             else if (channels != avctx->channels) {
947                 char buf[512];
948                 av_get_channel_layout_string(buf, sizeof(buf), -1, avctx->channel_layout);
949                 av_log(avctx, AV_LOG_WARNING,
950                        "Channel layout '%s' with %d channels does not match specified number of channels %d: "
951                        "ignoring specified channel layout\n",
952                        buf, channels, avctx->channels);
953                 avctx->channel_layout = 0;
954             }
955         }
956         if (avctx->channels && avctx->channels < 0 ||
957             avctx->channels > FF_SANE_NB_CHANNELS) {
958             ret = AVERROR(EINVAL);
959             goto free_and_end;
960         }
961         if (avctx->sub_charenc) {
962             if (avctx->codec_type != AVMEDIA_TYPE_SUBTITLE) {
963                 av_log(avctx, AV_LOG_ERROR, "Character encoding is only "
964                        "supported with subtitles codecs\n");
965                 ret = AVERROR(EINVAL);
966                 goto free_and_end;
967             } else if (avctx->codec_descriptor->props & AV_CODEC_PROP_BITMAP_SUB) {
968                 av_log(avctx, AV_LOG_WARNING, "Codec '%s' is bitmap-based, "
969                        "subtitles character encoding will be ignored\n",
970                        avctx->codec_descriptor->name);
971                 avctx->sub_charenc_mode = FF_SUB_CHARENC_MODE_DO_NOTHING;
972             } else {
973                 /* input character encoding is set for a text based subtitle
974                  * codec at this point */
975                 if (avctx->sub_charenc_mode == FF_SUB_CHARENC_MODE_AUTOMATIC)
976                     avctx->sub_charenc_mode = FF_SUB_CHARENC_MODE_PRE_DECODER;
977
978                 if (avctx->sub_charenc_mode == FF_SUB_CHARENC_MODE_PRE_DECODER) {
979 #if CONFIG_ICONV
980                     iconv_t cd = iconv_open("UTF-8", avctx->sub_charenc);
981                     if (cd == (iconv_t)-1) {
982                         ret = AVERROR(errno);
983                         av_log(avctx, AV_LOG_ERROR, "Unable to open iconv context "
984                                "with input character encoding \"%s\"\n", avctx->sub_charenc);
985                         goto free_and_end;
986                     }
987                     iconv_close(cd);
988 #else
989                     av_log(avctx, AV_LOG_ERROR, "Character encoding subtitles "
990                            "conversion needs a libavcodec built with iconv support "
991                            "for this codec\n");
992                     ret = AVERROR(ENOSYS);
993                     goto free_and_end;
994 #endif
995                 }
996             }
997         }
998
999 #if FF_API_AVCTX_TIMEBASE
1000         if (avctx->framerate.num > 0 && avctx->framerate.den > 0)
1001             avctx->time_base = av_inv_q(av_mul_q(avctx->framerate, (AVRational){avctx->ticks_per_frame, 1}));
1002 #endif
1003     }
1004     if (codec->priv_data_size > 0 && avctx->priv_data && codec->priv_class) {
1005         av_assert0(*(const AVClass **)avctx->priv_data == codec->priv_class);
1006     }
1007
1008 end:
1009     ff_unlock_avcodec(codec);
1010     if (options) {
1011         av_dict_free(options);
1012         *options = tmp;
1013     }
1014
1015     return ret;
1016 free_and_end:
1017     if (avctx->codec &&
1018         (avctx->codec->caps_internal & FF_CODEC_CAP_INIT_CLEANUP))
1019         avctx->codec->close(avctx);
1020
1021     if (codec->priv_class && codec->priv_data_size)
1022         av_opt_free(avctx->priv_data);
1023     av_opt_free(avctx);
1024
1025 #if FF_API_CODED_FRAME
1026 FF_DISABLE_DEPRECATION_WARNINGS
1027     av_frame_free(&avctx->coded_frame);
1028 FF_ENABLE_DEPRECATION_WARNINGS
1029 #endif
1030
1031     av_dict_free(&tmp);
1032     av_freep(&avctx->priv_data);
1033     if (avctx->internal) {
1034         av_frame_free(&avctx->internal->to_free);
1035         av_frame_free(&avctx->internal->compat_decode_frame);
1036         av_frame_free(&avctx->internal->buffer_frame);
1037         av_packet_free(&avctx->internal->buffer_pkt);
1038         av_packet_free(&avctx->internal->last_pkt_props);
1039
1040         av_packet_free(&avctx->internal->ds.in_pkt);
1041         ff_decode_bsfs_uninit(avctx);
1042
1043         av_freep(&avctx->internal->pool);
1044     }
1045     av_freep(&avctx->internal);
1046     avctx->codec = NULL;
1047     goto end;
1048 }
1049
1050 void avsubtitle_free(AVSubtitle *sub)
1051 {
1052     int i;
1053
1054     for (i = 0; i < sub->num_rects; i++) {
1055         av_freep(&sub->rects[i]->data[0]);
1056         av_freep(&sub->rects[i]->data[1]);
1057         av_freep(&sub->rects[i]->data[2]);
1058         av_freep(&sub->rects[i]->data[3]);
1059         av_freep(&sub->rects[i]->text);
1060         av_freep(&sub->rects[i]->ass);
1061         av_freep(&sub->rects[i]);
1062     }
1063
1064     av_freep(&sub->rects);
1065
1066     memset(sub, 0, sizeof(*sub));
1067 }
1068
1069 av_cold int avcodec_close(AVCodecContext *avctx)
1070 {
1071     int i;
1072
1073     if (!avctx)
1074         return 0;
1075
1076     if (avcodec_is_open(avctx)) {
1077         FramePool *pool = avctx->internal->pool;
1078         if (CONFIG_FRAME_THREAD_ENCODER &&
1079             avctx->internal->frame_thread_encoder && avctx->thread_count > 1) {
1080             ff_frame_thread_encoder_free(avctx);
1081         }
1082         if (HAVE_THREADS && avctx->internal->thread_ctx)
1083             ff_thread_free(avctx);
1084         if (avctx->codec && avctx->codec->close)
1085             avctx->codec->close(avctx);
1086         avctx->internal->byte_buffer_size = 0;
1087         av_freep(&avctx->internal->byte_buffer);
1088         av_frame_free(&avctx->internal->to_free);
1089         av_frame_free(&avctx->internal->compat_decode_frame);
1090         av_frame_free(&avctx->internal->buffer_frame);
1091         av_packet_free(&avctx->internal->buffer_pkt);
1092         av_packet_free(&avctx->internal->last_pkt_props);
1093
1094         av_packet_free(&avctx->internal->ds.in_pkt);
1095
1096         for (i = 0; i < FF_ARRAY_ELEMS(pool->pools); i++)
1097             av_buffer_pool_uninit(&pool->pools[i]);
1098         av_freep(&avctx->internal->pool);
1099
1100         if (avctx->hwaccel && avctx->hwaccel->uninit)
1101             avctx->hwaccel->uninit(avctx);
1102         av_freep(&avctx->internal->hwaccel_priv_data);
1103
1104         ff_decode_bsfs_uninit(avctx);
1105
1106         av_freep(&avctx->internal);
1107     }
1108
1109     for (i = 0; i < avctx->nb_coded_side_data; i++)
1110         av_freep(&avctx->coded_side_data[i].data);
1111     av_freep(&avctx->coded_side_data);
1112     avctx->nb_coded_side_data = 0;
1113
1114     av_buffer_unref(&avctx->hw_frames_ctx);
1115     av_buffer_unref(&avctx->hw_device_ctx);
1116
1117     if (avctx->priv_data && avctx->codec && avctx->codec->priv_class)
1118         av_opt_free(avctx->priv_data);
1119     av_opt_free(avctx);
1120     av_freep(&avctx->priv_data);
1121     if (av_codec_is_encoder(avctx->codec)) {
1122         av_freep(&avctx->extradata);
1123 #if FF_API_CODED_FRAME
1124 FF_DISABLE_DEPRECATION_WARNINGS
1125         av_frame_free(&avctx->coded_frame);
1126 FF_ENABLE_DEPRECATION_WARNINGS
1127 #endif
1128     }
1129     avctx->codec = NULL;
1130     avctx->active_thread_type = 0;
1131
1132     return 0;
1133 }
1134
1135 const char *avcodec_get_name(enum AVCodecID id)
1136 {
1137     const AVCodecDescriptor *cd;
1138     AVCodec *codec;
1139
1140     if (id == AV_CODEC_ID_NONE)
1141         return "none";
1142     cd = avcodec_descriptor_get(id);
1143     if (cd)
1144         return cd->name;
1145     av_log(NULL, AV_LOG_WARNING, "Codec 0x%x is not in the full list.\n", id);
1146     codec = avcodec_find_decoder(id);
1147     if (codec)
1148         return codec->name;
1149     codec = avcodec_find_encoder(id);
1150     if (codec)
1151         return codec->name;
1152     return "unknown_codec";
1153 }
1154
1155 size_t av_get_codec_tag_string(char *buf, size_t buf_size, unsigned int codec_tag)
1156 {
1157     int i, len, ret = 0;
1158
1159 #define TAG_PRINT(x)                                              \
1160     (((x) >= '0' && (x) <= '9') ||                                \
1161      ((x) >= 'a' && (x) <= 'z') || ((x) >= 'A' && (x) <= 'Z') ||  \
1162      ((x) == '.' || (x) == ' ' || (x) == '-' || (x) == '_'))
1163
1164     for (i = 0; i < 4; i++) {
1165         len = snprintf(buf, buf_size,
1166                        TAG_PRINT(codec_tag & 0xFF) ? "%c" : "[%d]", codec_tag & 0xFF);
1167         buf        += len;
1168         buf_size    = buf_size > len ? buf_size - len : 0;
1169         ret        += len;
1170         codec_tag >>= 8;
1171     }
1172     return ret;
1173 }
1174
1175 void avcodec_string(char *buf, int buf_size, AVCodecContext *enc, int encode)
1176 {
1177     const char *codec_type;
1178     const char *codec_name;
1179     const char *profile = NULL;
1180     int64_t bitrate;
1181     int new_line = 0;
1182     AVRational display_aspect_ratio;
1183     const char *separator = enc->dump_separator ? (const char *)enc->dump_separator : ", ";
1184
1185     if (!buf || buf_size <= 0)
1186         return;
1187     codec_type = av_get_media_type_string(enc->codec_type);
1188     codec_name = avcodec_get_name(enc->codec_id);
1189     profile = avcodec_profile_name(enc->codec_id, enc->profile);
1190
1191     snprintf(buf, buf_size, "%s: %s", codec_type ? codec_type : "unknown",
1192              codec_name);
1193     buf[0] ^= 'a' ^ 'A'; /* first letter in uppercase */
1194
1195     if (enc->codec && strcmp(enc->codec->name, codec_name))
1196         snprintf(buf + strlen(buf), buf_size - strlen(buf), " (%s)", enc->codec->name);
1197
1198     if (profile)
1199         snprintf(buf + strlen(buf), buf_size - strlen(buf), " (%s)", profile);
1200     if (   enc->codec_type == AVMEDIA_TYPE_VIDEO
1201         && av_log_get_level() >= AV_LOG_VERBOSE
1202         && enc->refs)
1203         snprintf(buf + strlen(buf), buf_size - strlen(buf),
1204                  ", %d reference frame%s",
1205                  enc->refs, enc->refs > 1 ? "s" : "");
1206
1207     if (enc->codec_tag)
1208         snprintf(buf + strlen(buf), buf_size - strlen(buf), " (%s / 0x%04X)",
1209                  av_fourcc2str(enc->codec_tag), enc->codec_tag);
1210
1211     switch (enc->codec_type) {
1212     case AVMEDIA_TYPE_VIDEO:
1213         {
1214             char detail[256] = "(";
1215
1216             av_strlcat(buf, separator, buf_size);
1217
1218             snprintf(buf + strlen(buf), buf_size - strlen(buf),
1219                  "%s", enc->pix_fmt == AV_PIX_FMT_NONE ? "none" :
1220                      av_get_pix_fmt_name(enc->pix_fmt));
1221             if (enc->bits_per_raw_sample && enc->pix_fmt != AV_PIX_FMT_NONE &&
1222                 enc->bits_per_raw_sample < av_pix_fmt_desc_get(enc->pix_fmt)->comp[0].depth)
1223                 av_strlcatf(detail, sizeof(detail), "%d bpc, ", enc->bits_per_raw_sample);
1224             if (enc->color_range != AVCOL_RANGE_UNSPECIFIED)
1225                 av_strlcatf(detail, sizeof(detail), "%s, ",
1226                             av_color_range_name(enc->color_range));
1227
1228             if (enc->colorspace != AVCOL_SPC_UNSPECIFIED ||
1229                 enc->color_primaries != AVCOL_PRI_UNSPECIFIED ||
1230                 enc->color_trc != AVCOL_TRC_UNSPECIFIED) {
1231                 if (enc->colorspace != (int)enc->color_primaries ||
1232                     enc->colorspace != (int)enc->color_trc) {
1233                     new_line = 1;
1234                     av_strlcatf(detail, sizeof(detail), "%s/%s/%s, ",
1235                                 av_color_space_name(enc->colorspace),
1236                                 av_color_primaries_name(enc->color_primaries),
1237                                 av_color_transfer_name(enc->color_trc));
1238                 } else
1239                     av_strlcatf(detail, sizeof(detail), "%s, ",
1240                                 av_get_colorspace_name(enc->colorspace));
1241             }
1242
1243             if (enc->field_order != AV_FIELD_UNKNOWN) {
1244                 const char *field_order = "progressive";
1245                 if (enc->field_order == AV_FIELD_TT)
1246                     field_order = "top first";
1247                 else if (enc->field_order == AV_FIELD_BB)
1248                     field_order = "bottom first";
1249                 else if (enc->field_order == AV_FIELD_TB)
1250                     field_order = "top coded first (swapped)";
1251                 else if (enc->field_order == AV_FIELD_BT)
1252                     field_order = "bottom coded first (swapped)";
1253
1254                 av_strlcatf(detail, sizeof(detail), "%s, ", field_order);
1255             }
1256
1257             if (av_log_get_level() >= AV_LOG_VERBOSE &&
1258                 enc->chroma_sample_location != AVCHROMA_LOC_UNSPECIFIED)
1259                 av_strlcatf(detail, sizeof(detail), "%s, ",
1260                             av_chroma_location_name(enc->chroma_sample_location));
1261
1262             if (strlen(detail) > 1) {
1263                 detail[strlen(detail) - 2] = 0;
1264                 av_strlcatf(buf, buf_size, "%s)", detail);
1265             }
1266         }
1267
1268         if (enc->width) {
1269             av_strlcat(buf, new_line ? separator : ", ", buf_size);
1270
1271             snprintf(buf + strlen(buf), buf_size - strlen(buf),
1272                      "%dx%d",
1273                      enc->width, enc->height);
1274
1275             if (av_log_get_level() >= AV_LOG_VERBOSE &&
1276                 (enc->width != enc->coded_width ||
1277                  enc->height != enc->coded_height))
1278                 snprintf(buf + strlen(buf), buf_size - strlen(buf),
1279                          " (%dx%d)", enc->coded_width, enc->coded_height);
1280
1281             if (enc->sample_aspect_ratio.num) {
1282                 av_reduce(&display_aspect_ratio.num, &display_aspect_ratio.den,
1283                           enc->width * (int64_t)enc->sample_aspect_ratio.num,
1284                           enc->height * (int64_t)enc->sample_aspect_ratio.den,
1285                           1024 * 1024);
1286                 snprintf(buf + strlen(buf), buf_size - strlen(buf),
1287                          " [SAR %d:%d DAR %d:%d]",
1288                          enc->sample_aspect_ratio.num, enc->sample_aspect_ratio.den,
1289                          display_aspect_ratio.num, display_aspect_ratio.den);
1290             }
1291             if (av_log_get_level() >= AV_LOG_DEBUG) {
1292                 int g = av_gcd(enc->time_base.num, enc->time_base.den);
1293                 snprintf(buf + strlen(buf), buf_size - strlen(buf),
1294                          ", %d/%d",
1295                          enc->time_base.num / g, enc->time_base.den / g);
1296             }
1297         }
1298         if (encode) {
1299             snprintf(buf + strlen(buf), buf_size - strlen(buf),
1300                      ", q=%d-%d", enc->qmin, enc->qmax);
1301         } else {
1302             if (enc->properties & FF_CODEC_PROPERTY_CLOSED_CAPTIONS)
1303                 snprintf(buf + strlen(buf), buf_size - strlen(buf),
1304                          ", Closed Captions");
1305             if (enc->properties & FF_CODEC_PROPERTY_LOSSLESS)
1306                 snprintf(buf + strlen(buf), buf_size - strlen(buf),
1307                          ", lossless");
1308         }
1309         break;
1310     case AVMEDIA_TYPE_AUDIO:
1311         av_strlcat(buf, separator, buf_size);
1312
1313         if (enc->sample_rate) {
1314             snprintf(buf + strlen(buf), buf_size - strlen(buf),
1315                      "%d Hz, ", enc->sample_rate);
1316         }
1317         av_get_channel_layout_string(buf + strlen(buf), buf_size - strlen(buf), enc->channels, enc->channel_layout);
1318         if (enc->sample_fmt != AV_SAMPLE_FMT_NONE) {
1319             snprintf(buf + strlen(buf), buf_size - strlen(buf),
1320                      ", %s", av_get_sample_fmt_name(enc->sample_fmt));
1321         }
1322         if (   enc->bits_per_raw_sample > 0
1323             && enc->bits_per_raw_sample != av_get_bytes_per_sample(enc->sample_fmt) * 8)
1324             snprintf(buf + strlen(buf), buf_size - strlen(buf),
1325                      " (%d bit)", enc->bits_per_raw_sample);
1326         if (av_log_get_level() >= AV_LOG_VERBOSE) {
1327             if (enc->initial_padding)
1328                 snprintf(buf + strlen(buf), buf_size - strlen(buf),
1329                          ", delay %d", enc->initial_padding);
1330             if (enc->trailing_padding)
1331                 snprintf(buf + strlen(buf), buf_size - strlen(buf),
1332                          ", padding %d", enc->trailing_padding);
1333         }
1334         break;
1335     case AVMEDIA_TYPE_DATA:
1336         if (av_log_get_level() >= AV_LOG_DEBUG) {
1337             int g = av_gcd(enc->time_base.num, enc->time_base.den);
1338             if (g)
1339                 snprintf(buf + strlen(buf), buf_size - strlen(buf),
1340                          ", %d/%d",
1341                          enc->time_base.num / g, enc->time_base.den / g);
1342         }
1343         break;
1344     case AVMEDIA_TYPE_SUBTITLE:
1345         if (enc->width)
1346             snprintf(buf + strlen(buf), buf_size - strlen(buf),
1347                      ", %dx%d", enc->width, enc->height);
1348         break;
1349     default:
1350         return;
1351     }
1352     if (encode) {
1353         if (enc->flags & AV_CODEC_FLAG_PASS1)
1354             snprintf(buf + strlen(buf), buf_size - strlen(buf),
1355                      ", pass 1");
1356         if (enc->flags & AV_CODEC_FLAG_PASS2)
1357             snprintf(buf + strlen(buf), buf_size - strlen(buf),
1358                      ", pass 2");
1359     }
1360     bitrate = get_bit_rate(enc);
1361     if (bitrate != 0) {
1362         snprintf(buf + strlen(buf), buf_size - strlen(buf),
1363                  ", %"PRId64" kb/s", bitrate / 1000);
1364     } else if (enc->rc_max_rate > 0) {
1365         snprintf(buf + strlen(buf), buf_size - strlen(buf),
1366                  ", max. %"PRId64" kb/s", enc->rc_max_rate / 1000);
1367     }
1368 }
1369
1370 const char *av_get_profile_name(const AVCodec *codec, int profile)
1371 {
1372     const AVProfile *p;
1373     if (profile == FF_PROFILE_UNKNOWN || !codec->profiles)
1374         return NULL;
1375
1376     for (p = codec->profiles; p->profile != FF_PROFILE_UNKNOWN; p++)
1377         if (p->profile == profile)
1378             return p->name;
1379
1380     return NULL;
1381 }
1382
1383 const char *avcodec_profile_name(enum AVCodecID codec_id, int profile)
1384 {
1385     const AVCodecDescriptor *desc = avcodec_descriptor_get(codec_id);
1386     const AVProfile *p;
1387
1388     if (profile == FF_PROFILE_UNKNOWN || !desc || !desc->profiles)
1389         return NULL;
1390
1391     for (p = desc->profiles; p->profile != FF_PROFILE_UNKNOWN; p++)
1392         if (p->profile == profile)
1393             return p->name;
1394
1395     return NULL;
1396 }
1397
1398 unsigned avcodec_version(void)
1399 {
1400 //    av_assert0(AV_CODEC_ID_V410==164);
1401     av_assert0(AV_CODEC_ID_PCM_S8_PLANAR==65563);
1402     av_assert0(AV_CODEC_ID_ADPCM_G722==69660);
1403 //     av_assert0(AV_CODEC_ID_BMV_AUDIO==86071);
1404     av_assert0(AV_CODEC_ID_SRT==94216);
1405     av_assert0(LIBAVCODEC_VERSION_MICRO >= 100);
1406
1407     return LIBAVCODEC_VERSION_INT;
1408 }
1409
1410 const char *avcodec_configuration(void)
1411 {
1412     return FFMPEG_CONFIGURATION;
1413 }
1414
1415 const char *avcodec_license(void)
1416 {
1417 #define LICENSE_PREFIX "libavcodec license: "
1418     return LICENSE_PREFIX FFMPEG_LICENSE + sizeof(LICENSE_PREFIX) - 1;
1419 }
1420
1421 int av_get_exact_bits_per_sample(enum AVCodecID codec_id)
1422 {
1423     switch (codec_id) {
1424     case AV_CODEC_ID_8SVX_EXP:
1425     case AV_CODEC_ID_8SVX_FIB:
1426     case AV_CODEC_ID_ADPCM_CT:
1427     case AV_CODEC_ID_ADPCM_IMA_APC:
1428     case AV_CODEC_ID_ADPCM_IMA_EA_SEAD:
1429     case AV_CODEC_ID_ADPCM_IMA_OKI:
1430     case AV_CODEC_ID_ADPCM_IMA_WS:
1431     case AV_CODEC_ID_ADPCM_G722:
1432     case AV_CODEC_ID_ADPCM_YAMAHA:
1433     case AV_CODEC_ID_ADPCM_AICA:
1434         return 4;
1435     case AV_CODEC_ID_DSD_LSBF:
1436     case AV_CODEC_ID_DSD_MSBF:
1437     case AV_CODEC_ID_DSD_LSBF_PLANAR:
1438     case AV_CODEC_ID_DSD_MSBF_PLANAR:
1439     case AV_CODEC_ID_PCM_ALAW:
1440     case AV_CODEC_ID_PCM_MULAW:
1441     case AV_CODEC_ID_PCM_S8:
1442     case AV_CODEC_ID_PCM_S8_PLANAR:
1443     case AV_CODEC_ID_PCM_U8:
1444     case AV_CODEC_ID_PCM_ZORK:
1445     case AV_CODEC_ID_SDX2_DPCM:
1446         return 8;
1447     case AV_CODEC_ID_PCM_S16BE:
1448     case AV_CODEC_ID_PCM_S16BE_PLANAR:
1449     case AV_CODEC_ID_PCM_S16LE:
1450     case AV_CODEC_ID_PCM_S16LE_PLANAR:
1451     case AV_CODEC_ID_PCM_U16BE:
1452     case AV_CODEC_ID_PCM_U16LE:
1453         return 16;
1454     case AV_CODEC_ID_PCM_S24DAUD:
1455     case AV_CODEC_ID_PCM_S24BE:
1456     case AV_CODEC_ID_PCM_S24LE:
1457     case AV_CODEC_ID_PCM_S24LE_PLANAR:
1458     case AV_CODEC_ID_PCM_U24BE:
1459     case AV_CODEC_ID_PCM_U24LE:
1460         return 24;
1461     case AV_CODEC_ID_PCM_S32BE:
1462     case AV_CODEC_ID_PCM_S32LE:
1463     case AV_CODEC_ID_PCM_S32LE_PLANAR:
1464     case AV_CODEC_ID_PCM_U32BE:
1465     case AV_CODEC_ID_PCM_U32LE:
1466     case AV_CODEC_ID_PCM_F32BE:
1467     case AV_CODEC_ID_PCM_F32LE:
1468     case AV_CODEC_ID_PCM_F24LE:
1469     case AV_CODEC_ID_PCM_F16LE:
1470         return 32;
1471     case AV_CODEC_ID_PCM_F64BE:
1472     case AV_CODEC_ID_PCM_F64LE:
1473     case AV_CODEC_ID_PCM_S64BE:
1474     case AV_CODEC_ID_PCM_S64LE:
1475         return 64;
1476     default:
1477         return 0;
1478     }
1479 }
1480
1481 enum AVCodecID av_get_pcm_codec(enum AVSampleFormat fmt, int be)
1482 {
1483     static const enum AVCodecID map[AV_SAMPLE_FMT_NB][2] = {
1484         [AV_SAMPLE_FMT_U8  ] = { AV_CODEC_ID_PCM_U8,    AV_CODEC_ID_PCM_U8    },
1485         [AV_SAMPLE_FMT_S16 ] = { AV_CODEC_ID_PCM_S16LE, AV_CODEC_ID_PCM_S16BE },
1486         [AV_SAMPLE_FMT_S32 ] = { AV_CODEC_ID_PCM_S32LE, AV_CODEC_ID_PCM_S32BE },
1487         [AV_SAMPLE_FMT_FLT ] = { AV_CODEC_ID_PCM_F32LE, AV_CODEC_ID_PCM_F32BE },
1488         [AV_SAMPLE_FMT_DBL ] = { AV_CODEC_ID_PCM_F64LE, AV_CODEC_ID_PCM_F64BE },
1489         [AV_SAMPLE_FMT_U8P ] = { AV_CODEC_ID_PCM_U8,    AV_CODEC_ID_PCM_U8    },
1490         [AV_SAMPLE_FMT_S16P] = { AV_CODEC_ID_PCM_S16LE, AV_CODEC_ID_PCM_S16BE },
1491         [AV_SAMPLE_FMT_S32P] = { AV_CODEC_ID_PCM_S32LE, AV_CODEC_ID_PCM_S32BE },
1492         [AV_SAMPLE_FMT_S64P] = { AV_CODEC_ID_PCM_S64LE, AV_CODEC_ID_PCM_S64BE },
1493         [AV_SAMPLE_FMT_FLTP] = { AV_CODEC_ID_PCM_F32LE, AV_CODEC_ID_PCM_F32BE },
1494         [AV_SAMPLE_FMT_DBLP] = { AV_CODEC_ID_PCM_F64LE, AV_CODEC_ID_PCM_F64BE },
1495     };
1496     if (fmt < 0 || fmt >= AV_SAMPLE_FMT_NB)
1497         return AV_CODEC_ID_NONE;
1498     if (be < 0 || be > 1)
1499         be = AV_NE(1, 0);
1500     return map[fmt][be];
1501 }
1502
1503 int av_get_bits_per_sample(enum AVCodecID codec_id)
1504 {
1505     switch (codec_id) {
1506     case AV_CODEC_ID_ADPCM_SBPRO_2:
1507         return 2;
1508     case AV_CODEC_ID_ADPCM_SBPRO_3:
1509         return 3;
1510     case AV_CODEC_ID_ADPCM_SBPRO_4:
1511     case AV_CODEC_ID_ADPCM_IMA_WAV:
1512     case AV_CODEC_ID_ADPCM_IMA_QT:
1513     case AV_CODEC_ID_ADPCM_SWF:
1514     case AV_CODEC_ID_ADPCM_MS:
1515         return 4;
1516     default:
1517         return av_get_exact_bits_per_sample(codec_id);
1518     }
1519 }
1520
1521 static int get_audio_frame_duration(enum AVCodecID id, int sr, int ch, int ba,
1522                                     uint32_t tag, int bits_per_coded_sample, int64_t bitrate,
1523                                     uint8_t * extradata, int frame_size, int frame_bytes)
1524 {
1525     int bps = av_get_exact_bits_per_sample(id);
1526     int framecount = (ba > 0 && frame_bytes / ba > 0) ? frame_bytes / ba : 1;
1527
1528     /* codecs with an exact constant bits per sample */
1529     if (bps > 0 && ch > 0 && frame_bytes > 0 && ch < 32768 && bps < 32768)
1530         return (frame_bytes * 8LL) / (bps * ch);
1531     bps = bits_per_coded_sample;
1532
1533     /* codecs with a fixed packet duration */
1534     switch (id) {
1535     case AV_CODEC_ID_ADPCM_ADX:    return   32;
1536     case AV_CODEC_ID_ADPCM_IMA_QT: return   64;
1537     case AV_CODEC_ID_ADPCM_EA_XAS: return  128;
1538     case AV_CODEC_ID_AMR_NB:
1539     case AV_CODEC_ID_EVRC:
1540     case AV_CODEC_ID_GSM:
1541     case AV_CODEC_ID_QCELP:
1542     case AV_CODEC_ID_RA_288:       return  160;
1543     case AV_CODEC_ID_AMR_WB:
1544     case AV_CODEC_ID_GSM_MS:       return  320;
1545     case AV_CODEC_ID_MP1:          return  384;
1546     case AV_CODEC_ID_ATRAC1:       return  512;
1547     case AV_CODEC_ID_ATRAC9:
1548     case AV_CODEC_ID_ATRAC3:       return 1024 * framecount;
1549     case AV_CODEC_ID_ATRAC3P:      return 2048;
1550     case AV_CODEC_ID_MP2:
1551     case AV_CODEC_ID_MUSEPACK7:    return 1152;
1552     case AV_CODEC_ID_AC3:          return 1536;
1553     }
1554
1555     if (sr > 0) {
1556         /* calc from sample rate */
1557         if (id == AV_CODEC_ID_TTA)
1558             return 256 * sr / 245;
1559         else if (id == AV_CODEC_ID_DST)
1560             return 588 * sr / 44100;
1561
1562         if (ch > 0) {
1563             /* calc from sample rate and channels */
1564             if (id == AV_CODEC_ID_BINKAUDIO_DCT)
1565                 return (480 << (sr / 22050)) / ch;
1566         }
1567
1568         if (id == AV_CODEC_ID_MP3)
1569             return sr <= 24000 ? 576 : 1152;
1570     }
1571
1572     if (ba > 0) {
1573         /* calc from block_align */
1574         if (id == AV_CODEC_ID_SIPR) {
1575             switch (ba) {
1576             case 20: return 160;
1577             case 19: return 144;
1578             case 29: return 288;
1579             case 37: return 480;
1580             }
1581         } else if (id == AV_CODEC_ID_ILBC) {
1582             switch (ba) {
1583             case 38: return 160;
1584             case 50: return 240;
1585             }
1586         }
1587     }
1588
1589     if (frame_bytes > 0) {
1590         /* calc from frame_bytes only */
1591         if (id == AV_CODEC_ID_TRUESPEECH)
1592             return 240 * (frame_bytes / 32);
1593         if (id == AV_CODEC_ID_NELLYMOSER)
1594             return 256 * (frame_bytes / 64);
1595         if (id == AV_CODEC_ID_RA_144)
1596             return 160 * (frame_bytes / 20);
1597         if (id == AV_CODEC_ID_G723_1)
1598             return 240 * (frame_bytes / 24);
1599
1600         if (bps > 0) {
1601             /* calc from frame_bytes and bits_per_coded_sample */
1602             if (id == AV_CODEC_ID_ADPCM_G726 || id == AV_CODEC_ID_ADPCM_G726LE)
1603                 return frame_bytes * 8 / bps;
1604         }
1605
1606         if (ch > 0 && ch < INT_MAX/16) {
1607             /* calc from frame_bytes and channels */
1608             switch (id) {
1609             case AV_CODEC_ID_ADPCM_AFC:
1610                 return frame_bytes / (9 * ch) * 16;
1611             case AV_CODEC_ID_ADPCM_PSX:
1612             case AV_CODEC_ID_ADPCM_DTK:
1613                 return frame_bytes / (16 * ch) * 28;
1614             case AV_CODEC_ID_ADPCM_4XM:
1615             case AV_CODEC_ID_ADPCM_IMA_DAT4:
1616             case AV_CODEC_ID_ADPCM_IMA_ISS:
1617                 return (frame_bytes - 4 * ch) * 2 / ch;
1618             case AV_CODEC_ID_ADPCM_IMA_SMJPEG:
1619                 return (frame_bytes - 4) * 2 / ch;
1620             case AV_CODEC_ID_ADPCM_IMA_AMV:
1621                 return (frame_bytes - 8) * 2 / ch;
1622             case AV_CODEC_ID_ADPCM_THP:
1623             case AV_CODEC_ID_ADPCM_THP_LE:
1624                 if (extradata)
1625                     return frame_bytes * 14 / (8 * ch);
1626                 break;
1627             case AV_CODEC_ID_ADPCM_XA:
1628                 return (frame_bytes / 128) * 224 / ch;
1629             case AV_CODEC_ID_INTERPLAY_DPCM:
1630                 return (frame_bytes - 6 - ch) / ch;
1631             case AV_CODEC_ID_ROQ_DPCM:
1632                 return (frame_bytes - 8) / ch;
1633             case AV_CODEC_ID_XAN_DPCM:
1634                 return (frame_bytes - 2 * ch) / ch;
1635             case AV_CODEC_ID_MACE3:
1636                 return 3 * frame_bytes / ch;
1637             case AV_CODEC_ID_MACE6:
1638                 return 6 * frame_bytes / ch;
1639             case AV_CODEC_ID_PCM_LXF:
1640                 return 2 * (frame_bytes / (5 * ch));
1641             case AV_CODEC_ID_IAC:
1642             case AV_CODEC_ID_IMC:
1643                 return 4 * frame_bytes / ch;
1644             }
1645
1646             if (tag) {
1647                 /* calc from frame_bytes, channels, and codec_tag */
1648                 if (id == AV_CODEC_ID_SOL_DPCM) {
1649                     if (tag == 3)
1650                         return frame_bytes / ch;
1651                     else
1652                         return frame_bytes * 2 / ch;
1653                 }
1654             }
1655
1656             if (ba > 0) {
1657                 /* calc from frame_bytes, channels, and block_align */
1658                 int blocks = frame_bytes / ba;
1659                 switch (id) {
1660                 case AV_CODEC_ID_ADPCM_IMA_WAV:
1661                     if (bps < 2 || bps > 5)
1662                         return 0;
1663                     return blocks * (1 + (ba - 4 * ch) / (bps * ch) * 8);
1664                 case AV_CODEC_ID_ADPCM_IMA_DK3:
1665                     return blocks * (((ba - 16) * 2 / 3 * 4) / ch);
1666                 case AV_CODEC_ID_ADPCM_IMA_DK4:
1667                     return blocks * (1 + (ba - 4 * ch) * 2 / ch);
1668                 case AV_CODEC_ID_ADPCM_IMA_RAD:
1669                     return blocks * ((ba - 4 * ch) * 2 / ch);
1670                 case AV_CODEC_ID_ADPCM_MS:
1671                     return blocks * (2 + (ba - 7 * ch) * 2 / ch);
1672                 case AV_CODEC_ID_ADPCM_MTAF:
1673                     return blocks * (ba - 16) * 2 / ch;
1674                 }
1675             }
1676
1677             if (bps > 0) {
1678                 /* calc from frame_bytes, channels, and bits_per_coded_sample */
1679                 switch (id) {
1680                 case AV_CODEC_ID_PCM_DVD:
1681                     if(bps<4 || frame_bytes<3)
1682                         return 0;
1683                     return 2 * ((frame_bytes - 3) / ((bps * 2 / 8) * ch));
1684                 case AV_CODEC_ID_PCM_BLURAY:
1685                     if(bps<4 || frame_bytes<4)
1686                         return 0;
1687                     return (frame_bytes - 4) / ((FFALIGN(ch, 2) * bps) / 8);
1688                 case AV_CODEC_ID_S302M:
1689                     return 2 * (frame_bytes / ((bps + 4) / 4)) / ch;
1690                 }
1691             }
1692         }
1693     }
1694
1695     /* Fall back on using frame_size */
1696     if (frame_size > 1 && frame_bytes)
1697         return frame_size;
1698
1699     //For WMA we currently have no other means to calculate duration thus we
1700     //do it here by assuming CBR, which is true for all known cases.
1701     if (bitrate > 0 && frame_bytes > 0 && sr > 0 && ba > 1) {
1702         if (id == AV_CODEC_ID_WMAV1 || id == AV_CODEC_ID_WMAV2)
1703             return  (frame_bytes * 8LL * sr) / bitrate;
1704     }
1705
1706     return 0;
1707 }
1708
1709 int av_get_audio_frame_duration(AVCodecContext *avctx, int frame_bytes)
1710 {
1711     return get_audio_frame_duration(avctx->codec_id, avctx->sample_rate,
1712                                     avctx->channels, avctx->block_align,
1713                                     avctx->codec_tag, avctx->bits_per_coded_sample,
1714                                     avctx->bit_rate, avctx->extradata, avctx->frame_size,
1715                                     frame_bytes);
1716 }
1717
1718 int av_get_audio_frame_duration2(AVCodecParameters *par, int frame_bytes)
1719 {
1720     return get_audio_frame_duration(par->codec_id, par->sample_rate,
1721                                     par->channels, par->block_align,
1722                                     par->codec_tag, par->bits_per_coded_sample,
1723                                     par->bit_rate, par->extradata, par->frame_size,
1724                                     frame_bytes);
1725 }
1726
1727 #if !HAVE_THREADS
1728 int ff_thread_init(AVCodecContext *s)
1729 {
1730     return -1;
1731 }
1732
1733 #endif
1734
1735 unsigned int av_xiphlacing(unsigned char *s, unsigned int v)
1736 {
1737     unsigned int n = 0;
1738
1739     while (v >= 0xff) {
1740         *s++ = 0xff;
1741         v -= 0xff;
1742         n++;
1743     }
1744     *s = v;
1745     n++;
1746     return n;
1747 }
1748
1749 int ff_match_2uint16(const uint16_t(*tab)[2], int size, int a, int b)
1750 {
1751     int i;
1752     for (i = 0; i < size && !(tab[i][0] == a && tab[i][1] == b); i++) ;
1753     return i;
1754 }
1755
1756 const AVCodecHWConfig *avcodec_get_hw_config(const AVCodec *codec, int index)
1757 {
1758     int i;
1759     if (!codec->hw_configs || index < 0)
1760         return NULL;
1761     for (i = 0; i <= index; i++)
1762         if (!codec->hw_configs[i])
1763             return NULL;
1764     return &codec->hw_configs[index]->public;
1765 }
1766
1767 #if FF_API_USER_VISIBLE_AVHWACCEL
1768 AVHWAccel *av_hwaccel_next(const AVHWAccel *hwaccel)
1769 {
1770     return NULL;
1771 }
1772
1773 void av_register_hwaccel(AVHWAccel *hwaccel)
1774 {
1775 }
1776 #endif
1777
1778 #if FF_API_LOCKMGR
1779 int av_lockmgr_register(int (*cb)(void **mutex, enum AVLockOp op))
1780 {
1781     return 0;
1782 }
1783 #endif
1784
1785 unsigned int avpriv_toupper4(unsigned int x)
1786 {
1787     return av_toupper(x & 0xFF) +
1788           (av_toupper((x >>  8) & 0xFF) << 8)  +
1789           (av_toupper((x >> 16) & 0xFF) << 16) +
1790 ((unsigned)av_toupper((x >> 24) & 0xFF) << 24);
1791 }
1792
1793 int ff_thread_ref_frame(ThreadFrame *dst, ThreadFrame *src)
1794 {
1795     int ret;
1796
1797     dst->owner[0] = src->owner[0];
1798     dst->owner[1] = src->owner[1];
1799
1800     ret = av_frame_ref(dst->f, src->f);
1801     if (ret < 0)
1802         return ret;
1803
1804     av_assert0(!dst->progress);
1805
1806     if (src->progress &&
1807         !(dst->progress = av_buffer_ref(src->progress))) {
1808         ff_thread_release_buffer(dst->owner[0], dst);
1809         return AVERROR(ENOMEM);
1810     }
1811
1812     return 0;
1813 }
1814
1815 #if !HAVE_THREADS
1816
1817 enum AVPixelFormat ff_thread_get_format(AVCodecContext *avctx, const enum AVPixelFormat *fmt)
1818 {
1819     return ff_get_format(avctx, fmt);
1820 }
1821
1822 int ff_thread_get_buffer(AVCodecContext *avctx, ThreadFrame *f, int flags)
1823 {
1824     f->owner[0] = f->owner[1] = avctx;
1825     return ff_get_buffer(avctx, f->f, flags);
1826 }
1827
1828 void ff_thread_release_buffer(AVCodecContext *avctx, ThreadFrame *f)
1829 {
1830     if (f->f)
1831         av_frame_unref(f->f);
1832 }
1833
1834 void ff_thread_finish_setup(AVCodecContext *avctx)
1835 {
1836 }
1837
1838 void ff_thread_report_progress(ThreadFrame *f, int progress, int field)
1839 {
1840 }
1841
1842 void ff_thread_await_progress(ThreadFrame *f, int progress, int field)
1843 {
1844 }
1845
1846 int ff_thread_can_start_frame(AVCodecContext *avctx)
1847 {
1848     return 1;
1849 }
1850
1851 int ff_alloc_entries(AVCodecContext *avctx, int count)
1852 {
1853     return 0;
1854 }
1855
1856 void ff_reset_entries(AVCodecContext *avctx)
1857 {
1858 }
1859
1860 void ff_thread_await_progress2(AVCodecContext *avctx, int field, int thread, int shift)
1861 {
1862 }
1863
1864 void ff_thread_report_progress2(AVCodecContext *avctx, int field, int thread, int n)
1865 {
1866 }
1867
1868 #endif
1869
1870 int avcodec_is_open(AVCodecContext *s)
1871 {
1872     return !!s->internal;
1873 }
1874
1875 int avpriv_bprint_to_extradata(AVCodecContext *avctx, struct AVBPrint *buf)
1876 {
1877     int ret;
1878     char *str;
1879
1880     ret = av_bprint_finalize(buf, &str);
1881     if (ret < 0)
1882         return ret;
1883     if (!av_bprint_is_complete(buf)) {
1884         av_free(str);
1885         return AVERROR(ENOMEM);
1886     }
1887
1888     avctx->extradata = str;
1889     /* Note: the string is NUL terminated (so extradata can be read as a
1890      * string), but the ending character is not accounted in the size (in
1891      * binary formats you are likely not supposed to mux that character). When
1892      * extradata is copied, it is also padded with AV_INPUT_BUFFER_PADDING_SIZE
1893      * zeros. */
1894     avctx->extradata_size = buf->len;
1895     return 0;
1896 }
1897
1898 const uint8_t *avpriv_find_start_code(const uint8_t *av_restrict p,
1899                                       const uint8_t *end,
1900                                       uint32_t *av_restrict state)
1901 {
1902     int i;
1903
1904     av_assert0(p <= end);
1905     if (p >= end)
1906         return end;
1907
1908     for (i = 0; i < 3; i++) {
1909         uint32_t tmp = *state << 8;
1910         *state = tmp + *(p++);
1911         if (tmp == 0x100 || p == end)
1912             return p;
1913     }
1914
1915     while (p < end) {
1916         if      (p[-1] > 1      ) p += 3;
1917         else if (p[-2]          ) p += 2;
1918         else if (p[-3]|(p[-1]-1)) p++;
1919         else {
1920             p++;
1921             break;
1922         }
1923     }
1924
1925     p = FFMIN(p, end) - 4;
1926     *state = AV_RB32(p);
1927
1928     return p + 4;
1929 }
1930
1931 AVCPBProperties *av_cpb_properties_alloc(size_t *size)
1932 {
1933     AVCPBProperties *props = av_mallocz(sizeof(AVCPBProperties));
1934     if (!props)
1935         return NULL;
1936
1937     if (size)
1938         *size = sizeof(*props);
1939
1940     props->vbv_delay = UINT64_MAX;
1941
1942     return props;
1943 }
1944
1945 AVCPBProperties *ff_add_cpb_side_data(AVCodecContext *avctx)
1946 {
1947     AVPacketSideData *tmp;
1948     AVCPBProperties  *props;
1949     size_t size;
1950
1951     props = av_cpb_properties_alloc(&size);
1952     if (!props)
1953         return NULL;
1954
1955     tmp = av_realloc_array(avctx->coded_side_data, avctx->nb_coded_side_data + 1, sizeof(*tmp));
1956     if (!tmp) {
1957         av_freep(&props);
1958         return NULL;
1959     }
1960
1961     avctx->coded_side_data = tmp;
1962     avctx->nb_coded_side_data++;
1963
1964     avctx->coded_side_data[avctx->nb_coded_side_data - 1].type = AV_PKT_DATA_CPB_PROPERTIES;
1965     avctx->coded_side_data[avctx->nb_coded_side_data - 1].data = (uint8_t*)props;
1966     avctx->coded_side_data[avctx->nb_coded_side_data - 1].size = size;
1967
1968     return props;
1969 }
1970
1971 static void codec_parameters_reset(AVCodecParameters *par)
1972 {
1973     av_freep(&par->extradata);
1974
1975     memset(par, 0, sizeof(*par));
1976
1977     par->codec_type          = AVMEDIA_TYPE_UNKNOWN;
1978     par->codec_id            = AV_CODEC_ID_NONE;
1979     par->format              = -1;
1980     par->field_order         = AV_FIELD_UNKNOWN;
1981     par->color_range         = AVCOL_RANGE_UNSPECIFIED;
1982     par->color_primaries     = AVCOL_PRI_UNSPECIFIED;
1983     par->color_trc           = AVCOL_TRC_UNSPECIFIED;
1984     par->color_space         = AVCOL_SPC_UNSPECIFIED;
1985     par->chroma_location     = AVCHROMA_LOC_UNSPECIFIED;
1986     par->sample_aspect_ratio = (AVRational){ 0, 1 };
1987     par->profile             = FF_PROFILE_UNKNOWN;
1988     par->level               = FF_LEVEL_UNKNOWN;
1989 }
1990
1991 AVCodecParameters *avcodec_parameters_alloc(void)
1992 {
1993     AVCodecParameters *par = av_mallocz(sizeof(*par));
1994
1995     if (!par)
1996         return NULL;
1997     codec_parameters_reset(par);
1998     return par;
1999 }
2000
2001 void avcodec_parameters_free(AVCodecParameters **ppar)
2002 {
2003     AVCodecParameters *par = *ppar;
2004
2005     if (!par)
2006         return;
2007     codec_parameters_reset(par);
2008
2009     av_freep(ppar);
2010 }
2011
2012 int avcodec_parameters_copy(AVCodecParameters *dst, const AVCodecParameters *src)
2013 {
2014     codec_parameters_reset(dst);
2015     memcpy(dst, src, sizeof(*dst));
2016
2017     dst->extradata      = NULL;
2018     dst->extradata_size = 0;
2019     if (src->extradata) {
2020         dst->extradata = av_mallocz(src->extradata_size + AV_INPUT_BUFFER_PADDING_SIZE);
2021         if (!dst->extradata)
2022             return AVERROR(ENOMEM);
2023         memcpy(dst->extradata, src->extradata, src->extradata_size);
2024         dst->extradata_size = src->extradata_size;
2025     }
2026
2027     return 0;
2028 }
2029
2030 int avcodec_parameters_from_context(AVCodecParameters *par,
2031                                     const AVCodecContext *codec)
2032 {
2033     codec_parameters_reset(par);
2034
2035     par->codec_type = codec->codec_type;
2036     par->codec_id   = codec->codec_id;
2037     par->codec_tag  = codec->codec_tag;
2038
2039     par->bit_rate              = codec->bit_rate;
2040     par->bits_per_coded_sample = codec->bits_per_coded_sample;
2041     par->bits_per_raw_sample   = codec->bits_per_raw_sample;
2042     par->profile               = codec->profile;
2043     par->level                 = codec->level;
2044
2045     switch (par->codec_type) {
2046     case AVMEDIA_TYPE_VIDEO:
2047         par->format              = codec->pix_fmt;
2048         par->width               = codec->width;
2049         par->height              = codec->height;
2050         par->field_order         = codec->field_order;
2051         par->color_range         = codec->color_range;
2052         par->color_primaries     = codec->color_primaries;
2053         par->color_trc           = codec->color_trc;
2054         par->color_space         = codec->colorspace;
2055         par->chroma_location     = codec->chroma_sample_location;
2056         par->sample_aspect_ratio = codec->sample_aspect_ratio;
2057         par->video_delay         = codec->has_b_frames;
2058         break;
2059     case AVMEDIA_TYPE_AUDIO:
2060         par->format           = codec->sample_fmt;
2061         par->channel_layout   = codec->channel_layout;
2062         par->channels         = codec->channels;
2063         par->sample_rate      = codec->sample_rate;
2064         par->block_align      = codec->block_align;
2065         par->frame_size       = codec->frame_size;
2066         par->initial_padding  = codec->initial_padding;
2067         par->trailing_padding = codec->trailing_padding;
2068         par->seek_preroll     = codec->seek_preroll;
2069         break;
2070     case AVMEDIA_TYPE_SUBTITLE:
2071         par->width  = codec->width;
2072         par->height = codec->height;
2073         break;
2074     }
2075
2076     if (codec->extradata) {
2077         par->extradata = av_mallocz(codec->extradata_size + AV_INPUT_BUFFER_PADDING_SIZE);
2078         if (!par->extradata)
2079             return AVERROR(ENOMEM);
2080         memcpy(par->extradata, codec->extradata, codec->extradata_size);
2081         par->extradata_size = codec->extradata_size;
2082     }
2083
2084     return 0;
2085 }
2086
2087 int avcodec_parameters_to_context(AVCodecContext *codec,
2088                                   const AVCodecParameters *par)
2089 {
2090     codec->codec_type = par->codec_type;
2091     codec->codec_id   = par->codec_id;
2092     codec->codec_tag  = par->codec_tag;
2093
2094     codec->bit_rate              = par->bit_rate;
2095     codec->bits_per_coded_sample = par->bits_per_coded_sample;
2096     codec->bits_per_raw_sample   = par->bits_per_raw_sample;
2097     codec->profile               = par->profile;
2098     codec->level                 = par->level;
2099
2100     switch (par->codec_type) {
2101     case AVMEDIA_TYPE_VIDEO:
2102         codec->pix_fmt                = par->format;
2103         codec->width                  = par->width;
2104         codec->height                 = par->height;
2105         codec->field_order            = par->field_order;
2106         codec->color_range            = par->color_range;
2107         codec->color_primaries        = par->color_primaries;
2108         codec->color_trc              = par->color_trc;
2109         codec->colorspace             = par->color_space;
2110         codec->chroma_sample_location = par->chroma_location;
2111         codec->sample_aspect_ratio    = par->sample_aspect_ratio;
2112         codec->has_b_frames           = par->video_delay;
2113         break;
2114     case AVMEDIA_TYPE_AUDIO:
2115         codec->sample_fmt       = par->format;
2116         codec->channel_layout   = par->channel_layout;
2117         codec->channels         = par->channels;
2118         codec->sample_rate      = par->sample_rate;
2119         codec->block_align      = par->block_align;
2120         codec->frame_size       = par->frame_size;
2121         codec->delay            =
2122         codec->initial_padding  = par->initial_padding;
2123         codec->trailing_padding = par->trailing_padding;
2124         codec->seek_preroll     = par->seek_preroll;
2125         break;
2126     case AVMEDIA_TYPE_SUBTITLE:
2127         codec->width  = par->width;
2128         codec->height = par->height;
2129         break;
2130     }
2131
2132     if (par->extradata) {
2133         av_freep(&codec->extradata);
2134         codec->extradata = av_mallocz(par->extradata_size + AV_INPUT_BUFFER_PADDING_SIZE);
2135         if (!codec->extradata)
2136             return AVERROR(ENOMEM);
2137         memcpy(codec->extradata, par->extradata, par->extradata_size);
2138         codec->extradata_size = par->extradata_size;
2139     }
2140
2141     return 0;
2142 }
2143
2144 int ff_alloc_a53_sei(const AVFrame *frame, size_t prefix_len,
2145                      void **data, size_t *sei_size)
2146 {
2147     AVFrameSideData *side_data = NULL;
2148     uint8_t *sei_data;
2149
2150     if (frame)
2151         side_data = av_frame_get_side_data(frame, AV_FRAME_DATA_A53_CC);
2152
2153     if (!side_data) {
2154         *data = NULL;
2155         return 0;
2156     }
2157
2158     *sei_size = side_data->size + 11;
2159     *data = av_mallocz(*sei_size + prefix_len);
2160     if (!*data)
2161         return AVERROR(ENOMEM);
2162     sei_data = (uint8_t*)*data + prefix_len;
2163
2164     // country code
2165     sei_data[0] = 181;
2166     sei_data[1] = 0;
2167     sei_data[2] = 49;
2168
2169     /**
2170      * 'GA94' is standard in North America for ATSC, but hard coding
2171      * this style may not be the right thing to do -- other formats
2172      * do exist. This information is not available in the side_data
2173      * so we are going with this right now.
2174      */
2175     AV_WL32(sei_data + 3, MKTAG('G', 'A', '9', '4'));
2176     sei_data[7] = 3;
2177     sei_data[8] = ((side_data->size/3) & 0x1f) | 0x40;
2178     sei_data[9] = 0;
2179
2180     memcpy(sei_data + 10, side_data->data, side_data->size);
2181
2182     sei_data[side_data->size+10] = 255;
2183
2184     return 0;
2185 }
2186
2187 int64_t ff_guess_coded_bitrate(AVCodecContext *avctx)
2188 {
2189     AVRational framerate = avctx->framerate;
2190     int bits_per_coded_sample = avctx->bits_per_coded_sample;
2191     int64_t bitrate;
2192
2193     if (!(framerate.num && framerate.den))
2194         framerate = av_inv_q(avctx->time_base);
2195     if (!(framerate.num && framerate.den))
2196         return 0;
2197
2198     if (!bits_per_coded_sample) {
2199         const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(avctx->pix_fmt);
2200         bits_per_coded_sample = av_get_bits_per_pixel(desc);
2201     }
2202     bitrate = (int64_t)bits_per_coded_sample * avctx->width * avctx->height *
2203               framerate.num / framerate.den;
2204
2205     return bitrate;
2206 }