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