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