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