]> git.sesse.net Git - ffmpeg/blob - libavcodec/utils.c
9766bb06d6c1b7a0643c38a95aa01776fc7f3a5d
[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] || pic->data[1] || pic->data[2] || pic->data[3]) {
660         av_log(s, AV_LOG_ERROR, "pic->data[*]!=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 void validate_avframe_allocation(AVCodecContext *avctx, AVFrame *frame)
857 {
858     if (avctx->codec_type == AVMEDIA_TYPE_VIDEO) {
859         int i;
860         int num_planes = av_pix_fmt_count_planes(frame->format);
861         const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(frame->format);
862         int flags = desc ? desc->flags : 0;
863         if (num_planes == 1 && (flags & AV_PIX_FMT_FLAG_PAL))
864             num_planes = 2;
865         for (i = 0; i < num_planes; i++) {
866             av_assert0(frame->data[i]);
867         }
868         // For now do not enforce anything for palette of pseudopal formats
869         if (num_planes == 1 && (flags & AV_PIX_FMT_FLAG_PSEUDOPAL))
870             num_planes = 2;
871         // For formats without data like hwaccel allow unused pointers to be non-NULL.
872         for (i = num_planes; num_planes > 0 && i < FF_ARRAY_ELEMS(frame->data); i++) {
873             if (frame->data[i])
874                 av_log(avctx, AV_LOG_ERROR, "Buffer returned by get_buffer2() did not zero unused plane pointers\n");
875             frame->data[i] = NULL;
876         }
877     }
878 }
879
880 static int get_buffer_internal(AVCodecContext *avctx, AVFrame *frame, int flags)
881 {
882     const AVHWAccel *hwaccel = avctx->hwaccel;
883     int override_dimensions = 1;
884     int ret;
885
886     if (avctx->codec_type == AVMEDIA_TYPE_VIDEO) {
887         if ((ret = av_image_check_size(avctx->width, avctx->height, 0, avctx)) < 0 || avctx->pix_fmt<0) {
888             av_log(avctx, AV_LOG_ERROR, "video_get_buffer: image parameters invalid\n");
889             return AVERROR(EINVAL);
890         }
891
892         if (frame->width <= 0 || frame->height <= 0) {
893             frame->width  = FFMAX(avctx->width,  AV_CEIL_RSHIFT(avctx->coded_width,  avctx->lowres));
894             frame->height = FFMAX(avctx->height, AV_CEIL_RSHIFT(avctx->coded_height, avctx->lowres));
895             override_dimensions = 0;
896         }
897
898         if (frame->data[0] || frame->data[1] || frame->data[2] || frame->data[3]) {
899             av_log(avctx, AV_LOG_ERROR, "pic->data[*]!=NULL in get_buffer_internal\n");
900             return AVERROR(EINVAL);
901         }
902     }
903     ret = ff_decode_frame_props(avctx, frame);
904     if (ret < 0)
905         return ret;
906
907     if (hwaccel) {
908         if (hwaccel->alloc_frame) {
909             ret = hwaccel->alloc_frame(avctx, frame);
910             goto end;
911         }
912     } else
913         avctx->sw_pix_fmt = avctx->pix_fmt;
914
915     ret = avctx->get_buffer2(avctx, frame, flags);
916     if (ret >= 0)
917         validate_avframe_allocation(avctx, frame);
918
919 end:
920     if (avctx->codec_type == AVMEDIA_TYPE_VIDEO && !override_dimensions) {
921         frame->width  = avctx->width;
922         frame->height = avctx->height;
923     }
924
925     return ret;
926 }
927
928 int ff_get_buffer(AVCodecContext *avctx, AVFrame *frame, int flags)
929 {
930     int ret = get_buffer_internal(avctx, frame, flags);
931     if (ret < 0) {
932         av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
933         frame->width = frame->height = 0;
934     }
935     return ret;
936 }
937
938 static int reget_buffer_internal(AVCodecContext *avctx, AVFrame *frame)
939 {
940     AVFrame *tmp;
941     int ret;
942
943     av_assert0(avctx->codec_type == AVMEDIA_TYPE_VIDEO);
944
945     if (frame->data[0] && (frame->width != avctx->width || frame->height != avctx->height || frame->format != avctx->pix_fmt)) {
946         av_log(avctx, AV_LOG_WARNING, "Picture changed from size:%dx%d fmt:%s to size:%dx%d fmt:%s in reget buffer()\n",
947                frame->width, frame->height, av_get_pix_fmt_name(frame->format), avctx->width, avctx->height, av_get_pix_fmt_name(avctx->pix_fmt));
948         av_frame_unref(frame);
949     }
950
951     ff_init_buffer_info(avctx, frame);
952
953     if (!frame->data[0])
954         return ff_get_buffer(avctx, frame, AV_GET_BUFFER_FLAG_REF);
955
956     if (av_frame_is_writable(frame))
957         return ff_decode_frame_props(avctx, frame);
958
959     tmp = av_frame_alloc();
960     if (!tmp)
961         return AVERROR(ENOMEM);
962
963     av_frame_move_ref(tmp, frame);
964
965     ret = ff_get_buffer(avctx, frame, AV_GET_BUFFER_FLAG_REF);
966     if (ret < 0) {
967         av_frame_free(&tmp);
968         return ret;
969     }
970
971     av_frame_copy(frame, tmp);
972     av_frame_free(&tmp);
973
974     return 0;
975 }
976
977 int ff_reget_buffer(AVCodecContext *avctx, AVFrame *frame)
978 {
979     int ret = reget_buffer_internal(avctx, frame);
980     if (ret < 0)
981         av_log(avctx, AV_LOG_ERROR, "reget_buffer() failed\n");
982     return ret;
983 }
984
985 int avcodec_default_execute(AVCodecContext *c, int (*func)(AVCodecContext *c2, void *arg2), void *arg, int *ret, int count, int size)
986 {
987     int i;
988
989     for (i = 0; i < count; i++) {
990         int r = func(c, (char *)arg + i * size);
991         if (ret)
992             ret[i] = r;
993     }
994     return 0;
995 }
996
997 int avcodec_default_execute2(AVCodecContext *c, int (*func)(AVCodecContext *c2, void *arg2, int jobnr, int threadnr), void *arg, int *ret, int count)
998 {
999     int i;
1000
1001     for (i = 0; i < count; i++) {
1002         int r = func(c, arg, i, 0);
1003         if (ret)
1004             ret[i] = r;
1005     }
1006     return 0;
1007 }
1008
1009 enum AVPixelFormat avpriv_find_pix_fmt(const PixelFormatTag *tags,
1010                                        unsigned int fourcc)
1011 {
1012     while (tags->pix_fmt >= 0) {
1013         if (tags->fourcc == fourcc)
1014             return tags->pix_fmt;
1015         tags++;
1016     }
1017     return AV_PIX_FMT_NONE;
1018 }
1019
1020 static int is_hwaccel_pix_fmt(enum AVPixelFormat pix_fmt)
1021 {
1022     const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(pix_fmt);
1023     return desc->flags & AV_PIX_FMT_FLAG_HWACCEL;
1024 }
1025
1026 enum AVPixelFormat avcodec_default_get_format(struct AVCodecContext *s, const enum AVPixelFormat *fmt)
1027 {
1028     while (*fmt != AV_PIX_FMT_NONE && is_hwaccel_pix_fmt(*fmt))
1029         ++fmt;
1030     return fmt[0];
1031 }
1032
1033 static AVHWAccel *find_hwaccel(enum AVCodecID codec_id,
1034                                enum AVPixelFormat pix_fmt)
1035 {
1036     AVHWAccel *hwaccel = NULL;
1037
1038     while ((hwaccel = av_hwaccel_next(hwaccel)))
1039         if (hwaccel->id == codec_id
1040             && hwaccel->pix_fmt == pix_fmt)
1041             return hwaccel;
1042     return NULL;
1043 }
1044
1045 static int setup_hwaccel(AVCodecContext *avctx,
1046                          const enum AVPixelFormat fmt,
1047                          const char *name)
1048 {
1049     AVHWAccel *hwa = find_hwaccel(avctx->codec_id, fmt);
1050     int ret        = 0;
1051
1052     if (avctx->active_thread_type & FF_THREAD_FRAME) {
1053         av_log(avctx, AV_LOG_WARNING,
1054                "Hardware accelerated decoding with frame threading is known to be unstable and its use is discouraged.\n");
1055     }
1056
1057     if (!hwa) {
1058         av_log(avctx, AV_LOG_ERROR,
1059                "Could not find an AVHWAccel for the pixel format: %s",
1060                name);
1061         return AVERROR(ENOENT);
1062     }
1063
1064     if (hwa->capabilities & HWACCEL_CODEC_CAP_EXPERIMENTAL &&
1065         avctx->strict_std_compliance > FF_COMPLIANCE_EXPERIMENTAL) {
1066         av_log(avctx, AV_LOG_WARNING, "Ignoring experimental hwaccel: %s\n",
1067                hwa->name);
1068         return AVERROR_PATCHWELCOME;
1069     }
1070
1071     if (hwa->priv_data_size) {
1072         avctx->internal->hwaccel_priv_data = av_mallocz(hwa->priv_data_size);
1073         if (!avctx->internal->hwaccel_priv_data)
1074             return AVERROR(ENOMEM);
1075     }
1076
1077     if (hwa->init) {
1078         ret = hwa->init(avctx);
1079         if (ret < 0) {
1080             av_freep(&avctx->internal->hwaccel_priv_data);
1081             return ret;
1082         }
1083     }
1084
1085     avctx->hwaccel = hwa;
1086
1087     return 0;
1088 }
1089
1090 int ff_get_format(AVCodecContext *avctx, const enum AVPixelFormat *fmt)
1091 {
1092     const AVPixFmtDescriptor *desc;
1093     enum AVPixelFormat *choices;
1094     enum AVPixelFormat ret;
1095     unsigned n = 0;
1096
1097     while (fmt[n] != AV_PIX_FMT_NONE)
1098         ++n;
1099
1100     av_assert0(n >= 1);
1101     avctx->sw_pix_fmt = fmt[n - 1];
1102     av_assert2(!is_hwaccel_pix_fmt(avctx->sw_pix_fmt));
1103
1104     choices = av_malloc_array(n + 1, sizeof(*choices));
1105     if (!choices)
1106         return AV_PIX_FMT_NONE;
1107
1108     memcpy(choices, fmt, (n + 1) * sizeof(*choices));
1109
1110     for (;;) {
1111         if (avctx->hwaccel && avctx->hwaccel->uninit)
1112             avctx->hwaccel->uninit(avctx);
1113         av_freep(&avctx->internal->hwaccel_priv_data);
1114         avctx->hwaccel = NULL;
1115
1116         ret = avctx->get_format(avctx, choices);
1117
1118         desc = av_pix_fmt_desc_get(ret);
1119         if (!desc) {
1120             ret = AV_PIX_FMT_NONE;
1121             break;
1122         }
1123
1124         if (!(desc->flags & AV_PIX_FMT_FLAG_HWACCEL))
1125             break;
1126 #if FF_API_CAP_VDPAU
1127         if (avctx->codec->capabilities&AV_CODEC_CAP_HWACCEL_VDPAU)
1128             break;
1129 #endif
1130
1131         if (!setup_hwaccel(avctx, ret, desc->name))
1132             break;
1133
1134         /* Remove failed hwaccel from choices */
1135         for (n = 0; choices[n] != ret; n++)
1136             av_assert0(choices[n] != AV_PIX_FMT_NONE);
1137
1138         do
1139             choices[n] = choices[n + 1];
1140         while (choices[n++] != AV_PIX_FMT_NONE);
1141     }
1142
1143     av_freep(&choices);
1144     return ret;
1145 }
1146
1147 MAKE_ACCESSORS(AVCodecContext, codec, AVRational, pkt_timebase)
1148 MAKE_ACCESSORS(AVCodecContext, codec, const AVCodecDescriptor *, codec_descriptor)
1149 MAKE_ACCESSORS(AVCodecContext, codec, int, lowres)
1150 MAKE_ACCESSORS(AVCodecContext, codec, int, seek_preroll)
1151 MAKE_ACCESSORS(AVCodecContext, codec, uint16_t*, chroma_intra_matrix)
1152
1153 unsigned av_codec_get_codec_properties(const AVCodecContext *codec)
1154 {
1155     return codec->properties;
1156 }
1157
1158 int av_codec_get_max_lowres(const AVCodec *codec)
1159 {
1160     return codec->max_lowres;
1161 }
1162
1163 int avpriv_codec_get_cap_skip_frame_fill_param(const AVCodec *codec){
1164     return !!(codec->caps_internal & FF_CODEC_CAP_SKIP_FRAME_FILL_PARAM);
1165 }
1166
1167 static void get_subtitle_defaults(AVSubtitle *sub)
1168 {
1169     memset(sub, 0, sizeof(*sub));
1170     sub->pts = AV_NOPTS_VALUE;
1171 }
1172
1173 static int64_t get_bit_rate(AVCodecContext *ctx)
1174 {
1175     int64_t bit_rate;
1176     int bits_per_sample;
1177
1178     switch (ctx->codec_type) {
1179     case AVMEDIA_TYPE_VIDEO:
1180     case AVMEDIA_TYPE_DATA:
1181     case AVMEDIA_TYPE_SUBTITLE:
1182     case AVMEDIA_TYPE_ATTACHMENT:
1183         bit_rate = ctx->bit_rate;
1184         break;
1185     case AVMEDIA_TYPE_AUDIO:
1186         bits_per_sample = av_get_bits_per_sample(ctx->codec_id);
1187         bit_rate = bits_per_sample ? ctx->sample_rate * (int64_t)ctx->channels * bits_per_sample : ctx->bit_rate;
1188         break;
1189     default:
1190         bit_rate = 0;
1191         break;
1192     }
1193     return bit_rate;
1194 }
1195
1196 int attribute_align_arg ff_codec_open2_recursive(AVCodecContext *avctx, const AVCodec *codec, AVDictionary **options)
1197 {
1198     int ret = 0;
1199
1200     ff_unlock_avcodec(codec);
1201
1202     ret = avcodec_open2(avctx, codec, options);
1203
1204     ff_lock_avcodec(avctx, codec);
1205     return ret;
1206 }
1207
1208 int attribute_align_arg avcodec_open2(AVCodecContext *avctx, const AVCodec *codec, AVDictionary **options)
1209 {
1210     int ret = 0;
1211     AVDictionary *tmp = NULL;
1212     const AVPixFmtDescriptor *pixdesc;
1213
1214     if (avcodec_is_open(avctx))
1215         return 0;
1216
1217     if ((!codec && !avctx->codec)) {
1218         av_log(avctx, AV_LOG_ERROR, "No codec provided to avcodec_open2()\n");
1219         return AVERROR(EINVAL);
1220     }
1221     if ((codec && avctx->codec && codec != avctx->codec)) {
1222         av_log(avctx, AV_LOG_ERROR, "This AVCodecContext was allocated for %s, "
1223                                     "but %s passed to avcodec_open2()\n", avctx->codec->name, codec->name);
1224         return AVERROR(EINVAL);
1225     }
1226     if (!codec)
1227         codec = avctx->codec;
1228
1229     if (avctx->extradata_size < 0 || avctx->extradata_size >= FF_MAX_EXTRADATA_SIZE)
1230         return AVERROR(EINVAL);
1231
1232     if (options)
1233         av_dict_copy(&tmp, *options, 0);
1234
1235     ret = ff_lock_avcodec(avctx, codec);
1236     if (ret < 0)
1237         return ret;
1238
1239     avctx->internal = av_mallocz(sizeof(AVCodecInternal));
1240     if (!avctx->internal) {
1241         ret = AVERROR(ENOMEM);
1242         goto end;
1243     }
1244
1245     avctx->internal->pool = av_mallocz(sizeof(*avctx->internal->pool));
1246     if (!avctx->internal->pool) {
1247         ret = AVERROR(ENOMEM);
1248         goto free_and_end;
1249     }
1250
1251     avctx->internal->to_free = av_frame_alloc();
1252     if (!avctx->internal->to_free) {
1253         ret = AVERROR(ENOMEM);
1254         goto free_and_end;
1255     }
1256
1257     if (codec->priv_data_size > 0) {
1258         if (!avctx->priv_data) {
1259             avctx->priv_data = av_mallocz(codec->priv_data_size);
1260             if (!avctx->priv_data) {
1261                 ret = AVERROR(ENOMEM);
1262                 goto end;
1263             }
1264             if (codec->priv_class) {
1265                 *(const AVClass **)avctx->priv_data = codec->priv_class;
1266                 av_opt_set_defaults(avctx->priv_data);
1267             }
1268         }
1269         if (codec->priv_class && (ret = av_opt_set_dict(avctx->priv_data, &tmp)) < 0)
1270             goto free_and_end;
1271     } else {
1272         avctx->priv_data = NULL;
1273     }
1274     if ((ret = av_opt_set_dict(avctx, &tmp)) < 0)
1275         goto free_and_end;
1276
1277     if (avctx->codec_whitelist && av_match_list(codec->name, avctx->codec_whitelist, ',') <= 0) {
1278         av_log(avctx, AV_LOG_ERROR, "Codec (%s) not on whitelist \'%s\'\n", codec->name, avctx->codec_whitelist);
1279         ret = AVERROR(EINVAL);
1280         goto free_and_end;
1281     }
1282
1283     // only call ff_set_dimensions() for non H.264/VP6F/DXV codecs so as not to overwrite previously setup dimensions
1284     if (!(avctx->coded_width && avctx->coded_height && avctx->width && avctx->height &&
1285           (avctx->codec_id == AV_CODEC_ID_H264 || avctx->codec_id == AV_CODEC_ID_VP6F || avctx->codec_id == AV_CODEC_ID_DXV))) {
1286     if (avctx->coded_width && avctx->coded_height)
1287         ret = ff_set_dimensions(avctx, avctx->coded_width, avctx->coded_height);
1288     else if (avctx->width && avctx->height)
1289         ret = ff_set_dimensions(avctx, avctx->width, avctx->height);
1290     if (ret < 0)
1291         goto free_and_end;
1292     }
1293
1294     if ((avctx->coded_width || avctx->coded_height || avctx->width || avctx->height)
1295         && (  av_image_check_size(avctx->coded_width, avctx->coded_height, 0, avctx) < 0
1296            || av_image_check_size(avctx->width,       avctx->height,       0, avctx) < 0)) {
1297         av_log(avctx, AV_LOG_WARNING, "Ignoring invalid width/height values\n");
1298         ff_set_dimensions(avctx, 0, 0);
1299     }
1300
1301     if (avctx->width > 0 && avctx->height > 0) {
1302         if (av_image_check_sar(avctx->width, avctx->height,
1303                                avctx->sample_aspect_ratio) < 0) {
1304             av_log(avctx, AV_LOG_WARNING, "ignoring invalid SAR: %u/%u\n",
1305                    avctx->sample_aspect_ratio.num,
1306                    avctx->sample_aspect_ratio.den);
1307             avctx->sample_aspect_ratio = (AVRational){ 0, 1 };
1308         }
1309     }
1310
1311     /* if the decoder init function was already called previously,
1312      * free the already allocated subtitle_header before overwriting it */
1313     if (av_codec_is_decoder(codec))
1314         av_freep(&avctx->subtitle_header);
1315
1316     if (avctx->channels > FF_SANE_NB_CHANNELS) {
1317         ret = AVERROR(EINVAL);
1318         goto free_and_end;
1319     }
1320
1321     avctx->codec = codec;
1322     if ((avctx->codec_type == AVMEDIA_TYPE_UNKNOWN || avctx->codec_type == codec->type) &&
1323         avctx->codec_id == AV_CODEC_ID_NONE) {
1324         avctx->codec_type = codec->type;
1325         avctx->codec_id   = codec->id;
1326     }
1327     if (avctx->codec_id != codec->id || (avctx->codec_type != codec->type
1328                                          && avctx->codec_type != AVMEDIA_TYPE_ATTACHMENT)) {
1329         av_log(avctx, AV_LOG_ERROR, "Codec type or id mismatches\n");
1330         ret = AVERROR(EINVAL);
1331         goto free_and_end;
1332     }
1333     avctx->frame_number = 0;
1334     avctx->codec_descriptor = avcodec_descriptor_get(avctx->codec_id);
1335
1336     if ((avctx->codec->capabilities & AV_CODEC_CAP_EXPERIMENTAL) &&
1337         avctx->strict_std_compliance > FF_COMPLIANCE_EXPERIMENTAL) {
1338         const char *codec_string = av_codec_is_encoder(codec) ? "encoder" : "decoder";
1339         AVCodec *codec2;
1340         av_log(avctx, AV_LOG_ERROR,
1341                "The %s '%s' is experimental but experimental codecs are not enabled, "
1342                "add '-strict %d' if you want to use it.\n",
1343                codec_string, codec->name, FF_COMPLIANCE_EXPERIMENTAL);
1344         codec2 = av_codec_is_encoder(codec) ? avcodec_find_encoder(codec->id) : avcodec_find_decoder(codec->id);
1345         if (!(codec2->capabilities & AV_CODEC_CAP_EXPERIMENTAL))
1346             av_log(avctx, AV_LOG_ERROR, "Alternatively use the non experimental %s '%s'.\n",
1347                 codec_string, codec2->name);
1348         ret = AVERROR_EXPERIMENTAL;
1349         goto free_and_end;
1350     }
1351
1352     if (avctx->codec_type == AVMEDIA_TYPE_AUDIO &&
1353         (!avctx->time_base.num || !avctx->time_base.den)) {
1354         avctx->time_base.num = 1;
1355         avctx->time_base.den = avctx->sample_rate;
1356     }
1357
1358     if (!HAVE_THREADS)
1359         av_log(avctx, AV_LOG_WARNING, "Warning: not compiled with thread support, using thread emulation\n");
1360
1361     if (CONFIG_FRAME_THREAD_ENCODER && av_codec_is_encoder(avctx->codec)) {
1362         ff_unlock_avcodec(codec); //we will instantiate a few encoders thus kick the counter to prevent false detection of a problem
1363         ret = ff_frame_thread_encoder_init(avctx, options ? *options : NULL);
1364         ff_lock_avcodec(avctx, codec);
1365         if (ret < 0)
1366             goto free_and_end;
1367     }
1368
1369     if (HAVE_THREADS
1370         && !(avctx->internal->frame_thread_encoder && (avctx->active_thread_type&FF_THREAD_FRAME))) {
1371         ret = ff_thread_init(avctx);
1372         if (ret < 0) {
1373             goto free_and_end;
1374         }
1375     }
1376     if (!HAVE_THREADS && !(codec->capabilities & AV_CODEC_CAP_AUTO_THREADS))
1377         avctx->thread_count = 1;
1378
1379     if (avctx->codec->max_lowres < avctx->lowres || avctx->lowres < 0) {
1380         av_log(avctx, AV_LOG_ERROR, "The maximum value for lowres supported by the decoder is %d\n",
1381                avctx->codec->max_lowres);
1382         ret = AVERROR(EINVAL);
1383         goto free_and_end;
1384     }
1385
1386 #if FF_API_VISMV
1387     if (avctx->debug_mv)
1388         av_log(avctx, AV_LOG_WARNING, "The 'vismv' option is deprecated, "
1389                "see the codecview filter instead.\n");
1390 #endif
1391
1392     if (av_codec_is_encoder(avctx->codec)) {
1393         int i;
1394 #if FF_API_CODED_FRAME
1395 FF_DISABLE_DEPRECATION_WARNINGS
1396         avctx->coded_frame = av_frame_alloc();
1397         if (!avctx->coded_frame) {
1398             ret = AVERROR(ENOMEM);
1399             goto free_and_end;
1400         }
1401 FF_ENABLE_DEPRECATION_WARNINGS
1402 #endif
1403         if (avctx->codec->sample_fmts) {
1404             for (i = 0; avctx->codec->sample_fmts[i] != AV_SAMPLE_FMT_NONE; i++) {
1405                 if (avctx->sample_fmt == avctx->codec->sample_fmts[i])
1406                     break;
1407                 if (avctx->channels == 1 &&
1408                     av_get_planar_sample_fmt(avctx->sample_fmt) ==
1409                     av_get_planar_sample_fmt(avctx->codec->sample_fmts[i])) {
1410                     avctx->sample_fmt = avctx->codec->sample_fmts[i];
1411                     break;
1412                 }
1413             }
1414             if (avctx->codec->sample_fmts[i] == AV_SAMPLE_FMT_NONE) {
1415                 char buf[128];
1416                 snprintf(buf, sizeof(buf), "%d", avctx->sample_fmt);
1417                 av_log(avctx, AV_LOG_ERROR, "Specified sample format %s is invalid or not supported\n",
1418                        (char *)av_x_if_null(av_get_sample_fmt_name(avctx->sample_fmt), buf));
1419                 ret = AVERROR(EINVAL);
1420                 goto free_and_end;
1421             }
1422         }
1423         if (avctx->codec->pix_fmts) {
1424             for (i = 0; avctx->codec->pix_fmts[i] != AV_PIX_FMT_NONE; i++)
1425                 if (avctx->pix_fmt == avctx->codec->pix_fmts[i])
1426                     break;
1427             if (avctx->codec->pix_fmts[i] == AV_PIX_FMT_NONE
1428                 && !((avctx->codec_id == AV_CODEC_ID_MJPEG || avctx->codec_id == AV_CODEC_ID_LJPEG)
1429                      && avctx->strict_std_compliance <= FF_COMPLIANCE_UNOFFICIAL)) {
1430                 char buf[128];
1431                 snprintf(buf, sizeof(buf), "%d", avctx->pix_fmt);
1432                 av_log(avctx, AV_LOG_ERROR, "Specified pixel format %s is invalid or not supported\n",
1433                        (char *)av_x_if_null(av_get_pix_fmt_name(avctx->pix_fmt), buf));
1434                 ret = AVERROR(EINVAL);
1435                 goto free_and_end;
1436             }
1437             if (avctx->codec->pix_fmts[i] == AV_PIX_FMT_YUVJ420P ||
1438                 avctx->codec->pix_fmts[i] == AV_PIX_FMT_YUVJ411P ||
1439                 avctx->codec->pix_fmts[i] == AV_PIX_FMT_YUVJ422P ||
1440                 avctx->codec->pix_fmts[i] == AV_PIX_FMT_YUVJ440P ||
1441                 avctx->codec->pix_fmts[i] == AV_PIX_FMT_YUVJ444P)
1442                 avctx->color_range = AVCOL_RANGE_JPEG;
1443         }
1444         if (avctx->codec->supported_samplerates) {
1445             for (i = 0; avctx->codec->supported_samplerates[i] != 0; i++)
1446                 if (avctx->sample_rate == avctx->codec->supported_samplerates[i])
1447                     break;
1448             if (avctx->codec->supported_samplerates[i] == 0) {
1449                 av_log(avctx, AV_LOG_ERROR, "Specified sample rate %d is not supported\n",
1450                        avctx->sample_rate);
1451                 ret = AVERROR(EINVAL);
1452                 goto free_and_end;
1453             }
1454         }
1455         if (avctx->sample_rate < 0) {
1456             av_log(avctx, AV_LOG_ERROR, "Specified sample rate %d is not supported\n",
1457                     avctx->sample_rate);
1458             ret = AVERROR(EINVAL);
1459             goto free_and_end;
1460         }
1461         if (avctx->codec->channel_layouts) {
1462             if (!avctx->channel_layout) {
1463                 av_log(avctx, AV_LOG_WARNING, "Channel layout not specified\n");
1464             } else {
1465                 for (i = 0; avctx->codec->channel_layouts[i] != 0; i++)
1466                     if (avctx->channel_layout == avctx->codec->channel_layouts[i])
1467                         break;
1468                 if (avctx->codec->channel_layouts[i] == 0) {
1469                     char buf[512];
1470                     av_get_channel_layout_string(buf, sizeof(buf), -1, avctx->channel_layout);
1471                     av_log(avctx, AV_LOG_ERROR, "Specified channel layout '%s' is not supported\n", buf);
1472                     ret = AVERROR(EINVAL);
1473                     goto free_and_end;
1474                 }
1475             }
1476         }
1477         if (avctx->channel_layout && avctx->channels) {
1478             int channels = av_get_channel_layout_nb_channels(avctx->channel_layout);
1479             if (channels != avctx->channels) {
1480                 char buf[512];
1481                 av_get_channel_layout_string(buf, sizeof(buf), -1, avctx->channel_layout);
1482                 av_log(avctx, AV_LOG_ERROR,
1483                        "Channel layout '%s' with %d channels does not match number of specified channels %d\n",
1484                        buf, channels, avctx->channels);
1485                 ret = AVERROR(EINVAL);
1486                 goto free_and_end;
1487             }
1488         } else if (avctx->channel_layout) {
1489             avctx->channels = av_get_channel_layout_nb_channels(avctx->channel_layout);
1490         }
1491         if (avctx->channels < 0) {
1492             av_log(avctx, AV_LOG_ERROR, "Specified number of channels %d is not supported\n",
1493                     avctx->channels);
1494             ret = AVERROR(EINVAL);
1495             goto free_and_end;
1496         }
1497         if(avctx->codec_type == AVMEDIA_TYPE_VIDEO) {
1498             pixdesc = av_pix_fmt_desc_get(avctx->pix_fmt);
1499             if (    avctx->bits_per_raw_sample < 0
1500                 || (avctx->bits_per_raw_sample > 8 && pixdesc->comp[0].depth <= 8)) {
1501                 av_log(avctx, AV_LOG_WARNING, "Specified bit depth %d not possible with the specified pixel formats depth %d\n",
1502                     avctx->bits_per_raw_sample, pixdesc->comp[0].depth);
1503                 avctx->bits_per_raw_sample = pixdesc->comp[0].depth;
1504             }
1505             if (avctx->width <= 0 || avctx->height <= 0) {
1506                 av_log(avctx, AV_LOG_ERROR, "dimensions not set\n");
1507                 ret = AVERROR(EINVAL);
1508                 goto free_and_end;
1509             }
1510         }
1511         if (   (avctx->codec_type == AVMEDIA_TYPE_VIDEO || avctx->codec_type == AVMEDIA_TYPE_AUDIO)
1512             && avctx->bit_rate>0 && avctx->bit_rate<1000) {
1513             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);
1514         }
1515
1516         if (!avctx->rc_initial_buffer_occupancy)
1517             avctx->rc_initial_buffer_occupancy = avctx->rc_buffer_size * 3 / 4;
1518
1519         if (avctx->ticks_per_frame && avctx->time_base.num &&
1520             avctx->ticks_per_frame > INT_MAX / avctx->time_base.num) {
1521             av_log(avctx, AV_LOG_ERROR,
1522                    "ticks_per_frame %d too large for the timebase %d/%d.",
1523                    avctx->ticks_per_frame,
1524                    avctx->time_base.num,
1525                    avctx->time_base.den);
1526             goto free_and_end;
1527         }
1528
1529         if (avctx->hw_frames_ctx) {
1530             AVHWFramesContext *frames_ctx = (AVHWFramesContext*)avctx->hw_frames_ctx->data;
1531             if (frames_ctx->format != avctx->pix_fmt) {
1532                 av_log(avctx, AV_LOG_ERROR,
1533                        "Mismatching AVCodecContext.pix_fmt and AVHWFramesContext.format\n");
1534                 ret = AVERROR(EINVAL);
1535                 goto free_and_end;
1536             }
1537         }
1538     }
1539
1540     avctx->pts_correction_num_faulty_pts =
1541     avctx->pts_correction_num_faulty_dts = 0;
1542     avctx->pts_correction_last_pts =
1543     avctx->pts_correction_last_dts = INT64_MIN;
1544
1545     if (   !CONFIG_GRAY && avctx->flags & AV_CODEC_FLAG_GRAY
1546         && avctx->codec_descriptor->type == AVMEDIA_TYPE_VIDEO)
1547         av_log(avctx, AV_LOG_WARNING,
1548                "gray decoding requested but not enabled at configuration time\n");
1549
1550     if (   avctx->codec->init && (!(avctx->active_thread_type&FF_THREAD_FRAME)
1551         || avctx->internal->frame_thread_encoder)) {
1552         ret = avctx->codec->init(avctx);
1553         if (ret < 0) {
1554             goto free_and_end;
1555         }
1556     }
1557
1558     ret=0;
1559
1560 #if FF_API_AUDIOENC_DELAY
1561     if (av_codec_is_encoder(avctx->codec))
1562         avctx->delay = avctx->initial_padding;
1563 #endif
1564
1565     if (av_codec_is_decoder(avctx->codec)) {
1566         if (!avctx->bit_rate)
1567             avctx->bit_rate = get_bit_rate(avctx);
1568         /* validate channel layout from the decoder */
1569         if (avctx->channel_layout) {
1570             int channels = av_get_channel_layout_nb_channels(avctx->channel_layout);
1571             if (!avctx->channels)
1572                 avctx->channels = channels;
1573             else if (channels != avctx->channels) {
1574                 char buf[512];
1575                 av_get_channel_layout_string(buf, sizeof(buf), -1, avctx->channel_layout);
1576                 av_log(avctx, AV_LOG_WARNING,
1577                        "Channel layout '%s' with %d channels does not match specified number of channels %d: "
1578                        "ignoring specified channel layout\n",
1579                        buf, channels, avctx->channels);
1580                 avctx->channel_layout = 0;
1581             }
1582         }
1583         if (avctx->channels && avctx->channels < 0 ||
1584             avctx->channels > FF_SANE_NB_CHANNELS) {
1585             ret = AVERROR(EINVAL);
1586             goto free_and_end;
1587         }
1588         if (avctx->sub_charenc) {
1589             if (avctx->codec_type != AVMEDIA_TYPE_SUBTITLE) {
1590                 av_log(avctx, AV_LOG_ERROR, "Character encoding is only "
1591                        "supported with subtitles codecs\n");
1592                 ret = AVERROR(EINVAL);
1593                 goto free_and_end;
1594             } else if (avctx->codec_descriptor->props & AV_CODEC_PROP_BITMAP_SUB) {
1595                 av_log(avctx, AV_LOG_WARNING, "Codec '%s' is bitmap-based, "
1596                        "subtitles character encoding will be ignored\n",
1597                        avctx->codec_descriptor->name);
1598                 avctx->sub_charenc_mode = FF_SUB_CHARENC_MODE_DO_NOTHING;
1599             } else {
1600                 /* input character encoding is set for a text based subtitle
1601                  * codec at this point */
1602                 if (avctx->sub_charenc_mode == FF_SUB_CHARENC_MODE_AUTOMATIC)
1603                     avctx->sub_charenc_mode = FF_SUB_CHARENC_MODE_PRE_DECODER;
1604
1605                 if (avctx->sub_charenc_mode == FF_SUB_CHARENC_MODE_PRE_DECODER) {
1606 #if CONFIG_ICONV
1607                     iconv_t cd = iconv_open("UTF-8", avctx->sub_charenc);
1608                     if (cd == (iconv_t)-1) {
1609                         ret = AVERROR(errno);
1610                         av_log(avctx, AV_LOG_ERROR, "Unable to open iconv context "
1611                                "with input character encoding \"%s\"\n", avctx->sub_charenc);
1612                         goto free_and_end;
1613                     }
1614                     iconv_close(cd);
1615 #else
1616                     av_log(avctx, AV_LOG_ERROR, "Character encoding subtitles "
1617                            "conversion needs a libavcodec built with iconv support "
1618                            "for this codec\n");
1619                     ret = AVERROR(ENOSYS);
1620                     goto free_and_end;
1621 #endif
1622                 }
1623             }
1624         }
1625
1626 #if FF_API_AVCTX_TIMEBASE
1627         if (avctx->framerate.num > 0 && avctx->framerate.den > 0)
1628             avctx->time_base = av_inv_q(av_mul_q(avctx->framerate, (AVRational){avctx->ticks_per_frame, 1}));
1629 #endif
1630     }
1631     if (codec->priv_data_size > 0 && avctx->priv_data && codec->priv_class) {
1632         av_assert0(*(const AVClass **)avctx->priv_data == codec->priv_class);
1633     }
1634
1635 end:
1636     ff_unlock_avcodec(codec);
1637     if (options) {
1638         av_dict_free(options);
1639         *options = tmp;
1640     }
1641
1642     return ret;
1643 free_and_end:
1644     if (avctx->codec &&
1645         (avctx->codec->caps_internal & FF_CODEC_CAP_INIT_CLEANUP))
1646         avctx->codec->close(avctx);
1647
1648     if (codec->priv_class && codec->priv_data_size)
1649         av_opt_free(avctx->priv_data);
1650     av_opt_free(avctx);
1651
1652 #if FF_API_CODED_FRAME
1653 FF_DISABLE_DEPRECATION_WARNINGS
1654     av_frame_free(&avctx->coded_frame);
1655 FF_ENABLE_DEPRECATION_WARNINGS
1656 #endif
1657
1658     av_dict_free(&tmp);
1659     av_freep(&avctx->priv_data);
1660     if (avctx->internal) {
1661         av_frame_free(&avctx->internal->to_free);
1662         av_freep(&avctx->internal->pool);
1663     }
1664     av_freep(&avctx->internal);
1665     avctx->codec = NULL;
1666     goto end;
1667 }
1668
1669 int ff_alloc_packet2(AVCodecContext *avctx, AVPacket *avpkt, int64_t size, int64_t min_size)
1670 {
1671     if (avpkt->size < 0) {
1672         av_log(avctx, AV_LOG_ERROR, "Invalid negative user packet size %d\n", avpkt->size);
1673         return AVERROR(EINVAL);
1674     }
1675     if (size < 0 || size > INT_MAX - AV_INPUT_BUFFER_PADDING_SIZE) {
1676         av_log(avctx, AV_LOG_ERROR, "Invalid minimum required packet size %"PRId64" (max allowed is %d)\n",
1677                size, INT_MAX - AV_INPUT_BUFFER_PADDING_SIZE);
1678         return AVERROR(EINVAL);
1679     }
1680
1681     if (avctx && 2*min_size < size) { // FIXME The factor needs to be finetuned
1682         av_assert0(!avpkt->data || avpkt->data != avctx->internal->byte_buffer);
1683         if (!avpkt->data || avpkt->size < size) {
1684             av_fast_padded_malloc(&avctx->internal->byte_buffer, &avctx->internal->byte_buffer_size, size);
1685             avpkt->data = avctx->internal->byte_buffer;
1686             avpkt->size = avctx->internal->byte_buffer_size;
1687         }
1688     }
1689
1690     if (avpkt->data) {
1691         AVBufferRef *buf = avpkt->buf;
1692
1693         if (avpkt->size < size) {
1694             av_log(avctx, AV_LOG_ERROR, "User packet is too small (%d < %"PRId64")\n", avpkt->size, size);
1695             return AVERROR(EINVAL);
1696         }
1697
1698         av_init_packet(avpkt);
1699         avpkt->buf      = buf;
1700         avpkt->size     = size;
1701         return 0;
1702     } else {
1703         int ret = av_new_packet(avpkt, size);
1704         if (ret < 0)
1705             av_log(avctx, AV_LOG_ERROR, "Failed to allocate packet of size %"PRId64"\n", size);
1706         return ret;
1707     }
1708 }
1709
1710 int ff_alloc_packet(AVPacket *avpkt, int size)
1711 {
1712     return ff_alloc_packet2(NULL, avpkt, size, 0);
1713 }
1714
1715 /**
1716  * Pad last frame with silence.
1717  */
1718 static int pad_last_frame(AVCodecContext *s, AVFrame **dst, const AVFrame *src)
1719 {
1720     AVFrame *frame = NULL;
1721     int ret;
1722
1723     if (!(frame = av_frame_alloc()))
1724         return AVERROR(ENOMEM);
1725
1726     frame->format         = src->format;
1727     frame->channel_layout = src->channel_layout;
1728     av_frame_set_channels(frame, av_frame_get_channels(src));
1729     frame->nb_samples     = s->frame_size;
1730     ret = av_frame_get_buffer(frame, 32);
1731     if (ret < 0)
1732         goto fail;
1733
1734     ret = av_frame_copy_props(frame, src);
1735     if (ret < 0)
1736         goto fail;
1737
1738     if ((ret = av_samples_copy(frame->extended_data, src->extended_data, 0, 0,
1739                                src->nb_samples, s->channels, s->sample_fmt)) < 0)
1740         goto fail;
1741     if ((ret = av_samples_set_silence(frame->extended_data, src->nb_samples,
1742                                       frame->nb_samples - src->nb_samples,
1743                                       s->channels, s->sample_fmt)) < 0)
1744         goto fail;
1745
1746     *dst = frame;
1747
1748     return 0;
1749
1750 fail:
1751     av_frame_free(&frame);
1752     return ret;
1753 }
1754
1755 int attribute_align_arg avcodec_encode_audio2(AVCodecContext *avctx,
1756                                               AVPacket *avpkt,
1757                                               const AVFrame *frame,
1758                                               int *got_packet_ptr)
1759 {
1760     AVFrame *extended_frame = NULL;
1761     AVFrame *padded_frame = NULL;
1762     int ret;
1763     AVPacket user_pkt = *avpkt;
1764     int needs_realloc = !user_pkt.data;
1765
1766     *got_packet_ptr = 0;
1767
1768     if (!(avctx->codec->capabilities & AV_CODEC_CAP_DELAY) && !frame) {
1769         av_packet_unref(avpkt);
1770         av_init_packet(avpkt);
1771         return 0;
1772     }
1773
1774     /* ensure that extended_data is properly set */
1775     if (frame && !frame->extended_data) {
1776         if (av_sample_fmt_is_planar(avctx->sample_fmt) &&
1777             avctx->channels > AV_NUM_DATA_POINTERS) {
1778             av_log(avctx, AV_LOG_ERROR, "Encoding to a planar sample format, "
1779                                         "with more than %d channels, but extended_data is not set.\n",
1780                    AV_NUM_DATA_POINTERS);
1781             return AVERROR(EINVAL);
1782         }
1783         av_log(avctx, AV_LOG_WARNING, "extended_data is not set.\n");
1784
1785         extended_frame = av_frame_alloc();
1786         if (!extended_frame)
1787             return AVERROR(ENOMEM);
1788
1789         memcpy(extended_frame, frame, sizeof(AVFrame));
1790         extended_frame->extended_data = extended_frame->data;
1791         frame = extended_frame;
1792     }
1793
1794     /* extract audio service type metadata */
1795     if (frame) {
1796         AVFrameSideData *sd = av_frame_get_side_data(frame, AV_FRAME_DATA_AUDIO_SERVICE_TYPE);
1797         if (sd && sd->size >= sizeof(enum AVAudioServiceType))
1798             avctx->audio_service_type = *(enum AVAudioServiceType*)sd->data;
1799     }
1800
1801     /* check for valid frame size */
1802     if (frame) {
1803         if (avctx->codec->capabilities & AV_CODEC_CAP_SMALL_LAST_FRAME) {
1804             if (frame->nb_samples > avctx->frame_size) {
1805                 av_log(avctx, AV_LOG_ERROR, "more samples than frame size (avcodec_encode_audio2)\n");
1806                 ret = AVERROR(EINVAL);
1807                 goto end;
1808             }
1809         } else if (!(avctx->codec->capabilities & AV_CODEC_CAP_VARIABLE_FRAME_SIZE)) {
1810             if (frame->nb_samples < avctx->frame_size &&
1811                 !avctx->internal->last_audio_frame) {
1812                 ret = pad_last_frame(avctx, &padded_frame, frame);
1813                 if (ret < 0)
1814                     goto end;
1815
1816                 frame = padded_frame;
1817                 avctx->internal->last_audio_frame = 1;
1818             }
1819
1820             if (frame->nb_samples != avctx->frame_size) {
1821                 av_log(avctx, AV_LOG_ERROR, "nb_samples (%d) != frame_size (%d) (avcodec_encode_audio2)\n", frame->nb_samples, avctx->frame_size);
1822                 ret = AVERROR(EINVAL);
1823                 goto end;
1824             }
1825         }
1826     }
1827
1828     av_assert0(avctx->codec->encode2);
1829
1830     ret = avctx->codec->encode2(avctx, avpkt, frame, got_packet_ptr);
1831     if (!ret) {
1832         if (*got_packet_ptr) {
1833             if (!(avctx->codec->capabilities & AV_CODEC_CAP_DELAY)) {
1834                 if (avpkt->pts == AV_NOPTS_VALUE)
1835                     avpkt->pts = frame->pts;
1836                 if (!avpkt->duration)
1837                     avpkt->duration = ff_samples_to_time_base(avctx,
1838                                                               frame->nb_samples);
1839             }
1840             avpkt->dts = avpkt->pts;
1841         } else {
1842             avpkt->size = 0;
1843         }
1844     }
1845     if (avpkt->data && avpkt->data == avctx->internal->byte_buffer) {
1846         needs_realloc = 0;
1847         if (user_pkt.data) {
1848             if (user_pkt.size >= avpkt->size) {
1849                 memcpy(user_pkt.data, avpkt->data, avpkt->size);
1850             } else {
1851                 av_log(avctx, AV_LOG_ERROR, "Provided packet is too small, needs to be %d\n", avpkt->size);
1852                 avpkt->size = user_pkt.size;
1853                 ret = -1;
1854             }
1855             avpkt->buf      = user_pkt.buf;
1856             avpkt->data     = user_pkt.data;
1857         } else {
1858             if (av_dup_packet(avpkt) < 0) {
1859                 ret = AVERROR(ENOMEM);
1860             }
1861         }
1862     }
1863
1864     if (!ret) {
1865         if (needs_realloc && avpkt->data) {
1866             ret = av_buffer_realloc(&avpkt->buf, avpkt->size + AV_INPUT_BUFFER_PADDING_SIZE);
1867             if (ret >= 0)
1868                 avpkt->data = avpkt->buf->data;
1869         }
1870
1871         avctx->frame_number++;
1872     }
1873
1874     if (ret < 0 || !*got_packet_ptr) {
1875         av_packet_unref(avpkt);
1876         av_init_packet(avpkt);
1877         goto end;
1878     }
1879
1880     /* NOTE: if we add any audio encoders which output non-keyframe packets,
1881      *       this needs to be moved to the encoders, but for now we can do it
1882      *       here to simplify things */
1883     avpkt->flags |= AV_PKT_FLAG_KEY;
1884
1885 end:
1886     av_frame_free(&padded_frame);
1887     av_free(extended_frame);
1888
1889 #if FF_API_AUDIOENC_DELAY
1890     avctx->delay = avctx->initial_padding;
1891 #endif
1892
1893     return ret;
1894 }
1895
1896 int attribute_align_arg avcodec_encode_video2(AVCodecContext *avctx,
1897                                               AVPacket *avpkt,
1898                                               const AVFrame *frame,
1899                                               int *got_packet_ptr)
1900 {
1901     int ret;
1902     AVPacket user_pkt = *avpkt;
1903     int needs_realloc = !user_pkt.data;
1904
1905     *got_packet_ptr = 0;
1906
1907     if(CONFIG_FRAME_THREAD_ENCODER &&
1908        avctx->internal->frame_thread_encoder && (avctx->active_thread_type&FF_THREAD_FRAME))
1909         return ff_thread_video_encode_frame(avctx, avpkt, frame, got_packet_ptr);
1910
1911     if ((avctx->flags&AV_CODEC_FLAG_PASS1) && avctx->stats_out)
1912         avctx->stats_out[0] = '\0';
1913
1914     if (!(avctx->codec->capabilities & AV_CODEC_CAP_DELAY) && !frame) {
1915         av_packet_unref(avpkt);
1916         av_init_packet(avpkt);
1917         avpkt->size = 0;
1918         return 0;
1919     }
1920
1921     if (av_image_check_size(avctx->width, avctx->height, 0, avctx))
1922         return AVERROR(EINVAL);
1923
1924     if (frame && frame->format == AV_PIX_FMT_NONE)
1925         av_log(avctx, AV_LOG_WARNING, "AVFrame.format is not set\n");
1926     if (frame && (frame->width == 0 || frame->height == 0))
1927         av_log(avctx, AV_LOG_WARNING, "AVFrame.width or height is not set\n");
1928
1929     av_assert0(avctx->codec->encode2);
1930
1931     ret = avctx->codec->encode2(avctx, avpkt, frame, got_packet_ptr);
1932     av_assert0(ret <= 0);
1933
1934     if (avpkt->data && avpkt->data == avctx->internal->byte_buffer) {
1935         needs_realloc = 0;
1936         if (user_pkt.data) {
1937             if (user_pkt.size >= avpkt->size) {
1938                 memcpy(user_pkt.data, avpkt->data, avpkt->size);
1939             } else {
1940                 av_log(avctx, AV_LOG_ERROR, "Provided packet is too small, needs to be %d\n", avpkt->size);
1941                 avpkt->size = user_pkt.size;
1942                 ret = -1;
1943             }
1944             avpkt->buf      = user_pkt.buf;
1945             avpkt->data     = user_pkt.data;
1946         } else {
1947             if (av_dup_packet(avpkt) < 0) {
1948                 ret = AVERROR(ENOMEM);
1949             }
1950         }
1951     }
1952
1953     if (!ret) {
1954         if (!*got_packet_ptr)
1955             avpkt->size = 0;
1956         else if (!(avctx->codec->capabilities & AV_CODEC_CAP_DELAY))
1957             avpkt->pts = avpkt->dts = frame->pts;
1958
1959         if (needs_realloc && avpkt->data) {
1960             ret = av_buffer_realloc(&avpkt->buf, avpkt->size + AV_INPUT_BUFFER_PADDING_SIZE);
1961             if (ret >= 0)
1962                 avpkt->data = avpkt->buf->data;
1963         }
1964
1965         avctx->frame_number++;
1966     }
1967
1968     if (ret < 0 || !*got_packet_ptr)
1969         av_packet_unref(avpkt);
1970
1971     emms_c();
1972     return ret;
1973 }
1974
1975 int avcodec_encode_subtitle(AVCodecContext *avctx, uint8_t *buf, int buf_size,
1976                             const AVSubtitle *sub)
1977 {
1978     int ret;
1979     if (sub->start_display_time) {
1980         av_log(avctx, AV_LOG_ERROR, "start_display_time must be 0.\n");
1981         return -1;
1982     }
1983
1984     ret = avctx->codec->encode_sub(avctx, buf, buf_size, sub);
1985     avctx->frame_number++;
1986     return ret;
1987 }
1988
1989 /**
1990  * Attempt to guess proper monotonic timestamps for decoded video frames
1991  * which might have incorrect times. Input timestamps may wrap around, in
1992  * which case the output will as well.
1993  *
1994  * @param pts the pts field of the decoded AVPacket, as passed through
1995  * AVFrame.pkt_pts
1996  * @param dts the dts field of the decoded AVPacket
1997  * @return one of the input values, may be AV_NOPTS_VALUE
1998  */
1999 static int64_t guess_correct_pts(AVCodecContext *ctx,
2000                                  int64_t reordered_pts, int64_t dts)
2001 {
2002     int64_t pts = AV_NOPTS_VALUE;
2003
2004     if (dts != AV_NOPTS_VALUE) {
2005         ctx->pts_correction_num_faulty_dts += dts <= ctx->pts_correction_last_dts;
2006         ctx->pts_correction_last_dts = dts;
2007     } else if (reordered_pts != AV_NOPTS_VALUE)
2008         ctx->pts_correction_last_dts = reordered_pts;
2009
2010     if (reordered_pts != AV_NOPTS_VALUE) {
2011         ctx->pts_correction_num_faulty_pts += reordered_pts <= ctx->pts_correction_last_pts;
2012         ctx->pts_correction_last_pts = reordered_pts;
2013     } else if(dts != AV_NOPTS_VALUE)
2014         ctx->pts_correction_last_pts = dts;
2015
2016     if ((ctx->pts_correction_num_faulty_pts<=ctx->pts_correction_num_faulty_dts || dts == AV_NOPTS_VALUE)
2017        && reordered_pts != AV_NOPTS_VALUE)
2018         pts = reordered_pts;
2019     else
2020         pts = dts;
2021
2022     return pts;
2023 }
2024
2025 static int apply_param_change(AVCodecContext *avctx, AVPacket *avpkt)
2026 {
2027     int size = 0, ret;
2028     const uint8_t *data;
2029     uint32_t flags;
2030     int64_t val;
2031
2032     data = av_packet_get_side_data(avpkt, AV_PKT_DATA_PARAM_CHANGE, &size);
2033     if (!data)
2034         return 0;
2035
2036     if (!(avctx->codec->capabilities & AV_CODEC_CAP_PARAM_CHANGE)) {
2037         av_log(avctx, AV_LOG_ERROR, "This decoder does not support parameter "
2038                "changes, but PARAM_CHANGE side data was sent to it.\n");
2039         ret = AVERROR(EINVAL);
2040         goto fail2;
2041     }
2042
2043     if (size < 4)
2044         goto fail;
2045
2046     flags = bytestream_get_le32(&data);
2047     size -= 4;
2048
2049     if (flags & AV_SIDE_DATA_PARAM_CHANGE_CHANNEL_COUNT) {
2050         if (size < 4)
2051             goto fail;
2052         val = bytestream_get_le32(&data);
2053         if (val <= 0 || val > INT_MAX) {
2054             av_log(avctx, AV_LOG_ERROR, "Invalid channel count");
2055             ret = AVERROR_INVALIDDATA;
2056             goto fail2;
2057         }
2058         avctx->channels = val;
2059         size -= 4;
2060     }
2061     if (flags & AV_SIDE_DATA_PARAM_CHANGE_CHANNEL_LAYOUT) {
2062         if (size < 8)
2063             goto fail;
2064         avctx->channel_layout = bytestream_get_le64(&data);
2065         size -= 8;
2066     }
2067     if (flags & AV_SIDE_DATA_PARAM_CHANGE_SAMPLE_RATE) {
2068         if (size < 4)
2069             goto fail;
2070         val = bytestream_get_le32(&data);
2071         if (val <= 0 || val > INT_MAX) {
2072             av_log(avctx, AV_LOG_ERROR, "Invalid sample rate");
2073             ret = AVERROR_INVALIDDATA;
2074             goto fail2;
2075         }
2076         avctx->sample_rate = val;
2077         size -= 4;
2078     }
2079     if (flags & AV_SIDE_DATA_PARAM_CHANGE_DIMENSIONS) {
2080         if (size < 8)
2081             goto fail;
2082         avctx->width  = bytestream_get_le32(&data);
2083         avctx->height = bytestream_get_le32(&data);
2084         size -= 8;
2085         ret = ff_set_dimensions(avctx, avctx->width, avctx->height);
2086         if (ret < 0)
2087             goto fail2;
2088     }
2089
2090     return 0;
2091 fail:
2092     av_log(avctx, AV_LOG_ERROR, "PARAM_CHANGE side data too small.\n");
2093     ret = AVERROR_INVALIDDATA;
2094 fail2:
2095     if (ret < 0) {
2096         av_log(avctx, AV_LOG_ERROR, "Error applying parameter changes.\n");
2097         if (avctx->err_recognition & AV_EF_EXPLODE)
2098             return ret;
2099     }
2100     return 0;
2101 }
2102
2103 static int unrefcount_frame(AVCodecInternal *avci, AVFrame *frame)
2104 {
2105     int ret;
2106
2107     /* move the original frame to our backup */
2108     av_frame_unref(avci->to_free);
2109     av_frame_move_ref(avci->to_free, frame);
2110
2111     /* now copy everything except the AVBufferRefs back
2112      * note that we make a COPY of the side data, so calling av_frame_free() on
2113      * the caller's frame will work properly */
2114     ret = av_frame_copy_props(frame, avci->to_free);
2115     if (ret < 0)
2116         return ret;
2117
2118     memcpy(frame->data,     avci->to_free->data,     sizeof(frame->data));
2119     memcpy(frame->linesize, avci->to_free->linesize, sizeof(frame->linesize));
2120     if (avci->to_free->extended_data != avci->to_free->data) {
2121         int planes = av_frame_get_channels(avci->to_free);
2122         int size   = planes * sizeof(*frame->extended_data);
2123
2124         if (!size) {
2125             av_frame_unref(frame);
2126             return AVERROR_BUG;
2127         }
2128
2129         frame->extended_data = av_malloc(size);
2130         if (!frame->extended_data) {
2131             av_frame_unref(frame);
2132             return AVERROR(ENOMEM);
2133         }
2134         memcpy(frame->extended_data, avci->to_free->extended_data,
2135                size);
2136     } else
2137         frame->extended_data = frame->data;
2138
2139     frame->format         = avci->to_free->format;
2140     frame->width          = avci->to_free->width;
2141     frame->height         = avci->to_free->height;
2142     frame->channel_layout = avci->to_free->channel_layout;
2143     frame->nb_samples     = avci->to_free->nb_samples;
2144     av_frame_set_channels(frame, av_frame_get_channels(avci->to_free));
2145
2146     return 0;
2147 }
2148
2149 int attribute_align_arg avcodec_decode_video2(AVCodecContext *avctx, AVFrame *picture,
2150                                               int *got_picture_ptr,
2151                                               const AVPacket *avpkt)
2152 {
2153     AVCodecInternal *avci = avctx->internal;
2154     int ret;
2155     // copy to ensure we do not change avpkt
2156     AVPacket tmp = *avpkt;
2157
2158     if (!avctx->codec)
2159         return AVERROR(EINVAL);
2160     if (avctx->codec->type != AVMEDIA_TYPE_VIDEO) {
2161         av_log(avctx, AV_LOG_ERROR, "Invalid media type for video\n");
2162         return AVERROR(EINVAL);
2163     }
2164
2165     *got_picture_ptr = 0;
2166     if ((avctx->coded_width || avctx->coded_height) && av_image_check_size(avctx->coded_width, avctx->coded_height, 0, avctx))
2167         return AVERROR(EINVAL);
2168
2169     av_frame_unref(picture);
2170
2171     if ((avctx->codec->capabilities & AV_CODEC_CAP_DELAY) || avpkt->size ||
2172         (avctx->active_thread_type & FF_THREAD_FRAME)) {
2173         int did_split = av_packet_split_side_data(&tmp);
2174         ret = apply_param_change(avctx, &tmp);
2175         if (ret < 0)
2176             goto fail;
2177
2178         avctx->internal->pkt = &tmp;
2179         if (HAVE_THREADS && avctx->active_thread_type & FF_THREAD_FRAME)
2180             ret = ff_thread_decode_frame(avctx, picture, got_picture_ptr,
2181                                          &tmp);
2182         else {
2183             ret = avctx->codec->decode(avctx, picture, got_picture_ptr,
2184                                        &tmp);
2185             if (!(avctx->codec->caps_internal & FF_CODEC_CAP_SETS_PKT_DTS))
2186                 picture->pkt_dts = avpkt->dts;
2187
2188             if(!avctx->has_b_frames){
2189                 av_frame_set_pkt_pos(picture, avpkt->pos);
2190             }
2191             //FIXME these should be under if(!avctx->has_b_frames)
2192             /* get_buffer is supposed to set frame parameters */
2193             if (!(avctx->codec->capabilities & AV_CODEC_CAP_DR1)) {
2194                 if (!picture->sample_aspect_ratio.num)    picture->sample_aspect_ratio = avctx->sample_aspect_ratio;
2195                 if (!picture->width)                      picture->width               = avctx->width;
2196                 if (!picture->height)                     picture->height              = avctx->height;
2197                 if (picture->format == AV_PIX_FMT_NONE)   picture->format              = avctx->pix_fmt;
2198             }
2199         }
2200
2201 fail:
2202         emms_c(); //needed to avoid an emms_c() call before every return;
2203
2204         avctx->internal->pkt = NULL;
2205         if (did_split) {
2206             av_packet_free_side_data(&tmp);
2207             if(ret == tmp.size)
2208                 ret = avpkt->size;
2209         }
2210
2211         if (*got_picture_ptr) {
2212             if (!avctx->refcounted_frames) {
2213                 int err = unrefcount_frame(avci, picture);
2214                 if (err < 0)
2215                     return err;
2216             }
2217
2218             avctx->frame_number++;
2219             av_frame_set_best_effort_timestamp(picture,
2220                                                guess_correct_pts(avctx,
2221                                                                  picture->pkt_pts,
2222                                                                  picture->pkt_dts));
2223         } else
2224             av_frame_unref(picture);
2225     } else
2226         ret = 0;
2227
2228     /* many decoders assign whole AVFrames, thus overwriting extended_data;
2229      * make sure it's set correctly */
2230     av_assert0(!picture->extended_data || picture->extended_data == picture->data);
2231
2232 #if FF_API_AVCTX_TIMEBASE
2233     if (avctx->framerate.num > 0 && avctx->framerate.den > 0)
2234         avctx->time_base = av_inv_q(av_mul_q(avctx->framerate, (AVRational){avctx->ticks_per_frame, 1}));
2235 #endif
2236
2237     return ret;
2238 }
2239
2240 int attribute_align_arg avcodec_decode_audio4(AVCodecContext *avctx,
2241                                               AVFrame *frame,
2242                                               int *got_frame_ptr,
2243                                               const AVPacket *avpkt)
2244 {
2245     AVCodecInternal *avci = avctx->internal;
2246     int ret = 0;
2247
2248     *got_frame_ptr = 0;
2249
2250     if (!avpkt->data && avpkt->size) {
2251         av_log(avctx, AV_LOG_ERROR, "invalid packet: NULL data, size != 0\n");
2252         return AVERROR(EINVAL);
2253     }
2254     if (!avctx->codec)
2255         return AVERROR(EINVAL);
2256     if (avctx->codec->type != AVMEDIA_TYPE_AUDIO) {
2257         av_log(avctx, AV_LOG_ERROR, "Invalid media type for audio\n");
2258         return AVERROR(EINVAL);
2259     }
2260
2261     av_frame_unref(frame);
2262
2263     if ((avctx->codec->capabilities & AV_CODEC_CAP_DELAY) || avpkt->size || (avctx->active_thread_type & FF_THREAD_FRAME)) {
2264         uint8_t *side;
2265         int side_size;
2266         uint32_t discard_padding = 0;
2267         uint8_t skip_reason = 0;
2268         uint8_t discard_reason = 0;
2269         // copy to ensure we do not change avpkt
2270         AVPacket tmp = *avpkt;
2271         int did_split = av_packet_split_side_data(&tmp);
2272         ret = apply_param_change(avctx, &tmp);
2273         if (ret < 0)
2274             goto fail;
2275
2276         avctx->internal->pkt = &tmp;
2277         if (HAVE_THREADS && avctx->active_thread_type & FF_THREAD_FRAME)
2278             ret = ff_thread_decode_frame(avctx, frame, got_frame_ptr, &tmp);
2279         else {
2280             ret = avctx->codec->decode(avctx, frame, got_frame_ptr, &tmp);
2281             av_assert0(ret <= tmp.size);
2282             frame->pkt_dts = avpkt->dts;
2283         }
2284         if (ret >= 0 && *got_frame_ptr) {
2285             avctx->frame_number++;
2286             av_frame_set_best_effort_timestamp(frame,
2287                                                guess_correct_pts(avctx,
2288                                                                  frame->pkt_pts,
2289                                                                  frame->pkt_dts));
2290             if (frame->format == AV_SAMPLE_FMT_NONE)
2291                 frame->format = avctx->sample_fmt;
2292             if (!frame->channel_layout)
2293                 frame->channel_layout = avctx->channel_layout;
2294             if (!av_frame_get_channels(frame))
2295                 av_frame_set_channels(frame, avctx->channels);
2296             if (!frame->sample_rate)
2297                 frame->sample_rate = avctx->sample_rate;
2298         }
2299
2300         side= av_packet_get_side_data(avctx->internal->pkt, AV_PKT_DATA_SKIP_SAMPLES, &side_size);
2301         if(side && side_size>=10) {
2302             avctx->internal->skip_samples = AV_RL32(side);
2303             discard_padding = AV_RL32(side + 4);
2304             av_log(avctx, AV_LOG_DEBUG, "skip %d / discard %d samples due to side data\n",
2305                    avctx->internal->skip_samples, (int)discard_padding);
2306             skip_reason = AV_RL8(side + 8);
2307             discard_reason = AV_RL8(side + 9);
2308         }
2309         if (avctx->internal->skip_samples && *got_frame_ptr &&
2310             !(avctx->flags2 & AV_CODEC_FLAG2_SKIP_MANUAL)) {
2311             if(frame->nb_samples <= avctx->internal->skip_samples){
2312                 *got_frame_ptr = 0;
2313                 avctx->internal->skip_samples -= frame->nb_samples;
2314                 av_log(avctx, AV_LOG_DEBUG, "skip whole frame, skip left: %d\n",
2315                        avctx->internal->skip_samples);
2316             } else {
2317                 av_samples_copy(frame->extended_data, frame->extended_data, 0, avctx->internal->skip_samples,
2318                                 frame->nb_samples - avctx->internal->skip_samples, avctx->channels, frame->format);
2319                 if(avctx->pkt_timebase.num && avctx->sample_rate) {
2320                     int64_t diff_ts = av_rescale_q(avctx->internal->skip_samples,
2321                                                    (AVRational){1, avctx->sample_rate},
2322                                                    avctx->pkt_timebase);
2323                     if(frame->pkt_pts!=AV_NOPTS_VALUE)
2324                         frame->pkt_pts += diff_ts;
2325                     if(frame->pkt_dts!=AV_NOPTS_VALUE)
2326                         frame->pkt_dts += diff_ts;
2327                     if (av_frame_get_pkt_duration(frame) >= diff_ts)
2328                         av_frame_set_pkt_duration(frame, av_frame_get_pkt_duration(frame) - diff_ts);
2329                 } else {
2330                     av_log(avctx, AV_LOG_WARNING, "Could not update timestamps for skipped samples.\n");
2331                 }
2332                 av_log(avctx, AV_LOG_DEBUG, "skip %d/%d samples\n",
2333                        avctx->internal->skip_samples, frame->nb_samples);
2334                 frame->nb_samples -= avctx->internal->skip_samples;
2335                 avctx->internal->skip_samples = 0;
2336             }
2337         }
2338
2339         if (discard_padding > 0 && discard_padding <= frame->nb_samples && *got_frame_ptr &&
2340             !(avctx->flags2 & AV_CODEC_FLAG2_SKIP_MANUAL)) {
2341             if (discard_padding == frame->nb_samples) {
2342                 *got_frame_ptr = 0;
2343             } else {
2344                 if(avctx->pkt_timebase.num && avctx->sample_rate) {
2345                     int64_t diff_ts = av_rescale_q(frame->nb_samples - discard_padding,
2346                                                    (AVRational){1, avctx->sample_rate},
2347                                                    avctx->pkt_timebase);
2348                     av_frame_set_pkt_duration(frame, diff_ts);
2349                 } else {
2350                     av_log(avctx, AV_LOG_WARNING, "Could not update timestamps for discarded samples.\n");
2351                 }
2352                 av_log(avctx, AV_LOG_DEBUG, "discard %d/%d samples\n",
2353                        (int)discard_padding, frame->nb_samples);
2354                 frame->nb_samples -= discard_padding;
2355             }
2356         }
2357
2358         if ((avctx->flags2 & AV_CODEC_FLAG2_SKIP_MANUAL) && *got_frame_ptr) {
2359             AVFrameSideData *fside = av_frame_new_side_data(frame, AV_FRAME_DATA_SKIP_SAMPLES, 10);
2360             if (fside) {
2361                 AV_WL32(fside->data, avctx->internal->skip_samples);
2362                 AV_WL32(fside->data + 4, discard_padding);
2363                 AV_WL8(fside->data + 8, skip_reason);
2364                 AV_WL8(fside->data + 9, discard_reason);
2365                 avctx->internal->skip_samples = 0;
2366             }
2367         }
2368 fail:
2369         avctx->internal->pkt = NULL;
2370         if (did_split) {
2371             av_packet_free_side_data(&tmp);
2372             if(ret == tmp.size)
2373                 ret = avpkt->size;
2374         }
2375
2376         if (ret >= 0 && *got_frame_ptr) {
2377             if (!avctx->refcounted_frames) {
2378                 int err = unrefcount_frame(avci, frame);
2379                 if (err < 0)
2380                     return err;
2381             }
2382         } else
2383             av_frame_unref(frame);
2384     }
2385
2386     return ret;
2387 }
2388
2389 #define UTF8_MAX_BYTES 4 /* 5 and 6 bytes sequences should not be used */
2390 static int recode_subtitle(AVCodecContext *avctx,
2391                            AVPacket *outpkt, const AVPacket *inpkt)
2392 {
2393 #if CONFIG_ICONV
2394     iconv_t cd = (iconv_t)-1;
2395     int ret = 0;
2396     char *inb, *outb;
2397     size_t inl, outl;
2398     AVPacket tmp;
2399 #endif
2400
2401     if (avctx->sub_charenc_mode != FF_SUB_CHARENC_MODE_PRE_DECODER || inpkt->size == 0)
2402         return 0;
2403
2404 #if CONFIG_ICONV
2405     cd = iconv_open("UTF-8", avctx->sub_charenc);
2406     av_assert0(cd != (iconv_t)-1);
2407
2408     inb = inpkt->data;
2409     inl = inpkt->size;
2410
2411     if (inl >= INT_MAX / UTF8_MAX_BYTES - AV_INPUT_BUFFER_PADDING_SIZE) {
2412         av_log(avctx, AV_LOG_ERROR, "Subtitles packet is too big for recoding\n");
2413         ret = AVERROR(ENOMEM);
2414         goto end;
2415     }
2416
2417     ret = av_new_packet(&tmp, inl * UTF8_MAX_BYTES);
2418     if (ret < 0)
2419         goto end;
2420     outpkt->buf  = tmp.buf;
2421     outpkt->data = tmp.data;
2422     outpkt->size = tmp.size;
2423     outb = outpkt->data;
2424     outl = outpkt->size;
2425
2426     if (iconv(cd, &inb, &inl, &outb, &outl) == (size_t)-1 ||
2427         iconv(cd, NULL, NULL, &outb, &outl) == (size_t)-1 ||
2428         outl >= outpkt->size || inl != 0) {
2429         ret = FFMIN(AVERROR(errno), -1);
2430         av_log(avctx, AV_LOG_ERROR, "Unable to recode subtitle event \"%s\" "
2431                "from %s to UTF-8\n", inpkt->data, avctx->sub_charenc);
2432         av_packet_unref(&tmp);
2433         goto end;
2434     }
2435     outpkt->size -= outl;
2436     memset(outpkt->data + outpkt->size, 0, outl);
2437
2438 end:
2439     if (cd != (iconv_t)-1)
2440         iconv_close(cd);
2441     return ret;
2442 #else
2443     av_log(avctx, AV_LOG_ERROR, "requesting subtitles recoding without iconv");
2444     return AVERROR(EINVAL);
2445 #endif
2446 }
2447
2448 static int utf8_check(const uint8_t *str)
2449 {
2450     const uint8_t *byte;
2451     uint32_t codepoint, min;
2452
2453     while (*str) {
2454         byte = str;
2455         GET_UTF8(codepoint, *(byte++), return 0;);
2456         min = byte - str == 1 ? 0 : byte - str == 2 ? 0x80 :
2457               1 << (5 * (byte - str) - 4);
2458         if (codepoint < min || codepoint >= 0x110000 ||
2459             codepoint == 0xFFFE /* BOM */ ||
2460             codepoint >= 0xD800 && codepoint <= 0xDFFF /* surrogates */)
2461             return 0;
2462         str = byte;
2463     }
2464     return 1;
2465 }
2466
2467 #if FF_API_ASS_TIMING
2468 static void insert_ts(AVBPrint *buf, int ts)
2469 {
2470     if (ts == -1) {
2471         av_bprintf(buf, "9:59:59.99,");
2472     } else {
2473         int h, m, s;
2474
2475         h = ts/360000;  ts -= 360000*h;
2476         m = ts/  6000;  ts -=   6000*m;
2477         s = ts/   100;  ts -=    100*s;
2478         av_bprintf(buf, "%d:%02d:%02d.%02d,", h, m, s, ts);
2479     }
2480 }
2481
2482 static int convert_sub_to_old_ass_form(AVSubtitle *sub, const AVPacket *pkt, AVRational tb)
2483 {
2484     int i;
2485     AVBPrint buf;
2486
2487     av_bprint_init(&buf, 0, AV_BPRINT_SIZE_UNLIMITED);
2488
2489     for (i = 0; i < sub->num_rects; i++) {
2490         char *final_dialog;
2491         const char *dialog;
2492         AVSubtitleRect *rect = sub->rects[i];
2493         int ts_start, ts_duration = -1;
2494         long int layer;
2495
2496         if (rect->type != SUBTITLE_ASS || !strncmp(rect->ass, "Dialogue: ", 10))
2497             continue;
2498
2499         av_bprint_clear(&buf);
2500
2501         /* skip ReadOrder */
2502         dialog = strchr(rect->ass, ',');
2503         if (!dialog)
2504             continue;
2505         dialog++;
2506
2507         /* extract Layer or Marked */
2508         layer = strtol(dialog, (char**)&dialog, 10);
2509         if (*dialog != ',')
2510             continue;
2511         dialog++;
2512
2513         /* rescale timing to ASS time base (ms) */
2514         ts_start = av_rescale_q(pkt->pts, tb, av_make_q(1, 100));
2515         if (pkt->duration != -1)
2516             ts_duration = av_rescale_q(pkt->duration, tb, av_make_q(1, 100));
2517         sub->end_display_time = FFMAX(sub->end_display_time, 10 * ts_duration);
2518
2519         /* construct ASS (standalone file form with timestamps) string */
2520         av_bprintf(&buf, "Dialogue: %ld,", layer);
2521         insert_ts(&buf, ts_start);
2522         insert_ts(&buf, ts_duration == -1 ? -1 : ts_start + ts_duration);
2523         av_bprintf(&buf, "%s\r\n", dialog);
2524
2525         final_dialog = av_strdup(buf.str);
2526         if (!av_bprint_is_complete(&buf) || !final_dialog) {
2527             av_freep(&final_dialog);
2528             av_bprint_finalize(&buf, NULL);
2529             return AVERROR(ENOMEM);
2530         }
2531         av_freep(&rect->ass);
2532         rect->ass = final_dialog;
2533     }
2534
2535     av_bprint_finalize(&buf, NULL);
2536     return 0;
2537 }
2538 #endif
2539
2540 int avcodec_decode_subtitle2(AVCodecContext *avctx, AVSubtitle *sub,
2541                              int *got_sub_ptr,
2542                              AVPacket *avpkt)
2543 {
2544     int i, ret = 0;
2545
2546     if (!avpkt->data && avpkt->size) {
2547         av_log(avctx, AV_LOG_ERROR, "invalid packet: NULL data, size != 0\n");
2548         return AVERROR(EINVAL);
2549     }
2550     if (!avctx->codec)
2551         return AVERROR(EINVAL);
2552     if (avctx->codec->type != AVMEDIA_TYPE_SUBTITLE) {
2553         av_log(avctx, AV_LOG_ERROR, "Invalid media type for subtitles\n");
2554         return AVERROR(EINVAL);
2555     }
2556
2557     *got_sub_ptr = 0;
2558     get_subtitle_defaults(sub);
2559
2560     if ((avctx->codec->capabilities & AV_CODEC_CAP_DELAY) || avpkt->size) {
2561         AVPacket pkt_recoded;
2562         AVPacket tmp = *avpkt;
2563         int did_split = av_packet_split_side_data(&tmp);
2564         //apply_param_change(avctx, &tmp);
2565
2566         if (did_split) {
2567             /* FFMIN() prevents overflow in case the packet wasn't allocated with
2568              * proper padding.
2569              * If the side data is smaller than the buffer padding size, the
2570              * remaining bytes should have already been filled with zeros by the
2571              * original packet allocation anyway. */
2572             memset(tmp.data + tmp.size, 0,
2573                    FFMIN(avpkt->size - tmp.size, AV_INPUT_BUFFER_PADDING_SIZE));
2574         }
2575
2576         pkt_recoded = tmp;
2577         ret = recode_subtitle(avctx, &pkt_recoded, &tmp);
2578         if (ret < 0) {
2579             *got_sub_ptr = 0;
2580         } else {
2581             avctx->internal->pkt = &pkt_recoded;
2582
2583             if (avctx->pkt_timebase.num && avpkt->pts != AV_NOPTS_VALUE)
2584                 sub->pts = av_rescale_q(avpkt->pts,
2585                                         avctx->pkt_timebase, AV_TIME_BASE_Q);
2586             ret = avctx->codec->decode(avctx, sub, got_sub_ptr, &pkt_recoded);
2587             av_assert1((ret >= 0) >= !!*got_sub_ptr &&
2588                        !!*got_sub_ptr >= !!sub->num_rects);
2589
2590 #if FF_API_ASS_TIMING
2591             if (avctx->sub_text_format == FF_SUB_TEXT_FMT_ASS_WITH_TIMINGS
2592                 && *got_sub_ptr && sub->num_rects) {
2593                 const AVRational tb = avctx->pkt_timebase.num ? avctx->pkt_timebase
2594                                                               : avctx->time_base;
2595                 ret = convert_sub_to_old_ass_form(sub, avpkt, tb);
2596             }
2597 #endif
2598
2599             if (sub->num_rects && !sub->end_display_time && avpkt->duration &&
2600                 avctx->pkt_timebase.num) {
2601                 AVRational ms = { 1, 1000 };
2602                 sub->end_display_time = av_rescale_q(avpkt->duration,
2603                                                      avctx->pkt_timebase, ms);
2604             }
2605
2606             for (i = 0; i < sub->num_rects; i++) {
2607                 if (sub->rects[i]->ass && !utf8_check(sub->rects[i]->ass)) {
2608                     av_log(avctx, AV_LOG_ERROR,
2609                            "Invalid UTF-8 in decoded subtitles text; "
2610                            "maybe missing -sub_charenc option\n");
2611                     avsubtitle_free(sub);
2612                     return AVERROR_INVALIDDATA;
2613                 }
2614             }
2615
2616             if (tmp.data != pkt_recoded.data) { // did we recode?
2617                 /* prevent from destroying side data from original packet */
2618                 pkt_recoded.side_data = NULL;
2619                 pkt_recoded.side_data_elems = 0;
2620
2621                 av_packet_unref(&pkt_recoded);
2622             }
2623             if (avctx->codec_descriptor->props & AV_CODEC_PROP_BITMAP_SUB)
2624                 sub->format = 0;
2625             else if (avctx->codec_descriptor->props & AV_CODEC_PROP_TEXT_SUB)
2626                 sub->format = 1;
2627             avctx->internal->pkt = NULL;
2628         }
2629
2630         if (did_split) {
2631             av_packet_free_side_data(&tmp);
2632             if(ret == tmp.size)
2633                 ret = avpkt->size;
2634         }
2635
2636         if (*got_sub_ptr)
2637             avctx->frame_number++;
2638     }
2639
2640     return ret;
2641 }
2642
2643 void avsubtitle_free(AVSubtitle *sub)
2644 {
2645     int i;
2646
2647     for (i = 0; i < sub->num_rects; i++) {
2648         av_freep(&sub->rects[i]->data[0]);
2649         av_freep(&sub->rects[i]->data[1]);
2650         av_freep(&sub->rects[i]->data[2]);
2651         av_freep(&sub->rects[i]->data[3]);
2652         av_freep(&sub->rects[i]->text);
2653         av_freep(&sub->rects[i]->ass);
2654         av_freep(&sub->rects[i]);
2655     }
2656
2657     av_freep(&sub->rects);
2658
2659     memset(sub, 0, sizeof(AVSubtitle));
2660 }
2661
2662 av_cold int avcodec_close(AVCodecContext *avctx)
2663 {
2664     int i;
2665
2666     if (!avctx)
2667         return 0;
2668
2669     if (avcodec_is_open(avctx)) {
2670         FramePool *pool = avctx->internal->pool;
2671         if (CONFIG_FRAME_THREAD_ENCODER &&
2672             avctx->internal->frame_thread_encoder && avctx->thread_count > 1) {
2673             ff_frame_thread_encoder_free(avctx);
2674         }
2675         if (HAVE_THREADS && avctx->internal->thread_ctx)
2676             ff_thread_free(avctx);
2677         if (avctx->codec && avctx->codec->close)
2678             avctx->codec->close(avctx);
2679         avctx->internal->byte_buffer_size = 0;
2680         av_freep(&avctx->internal->byte_buffer);
2681         av_frame_free(&avctx->internal->to_free);
2682         for (i = 0; i < FF_ARRAY_ELEMS(pool->pools); i++)
2683             av_buffer_pool_uninit(&pool->pools[i]);
2684         av_freep(&avctx->internal->pool);
2685
2686         if (avctx->hwaccel && avctx->hwaccel->uninit)
2687             avctx->hwaccel->uninit(avctx);
2688         av_freep(&avctx->internal->hwaccel_priv_data);
2689
2690         av_freep(&avctx->internal);
2691     }
2692
2693     for (i = 0; i < avctx->nb_coded_side_data; i++)
2694         av_freep(&avctx->coded_side_data[i].data);
2695     av_freep(&avctx->coded_side_data);
2696     avctx->nb_coded_side_data = 0;
2697
2698     av_buffer_unref(&avctx->hw_frames_ctx);
2699
2700     if (avctx->priv_data && avctx->codec && avctx->codec->priv_class)
2701         av_opt_free(avctx->priv_data);
2702     av_opt_free(avctx);
2703     av_freep(&avctx->priv_data);
2704     if (av_codec_is_encoder(avctx->codec)) {
2705         av_freep(&avctx->extradata);
2706 #if FF_API_CODED_FRAME
2707 FF_DISABLE_DEPRECATION_WARNINGS
2708         av_frame_free(&avctx->coded_frame);
2709 FF_ENABLE_DEPRECATION_WARNINGS
2710 #endif
2711     }
2712     avctx->codec = NULL;
2713     avctx->active_thread_type = 0;
2714
2715     return 0;
2716 }
2717
2718 static enum AVCodecID remap_deprecated_codec_id(enum AVCodecID id)
2719 {
2720     switch(id){
2721         //This is for future deprecatec codec ids, its empty since
2722         //last major bump but will fill up again over time, please don't remove it
2723         default                                         : return id;
2724     }
2725 }
2726
2727 static AVCodec *find_encdec(enum AVCodecID id, int encoder)
2728 {
2729     AVCodec *p, *experimental = NULL;
2730     p = first_avcodec;
2731     id= remap_deprecated_codec_id(id);
2732     while (p) {
2733         if ((encoder ? av_codec_is_encoder(p) : av_codec_is_decoder(p)) &&
2734             p->id == id) {
2735             if (p->capabilities & AV_CODEC_CAP_EXPERIMENTAL && !experimental) {
2736                 experimental = p;
2737             } else
2738                 return p;
2739         }
2740         p = p->next;
2741     }
2742     return experimental;
2743 }
2744
2745 AVCodec *avcodec_find_encoder(enum AVCodecID id)
2746 {
2747     return find_encdec(id, 1);
2748 }
2749
2750 AVCodec *avcodec_find_encoder_by_name(const char *name)
2751 {
2752     AVCodec *p;
2753     if (!name)
2754         return NULL;
2755     p = first_avcodec;
2756     while (p) {
2757         if (av_codec_is_encoder(p) && strcmp(name, p->name) == 0)
2758             return p;
2759         p = p->next;
2760     }
2761     return NULL;
2762 }
2763
2764 AVCodec *avcodec_find_decoder(enum AVCodecID id)
2765 {
2766     return find_encdec(id, 0);
2767 }
2768
2769 AVCodec *avcodec_find_decoder_by_name(const char *name)
2770 {
2771     AVCodec *p;
2772     if (!name)
2773         return NULL;
2774     p = first_avcodec;
2775     while (p) {
2776         if (av_codec_is_decoder(p) && strcmp(name, p->name) == 0)
2777             return p;
2778         p = p->next;
2779     }
2780     return NULL;
2781 }
2782
2783 const char *avcodec_get_name(enum AVCodecID id)
2784 {
2785     const AVCodecDescriptor *cd;
2786     AVCodec *codec;
2787
2788     if (id == AV_CODEC_ID_NONE)
2789         return "none";
2790     cd = avcodec_descriptor_get(id);
2791     if (cd)
2792         return cd->name;
2793     av_log(NULL, AV_LOG_WARNING, "Codec 0x%x is not in the full list.\n", id);
2794     codec = avcodec_find_decoder(id);
2795     if (codec)
2796         return codec->name;
2797     codec = avcodec_find_encoder(id);
2798     if (codec)
2799         return codec->name;
2800     return "unknown_codec";
2801 }
2802
2803 size_t av_get_codec_tag_string(char *buf, size_t buf_size, unsigned int codec_tag)
2804 {
2805     int i, len, ret = 0;
2806
2807 #define TAG_PRINT(x)                                              \
2808     (((x) >= '0' && (x) <= '9') ||                                \
2809      ((x) >= 'a' && (x) <= 'z') || ((x) >= 'A' && (x) <= 'Z') ||  \
2810      ((x) == '.' || (x) == ' ' || (x) == '-' || (x) == '_'))
2811
2812     for (i = 0; i < 4; i++) {
2813         len = snprintf(buf, buf_size,
2814                        TAG_PRINT(codec_tag & 0xFF) ? "%c" : "[%d]", codec_tag & 0xFF);
2815         buf        += len;
2816         buf_size    = buf_size > len ? buf_size - len : 0;
2817         ret        += len;
2818         codec_tag >>= 8;
2819     }
2820     return ret;
2821 }
2822
2823 void avcodec_string(char *buf, int buf_size, AVCodecContext *enc, int encode)
2824 {
2825     const char *codec_type;
2826     const char *codec_name;
2827     const char *profile = NULL;
2828     int64_t bitrate;
2829     int new_line = 0;
2830     AVRational display_aspect_ratio;
2831     const char *separator = enc->dump_separator ? (const char *)enc->dump_separator : ", ";
2832
2833     if (!buf || buf_size <= 0)
2834         return;
2835     codec_type = av_get_media_type_string(enc->codec_type);
2836     codec_name = avcodec_get_name(enc->codec_id);
2837     profile = avcodec_profile_name(enc->codec_id, enc->profile);
2838
2839     snprintf(buf, buf_size, "%s: %s", codec_type ? codec_type : "unknown",
2840              codec_name);
2841     buf[0] ^= 'a' ^ 'A'; /* first letter in uppercase */
2842
2843     if (enc->codec && strcmp(enc->codec->name, codec_name))
2844         snprintf(buf + strlen(buf), buf_size - strlen(buf), " (%s)", enc->codec->name);
2845
2846     if (profile)
2847         snprintf(buf + strlen(buf), buf_size - strlen(buf), " (%s)", profile);
2848     if (   enc->codec_type == AVMEDIA_TYPE_VIDEO
2849         && av_log_get_level() >= AV_LOG_VERBOSE
2850         && enc->refs)
2851         snprintf(buf + strlen(buf), buf_size - strlen(buf),
2852                  ", %d reference frame%s",
2853                  enc->refs, enc->refs > 1 ? "s" : "");
2854
2855     if (enc->codec_tag) {
2856         char tag_buf[32];
2857         av_get_codec_tag_string(tag_buf, sizeof(tag_buf), enc->codec_tag);
2858         snprintf(buf + strlen(buf), buf_size - strlen(buf),
2859                  " (%s / 0x%04X)", tag_buf, enc->codec_tag);
2860     }
2861
2862     switch (enc->codec_type) {
2863     case AVMEDIA_TYPE_VIDEO:
2864         {
2865             char detail[256] = "(";
2866
2867             av_strlcat(buf, separator, buf_size);
2868
2869             snprintf(buf + strlen(buf), buf_size - strlen(buf),
2870                  "%s", enc->pix_fmt == AV_PIX_FMT_NONE ? "none" :
2871                      av_get_pix_fmt_name(enc->pix_fmt));
2872             if (enc->bits_per_raw_sample && enc->pix_fmt != AV_PIX_FMT_NONE &&
2873                 enc->bits_per_raw_sample < av_pix_fmt_desc_get(enc->pix_fmt)->comp[0].depth)
2874                 av_strlcatf(detail, sizeof(detail), "%d bpc, ", enc->bits_per_raw_sample);
2875             if (enc->color_range != AVCOL_RANGE_UNSPECIFIED)
2876                 av_strlcatf(detail, sizeof(detail), "%s, ",
2877                             av_color_range_name(enc->color_range));
2878
2879             if (enc->colorspace != AVCOL_SPC_UNSPECIFIED ||
2880                 enc->color_primaries != AVCOL_PRI_UNSPECIFIED ||
2881                 enc->color_trc != AVCOL_TRC_UNSPECIFIED) {
2882                 if (enc->colorspace != (int)enc->color_primaries ||
2883                     enc->colorspace != (int)enc->color_trc) {
2884                     new_line = 1;
2885                     av_strlcatf(detail, sizeof(detail), "%s/%s/%s, ",
2886                                 av_color_space_name(enc->colorspace),
2887                                 av_color_primaries_name(enc->color_primaries),
2888                                 av_color_transfer_name(enc->color_trc));
2889                 } else
2890                     av_strlcatf(detail, sizeof(detail), "%s, ",
2891                                 av_get_colorspace_name(enc->colorspace));
2892             }
2893
2894             if (av_log_get_level() >= AV_LOG_DEBUG &&
2895                 enc->chroma_sample_location != AVCHROMA_LOC_UNSPECIFIED)
2896                 av_strlcatf(detail, sizeof(detail), "%s, ",
2897                             av_chroma_location_name(enc->chroma_sample_location));
2898
2899             if (strlen(detail) > 1) {
2900                 detail[strlen(detail) - 2] = 0;
2901                 av_strlcatf(buf, buf_size, "%s)", detail);
2902             }
2903         }
2904
2905         if (enc->width) {
2906             av_strlcat(buf, new_line ? separator : ", ", buf_size);
2907
2908             snprintf(buf + strlen(buf), buf_size - strlen(buf),
2909                      "%dx%d",
2910                      enc->width, enc->height);
2911
2912             if (av_log_get_level() >= AV_LOG_VERBOSE &&
2913                 (enc->width != enc->coded_width ||
2914                  enc->height != enc->coded_height))
2915                 snprintf(buf + strlen(buf), buf_size - strlen(buf),
2916                          " (%dx%d)", enc->coded_width, enc->coded_height);
2917
2918             if (enc->sample_aspect_ratio.num) {
2919                 av_reduce(&display_aspect_ratio.num, &display_aspect_ratio.den,
2920                           enc->width * (int64_t)enc->sample_aspect_ratio.num,
2921                           enc->height * (int64_t)enc->sample_aspect_ratio.den,
2922                           1024 * 1024);
2923                 snprintf(buf + strlen(buf), buf_size - strlen(buf),
2924                          " [SAR %d:%d DAR %d:%d]",
2925                          enc->sample_aspect_ratio.num, enc->sample_aspect_ratio.den,
2926                          display_aspect_ratio.num, display_aspect_ratio.den);
2927             }
2928             if (av_log_get_level() >= AV_LOG_DEBUG) {
2929                 int g = av_gcd(enc->time_base.num, enc->time_base.den);
2930                 snprintf(buf + strlen(buf), buf_size - strlen(buf),
2931                          ", %d/%d",
2932                          enc->time_base.num / g, enc->time_base.den / g);
2933             }
2934         }
2935         if (encode) {
2936             snprintf(buf + strlen(buf), buf_size - strlen(buf),
2937                      ", q=%d-%d", enc->qmin, enc->qmax);
2938         } else {
2939             if (enc->properties & FF_CODEC_PROPERTY_CLOSED_CAPTIONS)
2940                 snprintf(buf + strlen(buf), buf_size - strlen(buf),
2941                          ", Closed Captions");
2942             if (enc->properties & FF_CODEC_PROPERTY_LOSSLESS)
2943                 snprintf(buf + strlen(buf), buf_size - strlen(buf),
2944                          ", lossless");
2945         }
2946         break;
2947     case AVMEDIA_TYPE_AUDIO:
2948         av_strlcat(buf, separator, buf_size);
2949
2950         if (enc->sample_rate) {
2951             snprintf(buf + strlen(buf), buf_size - strlen(buf),
2952                      "%d Hz, ", enc->sample_rate);
2953         }
2954         av_get_channel_layout_string(buf + strlen(buf), buf_size - strlen(buf), enc->channels, enc->channel_layout);
2955         if (enc->sample_fmt != AV_SAMPLE_FMT_NONE) {
2956             snprintf(buf + strlen(buf), buf_size - strlen(buf),
2957                      ", %s", av_get_sample_fmt_name(enc->sample_fmt));
2958         }
2959         if (   enc->bits_per_raw_sample > 0
2960             && enc->bits_per_raw_sample != av_get_bytes_per_sample(enc->sample_fmt) * 8)
2961             snprintf(buf + strlen(buf), buf_size - strlen(buf),
2962                      " (%d bit)", enc->bits_per_raw_sample);
2963         break;
2964     case AVMEDIA_TYPE_DATA:
2965         if (av_log_get_level() >= AV_LOG_DEBUG) {
2966             int g = av_gcd(enc->time_base.num, enc->time_base.den);
2967             if (g)
2968                 snprintf(buf + strlen(buf), buf_size - strlen(buf),
2969                          ", %d/%d",
2970                          enc->time_base.num / g, enc->time_base.den / g);
2971         }
2972         break;
2973     case AVMEDIA_TYPE_SUBTITLE:
2974         if (enc->width)
2975             snprintf(buf + strlen(buf), buf_size - strlen(buf),
2976                      ", %dx%d", enc->width, enc->height);
2977         break;
2978     default:
2979         return;
2980     }
2981     if (encode) {
2982         if (enc->flags & AV_CODEC_FLAG_PASS1)
2983             snprintf(buf + strlen(buf), buf_size - strlen(buf),
2984                      ", pass 1");
2985         if (enc->flags & AV_CODEC_FLAG_PASS2)
2986             snprintf(buf + strlen(buf), buf_size - strlen(buf),
2987                      ", pass 2");
2988     }
2989     bitrate = get_bit_rate(enc);
2990     if (bitrate != 0) {
2991         snprintf(buf + strlen(buf), buf_size - strlen(buf),
2992                  ", %"PRId64" kb/s", bitrate / 1000);
2993     } else if (enc->rc_max_rate > 0) {
2994         snprintf(buf + strlen(buf), buf_size - strlen(buf),
2995                  ", max. %"PRId64" kb/s", (int64_t)enc->rc_max_rate / 1000);
2996     }
2997 }
2998
2999 const char *av_get_profile_name(const AVCodec *codec, int profile)
3000 {
3001     const AVProfile *p;
3002     if (profile == FF_PROFILE_UNKNOWN || !codec->profiles)
3003         return NULL;
3004
3005     for (p = codec->profiles; p->profile != FF_PROFILE_UNKNOWN; p++)
3006         if (p->profile == profile)
3007             return p->name;
3008
3009     return NULL;
3010 }
3011
3012 const char *avcodec_profile_name(enum AVCodecID codec_id, int profile)
3013 {
3014     const AVCodecDescriptor *desc = avcodec_descriptor_get(codec_id);
3015     const AVProfile *p;
3016
3017     if (profile == FF_PROFILE_UNKNOWN || !desc || !desc->profiles)
3018         return NULL;
3019
3020     for (p = desc->profiles; p->profile != FF_PROFILE_UNKNOWN; p++)
3021         if (p->profile == profile)
3022             return p->name;
3023
3024     return NULL;
3025 }
3026
3027 unsigned avcodec_version(void)
3028 {
3029 //    av_assert0(AV_CODEC_ID_V410==164);
3030     av_assert0(AV_CODEC_ID_PCM_S8_PLANAR==65563);
3031     av_assert0(AV_CODEC_ID_ADPCM_G722==69660);
3032 //     av_assert0(AV_CODEC_ID_BMV_AUDIO==86071);
3033     av_assert0(AV_CODEC_ID_SRT==94216);
3034     av_assert0(LIBAVCODEC_VERSION_MICRO >= 100);
3035
3036     return LIBAVCODEC_VERSION_INT;
3037 }
3038
3039 const char *avcodec_configuration(void)
3040 {
3041     return FFMPEG_CONFIGURATION;
3042 }
3043
3044 const char *avcodec_license(void)
3045 {
3046 #define LICENSE_PREFIX "libavcodec license: "
3047     return LICENSE_PREFIX FFMPEG_LICENSE + sizeof(LICENSE_PREFIX) - 1;
3048 }
3049
3050 void avcodec_flush_buffers(AVCodecContext *avctx)
3051 {
3052     if (HAVE_THREADS && avctx->active_thread_type & FF_THREAD_FRAME)
3053         ff_thread_flush(avctx);
3054     else if (avctx->codec->flush)
3055         avctx->codec->flush(avctx);
3056
3057     avctx->pts_correction_last_pts =
3058     avctx->pts_correction_last_dts = INT64_MIN;
3059
3060     if (!avctx->refcounted_frames)
3061         av_frame_unref(avctx->internal->to_free);
3062 }
3063
3064 int av_get_exact_bits_per_sample(enum AVCodecID codec_id)
3065 {
3066     switch (codec_id) {
3067     case AV_CODEC_ID_8SVX_EXP:
3068     case AV_CODEC_ID_8SVX_FIB:
3069     case AV_CODEC_ID_ADPCM_CT:
3070     case AV_CODEC_ID_ADPCM_IMA_APC:
3071     case AV_CODEC_ID_ADPCM_IMA_EA_SEAD:
3072     case AV_CODEC_ID_ADPCM_IMA_OKI:
3073     case AV_CODEC_ID_ADPCM_IMA_WS:
3074     case AV_CODEC_ID_ADPCM_G722:
3075     case AV_CODEC_ID_ADPCM_YAMAHA:
3076     case AV_CODEC_ID_ADPCM_AICA:
3077         return 4;
3078     case AV_CODEC_ID_DSD_LSBF:
3079     case AV_CODEC_ID_DSD_MSBF:
3080     case AV_CODEC_ID_DSD_LSBF_PLANAR:
3081     case AV_CODEC_ID_DSD_MSBF_PLANAR:
3082     case AV_CODEC_ID_PCM_ALAW:
3083     case AV_CODEC_ID_PCM_MULAW:
3084     case AV_CODEC_ID_PCM_S8:
3085     case AV_CODEC_ID_PCM_S8_PLANAR:
3086     case AV_CODEC_ID_PCM_U8:
3087     case AV_CODEC_ID_PCM_ZORK:
3088     case AV_CODEC_ID_SDX2_DPCM:
3089         return 8;
3090     case AV_CODEC_ID_PCM_S16BE:
3091     case AV_CODEC_ID_PCM_S16BE_PLANAR:
3092     case AV_CODEC_ID_PCM_S16LE:
3093     case AV_CODEC_ID_PCM_S16LE_PLANAR:
3094     case AV_CODEC_ID_PCM_U16BE:
3095     case AV_CODEC_ID_PCM_U16LE:
3096         return 16;
3097     case AV_CODEC_ID_PCM_S24DAUD:
3098     case AV_CODEC_ID_PCM_S24BE:
3099     case AV_CODEC_ID_PCM_S24LE:
3100     case AV_CODEC_ID_PCM_S24LE_PLANAR:
3101     case AV_CODEC_ID_PCM_U24BE:
3102     case AV_CODEC_ID_PCM_U24LE:
3103         return 24;
3104     case AV_CODEC_ID_PCM_S32BE:
3105     case AV_CODEC_ID_PCM_S32LE:
3106     case AV_CODEC_ID_PCM_S32LE_PLANAR:
3107     case AV_CODEC_ID_PCM_U32BE:
3108     case AV_CODEC_ID_PCM_U32LE:
3109     case AV_CODEC_ID_PCM_F32BE:
3110     case AV_CODEC_ID_PCM_F32LE:
3111         return 32;
3112     case AV_CODEC_ID_PCM_F64BE:
3113     case AV_CODEC_ID_PCM_F64LE:
3114         return 64;
3115     default:
3116         return 0;
3117     }
3118 }
3119
3120 enum AVCodecID av_get_pcm_codec(enum AVSampleFormat fmt, int be)
3121 {
3122     static const enum AVCodecID map[AV_SAMPLE_FMT_NB][2] = {
3123         [AV_SAMPLE_FMT_U8  ] = { AV_CODEC_ID_PCM_U8,    AV_CODEC_ID_PCM_U8    },
3124         [AV_SAMPLE_FMT_S16 ] = { AV_CODEC_ID_PCM_S16LE, AV_CODEC_ID_PCM_S16BE },
3125         [AV_SAMPLE_FMT_S32 ] = { AV_CODEC_ID_PCM_S32LE, AV_CODEC_ID_PCM_S32BE },
3126         [AV_SAMPLE_FMT_FLT ] = { AV_CODEC_ID_PCM_F32LE, AV_CODEC_ID_PCM_F32BE },
3127         [AV_SAMPLE_FMT_DBL ] = { AV_CODEC_ID_PCM_F64LE, AV_CODEC_ID_PCM_F64BE },
3128         [AV_SAMPLE_FMT_U8P ] = { AV_CODEC_ID_PCM_U8,    AV_CODEC_ID_PCM_U8    },
3129         [AV_SAMPLE_FMT_S16P] = { AV_CODEC_ID_PCM_S16LE, AV_CODEC_ID_PCM_S16BE },
3130         [AV_SAMPLE_FMT_S32P] = { AV_CODEC_ID_PCM_S32LE, AV_CODEC_ID_PCM_S32BE },
3131         [AV_SAMPLE_FMT_FLTP] = { AV_CODEC_ID_PCM_F32LE, AV_CODEC_ID_PCM_F32BE },
3132         [AV_SAMPLE_FMT_DBLP] = { AV_CODEC_ID_PCM_F64LE, AV_CODEC_ID_PCM_F64BE },
3133     };
3134     if (fmt < 0 || fmt >= AV_SAMPLE_FMT_NB)
3135         return AV_CODEC_ID_NONE;
3136     if (be < 0 || be > 1)
3137         be = AV_NE(1, 0);
3138     return map[fmt][be];
3139 }
3140
3141 int av_get_bits_per_sample(enum AVCodecID codec_id)
3142 {
3143     switch (codec_id) {
3144     case AV_CODEC_ID_ADPCM_SBPRO_2:
3145         return 2;
3146     case AV_CODEC_ID_ADPCM_SBPRO_3:
3147         return 3;
3148     case AV_CODEC_ID_ADPCM_SBPRO_4:
3149     case AV_CODEC_ID_ADPCM_IMA_WAV:
3150     case AV_CODEC_ID_ADPCM_IMA_QT:
3151     case AV_CODEC_ID_ADPCM_SWF:
3152     case AV_CODEC_ID_ADPCM_MS:
3153         return 4;
3154     default:
3155         return av_get_exact_bits_per_sample(codec_id);
3156     }
3157 }
3158
3159 static int get_audio_frame_duration(enum AVCodecID id, int sr, int ch, int ba,
3160                                     uint32_t tag, int bits_per_coded_sample, int64_t bitrate,
3161                                     uint8_t * extradata, int frame_size, int frame_bytes)
3162 {
3163     int bps = av_get_exact_bits_per_sample(id);
3164     int framecount = (ba > 0 && frame_bytes / ba > 0) ? frame_bytes / ba : 1;
3165
3166     /* codecs with an exact constant bits per sample */
3167     if (bps > 0 && ch > 0 && frame_bytes > 0 && ch < 32768 && bps < 32768)
3168         return (frame_bytes * 8LL) / (bps * ch);
3169     bps = bits_per_coded_sample;
3170
3171     /* codecs with a fixed packet duration */
3172     switch (id) {
3173     case AV_CODEC_ID_ADPCM_ADX:    return   32;
3174     case AV_CODEC_ID_ADPCM_IMA_QT: return   64;
3175     case AV_CODEC_ID_ADPCM_EA_XAS: return  128;
3176     case AV_CODEC_ID_AMR_NB:
3177     case AV_CODEC_ID_EVRC:
3178     case AV_CODEC_ID_GSM:
3179     case AV_CODEC_ID_QCELP:
3180     case AV_CODEC_ID_RA_288:       return  160;
3181     case AV_CODEC_ID_AMR_WB:
3182     case AV_CODEC_ID_GSM_MS:       return  320;
3183     case AV_CODEC_ID_MP1:          return  384;
3184     case AV_CODEC_ID_ATRAC1:       return  512;
3185     case AV_CODEC_ID_ATRAC3:       return 1024 * framecount;
3186     case AV_CODEC_ID_ATRAC3P:      return 2048;
3187     case AV_CODEC_ID_MP2:
3188     case AV_CODEC_ID_MUSEPACK7:    return 1152;
3189     case AV_CODEC_ID_AC3:          return 1536;
3190     }
3191
3192     if (sr > 0) {
3193         /* calc from sample rate */
3194         if (id == AV_CODEC_ID_TTA)
3195             return 256 * sr / 245;
3196
3197         if (ch > 0) {
3198             /* calc from sample rate and channels */
3199             if (id == AV_CODEC_ID_BINKAUDIO_DCT)
3200                 return (480 << (sr / 22050)) / ch;
3201         }
3202     }
3203
3204     if (ba > 0) {
3205         /* calc from block_align */
3206         if (id == AV_CODEC_ID_SIPR) {
3207             switch (ba) {
3208             case 20: return 160;
3209             case 19: return 144;
3210             case 29: return 288;
3211             case 37: return 480;
3212             }
3213         } else if (id == AV_CODEC_ID_ILBC) {
3214             switch (ba) {
3215             case 38: return 160;
3216             case 50: return 240;
3217             }
3218         }
3219     }
3220
3221     if (frame_bytes > 0) {
3222         /* calc from frame_bytes only */
3223         if (id == AV_CODEC_ID_TRUESPEECH)
3224             return 240 * (frame_bytes / 32);
3225         if (id == AV_CODEC_ID_NELLYMOSER)
3226             return 256 * (frame_bytes / 64);
3227         if (id == AV_CODEC_ID_RA_144)
3228             return 160 * (frame_bytes / 20);
3229         if (id == AV_CODEC_ID_G723_1)
3230             return 240 * (frame_bytes / 24);
3231
3232         if (bps > 0) {
3233             /* calc from frame_bytes and bits_per_coded_sample */
3234             if (id == AV_CODEC_ID_ADPCM_G726)
3235                 return frame_bytes * 8 / bps;
3236         }
3237
3238         if (ch > 0 && ch < INT_MAX/16) {
3239             /* calc from frame_bytes and channels */
3240             switch (id) {
3241             case AV_CODEC_ID_ADPCM_AFC:
3242                 return frame_bytes / (9 * ch) * 16;
3243             case AV_CODEC_ID_ADPCM_PSX:
3244             case AV_CODEC_ID_ADPCM_DTK:
3245                 return frame_bytes / (16 * ch) * 28;
3246             case AV_CODEC_ID_ADPCM_4XM:
3247             case AV_CODEC_ID_ADPCM_IMA_DAT4:
3248             case AV_CODEC_ID_ADPCM_IMA_ISS:
3249                 return (frame_bytes - 4 * ch) * 2 / ch;
3250             case AV_CODEC_ID_ADPCM_IMA_SMJPEG:
3251                 return (frame_bytes - 4) * 2 / ch;
3252             case AV_CODEC_ID_ADPCM_IMA_AMV:
3253                 return (frame_bytes - 8) * 2 / ch;
3254             case AV_CODEC_ID_ADPCM_THP:
3255             case AV_CODEC_ID_ADPCM_THP_LE:
3256                 if (extradata)
3257                     return frame_bytes * 14 / (8 * ch);
3258                 break;
3259             case AV_CODEC_ID_ADPCM_XA:
3260                 return (frame_bytes / 128) * 224 / ch;
3261             case AV_CODEC_ID_INTERPLAY_DPCM:
3262                 return (frame_bytes - 6 - ch) / ch;
3263             case AV_CODEC_ID_ROQ_DPCM:
3264                 return (frame_bytes - 8) / ch;
3265             case AV_CODEC_ID_XAN_DPCM:
3266                 return (frame_bytes - 2 * ch) / ch;
3267             case AV_CODEC_ID_MACE3:
3268                 return 3 * frame_bytes / ch;
3269             case AV_CODEC_ID_MACE6:
3270                 return 6 * frame_bytes / ch;
3271             case AV_CODEC_ID_PCM_LXF:
3272                 return 2 * (frame_bytes / (5 * ch));
3273             case AV_CODEC_ID_IAC:
3274             case AV_CODEC_ID_IMC:
3275                 return 4 * frame_bytes / ch;
3276             }
3277
3278             if (tag) {
3279                 /* calc from frame_bytes, channels, and codec_tag */
3280                 if (id == AV_CODEC_ID_SOL_DPCM) {
3281                     if (tag == 3)
3282                         return frame_bytes / ch;
3283                     else
3284                         return frame_bytes * 2 / ch;
3285                 }
3286             }
3287
3288             if (ba > 0) {
3289                 /* calc from frame_bytes, channels, and block_align */
3290                 int blocks = frame_bytes / ba;
3291                 switch (id) {
3292                 case AV_CODEC_ID_ADPCM_IMA_WAV:
3293                     if (bps < 2 || bps > 5)
3294                         return 0;
3295                     return blocks * (1 + (ba - 4 * ch) / (bps * ch) * 8);
3296                 case AV_CODEC_ID_ADPCM_IMA_DK3:
3297                     return blocks * (((ba - 16) * 2 / 3 * 4) / ch);
3298                 case AV_CODEC_ID_ADPCM_IMA_DK4:
3299                     return blocks * (1 + (ba - 4 * ch) * 2 / ch);
3300                 case AV_CODEC_ID_ADPCM_IMA_RAD:
3301                     return blocks * ((ba - 4 * ch) * 2 / ch);
3302                 case AV_CODEC_ID_ADPCM_MS:
3303                     return blocks * (2 + (ba - 7 * ch) * 2 / ch);
3304                 }
3305             }
3306
3307             if (bps > 0) {
3308                 /* calc from frame_bytes, channels, and bits_per_coded_sample */
3309                 switch (id) {
3310                 case AV_CODEC_ID_PCM_DVD:
3311                     if(bps<4)
3312                         return 0;
3313                     return 2 * (frame_bytes / ((bps * 2 / 8) * ch));
3314                 case AV_CODEC_ID_PCM_BLURAY:
3315                     if(bps<4)
3316                         return 0;
3317                     return frame_bytes / ((FFALIGN(ch, 2) * bps) / 8);
3318                 case AV_CODEC_ID_S302M:
3319                     return 2 * (frame_bytes / ((bps + 4) / 4)) / ch;
3320                 }
3321             }
3322         }
3323     }
3324
3325     /* Fall back on using frame_size */
3326     if (frame_size > 1 && frame_bytes)
3327         return frame_size;
3328
3329     //For WMA we currently have no other means to calculate duration thus we
3330     //do it here by assuming CBR, which is true for all known cases.
3331     if (bitrate > 0 && frame_bytes > 0 && sr > 0 && ba > 1) {
3332         if (id == AV_CODEC_ID_WMAV1 || id == AV_CODEC_ID_WMAV2)
3333             return  (frame_bytes * 8LL * sr) / bitrate;
3334     }
3335
3336     return 0;
3337 }
3338
3339 int av_get_audio_frame_duration(AVCodecContext *avctx, int frame_bytes)
3340 {
3341     return get_audio_frame_duration(avctx->codec_id, avctx->sample_rate,
3342                                     avctx->channels, avctx->block_align,
3343                                     avctx->codec_tag, avctx->bits_per_coded_sample,
3344                                     avctx->bit_rate, avctx->extradata, avctx->frame_size,
3345                                     frame_bytes);
3346 }
3347
3348 int av_get_audio_frame_duration2(AVCodecParameters *par, int frame_bytes)
3349 {
3350     return get_audio_frame_duration(par->codec_id, par->sample_rate,
3351                                     par->channels, par->block_align,
3352                                     par->codec_tag, par->bits_per_coded_sample,
3353                                     par->bit_rate, par->extradata, par->frame_size,
3354                                     frame_bytes);
3355 }
3356
3357 #if !HAVE_THREADS
3358 int ff_thread_init(AVCodecContext *s)
3359 {
3360     return -1;
3361 }
3362
3363 #endif
3364
3365 unsigned int av_xiphlacing(unsigned char *s, unsigned int v)
3366 {
3367     unsigned int n = 0;
3368
3369     while (v >= 0xff) {
3370         *s++ = 0xff;
3371         v -= 0xff;
3372         n++;
3373     }
3374     *s = v;
3375     n++;
3376     return n;
3377 }
3378
3379 int ff_match_2uint16(const uint16_t(*tab)[2], int size, int a, int b)
3380 {
3381     int i;
3382     for (i = 0; i < size && !(tab[i][0] == a && tab[i][1] == b); i++) ;
3383     return i;
3384 }
3385
3386 #if FF_API_MISSING_SAMPLE
3387 FF_DISABLE_DEPRECATION_WARNINGS
3388 void av_log_missing_feature(void *avc, const char *feature, int want_sample)
3389 {
3390     av_log(avc, AV_LOG_WARNING, "%s is not implemented. Update your FFmpeg "
3391             "version to the newest one from Git. If the problem still "
3392             "occurs, it means that your file has a feature which has not "
3393             "been implemented.\n", feature);
3394     if(want_sample)
3395         av_log_ask_for_sample(avc, NULL);
3396 }
3397
3398 void av_log_ask_for_sample(void *avc, const char *msg, ...)
3399 {
3400     va_list argument_list;
3401
3402     va_start(argument_list, msg);
3403
3404     if (msg)
3405         av_vlog(avc, AV_LOG_WARNING, msg, argument_list);
3406     av_log(avc, AV_LOG_WARNING, "If you want to help, upload a sample "
3407             "of this file to ftp://upload.ffmpeg.org/incoming/ "
3408             "and contact the ffmpeg-devel mailing list. (ffmpeg-devel@ffmpeg.org)\n");
3409
3410     va_end(argument_list);
3411 }
3412 FF_ENABLE_DEPRECATION_WARNINGS
3413 #endif /* FF_API_MISSING_SAMPLE */
3414
3415 static AVHWAccel *first_hwaccel = NULL;
3416 static AVHWAccel **last_hwaccel = &first_hwaccel;
3417
3418 void av_register_hwaccel(AVHWAccel *hwaccel)
3419 {
3420     AVHWAccel **p = last_hwaccel;
3421     hwaccel->next = NULL;
3422     while(*p || avpriv_atomic_ptr_cas((void * volatile *)p, NULL, hwaccel))
3423         p = &(*p)->next;
3424     last_hwaccel = &hwaccel->next;
3425 }
3426
3427 AVHWAccel *av_hwaccel_next(const AVHWAccel *hwaccel)
3428 {
3429     return hwaccel ? hwaccel->next : first_hwaccel;
3430 }
3431
3432 int av_lockmgr_register(int (*cb)(void **mutex, enum AVLockOp op))
3433 {
3434     if (lockmgr_cb) {
3435         // There is no good way to rollback a failure to destroy the
3436         // mutex, so we ignore failures.
3437         lockmgr_cb(&codec_mutex,    AV_LOCK_DESTROY);
3438         lockmgr_cb(&avformat_mutex, AV_LOCK_DESTROY);
3439         lockmgr_cb     = NULL;
3440         codec_mutex    = NULL;
3441         avformat_mutex = NULL;
3442     }
3443
3444     if (cb) {
3445         void *new_codec_mutex    = NULL;
3446         void *new_avformat_mutex = NULL;
3447         int err;
3448         if (err = cb(&new_codec_mutex, AV_LOCK_CREATE)) {
3449             return err > 0 ? AVERROR_UNKNOWN : err;
3450         }
3451         if (err = cb(&new_avformat_mutex, AV_LOCK_CREATE)) {
3452             // Ignore failures to destroy the newly created mutex.
3453             cb(&new_codec_mutex, AV_LOCK_DESTROY);
3454             return err > 0 ? AVERROR_UNKNOWN : err;
3455         }
3456         lockmgr_cb     = cb;
3457         codec_mutex    = new_codec_mutex;
3458         avformat_mutex = new_avformat_mutex;
3459     }
3460
3461     return 0;
3462 }
3463
3464 int ff_lock_avcodec(AVCodecContext *log_ctx, const AVCodec *codec)
3465 {
3466     if (codec->caps_internal & FF_CODEC_CAP_INIT_THREADSAFE || !codec->init)
3467         return 0;
3468
3469     if (lockmgr_cb) {
3470         if ((*lockmgr_cb)(&codec_mutex, AV_LOCK_OBTAIN))
3471             return -1;
3472     }
3473
3474     if (avpriv_atomic_int_add_and_fetch(&entangled_thread_counter, 1) != 1) {
3475         av_log(log_ctx, AV_LOG_ERROR,
3476                "Insufficient thread locking. At least %d threads are "
3477                "calling avcodec_open2() at the same time right now.\n",
3478                entangled_thread_counter);
3479         if (!lockmgr_cb)
3480             av_log(log_ctx, AV_LOG_ERROR, "No lock manager is set, please see av_lockmgr_register()\n");
3481         ff_avcodec_locked = 1;
3482         ff_unlock_avcodec(codec);
3483         return AVERROR(EINVAL);
3484     }
3485     av_assert0(!ff_avcodec_locked);
3486     ff_avcodec_locked = 1;
3487     return 0;
3488 }
3489
3490 int ff_unlock_avcodec(const AVCodec *codec)
3491 {
3492     if (codec->caps_internal & FF_CODEC_CAP_INIT_THREADSAFE || !codec->init)
3493         return 0;
3494
3495     av_assert0(ff_avcodec_locked);
3496     ff_avcodec_locked = 0;
3497     avpriv_atomic_int_add_and_fetch(&entangled_thread_counter, -1);
3498     if (lockmgr_cb) {
3499         if ((*lockmgr_cb)(&codec_mutex, AV_LOCK_RELEASE))
3500             return -1;
3501     }
3502
3503     return 0;
3504 }
3505
3506 int avpriv_lock_avformat(void)
3507 {
3508     if (lockmgr_cb) {
3509         if ((*lockmgr_cb)(&avformat_mutex, AV_LOCK_OBTAIN))
3510             return -1;
3511     }
3512     return 0;
3513 }
3514
3515 int avpriv_unlock_avformat(void)
3516 {
3517     if (lockmgr_cb) {
3518         if ((*lockmgr_cb)(&avformat_mutex, AV_LOCK_RELEASE))
3519             return -1;
3520     }
3521     return 0;
3522 }
3523
3524 unsigned int avpriv_toupper4(unsigned int x)
3525 {
3526     return av_toupper(x & 0xFF) +
3527           (av_toupper((x >>  8) & 0xFF) << 8)  +
3528           (av_toupper((x >> 16) & 0xFF) << 16) +
3529 ((unsigned)av_toupper((x >> 24) & 0xFF) << 24);
3530 }
3531
3532 int ff_thread_ref_frame(ThreadFrame *dst, ThreadFrame *src)
3533 {
3534     int ret;
3535
3536     dst->owner = src->owner;
3537
3538     ret = av_frame_ref(dst->f, src->f);
3539     if (ret < 0)
3540         return ret;
3541
3542     av_assert0(!dst->progress);
3543
3544     if (src->progress &&
3545         !(dst->progress = av_buffer_ref(src->progress))) {
3546         ff_thread_release_buffer(dst->owner, dst);
3547         return AVERROR(ENOMEM);
3548     }
3549
3550     return 0;
3551 }
3552
3553 #if !HAVE_THREADS
3554
3555 enum AVPixelFormat ff_thread_get_format(AVCodecContext *avctx, const enum AVPixelFormat *fmt)
3556 {
3557     return ff_get_format(avctx, fmt);
3558 }
3559
3560 int ff_thread_get_buffer(AVCodecContext *avctx, ThreadFrame *f, int flags)
3561 {
3562     f->owner = avctx;
3563     return ff_get_buffer(avctx, f->f, flags);
3564 }
3565
3566 void ff_thread_release_buffer(AVCodecContext *avctx, ThreadFrame *f)
3567 {
3568     if (f->f)
3569         av_frame_unref(f->f);
3570 }
3571
3572 void ff_thread_finish_setup(AVCodecContext *avctx)
3573 {
3574 }
3575
3576 void ff_thread_report_progress(ThreadFrame *f, int progress, int field)
3577 {
3578 }
3579
3580 void ff_thread_await_progress(ThreadFrame *f, int progress, int field)
3581 {
3582 }
3583
3584 int ff_thread_can_start_frame(AVCodecContext *avctx)
3585 {
3586     return 1;
3587 }
3588
3589 int ff_alloc_entries(AVCodecContext *avctx, int count)
3590 {
3591     return 0;
3592 }
3593
3594 void ff_reset_entries(AVCodecContext *avctx)
3595 {
3596 }
3597
3598 void ff_thread_await_progress2(AVCodecContext *avctx, int field, int thread, int shift)
3599 {
3600 }
3601
3602 void ff_thread_report_progress2(AVCodecContext *avctx, int field, int thread, int n)
3603 {
3604 }
3605
3606 #endif
3607
3608 int avcodec_is_open(AVCodecContext *s)
3609 {
3610     return !!s->internal;
3611 }
3612
3613 int avpriv_bprint_to_extradata(AVCodecContext *avctx, struct AVBPrint *buf)
3614 {
3615     int ret;
3616     char *str;
3617
3618     ret = av_bprint_finalize(buf, &str);
3619     if (ret < 0)
3620         return ret;
3621     if (!av_bprint_is_complete(buf)) {
3622         av_free(str);
3623         return AVERROR(ENOMEM);
3624     }
3625
3626     avctx->extradata = str;
3627     /* Note: the string is NUL terminated (so extradata can be read as a
3628      * string), but the ending character is not accounted in the size (in
3629      * binary formats you are likely not supposed to mux that character). When
3630      * extradata is copied, it is also padded with AV_INPUT_BUFFER_PADDING_SIZE
3631      * zeros. */
3632     avctx->extradata_size = buf->len;
3633     return 0;
3634 }
3635
3636 const uint8_t *avpriv_find_start_code(const uint8_t *av_restrict p,
3637                                       const uint8_t *end,
3638                                       uint32_t *av_restrict state)
3639 {
3640     int i;
3641
3642     av_assert0(p <= end);
3643     if (p >= end)
3644         return end;
3645
3646     for (i = 0; i < 3; i++) {
3647         uint32_t tmp = *state << 8;
3648         *state = tmp + *(p++);
3649         if (tmp == 0x100 || p == end)
3650             return p;
3651     }
3652
3653     while (p < end) {
3654         if      (p[-1] > 1      ) p += 3;
3655         else if (p[-2]          ) p += 2;
3656         else if (p[-3]|(p[-1]-1)) p++;
3657         else {
3658             p++;
3659             break;
3660         }
3661     }
3662
3663     p = FFMIN(p, end) - 4;
3664     *state = AV_RB32(p);
3665
3666     return p + 4;
3667 }
3668
3669 AVCPBProperties *av_cpb_properties_alloc(size_t *size)
3670 {
3671     AVCPBProperties *props = av_mallocz(sizeof(AVCPBProperties));
3672     if (!props)
3673         return NULL;
3674
3675     if (size)
3676         *size = sizeof(*props);
3677
3678     props->vbv_delay = UINT64_MAX;
3679
3680     return props;
3681 }
3682
3683 AVCPBProperties *ff_add_cpb_side_data(AVCodecContext *avctx)
3684 {
3685     AVPacketSideData *tmp;
3686     AVCPBProperties  *props;
3687     size_t size;
3688
3689     props = av_cpb_properties_alloc(&size);
3690     if (!props)
3691         return NULL;
3692
3693     tmp = av_realloc_array(avctx->coded_side_data, avctx->nb_coded_side_data + 1, sizeof(*tmp));
3694     if (!tmp) {
3695         av_freep(&props);
3696         return NULL;
3697     }
3698
3699     avctx->coded_side_data = tmp;
3700     avctx->nb_coded_side_data++;
3701
3702     avctx->coded_side_data[avctx->nb_coded_side_data - 1].type = AV_PKT_DATA_CPB_PROPERTIES;
3703     avctx->coded_side_data[avctx->nb_coded_side_data - 1].data = (uint8_t*)props;
3704     avctx->coded_side_data[avctx->nb_coded_side_data - 1].size = size;
3705
3706     return props;
3707 }
3708
3709 static void codec_parameters_reset(AVCodecParameters *par)
3710 {
3711     av_freep(&par->extradata);
3712
3713     memset(par, 0, sizeof(*par));
3714
3715     par->codec_type          = AVMEDIA_TYPE_UNKNOWN;
3716     par->codec_id            = AV_CODEC_ID_NONE;
3717     par->format              = -1;
3718     par->field_order         = AV_FIELD_UNKNOWN;
3719     par->color_range         = AVCOL_RANGE_UNSPECIFIED;
3720     par->color_primaries     = AVCOL_PRI_UNSPECIFIED;
3721     par->color_trc           = AVCOL_TRC_UNSPECIFIED;
3722     par->color_space         = AVCOL_SPC_UNSPECIFIED;
3723     par->chroma_location     = AVCHROMA_LOC_UNSPECIFIED;
3724     par->sample_aspect_ratio = (AVRational){ 0, 1 };
3725     par->profile             = FF_PROFILE_UNKNOWN;
3726     par->level               = FF_LEVEL_UNKNOWN;
3727 }
3728
3729 AVCodecParameters *avcodec_parameters_alloc(void)
3730 {
3731     AVCodecParameters *par = av_mallocz(sizeof(*par));
3732
3733     if (!par)
3734         return NULL;
3735     codec_parameters_reset(par);
3736     return par;
3737 }
3738
3739 void avcodec_parameters_free(AVCodecParameters **ppar)
3740 {
3741     AVCodecParameters *par = *ppar;
3742
3743     if (!par)
3744         return;
3745     codec_parameters_reset(par);
3746
3747     av_freep(ppar);
3748 }
3749
3750 int avcodec_parameters_copy(AVCodecParameters *dst, const AVCodecParameters *src)
3751 {
3752     codec_parameters_reset(dst);
3753     memcpy(dst, src, sizeof(*dst));
3754
3755     dst->extradata      = NULL;
3756     dst->extradata_size = 0;
3757     if (src->extradata) {
3758         dst->extradata = av_mallocz(src->extradata_size + AV_INPUT_BUFFER_PADDING_SIZE);
3759         if (!dst->extradata)
3760             return AVERROR(ENOMEM);
3761         memcpy(dst->extradata, src->extradata, src->extradata_size);
3762         dst->extradata_size = src->extradata_size;
3763     }
3764
3765     return 0;
3766 }
3767
3768 int avcodec_parameters_from_context(AVCodecParameters *par,
3769                                     const AVCodecContext *codec)
3770 {
3771     codec_parameters_reset(par);
3772
3773     par->codec_type = codec->codec_type;
3774     par->codec_id   = codec->codec_id;
3775     par->codec_tag  = codec->codec_tag;
3776
3777     par->bit_rate              = codec->bit_rate;
3778     par->bits_per_coded_sample = codec->bits_per_coded_sample;
3779     par->bits_per_raw_sample   = codec->bits_per_raw_sample;
3780     par->profile               = codec->profile;
3781     par->level                 = codec->level;
3782
3783     switch (par->codec_type) {
3784     case AVMEDIA_TYPE_VIDEO:
3785         par->format              = codec->pix_fmt;
3786         par->width               = codec->width;
3787         par->height              = codec->height;
3788         par->field_order         = codec->field_order;
3789         par->color_range         = codec->color_range;
3790         par->color_primaries     = codec->color_primaries;
3791         par->color_trc           = codec->color_trc;
3792         par->color_space         = codec->colorspace;
3793         par->chroma_location     = codec->chroma_sample_location;
3794         par->sample_aspect_ratio = codec->sample_aspect_ratio;
3795         par->video_delay         = codec->has_b_frames;
3796         break;
3797     case AVMEDIA_TYPE_AUDIO:
3798         par->format          = codec->sample_fmt;
3799         par->channel_layout  = codec->channel_layout;
3800         par->channels        = codec->channels;
3801         par->sample_rate     = codec->sample_rate;
3802         par->block_align     = codec->block_align;
3803         par->frame_size      = codec->frame_size;
3804         par->initial_padding = codec->initial_padding;
3805         par->seek_preroll    = codec->seek_preroll;
3806         break;
3807     case AVMEDIA_TYPE_SUBTITLE:
3808         par->width  = codec->width;
3809         par->height = codec->height;
3810         break;
3811     }
3812
3813     if (codec->extradata) {
3814         par->extradata = av_mallocz(codec->extradata_size + AV_INPUT_BUFFER_PADDING_SIZE);
3815         if (!par->extradata)
3816             return AVERROR(ENOMEM);
3817         memcpy(par->extradata, codec->extradata, codec->extradata_size);
3818         par->extradata_size = codec->extradata_size;
3819     }
3820
3821     return 0;
3822 }
3823
3824 int avcodec_parameters_to_context(AVCodecContext *codec,
3825                                   const AVCodecParameters *par)
3826 {
3827     codec->codec_type = par->codec_type;
3828     codec->codec_id   = par->codec_id;
3829     codec->codec_tag  = par->codec_tag;
3830
3831     codec->bit_rate              = par->bit_rate;
3832     codec->bits_per_coded_sample = par->bits_per_coded_sample;
3833     codec->bits_per_raw_sample   = par->bits_per_raw_sample;
3834     codec->profile               = par->profile;
3835     codec->level                 = par->level;
3836
3837     switch (par->codec_type) {
3838     case AVMEDIA_TYPE_VIDEO:
3839         codec->pix_fmt                = par->format;
3840         codec->width                  = par->width;
3841         codec->height                 = par->height;
3842         codec->field_order            = par->field_order;
3843         codec->color_range            = par->color_range;
3844         codec->color_primaries        = par->color_primaries;
3845         codec->color_trc              = par->color_trc;
3846         codec->colorspace             = par->color_space;
3847         codec->chroma_sample_location = par->chroma_location;
3848         codec->sample_aspect_ratio    = par->sample_aspect_ratio;
3849         codec->has_b_frames           = par->video_delay;
3850         break;
3851     case AVMEDIA_TYPE_AUDIO:
3852         codec->sample_fmt      = par->format;
3853         codec->channel_layout  = par->channel_layout;
3854         codec->channels        = par->channels;
3855         codec->sample_rate     = par->sample_rate;
3856         codec->block_align     = par->block_align;
3857         codec->frame_size      = par->frame_size;
3858         codec->initial_padding = par->initial_padding;
3859         codec->seek_preroll    = par->seek_preroll;
3860         break;
3861     case AVMEDIA_TYPE_SUBTITLE:
3862         codec->width  = par->width;
3863         codec->height = par->height;
3864         break;
3865     }
3866
3867     if (par->extradata) {
3868         av_freep(&codec->extradata);
3869         codec->extradata = av_mallocz(par->extradata_size + AV_INPUT_BUFFER_PADDING_SIZE);
3870         if (!codec->extradata)
3871             return AVERROR(ENOMEM);
3872         memcpy(codec->extradata, par->extradata, par->extradata_size);
3873         codec->extradata_size = par->extradata_size;
3874     }
3875
3876     return 0;
3877 }
3878
3879 #ifdef TEST
3880 int main(void){
3881     AVCodec *codec = NULL;
3882     int ret = 0;
3883     avcodec_register_all();
3884
3885     while (codec = av_codec_next(codec)) {
3886         if (av_codec_is_encoder(codec)) {
3887             if (codec->type == AVMEDIA_TYPE_AUDIO) {
3888                 if (!codec->sample_fmts) {
3889                     av_log(NULL, AV_LOG_FATAL, "Encoder %s is missing the sample_fmts field\n", codec->name);
3890                     ret = 1;
3891                 }
3892             }
3893         }
3894     }
3895     return ret;
3896 }
3897 #endif /* TEST */