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