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