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