]> git.sesse.net Git - ffmpeg/blob - libavcodec/utils.c
lavc: deprecate decoded ass subtitles with timings
[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/atomic.h"
30 #include "libavutil/attributes.h"
31 #include "libavutil/avassert.h"
32 #include "libavutil/avstring.h"
33 #include "libavutil/bprint.h"
34 #include "libavutil/channel_layout.h"
35 #include "libavutil/crc.h"
36 #include "libavutil/frame.h"
37 #include "libavutil/hwcontext.h"
38 #include "libavutil/internal.h"
39 #include "libavutil/mathematics.h"
40 #include "libavutil/mem_internal.h"
41 #include "libavutil/pixdesc.h"
42 #include "libavutil/imgutils.h"
43 #include "libavutil/samplefmt.h"
44 #include "libavutil/dict.h"
45 #include "libavutil/thread.h"
46 #include "avcodec.h"
47 #include "libavutil/opt.h"
48 #include "me_cmp.h"
49 #include "mpegvideo.h"
50 #include "thread.h"
51 #include "frame_thread_encoder.h"
52 #include "internal.h"
53 #include "raw.h"
54 #include "bytestream.h"
55 #include "version.h"
56 #include <stdlib.h>
57 #include <stdarg.h>
58 #include <limits.h>
59 #include <float.h>
60 #if CONFIG_ICONV
61 # include <iconv.h>
62 #endif
63
64 #include "libavutil/ffversion.h"
65 const char av_codec_ffversion[] = "FFmpeg version " FFMPEG_VERSION;
66
67 #if HAVE_PTHREADS || HAVE_W32THREADS || HAVE_OS2THREADS
68 static int default_lockmgr_cb(void **arg, enum AVLockOp op)
69 {
70     void * volatile * mutex = arg;
71     int err;
72
73     switch (op) {
74     case AV_LOCK_CREATE:
75         return 0;
76     case AV_LOCK_OBTAIN:
77         if (!*mutex) {
78             pthread_mutex_t *tmp = av_malloc(sizeof(pthread_mutex_t));
79             if (!tmp)
80                 return AVERROR(ENOMEM);
81             if ((err = pthread_mutex_init(tmp, NULL))) {
82                 av_free(tmp);
83                 return AVERROR(err);
84             }
85             if (avpriv_atomic_ptr_cas(mutex, NULL, tmp)) {
86                 pthread_mutex_destroy(tmp);
87                 av_free(tmp);
88             }
89         }
90
91         if ((err = pthread_mutex_lock(*mutex)))
92             return AVERROR(err);
93
94         return 0;
95     case AV_LOCK_RELEASE:
96         if ((err = pthread_mutex_unlock(*mutex)))
97             return AVERROR(err);
98
99         return 0;
100     case AV_LOCK_DESTROY:
101         if (*mutex)
102             pthread_mutex_destroy(*mutex);
103         av_free(*mutex);
104         avpriv_atomic_ptr_cas(mutex, *mutex, NULL);
105         return 0;
106     }
107     return 1;
108 }
109 static int (*lockmgr_cb)(void **mutex, enum AVLockOp op) = default_lockmgr_cb;
110 #else
111 static int (*lockmgr_cb)(void **mutex, enum AVLockOp op) = NULL;
112 #endif
113
114
115 volatile int ff_avcodec_locked;
116 static int volatile entangled_thread_counter = 0;
117 static void *codec_mutex;
118 static void *avformat_mutex;
119
120 void av_fast_padded_malloc(void *ptr, unsigned int *size, size_t min_size)
121 {
122     uint8_t **p = ptr;
123     if (min_size > SIZE_MAX - AV_INPUT_BUFFER_PADDING_SIZE) {
124         av_freep(p);
125         *size = 0;
126         return;
127     }
128     if (!ff_fast_malloc(p, size, min_size + AV_INPUT_BUFFER_PADDING_SIZE, 1))
129         memset(*p + min_size, 0, AV_INPUT_BUFFER_PADDING_SIZE);
130 }
131
132 void av_fast_padded_mallocz(void *ptr, unsigned int *size, size_t min_size)
133 {
134     uint8_t **p = ptr;
135     if (min_size > SIZE_MAX - AV_INPUT_BUFFER_PADDING_SIZE) {
136         av_freep(p);
137         *size = 0;
138         return;
139     }
140     if (!ff_fast_malloc(p, size, min_size + AV_INPUT_BUFFER_PADDING_SIZE, 1))
141         memset(*p, 0, min_size + AV_INPUT_BUFFER_PADDING_SIZE);
142 }
143
144 /* encoder management */
145 static AVCodec *first_avcodec = NULL;
146 static AVCodec **last_avcodec = &first_avcodec;
147
148 AVCodec *av_codec_next(const AVCodec *c)
149 {
150     if (c)
151         return c->next;
152     else
153         return first_avcodec;
154 }
155
156 static av_cold void avcodec_init(void)
157 {
158     static int initialized = 0;
159
160     if (initialized != 0)
161         return;
162     initialized = 1;
163
164     if (CONFIG_ME_CMP)
165         ff_me_cmp_init_static();
166 }
167
168 int av_codec_is_encoder(const AVCodec *codec)
169 {
170     return codec && (codec->encode_sub || codec->encode2);
171 }
172
173 int av_codec_is_decoder(const AVCodec *codec)
174 {
175     return codec && codec->decode;
176 }
177
178 av_cold void avcodec_register(AVCodec *codec)
179 {
180     AVCodec **p;
181     avcodec_init();
182     p = last_avcodec;
183     codec->next = NULL;
184
185     while(*p || avpriv_atomic_ptr_cas((void * volatile *)p, NULL, codec))
186         p = &(*p)->next;
187     last_avcodec = &codec->next;
188
189     if (codec->init_static_data)
190         codec->init_static_data(codec);
191 }
192
193 #if FF_API_EMU_EDGE
194 unsigned avcodec_get_edge_width(void)
195 {
196     return EDGE_WIDTH;
197 }
198 #endif
199
200 #if FF_API_SET_DIMENSIONS
201 void avcodec_set_dimensions(AVCodecContext *s, int width, int height)
202 {
203     int ret = ff_set_dimensions(s, width, height);
204     if (ret < 0) {
205         av_log(s, AV_LOG_WARNING, "Failed to set dimensions %d %d\n", width, height);
206     }
207 }
208 #endif
209
210 int ff_set_dimensions(AVCodecContext *s, int width, int height)
211 {
212     int ret = av_image_check_size(width, height, 0, s);
213
214     if (ret < 0)
215         width = height = 0;
216
217     s->coded_width  = width;
218     s->coded_height = height;
219     s->width        = AV_CEIL_RSHIFT(width,  s->lowres);
220     s->height       = AV_CEIL_RSHIFT(height, s->lowres);
221
222     return ret;
223 }
224
225 int ff_set_sar(AVCodecContext *avctx, AVRational sar)
226 {
227     int ret = av_image_check_sar(avctx->width, avctx->height, sar);
228
229     if (ret < 0) {
230         av_log(avctx, AV_LOG_WARNING, "ignoring invalid SAR: %d/%d\n",
231                sar.num, sar.den);
232         avctx->sample_aspect_ratio = (AVRational){ 0, 1 };
233         return ret;
234     } else {
235         avctx->sample_aspect_ratio = sar;
236     }
237     return 0;
238 }
239
240 int ff_side_data_update_matrix_encoding(AVFrame *frame,
241                                         enum AVMatrixEncoding matrix_encoding)
242 {
243     AVFrameSideData *side_data;
244     enum AVMatrixEncoding *data;
245
246     side_data = av_frame_get_side_data(frame, AV_FRAME_DATA_MATRIXENCODING);
247     if (!side_data)
248         side_data = av_frame_new_side_data(frame, AV_FRAME_DATA_MATRIXENCODING,
249                                            sizeof(enum AVMatrixEncoding));
250
251     if (!side_data)
252         return AVERROR(ENOMEM);
253
254     data  = (enum AVMatrixEncoding*)side_data->data;
255     *data = matrix_encoding;
256
257     return 0;
258 }
259
260 void avcodec_align_dimensions2(AVCodecContext *s, int *width, int *height,
261                                int linesize_align[AV_NUM_DATA_POINTERS])
262 {
263     int i;
264     int w_align = 1;
265     int h_align = 1;
266     AVPixFmtDescriptor const *desc = av_pix_fmt_desc_get(s->pix_fmt);
267
268     if (desc) {
269         w_align = 1 << desc->log2_chroma_w;
270         h_align = 1 << desc->log2_chroma_h;
271     }
272
273     switch (s->pix_fmt) {
274     case AV_PIX_FMT_YUV420P:
275     case AV_PIX_FMT_YUYV422:
276     case AV_PIX_FMT_YVYU422:
277     case AV_PIX_FMT_UYVY422:
278     case AV_PIX_FMT_YUV422P:
279     case AV_PIX_FMT_YUV440P:
280     case AV_PIX_FMT_YUV444P:
281     case AV_PIX_FMT_GBRP:
282     case AV_PIX_FMT_GBRAP:
283     case AV_PIX_FMT_GRAY8:
284     case AV_PIX_FMT_GRAY16BE:
285     case AV_PIX_FMT_GRAY16LE:
286     case AV_PIX_FMT_YUVJ420P:
287     case AV_PIX_FMT_YUVJ422P:
288     case AV_PIX_FMT_YUVJ440P:
289     case AV_PIX_FMT_YUVJ444P:
290     case AV_PIX_FMT_YUVA420P:
291     case AV_PIX_FMT_YUVA422P:
292     case AV_PIX_FMT_YUVA444P:
293     case AV_PIX_FMT_YUV420P9LE:
294     case AV_PIX_FMT_YUV420P9BE:
295     case AV_PIX_FMT_YUV420P10LE:
296     case AV_PIX_FMT_YUV420P10BE:
297     case AV_PIX_FMT_YUV420P12LE:
298     case AV_PIX_FMT_YUV420P12BE:
299     case AV_PIX_FMT_YUV420P14LE:
300     case AV_PIX_FMT_YUV420P14BE:
301     case AV_PIX_FMT_YUV420P16LE:
302     case AV_PIX_FMT_YUV420P16BE:
303     case AV_PIX_FMT_YUVA420P9LE:
304     case AV_PIX_FMT_YUVA420P9BE:
305     case AV_PIX_FMT_YUVA420P10LE:
306     case AV_PIX_FMT_YUVA420P10BE:
307     case AV_PIX_FMT_YUVA420P16LE:
308     case AV_PIX_FMT_YUVA420P16BE:
309     case AV_PIX_FMT_YUV422P9LE:
310     case AV_PIX_FMT_YUV422P9BE:
311     case AV_PIX_FMT_YUV422P10LE:
312     case AV_PIX_FMT_YUV422P10BE:
313     case AV_PIX_FMT_YUV422P12LE:
314     case AV_PIX_FMT_YUV422P12BE:
315     case AV_PIX_FMT_YUV422P14LE:
316     case AV_PIX_FMT_YUV422P14BE:
317     case AV_PIX_FMT_YUV422P16LE:
318     case AV_PIX_FMT_YUV422P16BE:
319     case AV_PIX_FMT_YUVA422P9LE:
320     case AV_PIX_FMT_YUVA422P9BE:
321     case AV_PIX_FMT_YUVA422P10LE:
322     case AV_PIX_FMT_YUVA422P10BE:
323     case AV_PIX_FMT_YUVA422P16LE:
324     case AV_PIX_FMT_YUVA422P16BE:
325     case AV_PIX_FMT_YUV440P10LE:
326     case AV_PIX_FMT_YUV440P10BE:
327     case AV_PIX_FMT_YUV440P12LE:
328     case AV_PIX_FMT_YUV440P12BE:
329     case AV_PIX_FMT_YUV444P9LE:
330     case AV_PIX_FMT_YUV444P9BE:
331     case AV_PIX_FMT_YUV444P10LE:
332     case AV_PIX_FMT_YUV444P10BE:
333     case AV_PIX_FMT_YUV444P12LE:
334     case AV_PIX_FMT_YUV444P12BE:
335     case AV_PIX_FMT_YUV444P14LE:
336     case AV_PIX_FMT_YUV444P14BE:
337     case AV_PIX_FMT_YUV444P16LE:
338     case AV_PIX_FMT_YUV444P16BE:
339     case AV_PIX_FMT_YUVA444P9LE:
340     case AV_PIX_FMT_YUVA444P9BE:
341     case AV_PIX_FMT_YUVA444P10LE:
342     case AV_PIX_FMT_YUVA444P10BE:
343     case AV_PIX_FMT_YUVA444P16LE:
344     case AV_PIX_FMT_YUVA444P16BE:
345     case AV_PIX_FMT_GBRP9LE:
346     case AV_PIX_FMT_GBRP9BE:
347     case AV_PIX_FMT_GBRP10LE:
348     case AV_PIX_FMT_GBRP10BE:
349     case AV_PIX_FMT_GBRP12LE:
350     case AV_PIX_FMT_GBRP12BE:
351     case AV_PIX_FMT_GBRP14LE:
352     case AV_PIX_FMT_GBRP14BE:
353     case AV_PIX_FMT_GBRP16LE:
354     case AV_PIX_FMT_GBRP16BE:
355     case AV_PIX_FMT_GBRAP12LE:
356     case AV_PIX_FMT_GBRAP12BE:
357     case AV_PIX_FMT_GBRAP16LE:
358     case AV_PIX_FMT_GBRAP16BE:
359         w_align = 16; //FIXME assume 16 pixel per macroblock
360         h_align = 16 * 2; // interlaced needs 2 macroblocks height
361         break;
362     case AV_PIX_FMT_YUV411P:
363     case AV_PIX_FMT_YUVJ411P:
364     case AV_PIX_FMT_UYYVYY411:
365         w_align = 32;
366         h_align = 16 * 2;
367         break;
368     case AV_PIX_FMT_YUV410P:
369         if (s->codec_id == AV_CODEC_ID_SVQ1) {
370             w_align = 64;
371             h_align = 64;
372         }
373         break;
374     case AV_PIX_FMT_RGB555:
375         if (s->codec_id == AV_CODEC_ID_RPZA) {
376             w_align = 4;
377             h_align = 4;
378         }
379         break;
380     case AV_PIX_FMT_PAL8:
381     case AV_PIX_FMT_BGR8:
382     case AV_PIX_FMT_RGB8:
383         if (s->codec_id == AV_CODEC_ID_SMC ||
384             s->codec_id == AV_CODEC_ID_CINEPAK) {
385             w_align = 4;
386             h_align = 4;
387         }
388         if (s->codec_id == AV_CODEC_ID_JV) {
389             w_align = 8;
390             h_align = 8;
391         }
392         break;
393     case AV_PIX_FMT_BGR24:
394         if ((s->codec_id == AV_CODEC_ID_MSZH) ||
395             (s->codec_id == AV_CODEC_ID_ZLIB)) {
396             w_align = 4;
397             h_align = 4;
398         }
399         break;
400     case AV_PIX_FMT_RGB24:
401         if (s->codec_id == AV_CODEC_ID_CINEPAK) {
402             w_align = 4;
403             h_align = 4;
404         }
405         break;
406     default:
407         break;
408     }
409
410     if (s->codec_id == AV_CODEC_ID_IFF_ILBM) {
411         w_align = FFMAX(w_align, 8);
412     }
413
414     *width  = FFALIGN(*width, w_align);
415     *height = FFALIGN(*height, h_align);
416     if (s->codec_id == AV_CODEC_ID_H264 || s->lowres) {
417         // some of the optimized chroma MC reads one line too much
418         // which is also done in mpeg decoders with lowres > 0
419         *height += 2;
420
421         // H.264 uses edge emulation for out of frame motion vectors, for this
422         // it requires a temporary area large enough to hold a 21x21 block,
423         // increasing witdth ensure that the temporary area is large enough,
424         // the next rounded up width is 32
425         *width = FFMAX(*width, 32);
426     }
427
428     for (i = 0; i < 4; i++)
429         linesize_align[i] = STRIDE_ALIGN;
430 }
431
432 void avcodec_align_dimensions(AVCodecContext *s, int *width, int *height)
433 {
434     const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(s->pix_fmt);
435     int chroma_shift = desc->log2_chroma_w;
436     int linesize_align[AV_NUM_DATA_POINTERS];
437     int align;
438
439     avcodec_align_dimensions2(s, width, height, linesize_align);
440     align               = FFMAX(linesize_align[0], linesize_align[3]);
441     linesize_align[1] <<= chroma_shift;
442     linesize_align[2] <<= chroma_shift;
443     align               = FFMAX3(align, linesize_align[1], linesize_align[2]);
444     *width              = FFALIGN(*width, align);
445 }
446
447 int avcodec_enum_to_chroma_pos(int *xpos, int *ypos, enum AVChromaLocation pos)
448 {
449     if (pos <= AVCHROMA_LOC_UNSPECIFIED || pos >= AVCHROMA_LOC_NB)
450         return AVERROR(EINVAL);
451     pos--;
452
453     *xpos = (pos&1) * 128;
454     *ypos = ((pos>>1)^(pos<4)) * 128;
455
456     return 0;
457 }
458
459 enum AVChromaLocation avcodec_chroma_pos_to_enum(int xpos, int ypos)
460 {
461     int pos, xout, yout;
462
463     for (pos = AVCHROMA_LOC_UNSPECIFIED + 1; pos < AVCHROMA_LOC_NB; pos++) {
464         if (avcodec_enum_to_chroma_pos(&xout, &yout, pos) == 0 && xout == xpos && yout == ypos)
465             return pos;
466     }
467     return AVCHROMA_LOC_UNSPECIFIED;
468 }
469
470 int avcodec_fill_audio_frame(AVFrame *frame, int nb_channels,
471                              enum AVSampleFormat sample_fmt, const uint8_t *buf,
472                              int buf_size, int align)
473 {
474     int ch, planar, needed_size, ret = 0;
475
476     needed_size = av_samples_get_buffer_size(NULL, nb_channels,
477                                              frame->nb_samples, sample_fmt,
478                                              align);
479     if (buf_size < needed_size)
480         return AVERROR(EINVAL);
481
482     planar = av_sample_fmt_is_planar(sample_fmt);
483     if (planar && nb_channels > AV_NUM_DATA_POINTERS) {
484         if (!(frame->extended_data = av_mallocz_array(nb_channels,
485                                                 sizeof(*frame->extended_data))))
486             return AVERROR(ENOMEM);
487     } else {
488         frame->extended_data = frame->data;
489     }
490
491     if ((ret = av_samples_fill_arrays(frame->extended_data, &frame->linesize[0],
492                                       (uint8_t *)(intptr_t)buf, nb_channels, frame->nb_samples,
493                                       sample_fmt, align)) < 0) {
494         if (frame->extended_data != frame->data)
495             av_freep(&frame->extended_data);
496         return ret;
497     }
498     if (frame->extended_data != frame->data) {
499         for (ch = 0; ch < AV_NUM_DATA_POINTERS; ch++)
500             frame->data[ch] = frame->extended_data[ch];
501     }
502
503     return ret;
504 }
505
506 static int update_frame_pool(AVCodecContext *avctx, AVFrame *frame)
507 {
508     FramePool *pool = avctx->internal->pool;
509     int i, ret;
510
511     switch (avctx->codec_type) {
512     case AVMEDIA_TYPE_VIDEO: {
513         uint8_t *data[4];
514         int linesize[4];
515         int size[4] = { 0 };
516         int w = frame->width;
517         int h = frame->height;
518         int tmpsize, unaligned;
519
520         if (pool->format == frame->format &&
521             pool->width == frame->width && pool->height == frame->height)
522             return 0;
523
524         avcodec_align_dimensions2(avctx, &w, &h, pool->stride_align);
525
526         do {
527             // NOTE: do not align linesizes individually, this breaks e.g. assumptions
528             // that linesize[0] == 2*linesize[1] in the MPEG-encoder for 4:2:2
529             ret = av_image_fill_linesizes(linesize, avctx->pix_fmt, w);
530             if (ret < 0)
531                 return ret;
532             // increase alignment of w for next try (rhs gives the lowest bit set in w)
533             w += w & ~(w - 1);
534
535             unaligned = 0;
536             for (i = 0; i < 4; i++)
537                 unaligned |= linesize[i] % pool->stride_align[i];
538         } while (unaligned);
539
540         tmpsize = av_image_fill_pointers(data, avctx->pix_fmt, h,
541                                          NULL, linesize);
542         if (tmpsize < 0)
543             return -1;
544
545         for (i = 0; i < 3 && data[i + 1]; i++)
546             size[i] = data[i + 1] - data[i];
547         size[i] = tmpsize - (data[i] - data[0]);
548
549         for (i = 0; i < 4; i++) {
550             av_buffer_pool_uninit(&pool->pools[i]);
551             pool->linesize[i] = linesize[i];
552             if (size[i]) {
553                 pool->pools[i] = av_buffer_pool_init(size[i] + 16 + STRIDE_ALIGN - 1,
554                                                      CONFIG_MEMORY_POISONING ?
555                                                         NULL :
556                                                         av_buffer_allocz);
557                 if (!pool->pools[i]) {
558                     ret = AVERROR(ENOMEM);
559                     goto fail;
560                 }
561             }
562         }
563         pool->format = frame->format;
564         pool->width  = frame->width;
565         pool->height = frame->height;
566
567         break;
568         }
569     case AVMEDIA_TYPE_AUDIO: {
570         int ch     = av_frame_get_channels(frame); //av_get_channel_layout_nb_channels(frame->channel_layout);
571         int planar = av_sample_fmt_is_planar(frame->format);
572         int planes = planar ? ch : 1;
573
574         if (pool->format == frame->format && pool->planes == planes &&
575             pool->channels == ch && frame->nb_samples == pool->samples)
576             return 0;
577
578         av_buffer_pool_uninit(&pool->pools[0]);
579         ret = av_samples_get_buffer_size(&pool->linesize[0], ch,
580                                          frame->nb_samples, frame->format, 0);
581         if (ret < 0)
582             goto fail;
583
584         pool->pools[0] = av_buffer_pool_init(pool->linesize[0], NULL);
585         if (!pool->pools[0]) {
586             ret = AVERROR(ENOMEM);
587             goto fail;
588         }
589
590         pool->format     = frame->format;
591         pool->planes     = planes;
592         pool->channels   = ch;
593         pool->samples = frame->nb_samples;
594         break;
595         }
596     default: av_assert0(0);
597     }
598     return 0;
599 fail:
600     for (i = 0; i < 4; i++)
601         av_buffer_pool_uninit(&pool->pools[i]);
602     pool->format = -1;
603     pool->planes = pool->channels = pool->samples = 0;
604     pool->width  = pool->height = 0;
605     return ret;
606 }
607
608 static int audio_get_buffer(AVCodecContext *avctx, AVFrame *frame)
609 {
610     FramePool *pool = avctx->internal->pool;
611     int planes = pool->planes;
612     int i;
613
614     frame->linesize[0] = pool->linesize[0];
615
616     if (planes > AV_NUM_DATA_POINTERS) {
617         frame->extended_data = av_mallocz_array(planes, sizeof(*frame->extended_data));
618         frame->nb_extended_buf = planes - AV_NUM_DATA_POINTERS;
619         frame->extended_buf  = av_mallocz_array(frame->nb_extended_buf,
620                                           sizeof(*frame->extended_buf));
621         if (!frame->extended_data || !frame->extended_buf) {
622             av_freep(&frame->extended_data);
623             av_freep(&frame->extended_buf);
624             return AVERROR(ENOMEM);
625         }
626     } else {
627         frame->extended_data = frame->data;
628         av_assert0(frame->nb_extended_buf == 0);
629     }
630
631     for (i = 0; i < FFMIN(planes, AV_NUM_DATA_POINTERS); i++) {
632         frame->buf[i] = av_buffer_pool_get(pool->pools[0]);
633         if (!frame->buf[i])
634             goto fail;
635         frame->extended_data[i] = frame->data[i] = frame->buf[i]->data;
636     }
637     for (i = 0; i < frame->nb_extended_buf; i++) {
638         frame->extended_buf[i] = av_buffer_pool_get(pool->pools[0]);
639         if (!frame->extended_buf[i])
640             goto fail;
641         frame->extended_data[i + AV_NUM_DATA_POINTERS] = frame->extended_buf[i]->data;
642     }
643
644     if (avctx->debug & FF_DEBUG_BUFFERS)
645         av_log(avctx, AV_LOG_DEBUG, "default_get_buffer called on frame %p", frame);
646
647     return 0;
648 fail:
649     av_frame_unref(frame);
650     return AVERROR(ENOMEM);
651 }
652
653 static int video_get_buffer(AVCodecContext *s, AVFrame *pic)
654 {
655     FramePool *pool = s->internal->pool;
656     const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(pic->format);
657     int i;
658
659     if (pic->data[0]) {
660         av_log(s, AV_LOG_ERROR, "pic->data[0]!=NULL in avcodec_default_get_buffer\n");
661         return -1;
662     }
663
664     if (!desc) {
665         av_log(s, AV_LOG_ERROR,
666             "Unable to get pixel format descriptor for format %s\n",
667             av_get_pix_fmt_name(pic->format));
668         return AVERROR(EINVAL);
669     }
670
671     memset(pic->data, 0, sizeof(pic->data));
672     pic->extended_data = pic->data;
673
674     for (i = 0; i < 4 && pool->pools[i]; i++) {
675         pic->linesize[i] = pool->linesize[i];
676
677         pic->buf[i] = av_buffer_pool_get(pool->pools[i]);
678         if (!pic->buf[i])
679             goto fail;
680
681         pic->data[i] = pic->buf[i]->data;
682     }
683     for (; i < AV_NUM_DATA_POINTERS; i++) {
684         pic->data[i] = NULL;
685         pic->linesize[i] = 0;
686     }
687     if (desc->flags & AV_PIX_FMT_FLAG_PAL ||
688         desc->flags & AV_PIX_FMT_FLAG_PSEUDOPAL)
689         avpriv_set_systematic_pal2((uint32_t *)pic->data[1], pic->format);
690
691     if (s->debug & FF_DEBUG_BUFFERS)
692         av_log(s, AV_LOG_DEBUG, "default_get_buffer called on pic %p\n", pic);
693
694     return 0;
695 fail:
696     av_frame_unref(pic);
697     return AVERROR(ENOMEM);
698 }
699
700 void ff_color_frame(AVFrame *frame, const int c[4])
701 {
702     const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(frame->format);
703     int p, y, x;
704
705     av_assert0(desc->flags & AV_PIX_FMT_FLAG_PLANAR);
706
707     for (p = 0; p<desc->nb_components; p++) {
708         uint8_t *dst = frame->data[p];
709         int is_chroma = p == 1 || p == 2;
710         int bytes  = is_chroma ? AV_CEIL_RSHIFT(frame->width,  desc->log2_chroma_w) : frame->width;
711         int height = is_chroma ? AV_CEIL_RSHIFT(frame->height, desc->log2_chroma_h) : frame->height;
712         for (y = 0; y < height; y++) {
713             if (desc->comp[0].depth >= 9) {
714                 for (x = 0; x<bytes; x++)
715                     ((uint16_t*)dst)[x] = c[p];
716             }else
717                 memset(dst, c[p], bytes);
718             dst += frame->linesize[p];
719         }
720     }
721 }
722
723 int avcodec_default_get_buffer2(AVCodecContext *avctx, AVFrame *frame, int flags)
724 {
725     int ret;
726
727     if ((ret = update_frame_pool(avctx, frame)) < 0)
728         return ret;
729
730     switch (avctx->codec_type) {
731     case AVMEDIA_TYPE_VIDEO:
732         return video_get_buffer(avctx, frame);
733     case AVMEDIA_TYPE_AUDIO:
734         return audio_get_buffer(avctx, frame);
735     default:
736         return -1;
737     }
738 }
739
740 static int add_metadata_from_side_data(AVPacket *avpkt, AVFrame *frame)
741 {
742     int size;
743     const uint8_t *side_metadata;
744
745     AVDictionary **frame_md = avpriv_frame_get_metadatap(frame);
746
747     side_metadata = av_packet_get_side_data(avpkt,
748                                             AV_PKT_DATA_STRINGS_METADATA, &size);
749     return av_packet_unpack_dictionary(side_metadata, size, frame_md);
750 }
751
752 int ff_init_buffer_info(AVCodecContext *avctx, AVFrame *frame)
753 {
754     AVPacket *pkt = avctx->internal->pkt;
755     int i;
756     static const struct {
757         enum AVPacketSideDataType packet;
758         enum AVFrameSideDataType frame;
759     } sd[] = {
760         { AV_PKT_DATA_REPLAYGAIN ,                AV_FRAME_DATA_REPLAYGAIN },
761         { AV_PKT_DATA_DISPLAYMATRIX,              AV_FRAME_DATA_DISPLAYMATRIX },
762         { AV_PKT_DATA_STEREO3D,                   AV_FRAME_DATA_STEREO3D },
763         { AV_PKT_DATA_AUDIO_SERVICE_TYPE,         AV_FRAME_DATA_AUDIO_SERVICE_TYPE },
764         { AV_PKT_DATA_MASTERING_DISPLAY_METADATA, AV_FRAME_DATA_MASTERING_DISPLAY_METADATA },
765     };
766
767     if (pkt) {
768         frame->pkt_pts = pkt->pts;
769         av_frame_set_pkt_pos     (frame, pkt->pos);
770         av_frame_set_pkt_duration(frame, pkt->duration);
771         av_frame_set_pkt_size    (frame, pkt->size);
772
773         for (i = 0; i < FF_ARRAY_ELEMS(sd); i++) {
774             int size;
775             uint8_t *packet_sd = av_packet_get_side_data(pkt, sd[i].packet, &size);
776             if (packet_sd) {
777                 AVFrameSideData *frame_sd = av_frame_new_side_data(frame,
778                                                                    sd[i].frame,
779                                                                    size);
780                 if (!frame_sd)
781                     return AVERROR(ENOMEM);
782
783                 memcpy(frame_sd->data, packet_sd, size);
784             }
785         }
786         add_metadata_from_side_data(pkt, frame);
787     } else {
788         frame->pkt_pts = AV_NOPTS_VALUE;
789         av_frame_set_pkt_pos     (frame, -1);
790         av_frame_set_pkt_duration(frame, 0);
791         av_frame_set_pkt_size    (frame, -1);
792     }
793     frame->reordered_opaque = avctx->reordered_opaque;
794
795     if (frame->color_primaries == AVCOL_PRI_UNSPECIFIED)
796         frame->color_primaries = avctx->color_primaries;
797     if (frame->color_trc == AVCOL_TRC_UNSPECIFIED)
798         frame->color_trc = avctx->color_trc;
799     if (av_frame_get_colorspace(frame) == AVCOL_SPC_UNSPECIFIED)
800         av_frame_set_colorspace(frame, avctx->colorspace);
801     if (av_frame_get_color_range(frame) == AVCOL_RANGE_UNSPECIFIED)
802         av_frame_set_color_range(frame, avctx->color_range);
803     if (frame->chroma_location == AVCHROMA_LOC_UNSPECIFIED)
804         frame->chroma_location = avctx->chroma_sample_location;
805
806     switch (avctx->codec->type) {
807     case AVMEDIA_TYPE_VIDEO:
808         frame->format              = avctx->pix_fmt;
809         if (!frame->sample_aspect_ratio.num)
810             frame->sample_aspect_ratio = avctx->sample_aspect_ratio;
811
812         if (frame->width && frame->height &&
813             av_image_check_sar(frame->width, frame->height,
814                                frame->sample_aspect_ratio) < 0) {
815             av_log(avctx, AV_LOG_WARNING, "ignoring invalid SAR: %u/%u\n",
816                    frame->sample_aspect_ratio.num,
817                    frame->sample_aspect_ratio.den);
818             frame->sample_aspect_ratio = (AVRational){ 0, 1 };
819         }
820
821         break;
822     case AVMEDIA_TYPE_AUDIO:
823         if (!frame->sample_rate)
824             frame->sample_rate    = avctx->sample_rate;
825         if (frame->format < 0)
826             frame->format         = avctx->sample_fmt;
827         if (!frame->channel_layout) {
828             if (avctx->channel_layout) {
829                  if (av_get_channel_layout_nb_channels(avctx->channel_layout) !=
830                      avctx->channels) {
831                      av_log(avctx, AV_LOG_ERROR, "Inconsistent channel "
832                             "configuration.\n");
833                      return AVERROR(EINVAL);
834                  }
835
836                 frame->channel_layout = avctx->channel_layout;
837             } else {
838                 if (avctx->channels > FF_SANE_NB_CHANNELS) {
839                     av_log(avctx, AV_LOG_ERROR, "Too many channels: %d.\n",
840                            avctx->channels);
841                     return AVERROR(ENOSYS);
842                 }
843             }
844         }
845         av_frame_set_channels(frame, avctx->channels);
846         break;
847     }
848     return 0;
849 }
850
851 int ff_decode_frame_props(AVCodecContext *avctx, AVFrame *frame)
852 {
853     return ff_init_buffer_info(avctx, frame);
854 }
855
856 static int get_buffer_internal(AVCodecContext *avctx, AVFrame *frame, int flags)
857 {
858     const AVHWAccel *hwaccel = avctx->hwaccel;
859     int override_dimensions = 1;
860     int ret;
861
862     if (avctx->codec_type == AVMEDIA_TYPE_VIDEO) {
863         if ((ret = av_image_check_size(avctx->width, avctx->height, 0, avctx)) < 0 || avctx->pix_fmt<0) {
864             av_log(avctx, AV_LOG_ERROR, "video_get_buffer: image parameters invalid\n");
865             return AVERROR(EINVAL);
866         }
867
868         if (frame->width <= 0 || frame->height <= 0) {
869             frame->width  = FFMAX(avctx->width,  AV_CEIL_RSHIFT(avctx->coded_width,  avctx->lowres));
870             frame->height = FFMAX(avctx->height, AV_CEIL_RSHIFT(avctx->coded_height, avctx->lowres));
871             override_dimensions = 0;
872         }
873     }
874     ret = ff_decode_frame_props(avctx, frame);
875     if (ret < 0)
876         return ret;
877
878     if (hwaccel) {
879         if (hwaccel->alloc_frame) {
880             ret = hwaccel->alloc_frame(avctx, frame);
881             goto end;
882         }
883     } else
884         avctx->sw_pix_fmt = avctx->pix_fmt;
885
886     ret = avctx->get_buffer2(avctx, frame, flags);
887
888 end:
889     if (avctx->codec_type == AVMEDIA_TYPE_VIDEO && !override_dimensions) {
890         frame->width  = avctx->width;
891         frame->height = avctx->height;
892     }
893
894     return ret;
895 }
896
897 int ff_get_buffer(AVCodecContext *avctx, AVFrame *frame, int flags)
898 {
899     int ret = get_buffer_internal(avctx, frame, flags);
900     if (ret < 0) {
901         av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
902         frame->width = frame->height = 0;
903     }
904     return ret;
905 }
906
907 static int reget_buffer_internal(AVCodecContext *avctx, AVFrame *frame)
908 {
909     AVFrame *tmp;
910     int ret;
911
912     av_assert0(avctx->codec_type == AVMEDIA_TYPE_VIDEO);
913
914     if (frame->data[0] && (frame->width != avctx->width || frame->height != avctx->height || frame->format != avctx->pix_fmt)) {
915         av_log(avctx, AV_LOG_WARNING, "Picture changed from size:%dx%d fmt:%s to size:%dx%d fmt:%s in reget buffer()\n",
916                frame->width, frame->height, av_get_pix_fmt_name(frame->format), avctx->width, avctx->height, av_get_pix_fmt_name(avctx->pix_fmt));
917         av_frame_unref(frame);
918     }
919
920     ff_init_buffer_info(avctx, frame);
921
922     if (!frame->data[0])
923         return ff_get_buffer(avctx, frame, AV_GET_BUFFER_FLAG_REF);
924
925     if (av_frame_is_writable(frame))
926         return ff_decode_frame_props(avctx, frame);
927
928     tmp = av_frame_alloc();
929     if (!tmp)
930         return AVERROR(ENOMEM);
931
932     av_frame_move_ref(tmp, frame);
933
934     ret = ff_get_buffer(avctx, frame, AV_GET_BUFFER_FLAG_REF);
935     if (ret < 0) {
936         av_frame_free(&tmp);
937         return ret;
938     }
939
940     av_frame_copy(frame, tmp);
941     av_frame_free(&tmp);
942
943     return 0;
944 }
945
946 int ff_reget_buffer(AVCodecContext *avctx, AVFrame *frame)
947 {
948     int ret = reget_buffer_internal(avctx, frame);
949     if (ret < 0)
950         av_log(avctx, AV_LOG_ERROR, "reget_buffer() failed\n");
951     return ret;
952 }
953
954 int avcodec_default_execute(AVCodecContext *c, int (*func)(AVCodecContext *c2, void *arg2), void *arg, int *ret, int count, int size)
955 {
956     int i;
957
958     for (i = 0; i < count; i++) {
959         int r = func(c, (char *)arg + i * size);
960         if (ret)
961             ret[i] = r;
962     }
963     return 0;
964 }
965
966 int avcodec_default_execute2(AVCodecContext *c, int (*func)(AVCodecContext *c2, void *arg2, int jobnr, int threadnr), void *arg, int *ret, int count)
967 {
968     int i;
969
970     for (i = 0; i < count; i++) {
971         int r = func(c, arg, i, 0);
972         if (ret)
973             ret[i] = r;
974     }
975     return 0;
976 }
977
978 enum AVPixelFormat avpriv_find_pix_fmt(const PixelFormatTag *tags,
979                                        unsigned int fourcc)
980 {
981     while (tags->pix_fmt >= 0) {
982         if (tags->fourcc == fourcc)
983             return tags->pix_fmt;
984         tags++;
985     }
986     return AV_PIX_FMT_NONE;
987 }
988
989 static int is_hwaccel_pix_fmt(enum AVPixelFormat pix_fmt)
990 {
991     const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(pix_fmt);
992     return desc->flags & AV_PIX_FMT_FLAG_HWACCEL;
993 }
994
995 enum AVPixelFormat avcodec_default_get_format(struct AVCodecContext *s, const enum AVPixelFormat *fmt)
996 {
997     while (*fmt != AV_PIX_FMT_NONE && is_hwaccel_pix_fmt(*fmt))
998         ++fmt;
999     return fmt[0];
1000 }
1001
1002 static AVHWAccel *find_hwaccel(enum AVCodecID codec_id,
1003                                enum AVPixelFormat pix_fmt)
1004 {
1005     AVHWAccel *hwaccel = NULL;
1006
1007     while ((hwaccel = av_hwaccel_next(hwaccel)))
1008         if (hwaccel->id == codec_id
1009             && hwaccel->pix_fmt == pix_fmt)
1010             return hwaccel;
1011     return NULL;
1012 }
1013
1014 static int setup_hwaccel(AVCodecContext *avctx,
1015                          const enum AVPixelFormat fmt,
1016                          const char *name)
1017 {
1018     AVHWAccel *hwa = find_hwaccel(avctx->codec_id, fmt);
1019     int ret        = 0;
1020
1021     if (avctx->active_thread_type & FF_THREAD_FRAME) {
1022         av_log(avctx, AV_LOG_WARNING,
1023                "Hardware accelerated decoding with frame threading is known to be unstable and its use is discouraged.\n");
1024     }
1025
1026     if (!hwa) {
1027         av_log(avctx, AV_LOG_ERROR,
1028                "Could not find an AVHWAccel for the pixel format: %s",
1029                name);
1030         return AVERROR(ENOENT);
1031     }
1032
1033     if (hwa->capabilities & HWACCEL_CODEC_CAP_EXPERIMENTAL &&
1034         avctx->strict_std_compliance > FF_COMPLIANCE_EXPERIMENTAL) {
1035         av_log(avctx, AV_LOG_WARNING, "Ignoring experimental hwaccel: %s\n",
1036                hwa->name);
1037         return AVERROR_PATCHWELCOME;
1038     }
1039
1040     if (hwa->priv_data_size) {
1041         avctx->internal->hwaccel_priv_data = av_mallocz(hwa->priv_data_size);
1042         if (!avctx->internal->hwaccel_priv_data)
1043             return AVERROR(ENOMEM);
1044     }
1045
1046     if (hwa->init) {
1047         ret = hwa->init(avctx);
1048         if (ret < 0) {
1049             av_freep(&avctx->internal->hwaccel_priv_data);
1050             return ret;
1051         }
1052     }
1053
1054     avctx->hwaccel = hwa;
1055
1056     return 0;
1057 }
1058
1059 int ff_get_format(AVCodecContext *avctx, const enum AVPixelFormat *fmt)
1060 {
1061     const AVPixFmtDescriptor *desc;
1062     enum AVPixelFormat *choices;
1063     enum AVPixelFormat ret;
1064     unsigned n = 0;
1065
1066     while (fmt[n] != AV_PIX_FMT_NONE)
1067         ++n;
1068
1069     av_assert0(n >= 1);
1070     avctx->sw_pix_fmt = fmt[n - 1];
1071     av_assert2(!is_hwaccel_pix_fmt(avctx->sw_pix_fmt));
1072
1073     choices = av_malloc_array(n + 1, sizeof(*choices));
1074     if (!choices)
1075         return AV_PIX_FMT_NONE;
1076
1077     memcpy(choices, fmt, (n + 1) * sizeof(*choices));
1078
1079     for (;;) {
1080         if (avctx->hwaccel && avctx->hwaccel->uninit)
1081             avctx->hwaccel->uninit(avctx);
1082         av_freep(&avctx->internal->hwaccel_priv_data);
1083         avctx->hwaccel = NULL;
1084
1085         ret = avctx->get_format(avctx, choices);
1086
1087         desc = av_pix_fmt_desc_get(ret);
1088         if (!desc) {
1089             ret = AV_PIX_FMT_NONE;
1090             break;
1091         }
1092
1093         if (!(desc->flags & AV_PIX_FMT_FLAG_HWACCEL))
1094             break;
1095 #if FF_API_CAP_VDPAU
1096         if (avctx->codec->capabilities&AV_CODEC_CAP_HWACCEL_VDPAU)
1097             break;
1098 #endif
1099
1100         if (!setup_hwaccel(avctx, ret, desc->name))
1101             break;
1102
1103         /* Remove failed hwaccel from choices */
1104         for (n = 0; choices[n] != ret; n++)
1105             av_assert0(choices[n] != AV_PIX_FMT_NONE);
1106
1107         do
1108             choices[n] = choices[n + 1];
1109         while (choices[n++] != AV_PIX_FMT_NONE);
1110     }
1111
1112     av_freep(&choices);
1113     return ret;
1114 }
1115
1116 MAKE_ACCESSORS(AVCodecContext, codec, AVRational, pkt_timebase)
1117 MAKE_ACCESSORS(AVCodecContext, codec, const AVCodecDescriptor *, codec_descriptor)
1118 MAKE_ACCESSORS(AVCodecContext, codec, int, lowres)
1119 MAKE_ACCESSORS(AVCodecContext, codec, int, seek_preroll)
1120 MAKE_ACCESSORS(AVCodecContext, codec, uint16_t*, chroma_intra_matrix)
1121
1122 unsigned av_codec_get_codec_properties(const AVCodecContext *codec)
1123 {
1124     return codec->properties;
1125 }
1126
1127 int av_codec_get_max_lowres(const AVCodec *codec)
1128 {
1129     return codec->max_lowres;
1130 }
1131
1132 static void get_subtitle_defaults(AVSubtitle *sub)
1133 {
1134     memset(sub, 0, sizeof(*sub));
1135     sub->pts = AV_NOPTS_VALUE;
1136 }
1137
1138 static int64_t get_bit_rate(AVCodecContext *ctx)
1139 {
1140     int64_t bit_rate;
1141     int bits_per_sample;
1142
1143     switch (ctx->codec_type) {
1144     case AVMEDIA_TYPE_VIDEO:
1145     case AVMEDIA_TYPE_DATA:
1146     case AVMEDIA_TYPE_SUBTITLE:
1147     case AVMEDIA_TYPE_ATTACHMENT:
1148         bit_rate = ctx->bit_rate;
1149         break;
1150     case AVMEDIA_TYPE_AUDIO:
1151         bits_per_sample = av_get_bits_per_sample(ctx->codec_id);
1152         bit_rate = bits_per_sample ? ctx->sample_rate * (int64_t)ctx->channels * bits_per_sample : ctx->bit_rate;
1153         break;
1154     default:
1155         bit_rate = 0;
1156         break;
1157     }
1158     return bit_rate;
1159 }
1160
1161 int attribute_align_arg ff_codec_open2_recursive(AVCodecContext *avctx, const AVCodec *codec, AVDictionary **options)
1162 {
1163     int ret = 0;
1164
1165     ff_unlock_avcodec(codec);
1166
1167     ret = avcodec_open2(avctx, codec, options);
1168
1169     ff_lock_avcodec(avctx, codec);
1170     return ret;
1171 }
1172
1173 int attribute_align_arg avcodec_open2(AVCodecContext *avctx, const AVCodec *codec, AVDictionary **options)
1174 {
1175     int ret = 0;
1176     AVDictionary *tmp = NULL;
1177     const AVPixFmtDescriptor *pixdesc;
1178
1179     if (avcodec_is_open(avctx))
1180         return 0;
1181
1182     if ((!codec && !avctx->codec)) {
1183         av_log(avctx, AV_LOG_ERROR, "No codec provided to avcodec_open2()\n");
1184         return AVERROR(EINVAL);
1185     }
1186     if ((codec && avctx->codec && codec != avctx->codec)) {
1187         av_log(avctx, AV_LOG_ERROR, "This AVCodecContext was allocated for %s, "
1188                                     "but %s passed to avcodec_open2()\n", avctx->codec->name, codec->name);
1189         return AVERROR(EINVAL);
1190     }
1191     if (!codec)
1192         codec = avctx->codec;
1193
1194     if (avctx->extradata_size < 0 || avctx->extradata_size >= FF_MAX_EXTRADATA_SIZE)
1195         return AVERROR(EINVAL);
1196
1197     if (options)
1198         av_dict_copy(&tmp, *options, 0);
1199
1200     ret = ff_lock_avcodec(avctx, codec);
1201     if (ret < 0)
1202         return ret;
1203
1204     avctx->internal = av_mallocz(sizeof(AVCodecInternal));
1205     if (!avctx->internal) {
1206         ret = AVERROR(ENOMEM);
1207         goto end;
1208     }
1209
1210     avctx->internal->pool = av_mallocz(sizeof(*avctx->internal->pool));
1211     if (!avctx->internal->pool) {
1212         ret = AVERROR(ENOMEM);
1213         goto free_and_end;
1214     }
1215
1216     avctx->internal->to_free = av_frame_alloc();
1217     if (!avctx->internal->to_free) {
1218         ret = AVERROR(ENOMEM);
1219         goto free_and_end;
1220     }
1221
1222     if (codec->priv_data_size > 0) {
1223         if (!avctx->priv_data) {
1224             avctx->priv_data = av_mallocz(codec->priv_data_size);
1225             if (!avctx->priv_data) {
1226                 ret = AVERROR(ENOMEM);
1227                 goto end;
1228             }
1229             if (codec->priv_class) {
1230                 *(const AVClass **)avctx->priv_data = codec->priv_class;
1231                 av_opt_set_defaults(avctx->priv_data);
1232             }
1233         }
1234         if (codec->priv_class && (ret = av_opt_set_dict(avctx->priv_data, &tmp)) < 0)
1235             goto free_and_end;
1236     } else {
1237         avctx->priv_data = NULL;
1238     }
1239     if ((ret = av_opt_set_dict(avctx, &tmp)) < 0)
1240         goto free_and_end;
1241
1242     if (avctx->codec_whitelist && av_match_list(codec->name, avctx->codec_whitelist, ',') <= 0) {
1243         av_log(avctx, AV_LOG_ERROR, "Codec (%s) not on whitelist \'%s\'\n", codec->name, avctx->codec_whitelist);
1244         ret = AVERROR(EINVAL);
1245         goto free_and_end;
1246     }
1247
1248     // only call ff_set_dimensions() for non H.264/VP6F/DXV codecs so as not to overwrite previously setup dimensions
1249     if (!(avctx->coded_width && avctx->coded_height && avctx->width && avctx->height &&
1250           (avctx->codec_id == AV_CODEC_ID_H264 || avctx->codec_id == AV_CODEC_ID_VP6F || avctx->codec_id == AV_CODEC_ID_DXV))) {
1251     if (avctx->coded_width && avctx->coded_height)
1252         ret = ff_set_dimensions(avctx, avctx->coded_width, avctx->coded_height);
1253     else if (avctx->width && avctx->height)
1254         ret = ff_set_dimensions(avctx, avctx->width, avctx->height);
1255     if (ret < 0)
1256         goto free_and_end;
1257     }
1258
1259     if ((avctx->coded_width || avctx->coded_height || avctx->width || avctx->height)
1260         && (  av_image_check_size(avctx->coded_width, avctx->coded_height, 0, avctx) < 0
1261            || av_image_check_size(avctx->width,       avctx->height,       0, avctx) < 0)) {
1262         av_log(avctx, AV_LOG_WARNING, "Ignoring invalid width/height values\n");
1263         ff_set_dimensions(avctx, 0, 0);
1264     }
1265
1266     if (avctx->width > 0 && avctx->height > 0) {
1267         if (av_image_check_sar(avctx->width, avctx->height,
1268                                avctx->sample_aspect_ratio) < 0) {
1269             av_log(avctx, AV_LOG_WARNING, "ignoring invalid SAR: %u/%u\n",
1270                    avctx->sample_aspect_ratio.num,
1271                    avctx->sample_aspect_ratio.den);
1272             avctx->sample_aspect_ratio = (AVRational){ 0, 1 };
1273         }
1274     }
1275
1276     /* if the decoder init function was already called previously,
1277      * free the already allocated subtitle_header before overwriting it */
1278     if (av_codec_is_decoder(codec))
1279         av_freep(&avctx->subtitle_header);
1280
1281     if (avctx->channels > FF_SANE_NB_CHANNELS) {
1282         ret = AVERROR(EINVAL);
1283         goto free_and_end;
1284     }
1285
1286     avctx->codec = codec;
1287     if ((avctx->codec_type == AVMEDIA_TYPE_UNKNOWN || avctx->codec_type == codec->type) &&
1288         avctx->codec_id == AV_CODEC_ID_NONE) {
1289         avctx->codec_type = codec->type;
1290         avctx->codec_id   = codec->id;
1291     }
1292     if (avctx->codec_id != codec->id || (avctx->codec_type != codec->type
1293                                          && avctx->codec_type != AVMEDIA_TYPE_ATTACHMENT)) {
1294         av_log(avctx, AV_LOG_ERROR, "Codec type or id mismatches\n");
1295         ret = AVERROR(EINVAL);
1296         goto free_and_end;
1297     }
1298     avctx->frame_number = 0;
1299     avctx->codec_descriptor = avcodec_descriptor_get(avctx->codec_id);
1300
1301     if ((avctx->codec->capabilities & AV_CODEC_CAP_EXPERIMENTAL) &&
1302         avctx->strict_std_compliance > FF_COMPLIANCE_EXPERIMENTAL) {
1303         const char *codec_string = av_codec_is_encoder(codec) ? "encoder" : "decoder";
1304         AVCodec *codec2;
1305         av_log(avctx, AV_LOG_ERROR,
1306                "The %s '%s' is experimental but experimental codecs are not enabled, "
1307                "add '-strict %d' if you want to use it.\n",
1308                codec_string, codec->name, FF_COMPLIANCE_EXPERIMENTAL);
1309         codec2 = av_codec_is_encoder(codec) ? avcodec_find_encoder(codec->id) : avcodec_find_decoder(codec->id);
1310         if (!(codec2->capabilities & AV_CODEC_CAP_EXPERIMENTAL))
1311             av_log(avctx, AV_LOG_ERROR, "Alternatively use the non experimental %s '%s'.\n",
1312                 codec_string, codec2->name);
1313         ret = AVERROR_EXPERIMENTAL;
1314         goto free_and_end;
1315     }
1316
1317     if (avctx->codec_type == AVMEDIA_TYPE_AUDIO &&
1318         (!avctx->time_base.num || !avctx->time_base.den)) {
1319         avctx->time_base.num = 1;
1320         avctx->time_base.den = avctx->sample_rate;
1321     }
1322
1323     if (!HAVE_THREADS)
1324         av_log(avctx, AV_LOG_WARNING, "Warning: not compiled with thread support, using thread emulation\n");
1325
1326     if (CONFIG_FRAME_THREAD_ENCODER && av_codec_is_encoder(avctx->codec)) {
1327         ff_unlock_avcodec(codec); //we will instantiate a few encoders thus kick the counter to prevent false detection of a problem
1328         ret = ff_frame_thread_encoder_init(avctx, options ? *options : NULL);
1329         ff_lock_avcodec(avctx, codec);
1330         if (ret < 0)
1331             goto free_and_end;
1332     }
1333
1334     if (HAVE_THREADS
1335         && !(avctx->internal->frame_thread_encoder && (avctx->active_thread_type&FF_THREAD_FRAME))) {
1336         ret = ff_thread_init(avctx);
1337         if (ret < 0) {
1338             goto free_and_end;
1339         }
1340     }
1341     if (!HAVE_THREADS && !(codec->capabilities & AV_CODEC_CAP_AUTO_THREADS))
1342         avctx->thread_count = 1;
1343
1344     if (avctx->codec->max_lowres < avctx->lowres || avctx->lowres < 0) {
1345         av_log(avctx, AV_LOG_ERROR, "The maximum value for lowres supported by the decoder is %d\n",
1346                avctx->codec->max_lowres);
1347         ret = AVERROR(EINVAL);
1348         goto free_and_end;
1349     }
1350
1351 #if FF_API_VISMV
1352     if (avctx->debug_mv)
1353         av_log(avctx, AV_LOG_WARNING, "The 'vismv' option is deprecated, "
1354                "see the codecview filter instead.\n");
1355 #endif
1356
1357     if (av_codec_is_encoder(avctx->codec)) {
1358         int i;
1359 #if FF_API_CODED_FRAME
1360 FF_DISABLE_DEPRECATION_WARNINGS
1361         avctx->coded_frame = av_frame_alloc();
1362         if (!avctx->coded_frame) {
1363             ret = AVERROR(ENOMEM);
1364             goto free_and_end;
1365         }
1366 FF_ENABLE_DEPRECATION_WARNINGS
1367 #endif
1368         if (avctx->codec->sample_fmts) {
1369             for (i = 0; avctx->codec->sample_fmts[i] != AV_SAMPLE_FMT_NONE; i++) {
1370                 if (avctx->sample_fmt == avctx->codec->sample_fmts[i])
1371                     break;
1372                 if (avctx->channels == 1 &&
1373                     av_get_planar_sample_fmt(avctx->sample_fmt) ==
1374                     av_get_planar_sample_fmt(avctx->codec->sample_fmts[i])) {
1375                     avctx->sample_fmt = avctx->codec->sample_fmts[i];
1376                     break;
1377                 }
1378             }
1379             if (avctx->codec->sample_fmts[i] == AV_SAMPLE_FMT_NONE) {
1380                 char buf[128];
1381                 snprintf(buf, sizeof(buf), "%d", avctx->sample_fmt);
1382                 av_log(avctx, AV_LOG_ERROR, "Specified sample format %s is invalid or not supported\n",
1383                        (char *)av_x_if_null(av_get_sample_fmt_name(avctx->sample_fmt), buf));
1384                 ret = AVERROR(EINVAL);
1385                 goto free_and_end;
1386             }
1387         }
1388         if (avctx->codec->pix_fmts) {
1389             for (i = 0; avctx->codec->pix_fmts[i] != AV_PIX_FMT_NONE; i++)
1390                 if (avctx->pix_fmt == avctx->codec->pix_fmts[i])
1391                     break;
1392             if (avctx->codec->pix_fmts[i] == AV_PIX_FMT_NONE
1393                 && !((avctx->codec_id == AV_CODEC_ID_MJPEG || avctx->codec_id == AV_CODEC_ID_LJPEG)
1394                      && avctx->strict_std_compliance <= FF_COMPLIANCE_UNOFFICIAL)) {
1395                 char buf[128];
1396                 snprintf(buf, sizeof(buf), "%d", avctx->pix_fmt);
1397                 av_log(avctx, AV_LOG_ERROR, "Specified pixel format %s is invalid or not supported\n",
1398                        (char *)av_x_if_null(av_get_pix_fmt_name(avctx->pix_fmt), buf));
1399                 ret = AVERROR(EINVAL);
1400                 goto free_and_end;
1401             }
1402             if (avctx->codec->pix_fmts[i] == AV_PIX_FMT_YUVJ420P ||
1403                 avctx->codec->pix_fmts[i] == AV_PIX_FMT_YUVJ411P ||
1404                 avctx->codec->pix_fmts[i] == AV_PIX_FMT_YUVJ422P ||
1405                 avctx->codec->pix_fmts[i] == AV_PIX_FMT_YUVJ440P ||
1406                 avctx->codec->pix_fmts[i] == AV_PIX_FMT_YUVJ444P)
1407                 avctx->color_range = AVCOL_RANGE_JPEG;
1408         }
1409         if (avctx->codec->supported_samplerates) {
1410             for (i = 0; avctx->codec->supported_samplerates[i] != 0; i++)
1411                 if (avctx->sample_rate == avctx->codec->supported_samplerates[i])
1412                     break;
1413             if (avctx->codec->supported_samplerates[i] == 0) {
1414                 av_log(avctx, AV_LOG_ERROR, "Specified sample rate %d is not supported\n",
1415                        avctx->sample_rate);
1416                 ret = AVERROR(EINVAL);
1417                 goto free_and_end;
1418             }
1419         }
1420         if (avctx->sample_rate < 0) {
1421             av_log(avctx, AV_LOG_ERROR, "Specified sample rate %d is not supported\n",
1422                     avctx->sample_rate);
1423             ret = AVERROR(EINVAL);
1424             goto free_and_end;
1425         }
1426         if (avctx->codec->channel_layouts) {
1427             if (!avctx->channel_layout) {
1428                 av_log(avctx, AV_LOG_WARNING, "Channel layout not specified\n");
1429             } else {
1430                 for (i = 0; avctx->codec->channel_layouts[i] != 0; i++)
1431                     if (avctx->channel_layout == avctx->codec->channel_layouts[i])
1432                         break;
1433                 if (avctx->codec->channel_layouts[i] == 0) {
1434                     char buf[512];
1435                     av_get_channel_layout_string(buf, sizeof(buf), -1, avctx->channel_layout);
1436                     av_log(avctx, AV_LOG_ERROR, "Specified channel layout '%s' is not supported\n", buf);
1437                     ret = AVERROR(EINVAL);
1438                     goto free_and_end;
1439                 }
1440             }
1441         }
1442         if (avctx->channel_layout && avctx->channels) {
1443             int channels = av_get_channel_layout_nb_channels(avctx->channel_layout);
1444             if (channels != avctx->channels) {
1445                 char buf[512];
1446                 av_get_channel_layout_string(buf, sizeof(buf), -1, avctx->channel_layout);
1447                 av_log(avctx, AV_LOG_ERROR,
1448                        "Channel layout '%s' with %d channels does not match number of specified channels %d\n",
1449                        buf, channels, avctx->channels);
1450                 ret = AVERROR(EINVAL);
1451                 goto free_and_end;
1452             }
1453         } else if (avctx->channel_layout) {
1454             avctx->channels = av_get_channel_layout_nb_channels(avctx->channel_layout);
1455         }
1456         if (avctx->channels < 0) {
1457             av_log(avctx, AV_LOG_ERROR, "Specified number of channels %d is not supported\n",
1458                     avctx->channels);
1459             ret = AVERROR(EINVAL);
1460             goto free_and_end;
1461         }
1462         if(avctx->codec_type == AVMEDIA_TYPE_VIDEO) {
1463             pixdesc = av_pix_fmt_desc_get(avctx->pix_fmt);
1464             if (    avctx->bits_per_raw_sample < 0
1465                 || (avctx->bits_per_raw_sample > 8 && pixdesc->comp[0].depth <= 8)) {
1466                 av_log(avctx, AV_LOG_WARNING, "Specified bit depth %d not possible with the specified pixel formats depth %d\n",
1467                     avctx->bits_per_raw_sample, pixdesc->comp[0].depth);
1468                 avctx->bits_per_raw_sample = pixdesc->comp[0].depth;
1469             }
1470             if (avctx->width <= 0 || avctx->height <= 0) {
1471                 av_log(avctx, AV_LOG_ERROR, "dimensions not set\n");
1472                 ret = AVERROR(EINVAL);
1473                 goto free_and_end;
1474             }
1475         }
1476         if (   (avctx->codec_type == AVMEDIA_TYPE_VIDEO || avctx->codec_type == AVMEDIA_TYPE_AUDIO)
1477             && avctx->bit_rate>0 && avctx->bit_rate<1000) {
1478             av_log(avctx, AV_LOG_WARNING, "Bitrate %"PRId64" is extremely low, maybe you mean %"PRId64"k\n", (int64_t)avctx->bit_rate, (int64_t)avctx->bit_rate);
1479         }
1480
1481         if (!avctx->rc_initial_buffer_occupancy)
1482             avctx->rc_initial_buffer_occupancy = avctx->rc_buffer_size * 3 / 4;
1483
1484         if (avctx->ticks_per_frame && avctx->time_base.num &&
1485             avctx->ticks_per_frame > INT_MAX / avctx->time_base.num) {
1486             av_log(avctx, AV_LOG_ERROR,
1487                    "ticks_per_frame %d too large for the timebase %d/%d.",
1488                    avctx->ticks_per_frame,
1489                    avctx->time_base.num,
1490                    avctx->time_base.den);
1491             goto free_and_end;
1492         }
1493
1494         if (avctx->hw_frames_ctx) {
1495             AVHWFramesContext *frames_ctx = (AVHWFramesContext*)avctx->hw_frames_ctx->data;
1496             if (frames_ctx->format != avctx->pix_fmt) {
1497                 av_log(avctx, AV_LOG_ERROR,
1498                        "Mismatching AVCodecContext.pix_fmt and AVHWFramesContext.format\n");
1499                 ret = AVERROR(EINVAL);
1500                 goto free_and_end;
1501             }
1502         }
1503     }
1504
1505     avctx->pts_correction_num_faulty_pts =
1506     avctx->pts_correction_num_faulty_dts = 0;
1507     avctx->pts_correction_last_pts =
1508     avctx->pts_correction_last_dts = INT64_MIN;
1509
1510     if (   !CONFIG_GRAY && avctx->flags & AV_CODEC_FLAG_GRAY
1511         && avctx->codec_descriptor->type == AVMEDIA_TYPE_VIDEO)
1512         av_log(avctx, AV_LOG_WARNING,
1513                "gray decoding requested but not enabled at configuration time\n");
1514
1515     if (   avctx->codec->init && (!(avctx->active_thread_type&FF_THREAD_FRAME)
1516         || avctx->internal->frame_thread_encoder)) {
1517         ret = avctx->codec->init(avctx);
1518         if (ret < 0) {
1519             goto free_and_end;
1520         }
1521     }
1522
1523     ret=0;
1524
1525 #if FF_API_AUDIOENC_DELAY
1526     if (av_codec_is_encoder(avctx->codec))
1527         avctx->delay = avctx->initial_padding;
1528 #endif
1529
1530     if (av_codec_is_decoder(avctx->codec)) {
1531         if (!avctx->bit_rate)
1532             avctx->bit_rate = get_bit_rate(avctx);
1533         /* validate channel layout from the decoder */
1534         if (avctx->channel_layout) {
1535             int channels = av_get_channel_layout_nb_channels(avctx->channel_layout);
1536             if (!avctx->channels)
1537                 avctx->channels = channels;
1538             else if (channels != avctx->channels) {
1539                 char buf[512];
1540                 av_get_channel_layout_string(buf, sizeof(buf), -1, avctx->channel_layout);
1541                 av_log(avctx, AV_LOG_WARNING,
1542                        "Channel layout '%s' with %d channels does not match specified number of channels %d: "
1543                        "ignoring specified channel layout\n",
1544                        buf, channels, avctx->channels);
1545                 avctx->channel_layout = 0;
1546             }
1547         }
1548         if (avctx->channels && avctx->channels < 0 ||
1549             avctx->channels > FF_SANE_NB_CHANNELS) {
1550             ret = AVERROR(EINVAL);
1551             goto free_and_end;
1552         }
1553         if (avctx->sub_charenc) {
1554             if (avctx->codec_type != AVMEDIA_TYPE_SUBTITLE) {
1555                 av_log(avctx, AV_LOG_ERROR, "Character encoding is only "
1556                        "supported with subtitles codecs\n");
1557                 ret = AVERROR(EINVAL);
1558                 goto free_and_end;
1559             } else if (avctx->codec_descriptor->props & AV_CODEC_PROP_BITMAP_SUB) {
1560                 av_log(avctx, AV_LOG_WARNING, "Codec '%s' is bitmap-based, "
1561                        "subtitles character encoding will be ignored\n",
1562                        avctx->codec_descriptor->name);
1563                 avctx->sub_charenc_mode = FF_SUB_CHARENC_MODE_DO_NOTHING;
1564             } else {
1565                 /* input character encoding is set for a text based subtitle
1566                  * codec at this point */
1567                 if (avctx->sub_charenc_mode == FF_SUB_CHARENC_MODE_AUTOMATIC)
1568                     avctx->sub_charenc_mode = FF_SUB_CHARENC_MODE_PRE_DECODER;
1569
1570                 if (avctx->sub_charenc_mode == FF_SUB_CHARENC_MODE_PRE_DECODER) {
1571 #if CONFIG_ICONV
1572                     iconv_t cd = iconv_open("UTF-8", avctx->sub_charenc);
1573                     if (cd == (iconv_t)-1) {
1574                         ret = AVERROR(errno);
1575                         av_log(avctx, AV_LOG_ERROR, "Unable to open iconv context "
1576                                "with input character encoding \"%s\"\n", avctx->sub_charenc);
1577                         goto free_and_end;
1578                     }
1579                     iconv_close(cd);
1580 #else
1581                     av_log(avctx, AV_LOG_ERROR, "Character encoding subtitles "
1582                            "conversion needs a libavcodec built with iconv support "
1583                            "for this codec\n");
1584                     ret = AVERROR(ENOSYS);
1585                     goto free_and_end;
1586 #endif
1587                 }
1588             }
1589         }
1590
1591 #if FF_API_AVCTX_TIMEBASE
1592         if (avctx->framerate.num > 0 && avctx->framerate.den > 0)
1593             avctx->time_base = av_inv_q(av_mul_q(avctx->framerate, (AVRational){avctx->ticks_per_frame, 1}));
1594 #endif
1595     }
1596     if (codec->priv_data_size > 0 && avctx->priv_data && codec->priv_class) {
1597         av_assert0(*(const AVClass **)avctx->priv_data == codec->priv_class);
1598     }
1599
1600 end:
1601     ff_unlock_avcodec(codec);
1602     if (options) {
1603         av_dict_free(options);
1604         *options = tmp;
1605     }
1606
1607     return ret;
1608 free_and_end:
1609     if (avctx->codec &&
1610         (avctx->codec->caps_internal & FF_CODEC_CAP_INIT_CLEANUP))
1611         avctx->codec->close(avctx);
1612
1613     if (codec->priv_class && codec->priv_data_size)
1614         av_opt_free(avctx->priv_data);
1615     av_opt_free(avctx);
1616
1617 #if FF_API_CODED_FRAME
1618 FF_DISABLE_DEPRECATION_WARNINGS
1619     av_frame_free(&avctx->coded_frame);
1620 FF_ENABLE_DEPRECATION_WARNINGS
1621 #endif
1622
1623     av_dict_free(&tmp);
1624     av_freep(&avctx->priv_data);
1625     if (avctx->internal) {
1626         av_frame_free(&avctx->internal->to_free);
1627         av_freep(&avctx->internal->pool);
1628     }
1629     av_freep(&avctx->internal);
1630     avctx->codec = NULL;
1631     goto end;
1632 }
1633
1634 int ff_alloc_packet2(AVCodecContext *avctx, AVPacket *avpkt, int64_t size, int64_t min_size)
1635 {
1636     if (avpkt->size < 0) {
1637         av_log(avctx, AV_LOG_ERROR, "Invalid negative user packet size %d\n", avpkt->size);
1638         return AVERROR(EINVAL);
1639     }
1640     if (size < 0 || size > INT_MAX - AV_INPUT_BUFFER_PADDING_SIZE) {
1641         av_log(avctx, AV_LOG_ERROR, "Invalid minimum required packet size %"PRId64" (max allowed is %d)\n",
1642                size, INT_MAX - AV_INPUT_BUFFER_PADDING_SIZE);
1643         return AVERROR(EINVAL);
1644     }
1645
1646     if (avctx && 2*min_size < size) { // FIXME The factor needs to be finetuned
1647         av_assert0(!avpkt->data || avpkt->data != avctx->internal->byte_buffer);
1648         if (!avpkt->data || avpkt->size < size) {
1649             av_fast_padded_malloc(&avctx->internal->byte_buffer, &avctx->internal->byte_buffer_size, size);
1650             avpkt->data = avctx->internal->byte_buffer;
1651             avpkt->size = avctx->internal->byte_buffer_size;
1652         }
1653     }
1654
1655     if (avpkt->data) {
1656         AVBufferRef *buf = avpkt->buf;
1657
1658         if (avpkt->size < size) {
1659             av_log(avctx, AV_LOG_ERROR, "User packet is too small (%d < %"PRId64")\n", avpkt->size, size);
1660             return AVERROR(EINVAL);
1661         }
1662
1663         av_init_packet(avpkt);
1664         avpkt->buf      = buf;
1665         avpkt->size     = size;
1666         return 0;
1667     } else {
1668         int ret = av_new_packet(avpkt, size);
1669         if (ret < 0)
1670             av_log(avctx, AV_LOG_ERROR, "Failed to allocate packet of size %"PRId64"\n", size);
1671         return ret;
1672     }
1673 }
1674
1675 int ff_alloc_packet(AVPacket *avpkt, int size)
1676 {
1677     return ff_alloc_packet2(NULL, avpkt, size, 0);
1678 }
1679
1680 /**
1681  * Pad last frame with silence.
1682  */
1683 static int pad_last_frame(AVCodecContext *s, AVFrame **dst, const AVFrame *src)
1684 {
1685     AVFrame *frame = NULL;
1686     int ret;
1687
1688     if (!(frame = av_frame_alloc()))
1689         return AVERROR(ENOMEM);
1690
1691     frame->format         = src->format;
1692     frame->channel_layout = src->channel_layout;
1693     av_frame_set_channels(frame, av_frame_get_channels(src));
1694     frame->nb_samples     = s->frame_size;
1695     ret = av_frame_get_buffer(frame, 32);
1696     if (ret < 0)
1697         goto fail;
1698
1699     ret = av_frame_copy_props(frame, src);
1700     if (ret < 0)
1701         goto fail;
1702
1703     if ((ret = av_samples_copy(frame->extended_data, src->extended_data, 0, 0,
1704                                src->nb_samples, s->channels, s->sample_fmt)) < 0)
1705         goto fail;
1706     if ((ret = av_samples_set_silence(frame->extended_data, src->nb_samples,
1707                                       frame->nb_samples - src->nb_samples,
1708                                       s->channels, s->sample_fmt)) < 0)
1709         goto fail;
1710
1711     *dst = frame;
1712
1713     return 0;
1714
1715 fail:
1716     av_frame_free(&frame);
1717     return ret;
1718 }
1719
1720 int attribute_align_arg avcodec_encode_audio2(AVCodecContext *avctx,
1721                                               AVPacket *avpkt,
1722                                               const AVFrame *frame,
1723                                               int *got_packet_ptr)
1724 {
1725     AVFrame *extended_frame = NULL;
1726     AVFrame *padded_frame = NULL;
1727     int ret;
1728     AVPacket user_pkt = *avpkt;
1729     int needs_realloc = !user_pkt.data;
1730
1731     *got_packet_ptr = 0;
1732
1733     if (!(avctx->codec->capabilities & AV_CODEC_CAP_DELAY) && !frame) {
1734         av_packet_unref(avpkt);
1735         av_init_packet(avpkt);
1736         return 0;
1737     }
1738
1739     /* ensure that extended_data is properly set */
1740     if (frame && !frame->extended_data) {
1741         if (av_sample_fmt_is_planar(avctx->sample_fmt) &&
1742             avctx->channels > AV_NUM_DATA_POINTERS) {
1743             av_log(avctx, AV_LOG_ERROR, "Encoding to a planar sample format, "
1744                                         "with more than %d channels, but extended_data is not set.\n",
1745                    AV_NUM_DATA_POINTERS);
1746             return AVERROR(EINVAL);
1747         }
1748         av_log(avctx, AV_LOG_WARNING, "extended_data is not set.\n");
1749
1750         extended_frame = av_frame_alloc();
1751         if (!extended_frame)
1752             return AVERROR(ENOMEM);
1753
1754         memcpy(extended_frame, frame, sizeof(AVFrame));
1755         extended_frame->extended_data = extended_frame->data;
1756         frame = extended_frame;
1757     }
1758
1759     /* extract audio service type metadata */
1760     if (frame) {
1761         AVFrameSideData *sd = av_frame_get_side_data(frame, AV_FRAME_DATA_AUDIO_SERVICE_TYPE);
1762         if (sd && sd->size >= sizeof(enum AVAudioServiceType))
1763             avctx->audio_service_type = *(enum AVAudioServiceType*)sd->data;
1764     }
1765
1766     /* check for valid frame size */
1767     if (frame) {
1768         if (avctx->codec->capabilities & AV_CODEC_CAP_SMALL_LAST_FRAME) {
1769             if (frame->nb_samples > avctx->frame_size) {
1770                 av_log(avctx, AV_LOG_ERROR, "more samples than frame size (avcodec_encode_audio2)\n");
1771                 ret = AVERROR(EINVAL);
1772                 goto end;
1773             }
1774         } else if (!(avctx->codec->capabilities & AV_CODEC_CAP_VARIABLE_FRAME_SIZE)) {
1775             if (frame->nb_samples < avctx->frame_size &&
1776                 !avctx->internal->last_audio_frame) {
1777                 ret = pad_last_frame(avctx, &padded_frame, frame);
1778                 if (ret < 0)
1779                     goto end;
1780
1781                 frame = padded_frame;
1782                 avctx->internal->last_audio_frame = 1;
1783             }
1784
1785             if (frame->nb_samples != avctx->frame_size) {
1786                 av_log(avctx, AV_LOG_ERROR, "nb_samples (%d) != frame_size (%d) (avcodec_encode_audio2)\n", frame->nb_samples, avctx->frame_size);
1787                 ret = AVERROR(EINVAL);
1788                 goto end;
1789             }
1790         }
1791     }
1792
1793     av_assert0(avctx->codec->encode2);
1794
1795     ret = avctx->codec->encode2(avctx, avpkt, frame, got_packet_ptr);
1796     if (!ret) {
1797         if (*got_packet_ptr) {
1798             if (!(avctx->codec->capabilities & AV_CODEC_CAP_DELAY)) {
1799                 if (avpkt->pts == AV_NOPTS_VALUE)
1800                     avpkt->pts = frame->pts;
1801                 if (!avpkt->duration)
1802                     avpkt->duration = ff_samples_to_time_base(avctx,
1803                                                               frame->nb_samples);
1804             }
1805             avpkt->dts = avpkt->pts;
1806         } else {
1807             avpkt->size = 0;
1808         }
1809     }
1810     if (avpkt->data && avpkt->data == avctx->internal->byte_buffer) {
1811         needs_realloc = 0;
1812         if (user_pkt.data) {
1813             if (user_pkt.size >= avpkt->size) {
1814                 memcpy(user_pkt.data, avpkt->data, avpkt->size);
1815             } else {
1816                 av_log(avctx, AV_LOG_ERROR, "Provided packet is too small, needs to be %d\n", avpkt->size);
1817                 avpkt->size = user_pkt.size;
1818                 ret = -1;
1819             }
1820             avpkt->buf      = user_pkt.buf;
1821             avpkt->data     = user_pkt.data;
1822         } else {
1823             if (av_dup_packet(avpkt) < 0) {
1824                 ret = AVERROR(ENOMEM);
1825             }
1826         }
1827     }
1828
1829     if (!ret) {
1830         if (needs_realloc && avpkt->data) {
1831             ret = av_buffer_realloc(&avpkt->buf, avpkt->size + AV_INPUT_BUFFER_PADDING_SIZE);
1832             if (ret >= 0)
1833                 avpkt->data = avpkt->buf->data;
1834         }
1835
1836         avctx->frame_number++;
1837     }
1838
1839     if (ret < 0 || !*got_packet_ptr) {
1840         av_packet_unref(avpkt);
1841         av_init_packet(avpkt);
1842         goto end;
1843     }
1844
1845     /* NOTE: if we add any audio encoders which output non-keyframe packets,
1846      *       this needs to be moved to the encoders, but for now we can do it
1847      *       here to simplify things */
1848     avpkt->flags |= AV_PKT_FLAG_KEY;
1849
1850 end:
1851     av_frame_free(&padded_frame);
1852     av_free(extended_frame);
1853
1854 #if FF_API_AUDIOENC_DELAY
1855     avctx->delay = avctx->initial_padding;
1856 #endif
1857
1858     return ret;
1859 }
1860
1861 int attribute_align_arg avcodec_encode_video2(AVCodecContext *avctx,
1862                                               AVPacket *avpkt,
1863                                               const AVFrame *frame,
1864                                               int *got_packet_ptr)
1865 {
1866     int ret;
1867     AVPacket user_pkt = *avpkt;
1868     int needs_realloc = !user_pkt.data;
1869
1870     *got_packet_ptr = 0;
1871
1872     if(CONFIG_FRAME_THREAD_ENCODER &&
1873        avctx->internal->frame_thread_encoder && (avctx->active_thread_type&FF_THREAD_FRAME))
1874         return ff_thread_video_encode_frame(avctx, avpkt, frame, got_packet_ptr);
1875
1876     if ((avctx->flags&AV_CODEC_FLAG_PASS1) && avctx->stats_out)
1877         avctx->stats_out[0] = '\0';
1878
1879     if (!(avctx->codec->capabilities & AV_CODEC_CAP_DELAY) && !frame) {
1880         av_packet_unref(avpkt);
1881         av_init_packet(avpkt);
1882         avpkt->size = 0;
1883         return 0;
1884     }
1885
1886     if (av_image_check_size(avctx->width, avctx->height, 0, avctx))
1887         return AVERROR(EINVAL);
1888
1889     if (frame && frame->format == AV_PIX_FMT_NONE)
1890         av_log(avctx, AV_LOG_WARNING, "AVFrame.format is not set\n");
1891     if (frame && (frame->width == 0 || frame->height == 0))
1892         av_log(avctx, AV_LOG_WARNING, "AVFrame.width or height is not set\n");
1893
1894     av_assert0(avctx->codec->encode2);
1895
1896     ret = avctx->codec->encode2(avctx, avpkt, frame, got_packet_ptr);
1897     av_assert0(ret <= 0);
1898
1899     if (avpkt->data && avpkt->data == avctx->internal->byte_buffer) {
1900         needs_realloc = 0;
1901         if (user_pkt.data) {
1902             if (user_pkt.size >= avpkt->size) {
1903                 memcpy(user_pkt.data, avpkt->data, avpkt->size);
1904             } else {
1905                 av_log(avctx, AV_LOG_ERROR, "Provided packet is too small, needs to be %d\n", avpkt->size);
1906                 avpkt->size = user_pkt.size;
1907                 ret = -1;
1908             }
1909             avpkt->buf      = user_pkt.buf;
1910             avpkt->data     = user_pkt.data;
1911         } else {
1912             if (av_dup_packet(avpkt) < 0) {
1913                 ret = AVERROR(ENOMEM);
1914             }
1915         }
1916     }
1917
1918     if (!ret) {
1919         if (!*got_packet_ptr)
1920             avpkt->size = 0;
1921         else if (!(avctx->codec->capabilities & AV_CODEC_CAP_DELAY))
1922             avpkt->pts = avpkt->dts = frame->pts;
1923
1924         if (needs_realloc && avpkt->data) {
1925             ret = av_buffer_realloc(&avpkt->buf, avpkt->size + AV_INPUT_BUFFER_PADDING_SIZE);
1926             if (ret >= 0)
1927                 avpkt->data = avpkt->buf->data;
1928         }
1929
1930         avctx->frame_number++;
1931     }
1932
1933     if (ret < 0 || !*got_packet_ptr)
1934         av_packet_unref(avpkt);
1935
1936     emms_c();
1937     return ret;
1938 }
1939
1940 int avcodec_encode_subtitle(AVCodecContext *avctx, uint8_t *buf, int buf_size,
1941                             const AVSubtitle *sub)
1942 {
1943     int ret;
1944     if (sub->start_display_time) {
1945         av_log(avctx, AV_LOG_ERROR, "start_display_time must be 0.\n");
1946         return -1;
1947     }
1948
1949     ret = avctx->codec->encode_sub(avctx, buf, buf_size, sub);
1950     avctx->frame_number++;
1951     return ret;
1952 }
1953
1954 /**
1955  * Attempt to guess proper monotonic timestamps for decoded video frames
1956  * which might have incorrect times. Input timestamps may wrap around, in
1957  * which case the output will as well.
1958  *
1959  * @param pts the pts field of the decoded AVPacket, as passed through
1960  * AVFrame.pkt_pts
1961  * @param dts the dts field of the decoded AVPacket
1962  * @return one of the input values, may be AV_NOPTS_VALUE
1963  */
1964 static int64_t guess_correct_pts(AVCodecContext *ctx,
1965                                  int64_t reordered_pts, int64_t dts)
1966 {
1967     int64_t pts = AV_NOPTS_VALUE;
1968
1969     if (dts != AV_NOPTS_VALUE) {
1970         ctx->pts_correction_num_faulty_dts += dts <= ctx->pts_correction_last_dts;
1971         ctx->pts_correction_last_dts = dts;
1972     } else if (reordered_pts != AV_NOPTS_VALUE)
1973         ctx->pts_correction_last_dts = reordered_pts;
1974
1975     if (reordered_pts != AV_NOPTS_VALUE) {
1976         ctx->pts_correction_num_faulty_pts += reordered_pts <= ctx->pts_correction_last_pts;
1977         ctx->pts_correction_last_pts = reordered_pts;
1978     } else if(dts != AV_NOPTS_VALUE)
1979         ctx->pts_correction_last_pts = dts;
1980
1981     if ((ctx->pts_correction_num_faulty_pts<=ctx->pts_correction_num_faulty_dts || dts == AV_NOPTS_VALUE)
1982        && reordered_pts != AV_NOPTS_VALUE)
1983         pts = reordered_pts;
1984     else
1985         pts = dts;
1986
1987     return pts;
1988 }
1989
1990 static int apply_param_change(AVCodecContext *avctx, AVPacket *avpkt)
1991 {
1992     int size = 0, ret;
1993     const uint8_t *data;
1994     uint32_t flags;
1995     int64_t val;
1996
1997     data = av_packet_get_side_data(avpkt, AV_PKT_DATA_PARAM_CHANGE, &size);
1998     if (!data)
1999         return 0;
2000
2001     if (!(avctx->codec->capabilities & AV_CODEC_CAP_PARAM_CHANGE)) {
2002         av_log(avctx, AV_LOG_ERROR, "This decoder does not support parameter "
2003                "changes, but PARAM_CHANGE side data was sent to it.\n");
2004         return AVERROR(EINVAL);
2005     }
2006
2007     if (size < 4)
2008         goto fail;
2009
2010     flags = bytestream_get_le32(&data);
2011     size -= 4;
2012
2013     if (flags & AV_SIDE_DATA_PARAM_CHANGE_CHANNEL_COUNT) {
2014         if (size < 4)
2015             goto fail;
2016         val = bytestream_get_le32(&data);
2017         if (val <= 0 || val > INT_MAX) {
2018             av_log(avctx, AV_LOG_ERROR, "Invalid channel count");
2019             return AVERROR_INVALIDDATA;
2020         }
2021         avctx->channels = val;
2022         size -= 4;
2023     }
2024     if (flags & AV_SIDE_DATA_PARAM_CHANGE_CHANNEL_LAYOUT) {
2025         if (size < 8)
2026             goto fail;
2027         avctx->channel_layout = bytestream_get_le64(&data);
2028         size -= 8;
2029     }
2030     if (flags & AV_SIDE_DATA_PARAM_CHANGE_SAMPLE_RATE) {
2031         if (size < 4)
2032             goto fail;
2033         val = bytestream_get_le32(&data);
2034         if (val <= 0 || val > INT_MAX) {
2035             av_log(avctx, AV_LOG_ERROR, "Invalid sample rate");
2036             return AVERROR_INVALIDDATA;
2037         }
2038         avctx->sample_rate = val;
2039         size -= 4;
2040     }
2041     if (flags & AV_SIDE_DATA_PARAM_CHANGE_DIMENSIONS) {
2042         if (size < 8)
2043             goto fail;
2044         avctx->width  = bytestream_get_le32(&data);
2045         avctx->height = bytestream_get_le32(&data);
2046         size -= 8;
2047         ret = ff_set_dimensions(avctx, avctx->width, avctx->height);
2048         if (ret < 0)
2049             return ret;
2050     }
2051
2052     return 0;
2053 fail:
2054     av_log(avctx, AV_LOG_ERROR, "PARAM_CHANGE side data too small.\n");
2055     return AVERROR_INVALIDDATA;
2056 }
2057
2058 static int unrefcount_frame(AVCodecInternal *avci, AVFrame *frame)
2059 {
2060     int ret;
2061
2062     /* move the original frame to our backup */
2063     av_frame_unref(avci->to_free);
2064     av_frame_move_ref(avci->to_free, frame);
2065
2066     /* now copy everything except the AVBufferRefs back
2067      * note that we make a COPY of the side data, so calling av_frame_free() on
2068      * the caller's frame will work properly */
2069     ret = av_frame_copy_props(frame, avci->to_free);
2070     if (ret < 0)
2071         return ret;
2072
2073     memcpy(frame->data,     avci->to_free->data,     sizeof(frame->data));
2074     memcpy(frame->linesize, avci->to_free->linesize, sizeof(frame->linesize));
2075     if (avci->to_free->extended_data != avci->to_free->data) {
2076         int planes = av_frame_get_channels(avci->to_free);
2077         int size   = planes * sizeof(*frame->extended_data);
2078
2079         if (!size) {
2080             av_frame_unref(frame);
2081             return AVERROR_BUG;
2082         }
2083
2084         frame->extended_data = av_malloc(size);
2085         if (!frame->extended_data) {
2086             av_frame_unref(frame);
2087             return AVERROR(ENOMEM);
2088         }
2089         memcpy(frame->extended_data, avci->to_free->extended_data,
2090                size);
2091     } else
2092         frame->extended_data = frame->data;
2093
2094     frame->format         = avci->to_free->format;
2095     frame->width          = avci->to_free->width;
2096     frame->height         = avci->to_free->height;
2097     frame->channel_layout = avci->to_free->channel_layout;
2098     frame->nb_samples     = avci->to_free->nb_samples;
2099     av_frame_set_channels(frame, av_frame_get_channels(avci->to_free));
2100
2101     return 0;
2102 }
2103
2104 int attribute_align_arg avcodec_decode_video2(AVCodecContext *avctx, AVFrame *picture,
2105                                               int *got_picture_ptr,
2106                                               const AVPacket *avpkt)
2107 {
2108     AVCodecInternal *avci = avctx->internal;
2109     int ret;
2110     // copy to ensure we do not change avpkt
2111     AVPacket tmp = *avpkt;
2112
2113     if (!avctx->codec)
2114         return AVERROR(EINVAL);
2115     if (avctx->codec->type != AVMEDIA_TYPE_VIDEO) {
2116         av_log(avctx, AV_LOG_ERROR, "Invalid media type for video\n");
2117         return AVERROR(EINVAL);
2118     }
2119
2120     *got_picture_ptr = 0;
2121     if ((avctx->coded_width || avctx->coded_height) && av_image_check_size(avctx->coded_width, avctx->coded_height, 0, avctx))
2122         return AVERROR(EINVAL);
2123
2124     av_frame_unref(picture);
2125
2126     if ((avctx->codec->capabilities & AV_CODEC_CAP_DELAY) || avpkt->size ||
2127         (avctx->active_thread_type & FF_THREAD_FRAME)) {
2128         int did_split = av_packet_split_side_data(&tmp);
2129         ret = apply_param_change(avctx, &tmp);
2130         if (ret < 0) {
2131             av_log(avctx, AV_LOG_ERROR, "Error applying parameter changes.\n");
2132             if (avctx->err_recognition & AV_EF_EXPLODE)
2133                 goto fail;
2134         }
2135
2136         avctx->internal->pkt = &tmp;
2137         if (HAVE_THREADS && avctx->active_thread_type & FF_THREAD_FRAME)
2138             ret = ff_thread_decode_frame(avctx, picture, got_picture_ptr,
2139                                          &tmp);
2140         else {
2141             ret = avctx->codec->decode(avctx, picture, got_picture_ptr,
2142                                        &tmp);
2143             if (!(avctx->codec->caps_internal & FF_CODEC_CAP_SETS_PKT_DTS))
2144                 picture->pkt_dts = avpkt->dts;
2145
2146             if(!avctx->has_b_frames){
2147                 av_frame_set_pkt_pos(picture, avpkt->pos);
2148             }
2149             //FIXME these should be under if(!avctx->has_b_frames)
2150             /* get_buffer is supposed to set frame parameters */
2151             if (!(avctx->codec->capabilities & AV_CODEC_CAP_DR1)) {
2152                 if (!picture->sample_aspect_ratio.num)    picture->sample_aspect_ratio = avctx->sample_aspect_ratio;
2153                 if (!picture->width)                      picture->width               = avctx->width;
2154                 if (!picture->height)                     picture->height              = avctx->height;
2155                 if (picture->format == AV_PIX_FMT_NONE)   picture->format              = avctx->pix_fmt;
2156             }
2157         }
2158
2159 fail:
2160         emms_c(); //needed to avoid an emms_c() call before every return;
2161
2162         avctx->internal->pkt = NULL;
2163         if (did_split) {
2164             av_packet_free_side_data(&tmp);
2165             if(ret == tmp.size)
2166                 ret = avpkt->size;
2167         }
2168
2169         if (*got_picture_ptr) {
2170             if (!avctx->refcounted_frames) {
2171                 int err = unrefcount_frame(avci, picture);
2172                 if (err < 0)
2173                     return err;
2174             }
2175
2176             avctx->frame_number++;
2177             av_frame_set_best_effort_timestamp(picture,
2178                                                guess_correct_pts(avctx,
2179                                                                  picture->pkt_pts,
2180                                                                  picture->pkt_dts));
2181         } else
2182             av_frame_unref(picture);
2183     } else
2184         ret = 0;
2185
2186     /* many decoders assign whole AVFrames, thus overwriting extended_data;
2187      * make sure it's set correctly */
2188     av_assert0(!picture->extended_data || picture->extended_data == picture->data);
2189
2190 #if FF_API_AVCTX_TIMEBASE
2191     if (avctx->framerate.num > 0 && avctx->framerate.den > 0)
2192         avctx->time_base = av_inv_q(av_mul_q(avctx->framerate, (AVRational){avctx->ticks_per_frame, 1}));
2193 #endif
2194
2195     return ret;
2196 }
2197
2198 int attribute_align_arg avcodec_decode_audio4(AVCodecContext *avctx,
2199                                               AVFrame *frame,
2200                                               int *got_frame_ptr,
2201                                               const AVPacket *avpkt)
2202 {
2203     AVCodecInternal *avci = avctx->internal;
2204     int ret = 0;
2205
2206     *got_frame_ptr = 0;
2207
2208     if (!avpkt->data && avpkt->size) {
2209         av_log(avctx, AV_LOG_ERROR, "invalid packet: NULL data, size != 0\n");
2210         return AVERROR(EINVAL);
2211     }
2212     if (!avctx->codec)
2213         return AVERROR(EINVAL);
2214     if (avctx->codec->type != AVMEDIA_TYPE_AUDIO) {
2215         av_log(avctx, AV_LOG_ERROR, "Invalid media type for audio\n");
2216         return AVERROR(EINVAL);
2217     }
2218
2219     av_frame_unref(frame);
2220
2221     if ((avctx->codec->capabilities & AV_CODEC_CAP_DELAY) || avpkt->size || (avctx->active_thread_type & FF_THREAD_FRAME)) {
2222         uint8_t *side;
2223         int side_size;
2224         uint32_t discard_padding = 0;
2225         uint8_t skip_reason = 0;
2226         uint8_t discard_reason = 0;
2227         // copy to ensure we do not change avpkt
2228         AVPacket tmp = *avpkt;
2229         int did_split = av_packet_split_side_data(&tmp);
2230         ret = apply_param_change(avctx, &tmp);
2231         if (ret < 0) {
2232             av_log(avctx, AV_LOG_ERROR, "Error applying parameter changes.\n");
2233             if (avctx->err_recognition & AV_EF_EXPLODE)
2234                 goto fail;
2235         }
2236
2237         avctx->internal->pkt = &tmp;
2238         if (HAVE_THREADS && avctx->active_thread_type & FF_THREAD_FRAME)
2239             ret = ff_thread_decode_frame(avctx, frame, got_frame_ptr, &tmp);
2240         else {
2241             ret = avctx->codec->decode(avctx, frame, got_frame_ptr, &tmp);
2242             av_assert0(ret <= tmp.size);
2243             frame->pkt_dts = avpkt->dts;
2244         }
2245         if (ret >= 0 && *got_frame_ptr) {
2246             avctx->frame_number++;
2247             av_frame_set_best_effort_timestamp(frame,
2248                                                guess_correct_pts(avctx,
2249                                                                  frame->pkt_pts,
2250                                                                  frame->pkt_dts));
2251             if (frame->format == AV_SAMPLE_FMT_NONE)
2252                 frame->format = avctx->sample_fmt;
2253             if (!frame->channel_layout)
2254                 frame->channel_layout = avctx->channel_layout;
2255             if (!av_frame_get_channels(frame))
2256                 av_frame_set_channels(frame, avctx->channels);
2257             if (!frame->sample_rate)
2258                 frame->sample_rate = avctx->sample_rate;
2259         }
2260
2261         side= av_packet_get_side_data(avctx->internal->pkt, AV_PKT_DATA_SKIP_SAMPLES, &side_size);
2262         if(side && side_size>=10) {
2263             avctx->internal->skip_samples = AV_RL32(side);
2264             discard_padding = AV_RL32(side + 4);
2265             av_log(avctx, AV_LOG_DEBUG, "skip %d / discard %d samples due to side data\n",
2266                    avctx->internal->skip_samples, (int)discard_padding);
2267             skip_reason = AV_RL8(side + 8);
2268             discard_reason = AV_RL8(side + 9);
2269         }
2270         if (avctx->internal->skip_samples && *got_frame_ptr &&
2271             !(avctx->flags2 & AV_CODEC_FLAG2_SKIP_MANUAL)) {
2272             if(frame->nb_samples <= avctx->internal->skip_samples){
2273                 *got_frame_ptr = 0;
2274                 avctx->internal->skip_samples -= frame->nb_samples;
2275                 av_log(avctx, AV_LOG_DEBUG, "skip whole frame, skip left: %d\n",
2276                        avctx->internal->skip_samples);
2277             } else {
2278                 av_samples_copy(frame->extended_data, frame->extended_data, 0, avctx->internal->skip_samples,
2279                                 frame->nb_samples - avctx->internal->skip_samples, avctx->channels, frame->format);
2280                 if(avctx->pkt_timebase.num && avctx->sample_rate) {
2281                     int64_t diff_ts = av_rescale_q(avctx->internal->skip_samples,
2282                                                    (AVRational){1, avctx->sample_rate},
2283                                                    avctx->pkt_timebase);
2284                     if(frame->pkt_pts!=AV_NOPTS_VALUE)
2285                         frame->pkt_pts += diff_ts;
2286                     if(frame->pkt_dts!=AV_NOPTS_VALUE)
2287                         frame->pkt_dts += diff_ts;
2288                     if (av_frame_get_pkt_duration(frame) >= diff_ts)
2289                         av_frame_set_pkt_duration(frame, av_frame_get_pkt_duration(frame) - diff_ts);
2290                 } else {
2291                     av_log(avctx, AV_LOG_WARNING, "Could not update timestamps for skipped samples.\n");
2292                 }
2293                 av_log(avctx, AV_LOG_DEBUG, "skip %d/%d samples\n",
2294                        avctx->internal->skip_samples, frame->nb_samples);
2295                 frame->nb_samples -= avctx->internal->skip_samples;
2296                 avctx->internal->skip_samples = 0;
2297             }
2298         }
2299
2300         if (discard_padding > 0 && discard_padding <= frame->nb_samples && *got_frame_ptr &&
2301             !(avctx->flags2 & AV_CODEC_FLAG2_SKIP_MANUAL)) {
2302             if (discard_padding == frame->nb_samples) {
2303                 *got_frame_ptr = 0;
2304             } else {
2305                 if(avctx->pkt_timebase.num && avctx->sample_rate) {
2306                     int64_t diff_ts = av_rescale_q(frame->nb_samples - discard_padding,
2307                                                    (AVRational){1, avctx->sample_rate},
2308                                                    avctx->pkt_timebase);
2309                     if (av_frame_get_pkt_duration(frame) >= diff_ts)
2310                         av_frame_set_pkt_duration(frame, av_frame_get_pkt_duration(frame) - diff_ts);
2311                 } else {
2312                     av_log(avctx, AV_LOG_WARNING, "Could not update timestamps for discarded samples.\n");
2313                 }
2314                 av_log(avctx, AV_LOG_DEBUG, "discard %d/%d samples\n",
2315                        (int)discard_padding, frame->nb_samples);
2316                 frame->nb_samples -= discard_padding;
2317             }
2318         }
2319
2320         if ((avctx->flags2 & AV_CODEC_FLAG2_SKIP_MANUAL) && *got_frame_ptr) {
2321             AVFrameSideData *fside = av_frame_new_side_data(frame, AV_FRAME_DATA_SKIP_SAMPLES, 10);
2322             if (fside) {
2323                 AV_WL32(fside->data, avctx->internal->skip_samples);
2324                 AV_WL32(fside->data + 4, discard_padding);
2325                 AV_WL8(fside->data + 8, skip_reason);
2326                 AV_WL8(fside->data + 9, discard_reason);
2327                 avctx->internal->skip_samples = 0;
2328             }
2329         }
2330 fail:
2331         avctx->internal->pkt = NULL;
2332         if (did_split) {
2333             av_packet_free_side_data(&tmp);
2334             if(ret == tmp.size)
2335                 ret = avpkt->size;
2336         }
2337
2338         if (ret >= 0 && *got_frame_ptr) {
2339             if (!avctx->refcounted_frames) {
2340                 int err = unrefcount_frame(avci, frame);
2341                 if (err < 0)
2342                     return err;
2343             }
2344         } else
2345             av_frame_unref(frame);
2346     }
2347
2348     return ret;
2349 }
2350
2351 #define UTF8_MAX_BYTES 4 /* 5 and 6 bytes sequences should not be used */
2352 static int recode_subtitle(AVCodecContext *avctx,
2353                            AVPacket *outpkt, const AVPacket *inpkt)
2354 {
2355 #if CONFIG_ICONV
2356     iconv_t cd = (iconv_t)-1;
2357     int ret = 0;
2358     char *inb, *outb;
2359     size_t inl, outl;
2360     AVPacket tmp;
2361 #endif
2362
2363     if (avctx->sub_charenc_mode != FF_SUB_CHARENC_MODE_PRE_DECODER || inpkt->size == 0)
2364         return 0;
2365
2366 #if CONFIG_ICONV
2367     cd = iconv_open("UTF-8", avctx->sub_charenc);
2368     av_assert0(cd != (iconv_t)-1);
2369
2370     inb = inpkt->data;
2371     inl = inpkt->size;
2372
2373     if (inl >= INT_MAX / UTF8_MAX_BYTES - AV_INPUT_BUFFER_PADDING_SIZE) {
2374         av_log(avctx, AV_LOG_ERROR, "Subtitles packet is too big for recoding\n");
2375         ret = AVERROR(ENOMEM);
2376         goto end;
2377     }
2378
2379     ret = av_new_packet(&tmp, inl * UTF8_MAX_BYTES);
2380     if (ret < 0)
2381         goto end;
2382     outpkt->buf  = tmp.buf;
2383     outpkt->data = tmp.data;
2384     outpkt->size = tmp.size;
2385     outb = outpkt->data;
2386     outl = outpkt->size;
2387
2388     if (iconv(cd, &inb, &inl, &outb, &outl) == (size_t)-1 ||
2389         iconv(cd, NULL, NULL, &outb, &outl) == (size_t)-1 ||
2390         outl >= outpkt->size || inl != 0) {
2391         ret = FFMIN(AVERROR(errno), -1);
2392         av_log(avctx, AV_LOG_ERROR, "Unable to recode subtitle event \"%s\" "
2393                "from %s to UTF-8\n", inpkt->data, avctx->sub_charenc);
2394         av_packet_unref(&tmp);
2395         goto end;
2396     }
2397     outpkt->size -= outl;
2398     memset(outpkt->data + outpkt->size, 0, outl);
2399
2400 end:
2401     if (cd != (iconv_t)-1)
2402         iconv_close(cd);
2403     return ret;
2404 #else
2405     av_log(avctx, AV_LOG_ERROR, "requesting subtitles recoding without iconv");
2406     return AVERROR(EINVAL);
2407 #endif
2408 }
2409
2410 static int utf8_check(const uint8_t *str)
2411 {
2412     const uint8_t *byte;
2413     uint32_t codepoint, min;
2414
2415     while (*str) {
2416         byte = str;
2417         GET_UTF8(codepoint, *(byte++), return 0;);
2418         min = byte - str == 1 ? 0 : byte - str == 2 ? 0x80 :
2419               1 << (5 * (byte - str) - 4);
2420         if (codepoint < min || codepoint >= 0x110000 ||
2421             codepoint == 0xFFFE /* BOM */ ||
2422             codepoint >= 0xD800 && codepoint <= 0xDFFF /* surrogates */)
2423             return 0;
2424         str = byte;
2425     }
2426     return 1;
2427 }
2428
2429 #if FF_API_ASS_TIMING
2430 static void insert_ts(AVBPrint *buf, int ts)
2431 {
2432     if (ts == -1) {
2433         av_bprintf(buf, "9:59:59.99,");
2434     } else {
2435         int h, m, s;
2436
2437         h = ts/360000;  ts -= 360000*h;
2438         m = ts/  6000;  ts -=   6000*m;
2439         s = ts/   100;  ts -=    100*s;
2440         av_bprintf(buf, "%d:%02d:%02d.%02d,", h, m, s, ts);
2441     }
2442 }
2443
2444 static int convert_sub_to_old_ass_form(AVSubtitle *sub, const AVPacket *pkt, AVRational tb)
2445 {
2446     int i;
2447     AVBPrint buf;
2448
2449     av_bprint_init(&buf, 0, AV_BPRINT_SIZE_UNLIMITED);
2450
2451     for (i = 0; i < sub->num_rects; i++) {
2452         char *final_dialog;
2453         const char *dialog;
2454         AVSubtitleRect *rect = sub->rects[i];
2455         int ts_start, ts_duration = -1;
2456         long int layer;
2457
2458         if (rect->type != SUBTITLE_ASS || !strncmp(rect->ass, "Dialogue ", 10))
2459             continue;
2460
2461         av_bprint_clear(&buf);
2462
2463         /* skip ReadOrder */
2464         dialog = strchr(rect->ass, ',');
2465         if (!dialog)
2466             continue;
2467         dialog++;
2468
2469         /* extract Layer or Marked */
2470         layer = strtol(dialog, (char**)&dialog, 10);
2471         if (*dialog != ',')
2472             continue;
2473         dialog++;
2474
2475         /* rescale timing to ASS time base (ms) */
2476         ts_start = av_rescale_q(pkt->pts, tb, av_make_q(1, 100));
2477         if (pkt->duration != -1)
2478             ts_duration = av_rescale_q(pkt->duration, tb, av_make_q(1, 100));
2479         sub->end_display_time = FFMAX(sub->end_display_time, 10 * ts_duration);
2480
2481         /* construct ASS (standalone file form with timestamps) string */
2482         av_bprintf(&buf, "Dialogue: %ld,", layer);
2483         insert_ts(&buf, ts_start);
2484         insert_ts(&buf, ts_duration == -1 ? -1 : ts_start + ts_duration);
2485         av_bprintf(&buf, "%s\r\n", dialog);
2486
2487         final_dialog = av_strdup(buf.str);
2488         if (!av_bprint_is_complete(&buf) || !final_dialog) {
2489             av_bprint_finalize(&buf, NULL);
2490             return AVERROR(ENOMEM);
2491         }
2492         av_freep(&rect->ass);
2493         rect->ass = final_dialog;
2494     }
2495
2496     av_bprint_finalize(&buf, NULL);
2497     return 0;
2498 }
2499 #endif
2500
2501 int avcodec_decode_subtitle2(AVCodecContext *avctx, AVSubtitle *sub,
2502                              int *got_sub_ptr,
2503                              AVPacket *avpkt)
2504 {
2505     int i, ret = 0;
2506
2507     if (!avpkt->data && avpkt->size) {
2508         av_log(avctx, AV_LOG_ERROR, "invalid packet: NULL data, size != 0\n");
2509         return AVERROR(EINVAL);
2510     }
2511     if (!avctx->codec)
2512         return AVERROR(EINVAL);
2513     if (avctx->codec->type != AVMEDIA_TYPE_SUBTITLE) {
2514         av_log(avctx, AV_LOG_ERROR, "Invalid media type for subtitles\n");
2515         return AVERROR(EINVAL);
2516     }
2517
2518     *got_sub_ptr = 0;
2519     get_subtitle_defaults(sub);
2520
2521     if ((avctx->codec->capabilities & AV_CODEC_CAP_DELAY) || avpkt->size) {
2522         AVPacket pkt_recoded;
2523         AVPacket tmp = *avpkt;
2524         int did_split = av_packet_split_side_data(&tmp);
2525         //apply_param_change(avctx, &tmp);
2526
2527         if (did_split) {
2528             /* FFMIN() prevents overflow in case the packet wasn't allocated with
2529              * proper padding.
2530              * If the side data is smaller than the buffer padding size, the
2531              * remaining bytes should have already been filled with zeros by the
2532              * original packet allocation anyway. */
2533             memset(tmp.data + tmp.size, 0,
2534                    FFMIN(avpkt->size - tmp.size, AV_INPUT_BUFFER_PADDING_SIZE));
2535         }
2536
2537         pkt_recoded = tmp;
2538         ret = recode_subtitle(avctx, &pkt_recoded, &tmp);
2539         if (ret < 0) {
2540             *got_sub_ptr = 0;
2541         } else {
2542             avctx->internal->pkt = &pkt_recoded;
2543
2544             if (avctx->pkt_timebase.num && avpkt->pts != AV_NOPTS_VALUE)
2545                 sub->pts = av_rescale_q(avpkt->pts,
2546                                         avctx->pkt_timebase, AV_TIME_BASE_Q);
2547             ret = avctx->codec->decode(avctx, sub, got_sub_ptr, &pkt_recoded);
2548             av_assert1((ret >= 0) >= !!*got_sub_ptr &&
2549                        !!*got_sub_ptr >= !!sub->num_rects);
2550
2551 #if FF_API_ASS_TIMING
2552             if (avctx->sub_text_format == FF_SUB_TEXT_FMT_ASS_WITH_TIMINGS
2553                 && *got_sub_ptr && sub->num_rects)
2554                 ret = convert_sub_to_old_ass_form(sub, avpkt, avctx->time_base);
2555 #endif
2556
2557             if (sub->num_rects && !sub->end_display_time && avpkt->duration &&
2558                 avctx->pkt_timebase.num) {
2559                 AVRational ms = { 1, 1000 };
2560                 sub->end_display_time = av_rescale_q(avpkt->duration,
2561                                                      avctx->pkt_timebase, ms);
2562             }
2563
2564             for (i = 0; i < sub->num_rects; i++) {
2565                 if (sub->rects[i]->ass && !utf8_check(sub->rects[i]->ass)) {
2566                     av_log(avctx, AV_LOG_ERROR,
2567                            "Invalid UTF-8 in decoded subtitles text; "
2568                            "maybe missing -sub_charenc option\n");
2569                     avsubtitle_free(sub);
2570                     return AVERROR_INVALIDDATA;
2571                 }
2572             }
2573
2574             if (tmp.data != pkt_recoded.data) { // did we recode?
2575                 /* prevent from destroying side data from original packet */
2576                 pkt_recoded.side_data = NULL;
2577                 pkt_recoded.side_data_elems = 0;
2578
2579                 av_packet_unref(&pkt_recoded);
2580             }
2581             if (avctx->codec_descriptor->props & AV_CODEC_PROP_BITMAP_SUB)
2582                 sub->format = 0;
2583             else if (avctx->codec_descriptor->props & AV_CODEC_PROP_TEXT_SUB)
2584                 sub->format = 1;
2585             avctx->internal->pkt = NULL;
2586         }
2587
2588         if (did_split) {
2589             av_packet_free_side_data(&tmp);
2590             if(ret == tmp.size)
2591                 ret = avpkt->size;
2592         }
2593
2594         if (*got_sub_ptr)
2595             avctx->frame_number++;
2596     }
2597
2598     return ret;
2599 }
2600
2601 void avsubtitle_free(AVSubtitle *sub)
2602 {
2603     int i;
2604
2605     for (i = 0; i < sub->num_rects; i++) {
2606         av_freep(&sub->rects[i]->data[0]);
2607         av_freep(&sub->rects[i]->data[1]);
2608         av_freep(&sub->rects[i]->data[2]);
2609         av_freep(&sub->rects[i]->data[3]);
2610         av_freep(&sub->rects[i]->text);
2611         av_freep(&sub->rects[i]->ass);
2612         av_freep(&sub->rects[i]);
2613     }
2614
2615     av_freep(&sub->rects);
2616
2617     memset(sub, 0, sizeof(AVSubtitle));
2618 }
2619
2620 av_cold int avcodec_close(AVCodecContext *avctx)
2621 {
2622     int i;
2623
2624     if (!avctx)
2625         return 0;
2626
2627     if (avcodec_is_open(avctx)) {
2628         FramePool *pool = avctx->internal->pool;
2629         if (CONFIG_FRAME_THREAD_ENCODER &&
2630             avctx->internal->frame_thread_encoder && avctx->thread_count > 1) {
2631             ff_frame_thread_encoder_free(avctx);
2632         }
2633         if (HAVE_THREADS && avctx->internal->thread_ctx)
2634             ff_thread_free(avctx);
2635         if (avctx->codec && avctx->codec->close)
2636             avctx->codec->close(avctx);
2637         avctx->internal->byte_buffer_size = 0;
2638         av_freep(&avctx->internal->byte_buffer);
2639         av_frame_free(&avctx->internal->to_free);
2640         for (i = 0; i < FF_ARRAY_ELEMS(pool->pools); i++)
2641             av_buffer_pool_uninit(&pool->pools[i]);
2642         av_freep(&avctx->internal->pool);
2643
2644         if (avctx->hwaccel && avctx->hwaccel->uninit)
2645             avctx->hwaccel->uninit(avctx);
2646         av_freep(&avctx->internal->hwaccel_priv_data);
2647
2648         av_freep(&avctx->internal);
2649     }
2650
2651     for (i = 0; i < avctx->nb_coded_side_data; i++)
2652         av_freep(&avctx->coded_side_data[i].data);
2653     av_freep(&avctx->coded_side_data);
2654     avctx->nb_coded_side_data = 0;
2655
2656     av_buffer_unref(&avctx->hw_frames_ctx);
2657
2658     if (avctx->priv_data && avctx->codec && avctx->codec->priv_class)
2659         av_opt_free(avctx->priv_data);
2660     av_opt_free(avctx);
2661     av_freep(&avctx->priv_data);
2662     if (av_codec_is_encoder(avctx->codec)) {
2663         av_freep(&avctx->extradata);
2664 #if FF_API_CODED_FRAME
2665 FF_DISABLE_DEPRECATION_WARNINGS
2666         av_frame_free(&avctx->coded_frame);
2667 FF_ENABLE_DEPRECATION_WARNINGS
2668 #endif
2669     }
2670     avctx->codec = NULL;
2671     avctx->active_thread_type = 0;
2672
2673     return 0;
2674 }
2675
2676 static enum AVCodecID remap_deprecated_codec_id(enum AVCodecID id)
2677 {
2678     switch(id){
2679         //This is for future deprecatec codec ids, its empty since
2680         //last major bump but will fill up again over time, please don't remove it
2681         default                                         : return id;
2682     }
2683 }
2684
2685 static AVCodec *find_encdec(enum AVCodecID id, int encoder)
2686 {
2687     AVCodec *p, *experimental = NULL;
2688     p = first_avcodec;
2689     id= remap_deprecated_codec_id(id);
2690     while (p) {
2691         if ((encoder ? av_codec_is_encoder(p) : av_codec_is_decoder(p)) &&
2692             p->id == id) {
2693             if (p->capabilities & AV_CODEC_CAP_EXPERIMENTAL && !experimental) {
2694                 experimental = p;
2695             } else
2696                 return p;
2697         }
2698         p = p->next;
2699     }
2700     return experimental;
2701 }
2702
2703 AVCodec *avcodec_find_encoder(enum AVCodecID id)
2704 {
2705     return find_encdec(id, 1);
2706 }
2707
2708 AVCodec *avcodec_find_encoder_by_name(const char *name)
2709 {
2710     AVCodec *p;
2711     if (!name)
2712         return NULL;
2713     p = first_avcodec;
2714     while (p) {
2715         if (av_codec_is_encoder(p) && strcmp(name, p->name) == 0)
2716             return p;
2717         p = p->next;
2718     }
2719     return NULL;
2720 }
2721
2722 AVCodec *avcodec_find_decoder(enum AVCodecID id)
2723 {
2724     return find_encdec(id, 0);
2725 }
2726
2727 AVCodec *avcodec_find_decoder_by_name(const char *name)
2728 {
2729     AVCodec *p;
2730     if (!name)
2731         return NULL;
2732     p = first_avcodec;
2733     while (p) {
2734         if (av_codec_is_decoder(p) && strcmp(name, p->name) == 0)
2735             return p;
2736         p = p->next;
2737     }
2738     return NULL;
2739 }
2740
2741 const char *avcodec_get_name(enum AVCodecID id)
2742 {
2743     const AVCodecDescriptor *cd;
2744     AVCodec *codec;
2745
2746     if (id == AV_CODEC_ID_NONE)
2747         return "none";
2748     cd = avcodec_descriptor_get(id);
2749     if (cd)
2750         return cd->name;
2751     av_log(NULL, AV_LOG_WARNING, "Codec 0x%x is not in the full list.\n", id);
2752     codec = avcodec_find_decoder(id);
2753     if (codec)
2754         return codec->name;
2755     codec = avcodec_find_encoder(id);
2756     if (codec)
2757         return codec->name;
2758     return "unknown_codec";
2759 }
2760
2761 size_t av_get_codec_tag_string(char *buf, size_t buf_size, unsigned int codec_tag)
2762 {
2763     int i, len, ret = 0;
2764
2765 #define TAG_PRINT(x)                                              \
2766     (((x) >= '0' && (x) <= '9') ||                                \
2767      ((x) >= 'a' && (x) <= 'z') || ((x) >= 'A' && (x) <= 'Z') ||  \
2768      ((x) == '.' || (x) == ' ' || (x) == '-' || (x) == '_'))
2769
2770     for (i = 0; i < 4; i++) {
2771         len = snprintf(buf, buf_size,
2772                        TAG_PRINT(codec_tag & 0xFF) ? "%c" : "[%d]", codec_tag & 0xFF);
2773         buf        += len;
2774         buf_size    = buf_size > len ? buf_size - len : 0;
2775         ret        += len;
2776         codec_tag >>= 8;
2777     }
2778     return ret;
2779 }
2780
2781 void avcodec_string(char *buf, int buf_size, AVCodecContext *enc, int encode)
2782 {
2783     const char *codec_type;
2784     const char *codec_name;
2785     const char *profile = NULL;
2786     int64_t bitrate;
2787     int new_line = 0;
2788     AVRational display_aspect_ratio;
2789     const char *separator = enc->dump_separator ? (const char *)enc->dump_separator : ", ";
2790
2791     if (!buf || buf_size <= 0)
2792         return;
2793     codec_type = av_get_media_type_string(enc->codec_type);
2794     codec_name = avcodec_get_name(enc->codec_id);
2795     profile = avcodec_profile_name(enc->codec_id, enc->profile);
2796
2797     snprintf(buf, buf_size, "%s: %s", codec_type ? codec_type : "unknown",
2798              codec_name);
2799     buf[0] ^= 'a' ^ 'A'; /* first letter in uppercase */
2800
2801     if (enc->codec && strcmp(enc->codec->name, codec_name))
2802         snprintf(buf + strlen(buf), buf_size - strlen(buf), " (%s)", enc->codec->name);
2803
2804     if (profile)
2805         snprintf(buf + strlen(buf), buf_size - strlen(buf), " (%s)", profile);
2806     if (   enc->codec_type == AVMEDIA_TYPE_VIDEO
2807         && av_log_get_level() >= AV_LOG_VERBOSE
2808         && enc->refs)
2809         snprintf(buf + strlen(buf), buf_size - strlen(buf),
2810                  ", %d reference frame%s",
2811                  enc->refs, enc->refs > 1 ? "s" : "");
2812
2813     if (enc->codec_tag) {
2814         char tag_buf[32];
2815         av_get_codec_tag_string(tag_buf, sizeof(tag_buf), enc->codec_tag);
2816         snprintf(buf + strlen(buf), buf_size - strlen(buf),
2817                  " (%s / 0x%04X)", tag_buf, enc->codec_tag);
2818     }
2819
2820     switch (enc->codec_type) {
2821     case AVMEDIA_TYPE_VIDEO:
2822         {
2823             char detail[256] = "(";
2824
2825             av_strlcat(buf, separator, buf_size);
2826
2827             snprintf(buf + strlen(buf), buf_size - strlen(buf),
2828                  "%s", enc->pix_fmt == AV_PIX_FMT_NONE ? "none" :
2829                      av_get_pix_fmt_name(enc->pix_fmt));
2830             if (enc->bits_per_raw_sample && enc->pix_fmt != AV_PIX_FMT_NONE &&
2831                 enc->bits_per_raw_sample < av_pix_fmt_desc_get(enc->pix_fmt)->comp[0].depth)
2832                 av_strlcatf(detail, sizeof(detail), "%d bpc, ", enc->bits_per_raw_sample);
2833             if (enc->color_range != AVCOL_RANGE_UNSPECIFIED)
2834                 av_strlcatf(detail, sizeof(detail), "%s, ",
2835                             av_color_range_name(enc->color_range));
2836
2837             if (enc->colorspace != AVCOL_SPC_UNSPECIFIED ||
2838                 enc->color_primaries != AVCOL_PRI_UNSPECIFIED ||
2839                 enc->color_trc != AVCOL_TRC_UNSPECIFIED) {
2840                 if (enc->colorspace != (int)enc->color_primaries ||
2841                     enc->colorspace != (int)enc->color_trc) {
2842                     new_line = 1;
2843                     av_strlcatf(detail, sizeof(detail), "%s/%s/%s, ",
2844                                 av_color_space_name(enc->colorspace),
2845                                 av_color_primaries_name(enc->color_primaries),
2846                                 av_color_transfer_name(enc->color_trc));
2847                 } else
2848                     av_strlcatf(detail, sizeof(detail), "%s, ",
2849                                 av_get_colorspace_name(enc->colorspace));
2850             }
2851
2852             if (av_log_get_level() >= AV_LOG_DEBUG &&
2853                 enc->chroma_sample_location != AVCHROMA_LOC_UNSPECIFIED)
2854                 av_strlcatf(detail, sizeof(detail), "%s, ",
2855                             av_chroma_location_name(enc->chroma_sample_location));
2856
2857             if (strlen(detail) > 1) {
2858                 detail[strlen(detail) - 2] = 0;
2859                 av_strlcatf(buf, buf_size, "%s)", detail);
2860             }
2861         }
2862
2863         if (enc->width) {
2864             av_strlcat(buf, new_line ? separator : ", ", buf_size);
2865
2866             snprintf(buf + strlen(buf), buf_size - strlen(buf),
2867                      "%dx%d",
2868                      enc->width, enc->height);
2869
2870             if (av_log_get_level() >= AV_LOG_VERBOSE &&
2871                 (enc->width != enc->coded_width ||
2872                  enc->height != enc->coded_height))
2873                 snprintf(buf + strlen(buf), buf_size - strlen(buf),
2874                          " (%dx%d)", enc->coded_width, enc->coded_height);
2875
2876             if (enc->sample_aspect_ratio.num) {
2877                 av_reduce(&display_aspect_ratio.num, &display_aspect_ratio.den,
2878                           enc->width * (int64_t)enc->sample_aspect_ratio.num,
2879                           enc->height * (int64_t)enc->sample_aspect_ratio.den,
2880                           1024 * 1024);
2881                 snprintf(buf + strlen(buf), buf_size - strlen(buf),
2882                          " [SAR %d:%d DAR %d:%d]",
2883                          enc->sample_aspect_ratio.num, enc->sample_aspect_ratio.den,
2884                          display_aspect_ratio.num, display_aspect_ratio.den);
2885             }
2886             if (av_log_get_level() >= AV_LOG_DEBUG) {
2887                 int g = av_gcd(enc->time_base.num, enc->time_base.den);
2888                 snprintf(buf + strlen(buf), buf_size - strlen(buf),
2889                          ", %d/%d",
2890                          enc->time_base.num / g, enc->time_base.den / g);
2891             }
2892         }
2893         if (encode) {
2894             snprintf(buf + strlen(buf), buf_size - strlen(buf),
2895                      ", q=%d-%d", enc->qmin, enc->qmax);
2896         } else {
2897             if (enc->properties & FF_CODEC_PROPERTY_CLOSED_CAPTIONS)
2898                 snprintf(buf + strlen(buf), buf_size - strlen(buf),
2899                          ", Closed Captions");
2900             if (enc->properties & FF_CODEC_PROPERTY_LOSSLESS)
2901                 snprintf(buf + strlen(buf), buf_size - strlen(buf),
2902                          ", lossless");
2903         }
2904         break;
2905     case AVMEDIA_TYPE_AUDIO:
2906         av_strlcat(buf, separator, buf_size);
2907
2908         if (enc->sample_rate) {
2909             snprintf(buf + strlen(buf), buf_size - strlen(buf),
2910                      "%d Hz, ", enc->sample_rate);
2911         }
2912         av_get_channel_layout_string(buf + strlen(buf), buf_size - strlen(buf), enc->channels, enc->channel_layout);
2913         if (enc->sample_fmt != AV_SAMPLE_FMT_NONE) {
2914             snprintf(buf + strlen(buf), buf_size - strlen(buf),
2915                      ", %s", av_get_sample_fmt_name(enc->sample_fmt));
2916         }
2917         if (   enc->bits_per_raw_sample > 0
2918             && enc->bits_per_raw_sample != av_get_bytes_per_sample(enc->sample_fmt) * 8)
2919             snprintf(buf + strlen(buf), buf_size - strlen(buf),
2920                      " (%d bit)", enc->bits_per_raw_sample);
2921         break;
2922     case AVMEDIA_TYPE_DATA:
2923         if (av_log_get_level() >= AV_LOG_DEBUG) {
2924             int g = av_gcd(enc->time_base.num, enc->time_base.den);
2925             if (g)
2926                 snprintf(buf + strlen(buf), buf_size - strlen(buf),
2927                          ", %d/%d",
2928                          enc->time_base.num / g, enc->time_base.den / g);
2929         }
2930         break;
2931     case AVMEDIA_TYPE_SUBTITLE:
2932         if (enc->width)
2933             snprintf(buf + strlen(buf), buf_size - strlen(buf),
2934                      ", %dx%d", enc->width, enc->height);
2935         break;
2936     default:
2937         return;
2938     }
2939     if (encode) {
2940         if (enc->flags & AV_CODEC_FLAG_PASS1)
2941             snprintf(buf + strlen(buf), buf_size - strlen(buf),
2942                      ", pass 1");
2943         if (enc->flags & AV_CODEC_FLAG_PASS2)
2944             snprintf(buf + strlen(buf), buf_size - strlen(buf),
2945                      ", pass 2");
2946     }
2947     bitrate = get_bit_rate(enc);
2948     if (bitrate != 0) {
2949         snprintf(buf + strlen(buf), buf_size - strlen(buf),
2950                  ", %"PRId64" kb/s", bitrate / 1000);
2951     } else if (enc->rc_max_rate > 0) {
2952         snprintf(buf + strlen(buf), buf_size - strlen(buf),
2953                  ", max. %"PRId64" kb/s", (int64_t)enc->rc_max_rate / 1000);
2954     }
2955 }
2956
2957 const char *av_get_profile_name(const AVCodec *codec, int profile)
2958 {
2959     const AVProfile *p;
2960     if (profile == FF_PROFILE_UNKNOWN || !codec->profiles)
2961         return NULL;
2962
2963     for (p = codec->profiles; p->profile != FF_PROFILE_UNKNOWN; p++)
2964         if (p->profile == profile)
2965             return p->name;
2966
2967     return NULL;
2968 }
2969
2970 const char *avcodec_profile_name(enum AVCodecID codec_id, int profile)
2971 {
2972     const AVCodecDescriptor *desc = avcodec_descriptor_get(codec_id);
2973     const AVProfile *p;
2974
2975     if (profile == FF_PROFILE_UNKNOWN || !desc || !desc->profiles)
2976         return NULL;
2977
2978     for (p = desc->profiles; p->profile != FF_PROFILE_UNKNOWN; p++)
2979         if (p->profile == profile)
2980             return p->name;
2981
2982     return NULL;
2983 }
2984
2985 unsigned avcodec_version(void)
2986 {
2987 //    av_assert0(AV_CODEC_ID_V410==164);
2988     av_assert0(AV_CODEC_ID_PCM_S8_PLANAR==65563);
2989     av_assert0(AV_CODEC_ID_ADPCM_G722==69660);
2990 //     av_assert0(AV_CODEC_ID_BMV_AUDIO==86071);
2991     av_assert0(AV_CODEC_ID_SRT==94216);
2992     av_assert0(LIBAVCODEC_VERSION_MICRO >= 100);
2993
2994     return LIBAVCODEC_VERSION_INT;
2995 }
2996
2997 const char *avcodec_configuration(void)
2998 {
2999     return FFMPEG_CONFIGURATION;
3000 }
3001
3002 const char *avcodec_license(void)
3003 {
3004 #define LICENSE_PREFIX "libavcodec license: "
3005     return LICENSE_PREFIX FFMPEG_LICENSE + sizeof(LICENSE_PREFIX) - 1;
3006 }
3007
3008 void avcodec_flush_buffers(AVCodecContext *avctx)
3009 {
3010     if (HAVE_THREADS && avctx->active_thread_type & FF_THREAD_FRAME)
3011         ff_thread_flush(avctx);
3012     else if (avctx->codec->flush)
3013         avctx->codec->flush(avctx);
3014
3015     avctx->pts_correction_last_pts =
3016     avctx->pts_correction_last_dts = INT64_MIN;
3017
3018     if (!avctx->refcounted_frames)
3019         av_frame_unref(avctx->internal->to_free);
3020 }
3021
3022 int av_get_exact_bits_per_sample(enum AVCodecID codec_id)
3023 {
3024     switch (codec_id) {
3025     case AV_CODEC_ID_8SVX_EXP:
3026     case AV_CODEC_ID_8SVX_FIB:
3027     case AV_CODEC_ID_ADPCM_CT:
3028     case AV_CODEC_ID_ADPCM_IMA_APC:
3029     case AV_CODEC_ID_ADPCM_IMA_EA_SEAD:
3030     case AV_CODEC_ID_ADPCM_IMA_OKI:
3031     case AV_CODEC_ID_ADPCM_IMA_WS:
3032     case AV_CODEC_ID_ADPCM_G722:
3033     case AV_CODEC_ID_ADPCM_YAMAHA:
3034     case AV_CODEC_ID_ADPCM_AICA:
3035         return 4;
3036     case AV_CODEC_ID_DSD_LSBF:
3037     case AV_CODEC_ID_DSD_MSBF:
3038     case AV_CODEC_ID_DSD_LSBF_PLANAR:
3039     case AV_CODEC_ID_DSD_MSBF_PLANAR:
3040     case AV_CODEC_ID_PCM_ALAW:
3041     case AV_CODEC_ID_PCM_MULAW:
3042     case AV_CODEC_ID_PCM_S8:
3043     case AV_CODEC_ID_PCM_S8_PLANAR:
3044     case AV_CODEC_ID_PCM_U8:
3045     case AV_CODEC_ID_PCM_ZORK:
3046     case AV_CODEC_ID_SDX2_DPCM:
3047         return 8;
3048     case AV_CODEC_ID_PCM_S16BE:
3049     case AV_CODEC_ID_PCM_S16BE_PLANAR:
3050     case AV_CODEC_ID_PCM_S16LE:
3051     case AV_CODEC_ID_PCM_S16LE_PLANAR:
3052     case AV_CODEC_ID_PCM_U16BE:
3053     case AV_CODEC_ID_PCM_U16LE:
3054         return 16;
3055     case AV_CODEC_ID_PCM_S24DAUD:
3056     case AV_CODEC_ID_PCM_S24BE:
3057     case AV_CODEC_ID_PCM_S24LE:
3058     case AV_CODEC_ID_PCM_S24LE_PLANAR:
3059     case AV_CODEC_ID_PCM_U24BE:
3060     case AV_CODEC_ID_PCM_U24LE:
3061         return 24;
3062     case AV_CODEC_ID_PCM_S32BE:
3063     case AV_CODEC_ID_PCM_S32LE:
3064     case AV_CODEC_ID_PCM_S32LE_PLANAR:
3065     case AV_CODEC_ID_PCM_U32BE:
3066     case AV_CODEC_ID_PCM_U32LE:
3067     case AV_CODEC_ID_PCM_F32BE:
3068     case AV_CODEC_ID_PCM_F32LE:
3069         return 32;
3070     case AV_CODEC_ID_PCM_F64BE:
3071     case AV_CODEC_ID_PCM_F64LE:
3072         return 64;
3073     default:
3074         return 0;
3075     }
3076 }
3077
3078 enum AVCodecID av_get_pcm_codec(enum AVSampleFormat fmt, int be)
3079 {
3080     static const enum AVCodecID map[AV_SAMPLE_FMT_NB][2] = {
3081         [AV_SAMPLE_FMT_U8  ] = { AV_CODEC_ID_PCM_U8,    AV_CODEC_ID_PCM_U8    },
3082         [AV_SAMPLE_FMT_S16 ] = { AV_CODEC_ID_PCM_S16LE, AV_CODEC_ID_PCM_S16BE },
3083         [AV_SAMPLE_FMT_S32 ] = { AV_CODEC_ID_PCM_S32LE, AV_CODEC_ID_PCM_S32BE },
3084         [AV_SAMPLE_FMT_FLT ] = { AV_CODEC_ID_PCM_F32LE, AV_CODEC_ID_PCM_F32BE },
3085         [AV_SAMPLE_FMT_DBL ] = { AV_CODEC_ID_PCM_F64LE, AV_CODEC_ID_PCM_F64BE },
3086         [AV_SAMPLE_FMT_U8P ] = { AV_CODEC_ID_PCM_U8,    AV_CODEC_ID_PCM_U8    },
3087         [AV_SAMPLE_FMT_S16P] = { AV_CODEC_ID_PCM_S16LE, AV_CODEC_ID_PCM_S16BE },
3088         [AV_SAMPLE_FMT_S32P] = { AV_CODEC_ID_PCM_S32LE, AV_CODEC_ID_PCM_S32BE },
3089         [AV_SAMPLE_FMT_FLTP] = { AV_CODEC_ID_PCM_F32LE, AV_CODEC_ID_PCM_F32BE },
3090         [AV_SAMPLE_FMT_DBLP] = { AV_CODEC_ID_PCM_F64LE, AV_CODEC_ID_PCM_F64BE },
3091     };
3092     if (fmt < 0 || fmt >= AV_SAMPLE_FMT_NB)
3093         return AV_CODEC_ID_NONE;
3094     if (be < 0 || be > 1)
3095         be = AV_NE(1, 0);
3096     return map[fmt][be];
3097 }
3098
3099 int av_get_bits_per_sample(enum AVCodecID codec_id)
3100 {
3101     switch (codec_id) {
3102     case AV_CODEC_ID_ADPCM_SBPRO_2:
3103         return 2;
3104     case AV_CODEC_ID_ADPCM_SBPRO_3:
3105         return 3;
3106     case AV_CODEC_ID_ADPCM_SBPRO_4:
3107     case AV_CODEC_ID_ADPCM_IMA_WAV:
3108     case AV_CODEC_ID_ADPCM_IMA_QT:
3109     case AV_CODEC_ID_ADPCM_SWF:
3110     case AV_CODEC_ID_ADPCM_MS:
3111         return 4;
3112     default:
3113         return av_get_exact_bits_per_sample(codec_id);
3114     }
3115 }
3116
3117 int av_get_audio_frame_duration(AVCodecContext *avctx, int frame_bytes)
3118 {
3119     int id, sr, ch, ba, tag, bps;
3120
3121     id  = avctx->codec_id;
3122     sr  = avctx->sample_rate;
3123     ch  = avctx->channels;
3124     ba  = avctx->block_align;
3125     tag = avctx->codec_tag;
3126     bps = av_get_exact_bits_per_sample(avctx->codec_id);
3127
3128     /* codecs with an exact constant bits per sample */
3129     if (bps > 0 && ch > 0 && frame_bytes > 0 && ch < 32768 && bps < 32768)
3130         return (frame_bytes * 8LL) / (bps * ch);
3131     bps = avctx->bits_per_coded_sample;
3132
3133     /* codecs with a fixed packet duration */
3134     switch (id) {
3135     case AV_CODEC_ID_ADPCM_ADX:    return   32;
3136     case AV_CODEC_ID_ADPCM_IMA_QT: return   64;
3137     case AV_CODEC_ID_ADPCM_EA_XAS: return  128;
3138     case AV_CODEC_ID_AMR_NB:
3139     case AV_CODEC_ID_EVRC:
3140     case AV_CODEC_ID_GSM:
3141     case AV_CODEC_ID_QCELP:
3142     case AV_CODEC_ID_RA_288:       return  160;
3143     case AV_CODEC_ID_AMR_WB:
3144     case AV_CODEC_ID_GSM_MS:       return  320;
3145     case AV_CODEC_ID_MP1:          return  384;
3146     case AV_CODEC_ID_ATRAC1:       return  512;
3147     case AV_CODEC_ID_ATRAC3:       return 1024;
3148     case AV_CODEC_ID_ATRAC3P:      return 2048;
3149     case AV_CODEC_ID_MP2:
3150     case AV_CODEC_ID_MUSEPACK7:    return 1152;
3151     case AV_CODEC_ID_AC3:          return 1536;
3152     }
3153
3154     if (sr > 0) {
3155         /* calc from sample rate */
3156         if (id == AV_CODEC_ID_TTA)
3157             return 256 * sr / 245;
3158
3159         if (ch > 0) {
3160             /* calc from sample rate and channels */
3161             if (id == AV_CODEC_ID_BINKAUDIO_DCT)
3162                 return (480 << (sr / 22050)) / ch;
3163         }
3164     }
3165
3166     if (ba > 0) {
3167         /* calc from block_align */
3168         if (id == AV_CODEC_ID_SIPR) {
3169             switch (ba) {
3170             case 20: return 160;
3171             case 19: return 144;
3172             case 29: return 288;
3173             case 37: return 480;
3174             }
3175         } else if (id == AV_CODEC_ID_ILBC) {
3176             switch (ba) {
3177             case 38: return 160;
3178             case 50: return 240;
3179             }
3180         }
3181     }
3182
3183     if (frame_bytes > 0) {
3184         /* calc from frame_bytes only */
3185         if (id == AV_CODEC_ID_TRUESPEECH)
3186             return 240 * (frame_bytes / 32);
3187         if (id == AV_CODEC_ID_NELLYMOSER)
3188             return 256 * (frame_bytes / 64);
3189         if (id == AV_CODEC_ID_RA_144)
3190             return 160 * (frame_bytes / 20);
3191         if (id == AV_CODEC_ID_G723_1)
3192             return 240 * (frame_bytes / 24);
3193
3194         if (bps > 0) {
3195             /* calc from frame_bytes and bits_per_coded_sample */
3196             if (id == AV_CODEC_ID_ADPCM_G726)
3197                 return frame_bytes * 8 / bps;
3198         }
3199
3200         if (ch > 0 && ch < INT_MAX/16) {
3201             /* calc from frame_bytes and channels */
3202             switch (id) {
3203             case AV_CODEC_ID_ADPCM_AFC:
3204                 return frame_bytes / (9 * ch) * 16;
3205             case AV_CODEC_ID_ADPCM_PSX:
3206             case AV_CODEC_ID_ADPCM_DTK:
3207                 return frame_bytes / (16 * ch) * 28;
3208             case AV_CODEC_ID_ADPCM_4XM:
3209             case AV_CODEC_ID_ADPCM_IMA_ISS:
3210                 return (frame_bytes - 4 * ch) * 2 / ch;
3211             case AV_CODEC_ID_ADPCM_IMA_SMJPEG:
3212                 return (frame_bytes - 4) * 2 / ch;
3213             case AV_CODEC_ID_ADPCM_IMA_AMV:
3214                 return (frame_bytes - 8) * 2 / ch;
3215             case AV_CODEC_ID_ADPCM_THP:
3216             case AV_CODEC_ID_ADPCM_THP_LE:
3217                 if (avctx->extradata)
3218                     return frame_bytes * 14 / (8 * ch);
3219                 break;
3220             case AV_CODEC_ID_ADPCM_XA:
3221                 return (frame_bytes / 128) * 224 / ch;
3222             case AV_CODEC_ID_INTERPLAY_DPCM:
3223                 return (frame_bytes - 6 - ch) / ch;
3224             case AV_CODEC_ID_ROQ_DPCM:
3225                 return (frame_bytes - 8) / ch;
3226             case AV_CODEC_ID_XAN_DPCM:
3227                 return (frame_bytes - 2 * ch) / ch;
3228             case AV_CODEC_ID_MACE3:
3229                 return 3 * frame_bytes / ch;
3230             case AV_CODEC_ID_MACE6:
3231                 return 6 * frame_bytes / ch;
3232             case AV_CODEC_ID_PCM_LXF:
3233                 return 2 * (frame_bytes / (5 * ch));
3234             case AV_CODEC_ID_IAC:
3235             case AV_CODEC_ID_IMC:
3236                 return 4 * frame_bytes / ch;
3237             }
3238
3239             if (tag) {
3240                 /* calc from frame_bytes, channels, and codec_tag */
3241                 if (id == AV_CODEC_ID_SOL_DPCM) {
3242                     if (tag == 3)
3243                         return frame_bytes / ch;
3244                     else
3245                         return frame_bytes * 2 / ch;
3246                 }
3247             }
3248
3249             if (ba > 0) {
3250                 /* calc from frame_bytes, channels, and block_align */
3251                 int blocks = frame_bytes / ba;
3252                 switch (avctx->codec_id) {
3253                 case AV_CODEC_ID_ADPCM_IMA_WAV:
3254                     if (bps < 2 || bps > 5)
3255                         return 0;
3256                     return blocks * (1 + (ba - 4 * ch) / (bps * ch) * 8);
3257                 case AV_CODEC_ID_ADPCM_IMA_DK3:
3258                     return blocks * (((ba - 16) * 2 / 3 * 4) / ch);
3259                 case AV_CODEC_ID_ADPCM_IMA_DK4:
3260                     return blocks * (1 + (ba - 4 * ch) * 2 / ch);
3261                 case AV_CODEC_ID_ADPCM_IMA_RAD:
3262                     return blocks * ((ba - 4 * ch) * 2 / ch);
3263                 case AV_CODEC_ID_ADPCM_MS:
3264                     return blocks * (2 + (ba - 7 * ch) * 2 / ch);
3265                 }
3266             }
3267
3268             if (bps > 0) {
3269                 /* calc from frame_bytes, channels, and bits_per_coded_sample */
3270                 switch (avctx->codec_id) {
3271                 case AV_CODEC_ID_PCM_DVD:
3272                     if(bps<4)
3273                         return 0;
3274                     return 2 * (frame_bytes / ((bps * 2 / 8) * ch));
3275                 case AV_CODEC_ID_PCM_BLURAY:
3276                     if(bps<4)
3277                         return 0;
3278                     return frame_bytes / ((FFALIGN(ch, 2) * bps) / 8);
3279                 case AV_CODEC_ID_S302M:
3280                     return 2 * (frame_bytes / ((bps + 4) / 4)) / ch;
3281                 }
3282             }
3283         }
3284     }
3285
3286     /* Fall back on using frame_size */
3287     if (avctx->frame_size > 1 && frame_bytes)
3288         return avctx->frame_size;
3289
3290     //For WMA we currently have no other means to calculate duration thus we
3291     //do it here by assuming CBR, which is true for all known cases.
3292     if (avctx->bit_rate>0 && frame_bytes>0 && avctx->sample_rate>0 && avctx->block_align>1) {
3293         if (avctx->codec_id == AV_CODEC_ID_WMAV1 || avctx->codec_id == AV_CODEC_ID_WMAV2)
3294             return  (frame_bytes * 8LL * avctx->sample_rate) / avctx->bit_rate;
3295     }
3296
3297     return 0;
3298 }
3299
3300 #if !HAVE_THREADS
3301 int ff_thread_init(AVCodecContext *s)
3302 {
3303     return -1;
3304 }
3305
3306 #endif
3307
3308 unsigned int av_xiphlacing(unsigned char *s, unsigned int v)
3309 {
3310     unsigned int n = 0;
3311
3312     while (v >= 0xff) {
3313         *s++ = 0xff;
3314         v -= 0xff;
3315         n++;
3316     }
3317     *s = v;
3318     n++;
3319     return n;
3320 }
3321
3322 int ff_match_2uint16(const uint16_t(*tab)[2], int size, int a, int b)
3323 {
3324     int i;
3325     for (i = 0; i < size && !(tab[i][0] == a && tab[i][1] == b); i++) ;
3326     return i;
3327 }
3328
3329 #if FF_API_MISSING_SAMPLE
3330 FF_DISABLE_DEPRECATION_WARNINGS
3331 void av_log_missing_feature(void *avc, const char *feature, int want_sample)
3332 {
3333     av_log(avc, AV_LOG_WARNING, "%s is not implemented. Update your FFmpeg "
3334             "version to the newest one from Git. If the problem still "
3335             "occurs, it means that your file has a feature which has not "
3336             "been implemented.\n", feature);
3337     if(want_sample)
3338         av_log_ask_for_sample(avc, NULL);
3339 }
3340
3341 void av_log_ask_for_sample(void *avc, const char *msg, ...)
3342 {
3343     va_list argument_list;
3344
3345     va_start(argument_list, msg);
3346
3347     if (msg)
3348         av_vlog(avc, AV_LOG_WARNING, msg, argument_list);
3349     av_log(avc, AV_LOG_WARNING, "If you want to help, upload a sample "
3350             "of this file to ftp://upload.ffmpeg.org/incoming/ "
3351             "and contact the ffmpeg-devel mailing list. (ffmpeg-devel@ffmpeg.org)\n");
3352
3353     va_end(argument_list);
3354 }
3355 FF_ENABLE_DEPRECATION_WARNINGS
3356 #endif /* FF_API_MISSING_SAMPLE */
3357
3358 static AVHWAccel *first_hwaccel = NULL;
3359 static AVHWAccel **last_hwaccel = &first_hwaccel;
3360
3361 void av_register_hwaccel(AVHWAccel *hwaccel)
3362 {
3363     AVHWAccel **p = last_hwaccel;
3364     hwaccel->next = NULL;
3365     while(*p || avpriv_atomic_ptr_cas((void * volatile *)p, NULL, hwaccel))
3366         p = &(*p)->next;
3367     last_hwaccel = &hwaccel->next;
3368 }
3369
3370 AVHWAccel *av_hwaccel_next(const AVHWAccel *hwaccel)
3371 {
3372     return hwaccel ? hwaccel->next : first_hwaccel;
3373 }
3374
3375 int av_lockmgr_register(int (*cb)(void **mutex, enum AVLockOp op))
3376 {
3377     if (lockmgr_cb) {
3378         // There is no good way to rollback a failure to destroy the
3379         // mutex, so we ignore failures.
3380         lockmgr_cb(&codec_mutex,    AV_LOCK_DESTROY);
3381         lockmgr_cb(&avformat_mutex, AV_LOCK_DESTROY);
3382         lockmgr_cb     = NULL;
3383         codec_mutex    = NULL;
3384         avformat_mutex = NULL;
3385     }
3386
3387     if (cb) {
3388         void *new_codec_mutex    = NULL;
3389         void *new_avformat_mutex = NULL;
3390         int err;
3391         if (err = cb(&new_codec_mutex, AV_LOCK_CREATE)) {
3392             return err > 0 ? AVERROR_UNKNOWN : err;
3393         }
3394         if (err = cb(&new_avformat_mutex, AV_LOCK_CREATE)) {
3395             // Ignore failures to destroy the newly created mutex.
3396             cb(&new_codec_mutex, AV_LOCK_DESTROY);
3397             return err > 0 ? AVERROR_UNKNOWN : err;
3398         }
3399         lockmgr_cb     = cb;
3400         codec_mutex    = new_codec_mutex;
3401         avformat_mutex = new_avformat_mutex;
3402     }
3403
3404     return 0;
3405 }
3406
3407 int ff_lock_avcodec(AVCodecContext *log_ctx, const AVCodec *codec)
3408 {
3409     if (codec->caps_internal & FF_CODEC_CAP_INIT_THREADSAFE || !codec->init)
3410         return 0;
3411
3412     if (lockmgr_cb) {
3413         if ((*lockmgr_cb)(&codec_mutex, AV_LOCK_OBTAIN))
3414             return -1;
3415     }
3416
3417     if (avpriv_atomic_int_add_and_fetch(&entangled_thread_counter, 1) != 1) {
3418         av_log(log_ctx, AV_LOG_ERROR,
3419                "Insufficient thread locking. At least %d threads are "
3420                "calling avcodec_open2() at the same time right now.\n",
3421                entangled_thread_counter);
3422         if (!lockmgr_cb)
3423             av_log(log_ctx, AV_LOG_ERROR, "No lock manager is set, please see av_lockmgr_register()\n");
3424         ff_avcodec_locked = 1;
3425         ff_unlock_avcodec(codec);
3426         return AVERROR(EINVAL);
3427     }
3428     av_assert0(!ff_avcodec_locked);
3429     ff_avcodec_locked = 1;
3430     return 0;
3431 }
3432
3433 int ff_unlock_avcodec(const AVCodec *codec)
3434 {
3435     if (codec->caps_internal & FF_CODEC_CAP_INIT_THREADSAFE || !codec->init)
3436         return 0;
3437
3438     av_assert0(ff_avcodec_locked);
3439     ff_avcodec_locked = 0;
3440     avpriv_atomic_int_add_and_fetch(&entangled_thread_counter, -1);
3441     if (lockmgr_cb) {
3442         if ((*lockmgr_cb)(&codec_mutex, AV_LOCK_RELEASE))
3443             return -1;
3444     }
3445
3446     return 0;
3447 }
3448
3449 int avpriv_lock_avformat(void)
3450 {
3451     if (lockmgr_cb) {
3452         if ((*lockmgr_cb)(&avformat_mutex, AV_LOCK_OBTAIN))
3453             return -1;
3454     }
3455     return 0;
3456 }
3457
3458 int avpriv_unlock_avformat(void)
3459 {
3460     if (lockmgr_cb) {
3461         if ((*lockmgr_cb)(&avformat_mutex, AV_LOCK_RELEASE))
3462             return -1;
3463     }
3464     return 0;
3465 }
3466
3467 unsigned int avpriv_toupper4(unsigned int x)
3468 {
3469     return av_toupper(x & 0xFF) +
3470           (av_toupper((x >>  8) & 0xFF) << 8)  +
3471           (av_toupper((x >> 16) & 0xFF) << 16) +
3472 ((unsigned)av_toupper((x >> 24) & 0xFF) << 24);
3473 }
3474
3475 int ff_thread_ref_frame(ThreadFrame *dst, ThreadFrame *src)
3476 {
3477     int ret;
3478
3479     dst->owner = src->owner;
3480
3481     ret = av_frame_ref(dst->f, src->f);
3482     if (ret < 0)
3483         return ret;
3484
3485     av_assert0(!dst->progress);
3486
3487     if (src->progress &&
3488         !(dst->progress = av_buffer_ref(src->progress))) {
3489         ff_thread_release_buffer(dst->owner, dst);
3490         return AVERROR(ENOMEM);
3491     }
3492
3493     return 0;
3494 }
3495
3496 #if !HAVE_THREADS
3497
3498 enum AVPixelFormat ff_thread_get_format(AVCodecContext *avctx, const enum AVPixelFormat *fmt)
3499 {
3500     return ff_get_format(avctx, fmt);
3501 }
3502
3503 int ff_thread_get_buffer(AVCodecContext *avctx, ThreadFrame *f, int flags)
3504 {
3505     f->owner = avctx;
3506     return ff_get_buffer(avctx, f->f, flags);
3507 }
3508
3509 void ff_thread_release_buffer(AVCodecContext *avctx, ThreadFrame *f)
3510 {
3511     if (f->f)
3512         av_frame_unref(f->f);
3513 }
3514
3515 void ff_thread_finish_setup(AVCodecContext *avctx)
3516 {
3517 }
3518
3519 void ff_thread_report_progress(ThreadFrame *f, int progress, int field)
3520 {
3521 }
3522
3523 void ff_thread_await_progress(ThreadFrame *f, int progress, int field)
3524 {
3525 }
3526
3527 int ff_thread_can_start_frame(AVCodecContext *avctx)
3528 {
3529     return 1;
3530 }
3531
3532 int ff_alloc_entries(AVCodecContext *avctx, int count)
3533 {
3534     return 0;
3535 }
3536
3537 void ff_reset_entries(AVCodecContext *avctx)
3538 {
3539 }
3540
3541 void ff_thread_await_progress2(AVCodecContext *avctx, int field, int thread, int shift)
3542 {
3543 }
3544
3545 void ff_thread_report_progress2(AVCodecContext *avctx, int field, int thread, int n)
3546 {
3547 }
3548
3549 #endif
3550
3551 int avcodec_is_open(AVCodecContext *s)
3552 {
3553     return !!s->internal;
3554 }
3555
3556 int avpriv_bprint_to_extradata(AVCodecContext *avctx, struct AVBPrint *buf)
3557 {
3558     int ret;
3559     char *str;
3560
3561     ret = av_bprint_finalize(buf, &str);
3562     if (ret < 0)
3563         return ret;
3564     if (!av_bprint_is_complete(buf)) {
3565         av_free(str);
3566         return AVERROR(ENOMEM);
3567     }
3568
3569     avctx->extradata = str;
3570     /* Note: the string is NUL terminated (so extradata can be read as a
3571      * string), but the ending character is not accounted in the size (in
3572      * binary formats you are likely not supposed to mux that character). When
3573      * extradata is copied, it is also padded with AV_INPUT_BUFFER_PADDING_SIZE
3574      * zeros. */
3575     avctx->extradata_size = buf->len;
3576     return 0;
3577 }
3578
3579 const uint8_t *avpriv_find_start_code(const uint8_t *av_restrict p,
3580                                       const uint8_t *end,
3581                                       uint32_t *av_restrict state)
3582 {
3583     int i;
3584
3585     av_assert0(p <= end);
3586     if (p >= end)
3587         return end;
3588
3589     for (i = 0; i < 3; i++) {
3590         uint32_t tmp = *state << 8;
3591         *state = tmp + *(p++);
3592         if (tmp == 0x100 || p == end)
3593             return p;
3594     }
3595
3596     while (p < end) {
3597         if      (p[-1] > 1      ) p += 3;
3598         else if (p[-2]          ) p += 2;
3599         else if (p[-3]|(p[-1]-1)) p++;
3600         else {
3601             p++;
3602             break;
3603         }
3604     }
3605
3606     p = FFMIN(p, end) - 4;
3607     *state = AV_RB32(p);
3608
3609     return p + 4;
3610 }
3611
3612 AVCPBProperties *av_cpb_properties_alloc(size_t *size)
3613 {
3614     AVCPBProperties *props = av_mallocz(sizeof(AVCPBProperties));
3615     if (!props)
3616         return NULL;
3617
3618     if (size)
3619         *size = sizeof(*props);
3620
3621     props->vbv_delay = UINT64_MAX;
3622
3623     return props;
3624 }
3625
3626 AVCPBProperties *ff_add_cpb_side_data(AVCodecContext *avctx)
3627 {
3628     AVPacketSideData *tmp;
3629     AVCPBProperties  *props;
3630     size_t size;
3631
3632     props = av_cpb_properties_alloc(&size);
3633     if (!props)
3634         return NULL;
3635
3636     tmp = av_realloc_array(avctx->coded_side_data, avctx->nb_coded_side_data + 1, sizeof(*tmp));
3637     if (!tmp) {
3638         av_freep(&props);
3639         return NULL;
3640     }
3641
3642     avctx->coded_side_data = tmp;
3643     avctx->nb_coded_side_data++;
3644
3645     avctx->coded_side_data[avctx->nb_coded_side_data - 1].type = AV_PKT_DATA_CPB_PROPERTIES;
3646     avctx->coded_side_data[avctx->nb_coded_side_data - 1].data = (uint8_t*)props;
3647     avctx->coded_side_data[avctx->nb_coded_side_data - 1].size = size;
3648
3649     return props;
3650 }