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