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