]> git.sesse.net Git - ffmpeg/blob - libavcodec/utils.c
avcodec, avformat: deprecate anything related to side data merging
[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 #if FF_API_MERGE_SD
2267 FF_DISABLE_DEPRECATION_WARNINGS
2268         int did_split = av_packet_split_side_data(&tmp);
2269 FF_ENABLE_DEPRECATION_WARNINGS
2270 #endif
2271         ret = apply_param_change(avctx, &tmp);
2272         if (ret < 0)
2273             goto fail;
2274
2275         avctx->internal->pkt = &tmp;
2276         if (HAVE_THREADS && avctx->active_thread_type & FF_THREAD_FRAME)
2277             ret = ff_thread_decode_frame(avctx, picture, got_picture_ptr,
2278                                          &tmp);
2279         else {
2280             ret = avctx->codec->decode(avctx, picture, got_picture_ptr,
2281                                        &tmp);
2282             if (!(avctx->codec->caps_internal & FF_CODEC_CAP_SETS_PKT_DTS))
2283                 picture->pkt_dts = avpkt->dts;
2284
2285             if(!avctx->has_b_frames){
2286                 av_frame_set_pkt_pos(picture, avpkt->pos);
2287             }
2288             //FIXME these should be under if(!avctx->has_b_frames)
2289             /* get_buffer is supposed to set frame parameters */
2290             if (!(avctx->codec->capabilities & AV_CODEC_CAP_DR1)) {
2291                 if (!picture->sample_aspect_ratio.num)    picture->sample_aspect_ratio = avctx->sample_aspect_ratio;
2292                 if (!picture->width)                      picture->width               = avctx->width;
2293                 if (!picture->height)                     picture->height              = avctx->height;
2294                 if (picture->format == AV_PIX_FMT_NONE)   picture->format              = avctx->pix_fmt;
2295             }
2296         }
2297
2298 fail:
2299         emms_c(); //needed to avoid an emms_c() call before every return;
2300
2301         avctx->internal->pkt = NULL;
2302 #if FF_API_MERGE_SD
2303         if (did_split) {
2304             av_packet_free_side_data(&tmp);
2305             if(ret == tmp.size)
2306                 ret = avpkt->size;
2307         }
2308 #endif
2309         if (picture->flags & AV_FRAME_FLAG_DISCARD) {
2310             *got_picture_ptr = 0;
2311         }
2312         if (*got_picture_ptr) {
2313             if (!avctx->refcounted_frames) {
2314                 int err = unrefcount_frame(avci, picture);
2315                 if (err < 0)
2316                     return err;
2317             }
2318
2319             avctx->frame_number++;
2320             av_frame_set_best_effort_timestamp(picture,
2321                                                guess_correct_pts(avctx,
2322                                                                  picture->pts,
2323                                                                  picture->pkt_dts));
2324         } else
2325             av_frame_unref(picture);
2326     } else
2327         ret = 0;
2328
2329     /* many decoders assign whole AVFrames, thus overwriting extended_data;
2330      * make sure it's set correctly */
2331     av_assert0(!picture->extended_data || picture->extended_data == picture->data);
2332
2333 #if FF_API_AVCTX_TIMEBASE
2334     if (avctx->framerate.num > 0 && avctx->framerate.den > 0)
2335         avctx->time_base = av_inv_q(av_mul_q(avctx->framerate, (AVRational){avctx->ticks_per_frame, 1}));
2336 #endif
2337
2338     return ret;
2339 }
2340
2341 int attribute_align_arg avcodec_decode_audio4(AVCodecContext *avctx,
2342                                               AVFrame *frame,
2343                                               int *got_frame_ptr,
2344                                               const AVPacket *avpkt)
2345 {
2346     AVCodecInternal *avci = avctx->internal;
2347     int ret = 0;
2348
2349     *got_frame_ptr = 0;
2350
2351     if (!avctx->codec)
2352         return AVERROR(EINVAL);
2353
2354     if (!avctx->codec->decode) {
2355         av_log(avctx, AV_LOG_ERROR, "This decoder requires using the avcodec_send_packet() API.\n");
2356         return AVERROR(ENOSYS);
2357     }
2358
2359     if (!avpkt->data && avpkt->size) {
2360         av_log(avctx, AV_LOG_ERROR, "invalid packet: NULL data, size != 0\n");
2361         return AVERROR(EINVAL);
2362     }
2363     if (avctx->codec->type != AVMEDIA_TYPE_AUDIO) {
2364         av_log(avctx, AV_LOG_ERROR, "Invalid media type for audio\n");
2365         return AVERROR(EINVAL);
2366     }
2367
2368     av_frame_unref(frame);
2369
2370     if ((avctx->codec->capabilities & AV_CODEC_CAP_DELAY) || avpkt->size || (avctx->active_thread_type & FF_THREAD_FRAME)) {
2371         uint8_t *side;
2372         int side_size;
2373         uint32_t discard_padding = 0;
2374         uint8_t skip_reason = 0;
2375         uint8_t discard_reason = 0;
2376         // copy to ensure we do not change avpkt
2377         AVPacket tmp = *avpkt;
2378 #if FF_API_MERGE_SD
2379 FF_DISABLE_DEPRECATION_WARNINGS
2380         int did_split = av_packet_split_side_data(&tmp);
2381 FF_ENABLE_DEPRECATION_WARNINGS
2382 #endif
2383         ret = apply_param_change(avctx, &tmp);
2384         if (ret < 0)
2385             goto fail;
2386
2387         avctx->internal->pkt = &tmp;
2388         if (HAVE_THREADS && avctx->active_thread_type & FF_THREAD_FRAME)
2389             ret = ff_thread_decode_frame(avctx, frame, got_frame_ptr, &tmp);
2390         else {
2391             ret = avctx->codec->decode(avctx, frame, got_frame_ptr, &tmp);
2392             av_assert0(ret <= tmp.size);
2393             frame->pkt_dts = avpkt->dts;
2394         }
2395         if (ret >= 0 && *got_frame_ptr) {
2396             avctx->frame_number++;
2397             av_frame_set_best_effort_timestamp(frame,
2398                                                guess_correct_pts(avctx,
2399                                                                  frame->pts,
2400                                                                  frame->pkt_dts));
2401             if (frame->format == AV_SAMPLE_FMT_NONE)
2402                 frame->format = avctx->sample_fmt;
2403             if (!frame->channel_layout)
2404                 frame->channel_layout = avctx->channel_layout;
2405             if (!av_frame_get_channels(frame))
2406                 av_frame_set_channels(frame, avctx->channels);
2407             if (!frame->sample_rate)
2408                 frame->sample_rate = avctx->sample_rate;
2409         }
2410
2411         side= av_packet_get_side_data(avctx->internal->pkt, AV_PKT_DATA_SKIP_SAMPLES, &side_size);
2412         if(side && side_size>=10) {
2413             avctx->internal->skip_samples = AV_RL32(side) * avctx->internal->skip_samples_multiplier;
2414             discard_padding = AV_RL32(side + 4);
2415             av_log(avctx, AV_LOG_DEBUG, "skip %d / discard %d samples due to side data\n",
2416                    avctx->internal->skip_samples, (int)discard_padding);
2417             skip_reason = AV_RL8(side + 8);
2418             discard_reason = AV_RL8(side + 9);
2419         }
2420
2421         if ((frame->flags & AV_FRAME_FLAG_DISCARD) && *got_frame_ptr &&
2422             !(avctx->flags2 & AV_CODEC_FLAG2_SKIP_MANUAL)) {
2423             avctx->internal->skip_samples = FFMAX(0, avctx->internal->skip_samples - frame->nb_samples);
2424             *got_frame_ptr = 0;
2425         }
2426
2427         if (avctx->internal->skip_samples > 0 && *got_frame_ptr &&
2428             !(avctx->flags2 & AV_CODEC_FLAG2_SKIP_MANUAL)) {
2429             if(frame->nb_samples <= avctx->internal->skip_samples){
2430                 *got_frame_ptr = 0;
2431                 avctx->internal->skip_samples -= frame->nb_samples;
2432                 av_log(avctx, AV_LOG_DEBUG, "skip whole frame, skip left: %d\n",
2433                        avctx->internal->skip_samples);
2434             } else {
2435                 av_samples_copy(frame->extended_data, frame->extended_data, 0, avctx->internal->skip_samples,
2436                                 frame->nb_samples - avctx->internal->skip_samples, avctx->channels, frame->format);
2437                 if(avctx->pkt_timebase.num && avctx->sample_rate) {
2438                     int64_t diff_ts = av_rescale_q(avctx->internal->skip_samples,
2439                                                    (AVRational){1, avctx->sample_rate},
2440                                                    avctx->pkt_timebase);
2441                     if(frame->pts!=AV_NOPTS_VALUE)
2442                         frame->pts += diff_ts;
2443 #if FF_API_PKT_PTS
2444 FF_DISABLE_DEPRECATION_WARNINGS
2445                     if(frame->pkt_pts!=AV_NOPTS_VALUE)
2446                         frame->pkt_pts += diff_ts;
2447 FF_ENABLE_DEPRECATION_WARNINGS
2448 #endif
2449                     if(frame->pkt_dts!=AV_NOPTS_VALUE)
2450                         frame->pkt_dts += diff_ts;
2451                     if (av_frame_get_pkt_duration(frame) >= diff_ts)
2452                         av_frame_set_pkt_duration(frame, av_frame_get_pkt_duration(frame) - diff_ts);
2453                 } else {
2454                     av_log(avctx, AV_LOG_WARNING, "Could not update timestamps for skipped samples.\n");
2455                 }
2456                 av_log(avctx, AV_LOG_DEBUG, "skip %d/%d samples\n",
2457                        avctx->internal->skip_samples, frame->nb_samples);
2458                 frame->nb_samples -= avctx->internal->skip_samples;
2459                 avctx->internal->skip_samples = 0;
2460             }
2461         }
2462
2463         if (discard_padding > 0 && discard_padding <= frame->nb_samples && *got_frame_ptr &&
2464             !(avctx->flags2 & AV_CODEC_FLAG2_SKIP_MANUAL)) {
2465             if (discard_padding == frame->nb_samples) {
2466                 *got_frame_ptr = 0;
2467             } else {
2468                 if(avctx->pkt_timebase.num && avctx->sample_rate) {
2469                     int64_t diff_ts = av_rescale_q(frame->nb_samples - discard_padding,
2470                                                    (AVRational){1, avctx->sample_rate},
2471                                                    avctx->pkt_timebase);
2472                     av_frame_set_pkt_duration(frame, diff_ts);
2473                 } else {
2474                     av_log(avctx, AV_LOG_WARNING, "Could not update timestamps for discarded samples.\n");
2475                 }
2476                 av_log(avctx, AV_LOG_DEBUG, "discard %d/%d samples\n",
2477                        (int)discard_padding, frame->nb_samples);
2478                 frame->nb_samples -= discard_padding;
2479             }
2480         }
2481
2482         if ((avctx->flags2 & AV_CODEC_FLAG2_SKIP_MANUAL) && *got_frame_ptr) {
2483             AVFrameSideData *fside = av_frame_new_side_data(frame, AV_FRAME_DATA_SKIP_SAMPLES, 10);
2484             if (fside) {
2485                 AV_WL32(fside->data, avctx->internal->skip_samples);
2486                 AV_WL32(fside->data + 4, discard_padding);
2487                 AV_WL8(fside->data + 8, skip_reason);
2488                 AV_WL8(fside->data + 9, discard_reason);
2489                 avctx->internal->skip_samples = 0;
2490             }
2491         }
2492 fail:
2493         avctx->internal->pkt = NULL;
2494 #if FF_API_MERGE_SD
2495         if (did_split) {
2496             av_packet_free_side_data(&tmp);
2497             if(ret == tmp.size)
2498                 ret = avpkt->size;
2499         }
2500 #endif
2501
2502         if (ret >= 0 && *got_frame_ptr) {
2503             if (!avctx->refcounted_frames) {
2504                 int err = unrefcount_frame(avci, frame);
2505                 if (err < 0)
2506                     return err;
2507             }
2508         } else
2509             av_frame_unref(frame);
2510     }
2511
2512     av_assert0(ret <= avpkt->size);
2513
2514     if (!avci->showed_multi_packet_warning &&
2515         ret >= 0 && ret != avpkt->size && !(avctx->codec->capabilities & AV_CODEC_CAP_SUBFRAMES)) {
2516             av_log(avctx, AV_LOG_WARNING, "Multiple frames in a packet.\n");
2517         avci->showed_multi_packet_warning = 1;
2518     }
2519
2520     return ret;
2521 }
2522
2523 #define UTF8_MAX_BYTES 4 /* 5 and 6 bytes sequences should not be used */
2524 static int recode_subtitle(AVCodecContext *avctx,
2525                            AVPacket *outpkt, const AVPacket *inpkt)
2526 {
2527 #if CONFIG_ICONV
2528     iconv_t cd = (iconv_t)-1;
2529     int ret = 0;
2530     char *inb, *outb;
2531     size_t inl, outl;
2532     AVPacket tmp;
2533 #endif
2534
2535     if (avctx->sub_charenc_mode != FF_SUB_CHARENC_MODE_PRE_DECODER || inpkt->size == 0)
2536         return 0;
2537
2538 #if CONFIG_ICONV
2539     cd = iconv_open("UTF-8", avctx->sub_charenc);
2540     av_assert0(cd != (iconv_t)-1);
2541
2542     inb = inpkt->data;
2543     inl = inpkt->size;
2544
2545     if (inl >= INT_MAX / UTF8_MAX_BYTES - AV_INPUT_BUFFER_PADDING_SIZE) {
2546         av_log(avctx, AV_LOG_ERROR, "Subtitles packet is too big for recoding\n");
2547         ret = AVERROR(ENOMEM);
2548         goto end;
2549     }
2550
2551     ret = av_new_packet(&tmp, inl * UTF8_MAX_BYTES);
2552     if (ret < 0)
2553         goto end;
2554     outpkt->buf  = tmp.buf;
2555     outpkt->data = tmp.data;
2556     outpkt->size = tmp.size;
2557     outb = outpkt->data;
2558     outl = outpkt->size;
2559
2560     if (iconv(cd, &inb, &inl, &outb, &outl) == (size_t)-1 ||
2561         iconv(cd, NULL, NULL, &outb, &outl) == (size_t)-1 ||
2562         outl >= outpkt->size || inl != 0) {
2563         ret = FFMIN(AVERROR(errno), -1);
2564         av_log(avctx, AV_LOG_ERROR, "Unable to recode subtitle event \"%s\" "
2565                "from %s to UTF-8\n", inpkt->data, avctx->sub_charenc);
2566         av_packet_unref(&tmp);
2567         goto end;
2568     }
2569     outpkt->size -= outl;
2570     memset(outpkt->data + outpkt->size, 0, outl);
2571
2572 end:
2573     if (cd != (iconv_t)-1)
2574         iconv_close(cd);
2575     return ret;
2576 #else
2577     av_log(avctx, AV_LOG_ERROR, "requesting subtitles recoding without iconv");
2578     return AVERROR(EINVAL);
2579 #endif
2580 }
2581
2582 static int utf8_check(const uint8_t *str)
2583 {
2584     const uint8_t *byte;
2585     uint32_t codepoint, min;
2586
2587     while (*str) {
2588         byte = str;
2589         GET_UTF8(codepoint, *(byte++), return 0;);
2590         min = byte - str == 1 ? 0 : byte - str == 2 ? 0x80 :
2591               1 << (5 * (byte - str) - 4);
2592         if (codepoint < min || codepoint >= 0x110000 ||
2593             codepoint == 0xFFFE /* BOM */ ||
2594             codepoint >= 0xD800 && codepoint <= 0xDFFF /* surrogates */)
2595             return 0;
2596         str = byte;
2597     }
2598     return 1;
2599 }
2600
2601 #if FF_API_ASS_TIMING
2602 static void insert_ts(AVBPrint *buf, int ts)
2603 {
2604     if (ts == -1) {
2605         av_bprintf(buf, "9:59:59.99,");
2606     } else {
2607         int h, m, s;
2608
2609         h = ts/360000;  ts -= 360000*h;
2610         m = ts/  6000;  ts -=   6000*m;
2611         s = ts/   100;  ts -=    100*s;
2612         av_bprintf(buf, "%d:%02d:%02d.%02d,", h, m, s, ts);
2613     }
2614 }
2615
2616 static int convert_sub_to_old_ass_form(AVSubtitle *sub, const AVPacket *pkt, AVRational tb)
2617 {
2618     int i;
2619     AVBPrint buf;
2620
2621     av_bprint_init(&buf, 0, AV_BPRINT_SIZE_UNLIMITED);
2622
2623     for (i = 0; i < sub->num_rects; i++) {
2624         char *final_dialog;
2625         const char *dialog;
2626         AVSubtitleRect *rect = sub->rects[i];
2627         int ts_start, ts_duration = -1;
2628         long int layer;
2629
2630         if (rect->type != SUBTITLE_ASS || !strncmp(rect->ass, "Dialogue: ", 10))
2631             continue;
2632
2633         av_bprint_clear(&buf);
2634
2635         /* skip ReadOrder */
2636         dialog = strchr(rect->ass, ',');
2637         if (!dialog)
2638             continue;
2639         dialog++;
2640
2641         /* extract Layer or Marked */
2642         layer = strtol(dialog, (char**)&dialog, 10);
2643         if (*dialog != ',')
2644             continue;
2645         dialog++;
2646
2647         /* rescale timing to ASS time base (ms) */
2648         ts_start = av_rescale_q(pkt->pts, tb, av_make_q(1, 100));
2649         if (pkt->duration != -1)
2650             ts_duration = av_rescale_q(pkt->duration, tb, av_make_q(1, 100));
2651         sub->end_display_time = FFMAX(sub->end_display_time, 10 * ts_duration);
2652
2653         /* construct ASS (standalone file form with timestamps) string */
2654         av_bprintf(&buf, "Dialogue: %ld,", layer);
2655         insert_ts(&buf, ts_start);
2656         insert_ts(&buf, ts_duration == -1 ? -1 : ts_start + ts_duration);
2657         av_bprintf(&buf, "%s\r\n", dialog);
2658
2659         final_dialog = av_strdup(buf.str);
2660         if (!av_bprint_is_complete(&buf) || !final_dialog) {
2661             av_freep(&final_dialog);
2662             av_bprint_finalize(&buf, NULL);
2663             return AVERROR(ENOMEM);
2664         }
2665         av_freep(&rect->ass);
2666         rect->ass = final_dialog;
2667     }
2668
2669     av_bprint_finalize(&buf, NULL);
2670     return 0;
2671 }
2672 #endif
2673
2674 int avcodec_decode_subtitle2(AVCodecContext *avctx, AVSubtitle *sub,
2675                              int *got_sub_ptr,
2676                              AVPacket *avpkt)
2677 {
2678     int i, ret = 0;
2679
2680     if (!avpkt->data && avpkt->size) {
2681         av_log(avctx, AV_LOG_ERROR, "invalid packet: NULL data, size != 0\n");
2682         return AVERROR(EINVAL);
2683     }
2684     if (!avctx->codec)
2685         return AVERROR(EINVAL);
2686     if (avctx->codec->type != AVMEDIA_TYPE_SUBTITLE) {
2687         av_log(avctx, AV_LOG_ERROR, "Invalid media type for subtitles\n");
2688         return AVERROR(EINVAL);
2689     }
2690
2691     *got_sub_ptr = 0;
2692     get_subtitle_defaults(sub);
2693
2694     if ((avctx->codec->capabilities & AV_CODEC_CAP_DELAY) || avpkt->size) {
2695         AVPacket pkt_recoded;
2696         AVPacket tmp = *avpkt;
2697 #if FF_API_MERGE_SD
2698 FF_DISABLE_DEPRECATION_WARNINGS
2699         int did_split = av_packet_split_side_data(&tmp);
2700         //apply_param_change(avctx, &tmp);
2701
2702         if (did_split) {
2703             /* FFMIN() prevents overflow in case the packet wasn't allocated with
2704              * proper padding.
2705              * If the side data is smaller than the buffer padding size, the
2706              * remaining bytes should have already been filled with zeros by the
2707              * original packet allocation anyway. */
2708             memset(tmp.data + tmp.size, 0,
2709                    FFMIN(avpkt->size - tmp.size, AV_INPUT_BUFFER_PADDING_SIZE));
2710         }
2711 FF_ENABLE_DEPRECATION_WARNINGS
2712 #endif
2713
2714         pkt_recoded = tmp;
2715         ret = recode_subtitle(avctx, &pkt_recoded, &tmp);
2716         if (ret < 0) {
2717             *got_sub_ptr = 0;
2718         } else {
2719             avctx->internal->pkt = &pkt_recoded;
2720
2721             if (avctx->pkt_timebase.num && avpkt->pts != AV_NOPTS_VALUE)
2722                 sub->pts = av_rescale_q(avpkt->pts,
2723                                         avctx->pkt_timebase, AV_TIME_BASE_Q);
2724             ret = avctx->codec->decode(avctx, sub, got_sub_ptr, &pkt_recoded);
2725             av_assert1((ret >= 0) >= !!*got_sub_ptr &&
2726                        !!*got_sub_ptr >= !!sub->num_rects);
2727
2728 #if FF_API_ASS_TIMING
2729             if (avctx->sub_text_format == FF_SUB_TEXT_FMT_ASS_WITH_TIMINGS
2730                 && *got_sub_ptr && sub->num_rects) {
2731                 const AVRational tb = avctx->pkt_timebase.num ? avctx->pkt_timebase
2732                                                               : avctx->time_base;
2733                 int err = convert_sub_to_old_ass_form(sub, avpkt, tb);
2734                 if (err < 0)
2735                     ret = err;
2736             }
2737 #endif
2738
2739             if (sub->num_rects && !sub->end_display_time && avpkt->duration &&
2740                 avctx->pkt_timebase.num) {
2741                 AVRational ms = { 1, 1000 };
2742                 sub->end_display_time = av_rescale_q(avpkt->duration,
2743                                                      avctx->pkt_timebase, ms);
2744             }
2745
2746             if (avctx->codec_descriptor->props & AV_CODEC_PROP_BITMAP_SUB)
2747                 sub->format = 0;
2748             else if (avctx->codec_descriptor->props & AV_CODEC_PROP_TEXT_SUB)
2749                 sub->format = 1;
2750
2751             for (i = 0; i < sub->num_rects; i++) {
2752                 if (sub->rects[i]->ass && !utf8_check(sub->rects[i]->ass)) {
2753                     av_log(avctx, AV_LOG_ERROR,
2754                            "Invalid UTF-8 in decoded subtitles text; "
2755                            "maybe missing -sub_charenc option\n");
2756                     avsubtitle_free(sub);
2757                     ret = AVERROR_INVALIDDATA;
2758                     break;
2759                 }
2760             }
2761
2762             if (tmp.data != pkt_recoded.data) { // did we recode?
2763                 /* prevent from destroying side data from original packet */
2764                 pkt_recoded.side_data = NULL;
2765                 pkt_recoded.side_data_elems = 0;
2766
2767                 av_packet_unref(&pkt_recoded);
2768             }
2769             avctx->internal->pkt = NULL;
2770         }
2771
2772 #if FF_API_MERGE_SD
2773         if (did_split) {
2774             av_packet_free_side_data(&tmp);
2775             if(ret == tmp.size)
2776                 ret = avpkt->size;
2777         }
2778 #endif
2779
2780         if (*got_sub_ptr)
2781             avctx->frame_number++;
2782     }
2783
2784     return ret;
2785 }
2786
2787 void avsubtitle_free(AVSubtitle *sub)
2788 {
2789     int i;
2790
2791     for (i = 0; i < sub->num_rects; i++) {
2792         av_freep(&sub->rects[i]->data[0]);
2793         av_freep(&sub->rects[i]->data[1]);
2794         av_freep(&sub->rects[i]->data[2]);
2795         av_freep(&sub->rects[i]->data[3]);
2796         av_freep(&sub->rects[i]->text);
2797         av_freep(&sub->rects[i]->ass);
2798         av_freep(&sub->rects[i]);
2799     }
2800
2801     av_freep(&sub->rects);
2802
2803     memset(sub, 0, sizeof(AVSubtitle));
2804 }
2805
2806 static int do_decode(AVCodecContext *avctx, AVPacket *pkt)
2807 {
2808     int got_frame = 0;
2809     int ret;
2810
2811     av_assert0(!avctx->internal->buffer_frame->buf[0]);
2812
2813     if (!pkt)
2814         pkt = avctx->internal->buffer_pkt;
2815
2816     // This is the lesser evil. The field is for compatibility with legacy users
2817     // of the legacy API, and users using the new API should not be forced to
2818     // even know about this field.
2819     avctx->refcounted_frames = 1;
2820
2821     // Some codecs (at least wma lossless) will crash when feeding drain packets
2822     // after EOF was signaled.
2823     if (avctx->internal->draining_done)
2824         return AVERROR_EOF;
2825
2826     if (avctx->codec_type == AVMEDIA_TYPE_VIDEO) {
2827         ret = avcodec_decode_video2(avctx, avctx->internal->buffer_frame,
2828                                     &got_frame, pkt);
2829         if (ret >= 0 && !(avctx->flags & AV_CODEC_FLAG_TRUNCATED))
2830             ret = pkt->size;
2831     } else if (avctx->codec_type == AVMEDIA_TYPE_AUDIO) {
2832         ret = avcodec_decode_audio4(avctx, avctx->internal->buffer_frame,
2833                                     &got_frame, pkt);
2834     } else {
2835         ret = AVERROR(EINVAL);
2836     }
2837
2838     if (ret == AVERROR(EAGAIN))
2839         ret = pkt->size;
2840
2841     if (avctx->internal->draining && !got_frame)
2842         avctx->internal->draining_done = 1;
2843
2844     if (ret < 0)
2845         return ret;
2846
2847     if (ret >= pkt->size) {
2848         av_packet_unref(avctx->internal->buffer_pkt);
2849     } else {
2850         int consumed = ret;
2851
2852         if (pkt != avctx->internal->buffer_pkt) {
2853             av_packet_unref(avctx->internal->buffer_pkt);
2854             if ((ret = av_packet_ref(avctx->internal->buffer_pkt, pkt)) < 0)
2855                 return ret;
2856         }
2857
2858         avctx->internal->buffer_pkt->data += consumed;
2859         avctx->internal->buffer_pkt->size -= consumed;
2860         avctx->internal->buffer_pkt->pts   = AV_NOPTS_VALUE;
2861         avctx->internal->buffer_pkt->dts   = AV_NOPTS_VALUE;
2862     }
2863
2864     if (got_frame)
2865         av_assert0(avctx->internal->buffer_frame->buf[0]);
2866
2867     return 0;
2868 }
2869
2870 int attribute_align_arg avcodec_send_packet(AVCodecContext *avctx, const AVPacket *avpkt)
2871 {
2872     int ret;
2873
2874     if (!avcodec_is_open(avctx) || !av_codec_is_decoder(avctx->codec))
2875         return AVERROR(EINVAL);
2876
2877     if (avctx->internal->draining)
2878         return AVERROR_EOF;
2879
2880     if (avpkt && !avpkt->size && avpkt->data)
2881         return AVERROR(EINVAL);
2882
2883     if (!avpkt || !avpkt->size) {
2884         avctx->internal->draining = 1;
2885         avpkt = NULL;
2886
2887         if (!(avctx->codec->capabilities & AV_CODEC_CAP_DELAY))
2888             return 0;
2889     }
2890
2891     if (avctx->codec->send_packet) {
2892         if (avpkt) {
2893             AVPacket tmp = *avpkt;
2894 #if FF_API_MERGE_SD
2895 FF_DISABLE_DEPRECATION_WARNINGS
2896             int did_split = av_packet_split_side_data(&tmp);
2897 FF_ENABLE_DEPRECATION_WARNINGS
2898 #endif
2899             ret = apply_param_change(avctx, &tmp);
2900             if (ret >= 0)
2901                 ret = avctx->codec->send_packet(avctx, &tmp);
2902 #if FF_API_MERGE_SD
2903             if (did_split)
2904                 av_packet_free_side_data(&tmp);
2905 #endif
2906             return ret;
2907         } else {
2908             return avctx->codec->send_packet(avctx, NULL);
2909         }
2910     }
2911
2912     // Emulation via old API. Assume avpkt is likely not refcounted, while
2913     // decoder output is always refcounted, and avoid copying.
2914
2915     if (avctx->internal->buffer_pkt->size || avctx->internal->buffer_frame->buf[0])
2916         return AVERROR(EAGAIN);
2917
2918     // The goal is decoding the first frame of the packet without using memcpy,
2919     // because the common case is having only 1 frame per packet (especially
2920     // with video, but audio too). In other cases, it can't be avoided, unless
2921     // the user is feeding refcounted packets.
2922     return do_decode(avctx, (AVPacket *)avpkt);
2923 }
2924
2925 int attribute_align_arg avcodec_receive_frame(AVCodecContext *avctx, AVFrame *frame)
2926 {
2927     int ret;
2928
2929     av_frame_unref(frame);
2930
2931     if (!avcodec_is_open(avctx) || !av_codec_is_decoder(avctx->codec))
2932         return AVERROR(EINVAL);
2933
2934     if (avctx->codec->receive_frame) {
2935         if (avctx->internal->draining && !(avctx->codec->capabilities & AV_CODEC_CAP_DELAY))
2936             return AVERROR_EOF;
2937         ret = avctx->codec->receive_frame(avctx, frame);
2938         if (ret >= 0) {
2939             if (av_frame_get_best_effort_timestamp(frame) == AV_NOPTS_VALUE) {
2940                 av_frame_set_best_effort_timestamp(frame,
2941                     guess_correct_pts(avctx, frame->pts, frame->pkt_dts));
2942             }
2943         }
2944         return ret;
2945     }
2946
2947     // Emulation via old API.
2948
2949     if (!avctx->internal->buffer_frame->buf[0]) {
2950         if (!avctx->internal->buffer_pkt->size && !avctx->internal->draining)
2951             return AVERROR(EAGAIN);
2952
2953         while (1) {
2954             if ((ret = do_decode(avctx, avctx->internal->buffer_pkt)) < 0) {
2955                 av_packet_unref(avctx->internal->buffer_pkt);
2956                 return ret;
2957             }
2958             // Some audio decoders may consume partial data without returning
2959             // a frame (fate-wmapro-2ch). There is no way to make the caller
2960             // call avcodec_receive_frame() again without returning a frame,
2961             // so try to decode more in these cases.
2962             if (avctx->internal->buffer_frame->buf[0] ||
2963                 !avctx->internal->buffer_pkt->size)
2964                 break;
2965         }
2966     }
2967
2968     if (!avctx->internal->buffer_frame->buf[0])
2969         return avctx->internal->draining ? AVERROR_EOF : AVERROR(EAGAIN);
2970
2971     av_frame_move_ref(frame, avctx->internal->buffer_frame);
2972     return 0;
2973 }
2974
2975 static int do_encode(AVCodecContext *avctx, const AVFrame *frame, int *got_packet)
2976 {
2977     int ret;
2978     *got_packet = 0;
2979
2980     av_packet_unref(avctx->internal->buffer_pkt);
2981     avctx->internal->buffer_pkt_valid = 0;
2982
2983     if (avctx->codec_type == AVMEDIA_TYPE_VIDEO) {
2984         ret = avcodec_encode_video2(avctx, avctx->internal->buffer_pkt,
2985                                     frame, got_packet);
2986     } else if (avctx->codec_type == AVMEDIA_TYPE_AUDIO) {
2987         ret = avcodec_encode_audio2(avctx, avctx->internal->buffer_pkt,
2988                                     frame, got_packet);
2989     } else {
2990         ret = AVERROR(EINVAL);
2991     }
2992
2993     if (ret >= 0 && *got_packet) {
2994         // Encoders must always return ref-counted buffers.
2995         // Side-data only packets have no data and can be not ref-counted.
2996         av_assert0(!avctx->internal->buffer_pkt->data || avctx->internal->buffer_pkt->buf);
2997         avctx->internal->buffer_pkt_valid = 1;
2998         ret = 0;
2999     } else {
3000         av_packet_unref(avctx->internal->buffer_pkt);
3001     }
3002
3003     return ret;
3004 }
3005
3006 int attribute_align_arg avcodec_send_frame(AVCodecContext *avctx, const AVFrame *frame)
3007 {
3008     if (!avcodec_is_open(avctx) || !av_codec_is_encoder(avctx->codec))
3009         return AVERROR(EINVAL);
3010
3011     if (avctx->internal->draining)
3012         return AVERROR_EOF;
3013
3014     if (!frame) {
3015         avctx->internal->draining = 1;
3016
3017         if (!(avctx->codec->capabilities & AV_CODEC_CAP_DELAY))
3018             return 0;
3019     }
3020
3021     if (avctx->codec->send_frame)
3022         return avctx->codec->send_frame(avctx, frame);
3023
3024     // Emulation via old API. Do it here instead of avcodec_receive_packet, because:
3025     // 1. if the AVFrame is not refcounted, the copying will be much more
3026     //    expensive than copying the packet data
3027     // 2. assume few users use non-refcounted AVPackets, so usually no copy is
3028     //    needed
3029
3030     if (avctx->internal->buffer_pkt_valid)
3031         return AVERROR(EAGAIN);
3032
3033     return do_encode(avctx, frame, &(int){0});
3034 }
3035
3036 int attribute_align_arg avcodec_receive_packet(AVCodecContext *avctx, AVPacket *avpkt)
3037 {
3038     av_packet_unref(avpkt);
3039
3040     if (!avcodec_is_open(avctx) || !av_codec_is_encoder(avctx->codec))
3041         return AVERROR(EINVAL);
3042
3043     if (avctx->codec->receive_packet) {
3044         if (avctx->internal->draining && !(avctx->codec->capabilities & AV_CODEC_CAP_DELAY))
3045             return AVERROR_EOF;
3046         return avctx->codec->receive_packet(avctx, avpkt);
3047     }
3048
3049     // Emulation via old API.
3050
3051     if (!avctx->internal->buffer_pkt_valid) {
3052         int got_packet;
3053         int ret;
3054         if (!avctx->internal->draining)
3055             return AVERROR(EAGAIN);
3056         ret = do_encode(avctx, NULL, &got_packet);
3057         if (ret < 0)
3058             return ret;
3059         if (ret >= 0 && !got_packet)
3060             return AVERROR_EOF;
3061     }
3062
3063     av_packet_move_ref(avpkt, avctx->internal->buffer_pkt);
3064     avctx->internal->buffer_pkt_valid = 0;
3065     return 0;
3066 }
3067
3068 av_cold int avcodec_close(AVCodecContext *avctx)
3069 {
3070     int i;
3071
3072     if (!avctx)
3073         return 0;
3074
3075     if (avcodec_is_open(avctx)) {
3076         FramePool *pool = avctx->internal->pool;
3077         if (CONFIG_FRAME_THREAD_ENCODER &&
3078             avctx->internal->frame_thread_encoder && avctx->thread_count > 1) {
3079             ff_frame_thread_encoder_free(avctx);
3080         }
3081         if (HAVE_THREADS && avctx->internal->thread_ctx)
3082             ff_thread_free(avctx);
3083         if (avctx->codec && avctx->codec->close)
3084             avctx->codec->close(avctx);
3085         avctx->internal->byte_buffer_size = 0;
3086         av_freep(&avctx->internal->byte_buffer);
3087         av_frame_free(&avctx->internal->to_free);
3088         av_frame_free(&avctx->internal->buffer_frame);
3089         av_packet_free(&avctx->internal->buffer_pkt);
3090         for (i = 0; i < FF_ARRAY_ELEMS(pool->pools); i++)
3091             av_buffer_pool_uninit(&pool->pools[i]);
3092         av_freep(&avctx->internal->pool);
3093
3094         if (avctx->hwaccel && avctx->hwaccel->uninit)
3095             avctx->hwaccel->uninit(avctx);
3096         av_freep(&avctx->internal->hwaccel_priv_data);
3097
3098         av_freep(&avctx->internal);
3099     }
3100
3101     for (i = 0; i < avctx->nb_coded_side_data; i++)
3102         av_freep(&avctx->coded_side_data[i].data);
3103     av_freep(&avctx->coded_side_data);
3104     avctx->nb_coded_side_data = 0;
3105
3106     av_buffer_unref(&avctx->hw_frames_ctx);
3107     av_buffer_unref(&avctx->hw_device_ctx);
3108
3109     if (avctx->priv_data && avctx->codec && avctx->codec->priv_class)
3110         av_opt_free(avctx->priv_data);
3111     av_opt_free(avctx);
3112     av_freep(&avctx->priv_data);
3113     if (av_codec_is_encoder(avctx->codec)) {
3114         av_freep(&avctx->extradata);
3115 #if FF_API_CODED_FRAME
3116 FF_DISABLE_DEPRECATION_WARNINGS
3117         av_frame_free(&avctx->coded_frame);
3118 FF_ENABLE_DEPRECATION_WARNINGS
3119 #endif
3120     }
3121     avctx->codec = NULL;
3122     avctx->active_thread_type = 0;
3123
3124     return 0;
3125 }
3126
3127 static enum AVCodecID remap_deprecated_codec_id(enum AVCodecID id)
3128 {
3129     switch(id){
3130         //This is for future deprecatec codec ids, its empty since
3131         //last major bump but will fill up again over time, please don't remove it
3132         default                                         : return id;
3133     }
3134 }
3135
3136 static AVCodec *find_encdec(enum AVCodecID id, int encoder)
3137 {
3138     AVCodec *p, *experimental = NULL;
3139     p = first_avcodec;
3140     id= remap_deprecated_codec_id(id);
3141     while (p) {
3142         if ((encoder ? av_codec_is_encoder(p) : av_codec_is_decoder(p)) &&
3143             p->id == id) {
3144             if (p->capabilities & AV_CODEC_CAP_EXPERIMENTAL && !experimental) {
3145                 experimental = p;
3146             } else
3147                 return p;
3148         }
3149         p = p->next;
3150     }
3151     return experimental;
3152 }
3153
3154 AVCodec *avcodec_find_encoder(enum AVCodecID id)
3155 {
3156     return find_encdec(id, 1);
3157 }
3158
3159 AVCodec *avcodec_find_encoder_by_name(const char *name)
3160 {
3161     AVCodec *p;
3162     if (!name)
3163         return NULL;
3164     p = first_avcodec;
3165     while (p) {
3166         if (av_codec_is_encoder(p) && strcmp(name, p->name) == 0)
3167             return p;
3168         p = p->next;
3169     }
3170     return NULL;
3171 }
3172
3173 AVCodec *avcodec_find_decoder(enum AVCodecID id)
3174 {
3175     return find_encdec(id, 0);
3176 }
3177
3178 AVCodec *avcodec_find_decoder_by_name(const char *name)
3179 {
3180     AVCodec *p;
3181     if (!name)
3182         return NULL;
3183     p = first_avcodec;
3184     while (p) {
3185         if (av_codec_is_decoder(p) && strcmp(name, p->name) == 0)
3186             return p;
3187         p = p->next;
3188     }
3189     return NULL;
3190 }
3191
3192 const char *avcodec_get_name(enum AVCodecID id)
3193 {
3194     const AVCodecDescriptor *cd;
3195     AVCodec *codec;
3196
3197     if (id == AV_CODEC_ID_NONE)
3198         return "none";
3199     cd = avcodec_descriptor_get(id);
3200     if (cd)
3201         return cd->name;
3202     av_log(NULL, AV_LOG_WARNING, "Codec 0x%x is not in the full list.\n", id);
3203     codec = avcodec_find_decoder(id);
3204     if (codec)
3205         return codec->name;
3206     codec = avcodec_find_encoder(id);
3207     if (codec)
3208         return codec->name;
3209     return "unknown_codec";
3210 }
3211
3212 size_t av_get_codec_tag_string(char *buf, size_t buf_size, unsigned int codec_tag)
3213 {
3214     int i, len, ret = 0;
3215
3216 #define TAG_PRINT(x)                                              \
3217     (((x) >= '0' && (x) <= '9') ||                                \
3218      ((x) >= 'a' && (x) <= 'z') || ((x) >= 'A' && (x) <= 'Z') ||  \
3219      ((x) == '.' || (x) == ' ' || (x) == '-' || (x) == '_'))
3220
3221     for (i = 0; i < 4; i++) {
3222         len = snprintf(buf, buf_size,
3223                        TAG_PRINT(codec_tag & 0xFF) ? "%c" : "[%d]", codec_tag & 0xFF);
3224         buf        += len;
3225         buf_size    = buf_size > len ? buf_size - len : 0;
3226         ret        += len;
3227         codec_tag >>= 8;
3228     }
3229     return ret;
3230 }
3231
3232 void avcodec_string(char *buf, int buf_size, AVCodecContext *enc, int encode)
3233 {
3234     const char *codec_type;
3235     const char *codec_name;
3236     const char *profile = NULL;
3237     int64_t bitrate;
3238     int new_line = 0;
3239     AVRational display_aspect_ratio;
3240     const char *separator = enc->dump_separator ? (const char *)enc->dump_separator : ", ";
3241
3242     if (!buf || buf_size <= 0)
3243         return;
3244     codec_type = av_get_media_type_string(enc->codec_type);
3245     codec_name = avcodec_get_name(enc->codec_id);
3246     profile = avcodec_profile_name(enc->codec_id, enc->profile);
3247
3248     snprintf(buf, buf_size, "%s: %s", codec_type ? codec_type : "unknown",
3249              codec_name);
3250     buf[0] ^= 'a' ^ 'A'; /* first letter in uppercase */
3251
3252     if (enc->codec && strcmp(enc->codec->name, codec_name))
3253         snprintf(buf + strlen(buf), buf_size - strlen(buf), " (%s)", enc->codec->name);
3254
3255     if (profile)
3256         snprintf(buf + strlen(buf), buf_size - strlen(buf), " (%s)", profile);
3257     if (   enc->codec_type == AVMEDIA_TYPE_VIDEO
3258         && av_log_get_level() >= AV_LOG_VERBOSE
3259         && enc->refs)
3260         snprintf(buf + strlen(buf), buf_size - strlen(buf),
3261                  ", %d reference frame%s",
3262                  enc->refs, enc->refs > 1 ? "s" : "");
3263
3264     if (enc->codec_tag) {
3265         char tag_buf[32];
3266         av_get_codec_tag_string(tag_buf, sizeof(tag_buf), enc->codec_tag);
3267         snprintf(buf + strlen(buf), buf_size - strlen(buf),
3268                  " (%s / 0x%04X)", tag_buf, enc->codec_tag);
3269     }
3270
3271     switch (enc->codec_type) {
3272     case AVMEDIA_TYPE_VIDEO:
3273         {
3274             char detail[256] = "(";
3275
3276             av_strlcat(buf, separator, buf_size);
3277
3278             snprintf(buf + strlen(buf), buf_size - strlen(buf),
3279                  "%s", enc->pix_fmt == AV_PIX_FMT_NONE ? "none" :
3280                      av_get_pix_fmt_name(enc->pix_fmt));
3281             if (enc->bits_per_raw_sample && enc->pix_fmt != AV_PIX_FMT_NONE &&
3282                 enc->bits_per_raw_sample < av_pix_fmt_desc_get(enc->pix_fmt)->comp[0].depth)
3283                 av_strlcatf(detail, sizeof(detail), "%d bpc, ", enc->bits_per_raw_sample);
3284             if (enc->color_range != AVCOL_RANGE_UNSPECIFIED)
3285                 av_strlcatf(detail, sizeof(detail), "%s, ",
3286                             av_color_range_name(enc->color_range));
3287
3288             if (enc->colorspace != AVCOL_SPC_UNSPECIFIED ||
3289                 enc->color_primaries != AVCOL_PRI_UNSPECIFIED ||
3290                 enc->color_trc != AVCOL_TRC_UNSPECIFIED) {
3291                 if (enc->colorspace != (int)enc->color_primaries ||
3292                     enc->colorspace != (int)enc->color_trc) {
3293                     new_line = 1;
3294                     av_strlcatf(detail, sizeof(detail), "%s/%s/%s, ",
3295                                 av_color_space_name(enc->colorspace),
3296                                 av_color_primaries_name(enc->color_primaries),
3297                                 av_color_transfer_name(enc->color_trc));
3298                 } else
3299                     av_strlcatf(detail, sizeof(detail), "%s, ",
3300                                 av_get_colorspace_name(enc->colorspace));
3301             }
3302
3303             if (enc->field_order != AV_FIELD_UNKNOWN) {
3304                 const char *field_order = "progressive";
3305                 if (enc->field_order == AV_FIELD_TT)
3306                     field_order = "top first";
3307                 else if (enc->field_order == AV_FIELD_BB)
3308                     field_order = "bottom first";
3309                 else if (enc->field_order == AV_FIELD_TB)
3310                     field_order = "top coded first (swapped)";
3311                 else if (enc->field_order == AV_FIELD_BT)
3312                     field_order = "bottom coded first (swapped)";
3313
3314                 av_strlcatf(detail, sizeof(detail), "%s, ", field_order);
3315             }
3316
3317             if (av_log_get_level() >= AV_LOG_VERBOSE &&
3318                 enc->chroma_sample_location != AVCHROMA_LOC_UNSPECIFIED)
3319                 av_strlcatf(detail, sizeof(detail), "%s, ",
3320                             av_chroma_location_name(enc->chroma_sample_location));
3321
3322             if (strlen(detail) > 1) {
3323                 detail[strlen(detail) - 2] = 0;
3324                 av_strlcatf(buf, buf_size, "%s)", detail);
3325             }
3326         }
3327
3328         if (enc->width) {
3329             av_strlcat(buf, new_line ? separator : ", ", buf_size);
3330
3331             snprintf(buf + strlen(buf), buf_size - strlen(buf),
3332                      "%dx%d",
3333                      enc->width, enc->height);
3334
3335             if (av_log_get_level() >= AV_LOG_VERBOSE &&
3336                 (enc->width != enc->coded_width ||
3337                  enc->height != enc->coded_height))
3338                 snprintf(buf + strlen(buf), buf_size - strlen(buf),
3339                          " (%dx%d)", enc->coded_width, enc->coded_height);
3340
3341             if (enc->sample_aspect_ratio.num) {
3342                 av_reduce(&display_aspect_ratio.num, &display_aspect_ratio.den,
3343                           enc->width * (int64_t)enc->sample_aspect_ratio.num,
3344                           enc->height * (int64_t)enc->sample_aspect_ratio.den,
3345                           1024 * 1024);
3346                 snprintf(buf + strlen(buf), buf_size - strlen(buf),
3347                          " [SAR %d:%d DAR %d:%d]",
3348                          enc->sample_aspect_ratio.num, enc->sample_aspect_ratio.den,
3349                          display_aspect_ratio.num, display_aspect_ratio.den);
3350             }
3351             if (av_log_get_level() >= AV_LOG_DEBUG) {
3352                 int g = av_gcd(enc->time_base.num, enc->time_base.den);
3353                 snprintf(buf + strlen(buf), buf_size - strlen(buf),
3354                          ", %d/%d",
3355                          enc->time_base.num / g, enc->time_base.den / g);
3356             }
3357         }
3358         if (encode) {
3359             snprintf(buf + strlen(buf), buf_size - strlen(buf),
3360                      ", q=%d-%d", enc->qmin, enc->qmax);
3361         } else {
3362             if (enc->properties & FF_CODEC_PROPERTY_CLOSED_CAPTIONS)
3363                 snprintf(buf + strlen(buf), buf_size - strlen(buf),
3364                          ", Closed Captions");
3365             if (enc->properties & FF_CODEC_PROPERTY_LOSSLESS)
3366                 snprintf(buf + strlen(buf), buf_size - strlen(buf),
3367                          ", lossless");
3368         }
3369         break;
3370     case AVMEDIA_TYPE_AUDIO:
3371         av_strlcat(buf, separator, buf_size);
3372
3373         if (enc->sample_rate) {
3374             snprintf(buf + strlen(buf), buf_size - strlen(buf),
3375                      "%d Hz, ", enc->sample_rate);
3376         }
3377         av_get_channel_layout_string(buf + strlen(buf), buf_size - strlen(buf), enc->channels, enc->channel_layout);
3378         if (enc->sample_fmt != AV_SAMPLE_FMT_NONE) {
3379             snprintf(buf + strlen(buf), buf_size - strlen(buf),
3380                      ", %s", av_get_sample_fmt_name(enc->sample_fmt));
3381         }
3382         if (   enc->bits_per_raw_sample > 0
3383             && enc->bits_per_raw_sample != av_get_bytes_per_sample(enc->sample_fmt) * 8)
3384             snprintf(buf + strlen(buf), buf_size - strlen(buf),
3385                      " (%d bit)", enc->bits_per_raw_sample);
3386         if (av_log_get_level() >= AV_LOG_VERBOSE) {
3387             if (enc->initial_padding)
3388                 snprintf(buf + strlen(buf), buf_size - strlen(buf),
3389                          ", delay %d", enc->initial_padding);
3390             if (enc->trailing_padding)
3391                 snprintf(buf + strlen(buf), buf_size - strlen(buf),
3392                          ", padding %d", enc->trailing_padding);
3393         }
3394         break;
3395     case AVMEDIA_TYPE_DATA:
3396         if (av_log_get_level() >= AV_LOG_DEBUG) {
3397             int g = av_gcd(enc->time_base.num, enc->time_base.den);
3398             if (g)
3399                 snprintf(buf + strlen(buf), buf_size - strlen(buf),
3400                          ", %d/%d",
3401                          enc->time_base.num / g, enc->time_base.den / g);
3402         }
3403         break;
3404     case AVMEDIA_TYPE_SUBTITLE:
3405         if (enc->width)
3406             snprintf(buf + strlen(buf), buf_size - strlen(buf),
3407                      ", %dx%d", enc->width, enc->height);
3408         break;
3409     default:
3410         return;
3411     }
3412     if (encode) {
3413         if (enc->flags & AV_CODEC_FLAG_PASS1)
3414             snprintf(buf + strlen(buf), buf_size - strlen(buf),
3415                      ", pass 1");
3416         if (enc->flags & AV_CODEC_FLAG_PASS2)
3417             snprintf(buf + strlen(buf), buf_size - strlen(buf),
3418                      ", pass 2");
3419     }
3420     bitrate = get_bit_rate(enc);
3421     if (bitrate != 0) {
3422         snprintf(buf + strlen(buf), buf_size - strlen(buf),
3423                  ", %"PRId64" kb/s", bitrate / 1000);
3424     } else if (enc->rc_max_rate > 0) {
3425         snprintf(buf + strlen(buf), buf_size - strlen(buf),
3426                  ", max. %"PRId64" kb/s", (int64_t)enc->rc_max_rate / 1000);
3427     }
3428 }
3429
3430 const char *av_get_profile_name(const AVCodec *codec, int profile)
3431 {
3432     const AVProfile *p;
3433     if (profile == FF_PROFILE_UNKNOWN || !codec->profiles)
3434         return NULL;
3435
3436     for (p = codec->profiles; p->profile != FF_PROFILE_UNKNOWN; p++)
3437         if (p->profile == profile)
3438             return p->name;
3439
3440     return NULL;
3441 }
3442
3443 const char *avcodec_profile_name(enum AVCodecID codec_id, int profile)
3444 {
3445     const AVCodecDescriptor *desc = avcodec_descriptor_get(codec_id);
3446     const AVProfile *p;
3447
3448     if (profile == FF_PROFILE_UNKNOWN || !desc || !desc->profiles)
3449         return NULL;
3450
3451     for (p = desc->profiles; p->profile != FF_PROFILE_UNKNOWN; p++)
3452         if (p->profile == profile)
3453             return p->name;
3454
3455     return NULL;
3456 }
3457
3458 unsigned avcodec_version(void)
3459 {
3460 //    av_assert0(AV_CODEC_ID_V410==164);
3461     av_assert0(AV_CODEC_ID_PCM_S8_PLANAR==65563);
3462     av_assert0(AV_CODEC_ID_ADPCM_G722==69660);
3463 //     av_assert0(AV_CODEC_ID_BMV_AUDIO==86071);
3464     av_assert0(AV_CODEC_ID_SRT==94216);
3465     av_assert0(LIBAVCODEC_VERSION_MICRO >= 100);
3466
3467     return LIBAVCODEC_VERSION_INT;
3468 }
3469
3470 const char *avcodec_configuration(void)
3471 {
3472     return FFMPEG_CONFIGURATION;
3473 }
3474
3475 const char *avcodec_license(void)
3476 {
3477 #define LICENSE_PREFIX "libavcodec license: "
3478     return LICENSE_PREFIX FFMPEG_LICENSE + sizeof(LICENSE_PREFIX) - 1;
3479 }
3480
3481 void avcodec_flush_buffers(AVCodecContext *avctx)
3482 {
3483     avctx->internal->draining      = 0;
3484     avctx->internal->draining_done = 0;
3485     av_frame_unref(avctx->internal->buffer_frame);
3486     av_packet_unref(avctx->internal->buffer_pkt);
3487     avctx->internal->buffer_pkt_valid = 0;
3488
3489     if (HAVE_THREADS && avctx->active_thread_type & FF_THREAD_FRAME)
3490         ff_thread_flush(avctx);
3491     else if (avctx->codec->flush)
3492         avctx->codec->flush(avctx);
3493
3494     avctx->pts_correction_last_pts =
3495     avctx->pts_correction_last_dts = INT64_MIN;
3496
3497     if (!avctx->refcounted_frames)
3498         av_frame_unref(avctx->internal->to_free);
3499 }
3500
3501 int av_get_exact_bits_per_sample(enum AVCodecID codec_id)
3502 {
3503     switch (codec_id) {
3504     case AV_CODEC_ID_8SVX_EXP:
3505     case AV_CODEC_ID_8SVX_FIB:
3506     case AV_CODEC_ID_ADPCM_CT:
3507     case AV_CODEC_ID_ADPCM_IMA_APC:
3508     case AV_CODEC_ID_ADPCM_IMA_EA_SEAD:
3509     case AV_CODEC_ID_ADPCM_IMA_OKI:
3510     case AV_CODEC_ID_ADPCM_IMA_WS:
3511     case AV_CODEC_ID_ADPCM_G722:
3512     case AV_CODEC_ID_ADPCM_YAMAHA:
3513     case AV_CODEC_ID_ADPCM_AICA:
3514         return 4;
3515     case AV_CODEC_ID_DSD_LSBF:
3516     case AV_CODEC_ID_DSD_MSBF:
3517     case AV_CODEC_ID_DSD_LSBF_PLANAR:
3518     case AV_CODEC_ID_DSD_MSBF_PLANAR:
3519     case AV_CODEC_ID_PCM_ALAW:
3520     case AV_CODEC_ID_PCM_MULAW:
3521     case AV_CODEC_ID_PCM_S8:
3522     case AV_CODEC_ID_PCM_S8_PLANAR:
3523     case AV_CODEC_ID_PCM_U8:
3524     case AV_CODEC_ID_PCM_ZORK:
3525     case AV_CODEC_ID_SDX2_DPCM:
3526         return 8;
3527     case AV_CODEC_ID_PCM_S16BE:
3528     case AV_CODEC_ID_PCM_S16BE_PLANAR:
3529     case AV_CODEC_ID_PCM_S16LE:
3530     case AV_CODEC_ID_PCM_S16LE_PLANAR:
3531     case AV_CODEC_ID_PCM_U16BE:
3532     case AV_CODEC_ID_PCM_U16LE:
3533         return 16;
3534     case AV_CODEC_ID_PCM_S24DAUD:
3535     case AV_CODEC_ID_PCM_S24BE:
3536     case AV_CODEC_ID_PCM_S24LE:
3537     case AV_CODEC_ID_PCM_S24LE_PLANAR:
3538     case AV_CODEC_ID_PCM_U24BE:
3539     case AV_CODEC_ID_PCM_U24LE:
3540         return 24;
3541     case AV_CODEC_ID_PCM_S32BE:
3542     case AV_CODEC_ID_PCM_S32LE:
3543     case AV_CODEC_ID_PCM_S32LE_PLANAR:
3544     case AV_CODEC_ID_PCM_U32BE:
3545     case AV_CODEC_ID_PCM_U32LE:
3546     case AV_CODEC_ID_PCM_F32BE:
3547     case AV_CODEC_ID_PCM_F32LE:
3548     case AV_CODEC_ID_PCM_F24LE:
3549     case AV_CODEC_ID_PCM_F16LE:
3550         return 32;
3551     case AV_CODEC_ID_PCM_F64BE:
3552     case AV_CODEC_ID_PCM_F64LE:
3553     case AV_CODEC_ID_PCM_S64BE:
3554     case AV_CODEC_ID_PCM_S64LE:
3555         return 64;
3556     default:
3557         return 0;
3558     }
3559 }
3560
3561 enum AVCodecID av_get_pcm_codec(enum AVSampleFormat fmt, int be)
3562 {
3563     static const enum AVCodecID map[AV_SAMPLE_FMT_NB][2] = {
3564         [AV_SAMPLE_FMT_U8  ] = { AV_CODEC_ID_PCM_U8,    AV_CODEC_ID_PCM_U8    },
3565         [AV_SAMPLE_FMT_S16 ] = { AV_CODEC_ID_PCM_S16LE, AV_CODEC_ID_PCM_S16BE },
3566         [AV_SAMPLE_FMT_S32 ] = { AV_CODEC_ID_PCM_S32LE, AV_CODEC_ID_PCM_S32BE },
3567         [AV_SAMPLE_FMT_FLT ] = { AV_CODEC_ID_PCM_F32LE, AV_CODEC_ID_PCM_F32BE },
3568         [AV_SAMPLE_FMT_DBL ] = { AV_CODEC_ID_PCM_F64LE, AV_CODEC_ID_PCM_F64BE },
3569         [AV_SAMPLE_FMT_U8P ] = { AV_CODEC_ID_PCM_U8,    AV_CODEC_ID_PCM_U8    },
3570         [AV_SAMPLE_FMT_S16P] = { AV_CODEC_ID_PCM_S16LE, AV_CODEC_ID_PCM_S16BE },
3571         [AV_SAMPLE_FMT_S32P] = { AV_CODEC_ID_PCM_S32LE, AV_CODEC_ID_PCM_S32BE },
3572         [AV_SAMPLE_FMT_S64P] = { AV_CODEC_ID_PCM_S64LE, AV_CODEC_ID_PCM_S64BE },
3573         [AV_SAMPLE_FMT_FLTP] = { AV_CODEC_ID_PCM_F32LE, AV_CODEC_ID_PCM_F32BE },
3574         [AV_SAMPLE_FMT_DBLP] = { AV_CODEC_ID_PCM_F64LE, AV_CODEC_ID_PCM_F64BE },
3575     };
3576     if (fmt < 0 || fmt >= AV_SAMPLE_FMT_NB)
3577         return AV_CODEC_ID_NONE;
3578     if (be < 0 || be > 1)
3579         be = AV_NE(1, 0);
3580     return map[fmt][be];
3581 }
3582
3583 int av_get_bits_per_sample(enum AVCodecID codec_id)
3584 {
3585     switch (codec_id) {
3586     case AV_CODEC_ID_ADPCM_SBPRO_2:
3587         return 2;
3588     case AV_CODEC_ID_ADPCM_SBPRO_3:
3589         return 3;
3590     case AV_CODEC_ID_ADPCM_SBPRO_4:
3591     case AV_CODEC_ID_ADPCM_IMA_WAV:
3592     case AV_CODEC_ID_ADPCM_IMA_QT:
3593     case AV_CODEC_ID_ADPCM_SWF:
3594     case AV_CODEC_ID_ADPCM_MS:
3595         return 4;
3596     default:
3597         return av_get_exact_bits_per_sample(codec_id);
3598     }
3599 }
3600
3601 static int get_audio_frame_duration(enum AVCodecID id, int sr, int ch, int ba,
3602                                     uint32_t tag, int bits_per_coded_sample, int64_t bitrate,
3603                                     uint8_t * extradata, int frame_size, int frame_bytes)
3604 {
3605     int bps = av_get_exact_bits_per_sample(id);
3606     int framecount = (ba > 0 && frame_bytes / ba > 0) ? frame_bytes / ba : 1;
3607
3608     /* codecs with an exact constant bits per sample */
3609     if (bps > 0 && ch > 0 && frame_bytes > 0 && ch < 32768 && bps < 32768)
3610         return (frame_bytes * 8LL) / (bps * ch);
3611     bps = bits_per_coded_sample;
3612
3613     /* codecs with a fixed packet duration */
3614     switch (id) {
3615     case AV_CODEC_ID_ADPCM_ADX:    return   32;
3616     case AV_CODEC_ID_ADPCM_IMA_QT: return   64;
3617     case AV_CODEC_ID_ADPCM_EA_XAS: return  128;
3618     case AV_CODEC_ID_AMR_NB:
3619     case AV_CODEC_ID_EVRC:
3620     case AV_CODEC_ID_GSM:
3621     case AV_CODEC_ID_QCELP:
3622     case AV_CODEC_ID_RA_288:       return  160;
3623     case AV_CODEC_ID_AMR_WB:
3624     case AV_CODEC_ID_GSM_MS:       return  320;
3625     case AV_CODEC_ID_MP1:          return  384;
3626     case AV_CODEC_ID_ATRAC1:       return  512;
3627     case AV_CODEC_ID_ATRAC3:       return 1024 * framecount;
3628     case AV_CODEC_ID_ATRAC3P:      return 2048;
3629     case AV_CODEC_ID_MP2:
3630     case AV_CODEC_ID_MUSEPACK7:    return 1152;
3631     case AV_CODEC_ID_AC3:          return 1536;
3632     }
3633
3634     if (sr > 0) {
3635         /* calc from sample rate */
3636         if (id == AV_CODEC_ID_TTA)
3637             return 256 * sr / 245;
3638         else if (id == AV_CODEC_ID_DST)
3639             return 588 * sr / 44100;
3640
3641         if (ch > 0) {
3642             /* calc from sample rate and channels */
3643             if (id == AV_CODEC_ID_BINKAUDIO_DCT)
3644                 return (480 << (sr / 22050)) / ch;
3645         }
3646     }
3647
3648     if (ba > 0) {
3649         /* calc from block_align */
3650         if (id == AV_CODEC_ID_SIPR) {
3651             switch (ba) {
3652             case 20: return 160;
3653             case 19: return 144;
3654             case 29: return 288;
3655             case 37: return 480;
3656             }
3657         } else if (id == AV_CODEC_ID_ILBC) {
3658             switch (ba) {
3659             case 38: return 160;
3660             case 50: return 240;
3661             }
3662         }
3663     }
3664
3665     if (frame_bytes > 0) {
3666         /* calc from frame_bytes only */
3667         if (id == AV_CODEC_ID_TRUESPEECH)
3668             return 240 * (frame_bytes / 32);
3669         if (id == AV_CODEC_ID_NELLYMOSER)
3670             return 256 * (frame_bytes / 64);
3671         if (id == AV_CODEC_ID_RA_144)
3672             return 160 * (frame_bytes / 20);
3673         if (id == AV_CODEC_ID_G723_1)
3674             return 240 * (frame_bytes / 24);
3675
3676         if (bps > 0) {
3677             /* calc from frame_bytes and bits_per_coded_sample */
3678             if (id == AV_CODEC_ID_ADPCM_G726)
3679                 return frame_bytes * 8 / bps;
3680         }
3681
3682         if (ch > 0 && ch < INT_MAX/16) {
3683             /* calc from frame_bytes and channels */
3684             switch (id) {
3685             case AV_CODEC_ID_ADPCM_AFC:
3686                 return frame_bytes / (9 * ch) * 16;
3687             case AV_CODEC_ID_ADPCM_PSX:
3688             case AV_CODEC_ID_ADPCM_DTK:
3689                 return frame_bytes / (16 * ch) * 28;
3690             case AV_CODEC_ID_ADPCM_4XM:
3691             case AV_CODEC_ID_ADPCM_IMA_DAT4:
3692             case AV_CODEC_ID_ADPCM_IMA_ISS:
3693                 return (frame_bytes - 4 * ch) * 2 / ch;
3694             case AV_CODEC_ID_ADPCM_IMA_SMJPEG:
3695                 return (frame_bytes - 4) * 2 / ch;
3696             case AV_CODEC_ID_ADPCM_IMA_AMV:
3697                 return (frame_bytes - 8) * 2 / ch;
3698             case AV_CODEC_ID_ADPCM_THP:
3699             case AV_CODEC_ID_ADPCM_THP_LE:
3700                 if (extradata)
3701                     return frame_bytes * 14 / (8 * ch);
3702                 break;
3703             case AV_CODEC_ID_ADPCM_XA:
3704                 return (frame_bytes / 128) * 224 / ch;
3705             case AV_CODEC_ID_INTERPLAY_DPCM:
3706                 return (frame_bytes - 6 - ch) / ch;
3707             case AV_CODEC_ID_ROQ_DPCM:
3708                 return (frame_bytes - 8) / ch;
3709             case AV_CODEC_ID_XAN_DPCM:
3710                 return (frame_bytes - 2 * ch) / ch;
3711             case AV_CODEC_ID_MACE3:
3712                 return 3 * frame_bytes / ch;
3713             case AV_CODEC_ID_MACE6:
3714                 return 6 * frame_bytes / ch;
3715             case AV_CODEC_ID_PCM_LXF:
3716                 return 2 * (frame_bytes / (5 * ch));
3717             case AV_CODEC_ID_IAC:
3718             case AV_CODEC_ID_IMC:
3719                 return 4 * frame_bytes / ch;
3720             }
3721
3722             if (tag) {
3723                 /* calc from frame_bytes, channels, and codec_tag */
3724                 if (id == AV_CODEC_ID_SOL_DPCM) {
3725                     if (tag == 3)
3726                         return frame_bytes / ch;
3727                     else
3728                         return frame_bytes * 2 / ch;
3729                 }
3730             }
3731
3732             if (ba > 0) {
3733                 /* calc from frame_bytes, channels, and block_align */
3734                 int blocks = frame_bytes / ba;
3735                 switch (id) {
3736                 case AV_CODEC_ID_ADPCM_IMA_WAV:
3737                     if (bps < 2 || bps > 5)
3738                         return 0;
3739                     return blocks * (1 + (ba - 4 * ch) / (bps * ch) * 8);
3740                 case AV_CODEC_ID_ADPCM_IMA_DK3:
3741                     return blocks * (((ba - 16) * 2 / 3 * 4) / ch);
3742                 case AV_CODEC_ID_ADPCM_IMA_DK4:
3743                     return blocks * (1 + (ba - 4 * ch) * 2 / ch);
3744                 case AV_CODEC_ID_ADPCM_IMA_RAD:
3745                     return blocks * ((ba - 4 * ch) * 2 / ch);
3746                 case AV_CODEC_ID_ADPCM_MS:
3747                     return blocks * (2 + (ba - 7 * ch) * 2 / ch);
3748                 case AV_CODEC_ID_ADPCM_MTAF:
3749                     return blocks * (ba - 16) * 2 / ch;
3750                 }
3751             }
3752
3753             if (bps > 0) {
3754                 /* calc from frame_bytes, channels, and bits_per_coded_sample */
3755                 switch (id) {
3756                 case AV_CODEC_ID_PCM_DVD:
3757                     if(bps<4)
3758                         return 0;
3759                     return 2 * (frame_bytes / ((bps * 2 / 8) * ch));
3760                 case AV_CODEC_ID_PCM_BLURAY:
3761                     if(bps<4)
3762                         return 0;
3763                     return frame_bytes / ((FFALIGN(ch, 2) * bps) / 8);
3764                 case AV_CODEC_ID_S302M:
3765                     return 2 * (frame_bytes / ((bps + 4) / 4)) / ch;
3766                 }
3767             }
3768         }
3769     }
3770
3771     /* Fall back on using frame_size */
3772     if (frame_size > 1 && frame_bytes)
3773         return frame_size;
3774
3775     //For WMA we currently have no other means to calculate duration thus we
3776     //do it here by assuming CBR, which is true for all known cases.
3777     if (bitrate > 0 && frame_bytes > 0 && sr > 0 && ba > 1) {
3778         if (id == AV_CODEC_ID_WMAV1 || id == AV_CODEC_ID_WMAV2)
3779             return  (frame_bytes * 8LL * sr) / bitrate;
3780     }
3781
3782     return 0;
3783 }
3784
3785 int av_get_audio_frame_duration(AVCodecContext *avctx, int frame_bytes)
3786 {
3787     return get_audio_frame_duration(avctx->codec_id, avctx->sample_rate,
3788                                     avctx->channels, avctx->block_align,
3789                                     avctx->codec_tag, avctx->bits_per_coded_sample,
3790                                     avctx->bit_rate, avctx->extradata, avctx->frame_size,
3791                                     frame_bytes);
3792 }
3793
3794 int av_get_audio_frame_duration2(AVCodecParameters *par, int frame_bytes)
3795 {
3796     return get_audio_frame_duration(par->codec_id, par->sample_rate,
3797                                     par->channels, par->block_align,
3798                                     par->codec_tag, par->bits_per_coded_sample,
3799                                     par->bit_rate, par->extradata, par->frame_size,
3800                                     frame_bytes);
3801 }
3802
3803 #if !HAVE_THREADS
3804 int ff_thread_init(AVCodecContext *s)
3805 {
3806     return -1;
3807 }
3808
3809 #endif
3810
3811 unsigned int av_xiphlacing(unsigned char *s, unsigned int v)
3812 {
3813     unsigned int n = 0;
3814
3815     while (v >= 0xff) {
3816         *s++ = 0xff;
3817         v -= 0xff;
3818         n++;
3819     }
3820     *s = v;
3821     n++;
3822     return n;
3823 }
3824
3825 int ff_match_2uint16(const uint16_t(*tab)[2], int size, int a, int b)
3826 {
3827     int i;
3828     for (i = 0; i < size && !(tab[i][0] == a && tab[i][1] == b); i++) ;
3829     return i;
3830 }
3831
3832 #if FF_API_MISSING_SAMPLE
3833 FF_DISABLE_DEPRECATION_WARNINGS
3834 void av_log_missing_feature(void *avc, const char *feature, int want_sample)
3835 {
3836     av_log(avc, AV_LOG_WARNING, "%s is not implemented. Update your FFmpeg "
3837             "version to the newest one from Git. If the problem still "
3838             "occurs, it means that your file has a feature which has not "
3839             "been implemented.\n", feature);
3840     if(want_sample)
3841         av_log_ask_for_sample(avc, NULL);
3842 }
3843
3844 void av_log_ask_for_sample(void *avc, const char *msg, ...)
3845 {
3846     va_list argument_list;
3847
3848     va_start(argument_list, msg);
3849
3850     if (msg)
3851         av_vlog(avc, AV_LOG_WARNING, msg, argument_list);
3852     av_log(avc, AV_LOG_WARNING, "If you want to help, upload a sample "
3853             "of this file to ftp://upload.ffmpeg.org/incoming/ "
3854             "and contact the ffmpeg-devel mailing list. (ffmpeg-devel@ffmpeg.org)\n");
3855
3856     va_end(argument_list);
3857 }
3858 FF_ENABLE_DEPRECATION_WARNINGS
3859 #endif /* FF_API_MISSING_SAMPLE */
3860
3861 static AVHWAccel *first_hwaccel = NULL;
3862 static AVHWAccel **last_hwaccel = &first_hwaccel;
3863
3864 void av_register_hwaccel(AVHWAccel *hwaccel)
3865 {
3866     AVHWAccel **p = last_hwaccel;
3867     hwaccel->next = NULL;
3868     while(*p || avpriv_atomic_ptr_cas((void * volatile *)p, NULL, hwaccel))
3869         p = &(*p)->next;
3870     last_hwaccel = &hwaccel->next;
3871 }
3872
3873 AVHWAccel *av_hwaccel_next(const AVHWAccel *hwaccel)
3874 {
3875     return hwaccel ? hwaccel->next : first_hwaccel;
3876 }
3877
3878 int av_lockmgr_register(int (*cb)(void **mutex, enum AVLockOp op))
3879 {
3880     if (lockmgr_cb) {
3881         // There is no good way to rollback a failure to destroy the
3882         // mutex, so we ignore failures.
3883         lockmgr_cb(&codec_mutex,    AV_LOCK_DESTROY);
3884         lockmgr_cb(&avformat_mutex, AV_LOCK_DESTROY);
3885         lockmgr_cb     = NULL;
3886         codec_mutex    = NULL;
3887         avformat_mutex = NULL;
3888     }
3889
3890     if (cb) {
3891         void *new_codec_mutex    = NULL;
3892         void *new_avformat_mutex = NULL;
3893         int err;
3894         if (err = cb(&new_codec_mutex, AV_LOCK_CREATE)) {
3895             return err > 0 ? AVERROR_UNKNOWN : err;
3896         }
3897         if (err = cb(&new_avformat_mutex, AV_LOCK_CREATE)) {
3898             // Ignore failures to destroy the newly created mutex.
3899             cb(&new_codec_mutex, AV_LOCK_DESTROY);
3900             return err > 0 ? AVERROR_UNKNOWN : err;
3901         }
3902         lockmgr_cb     = cb;
3903         codec_mutex    = new_codec_mutex;
3904         avformat_mutex = new_avformat_mutex;
3905     }
3906
3907     return 0;
3908 }
3909
3910 int ff_lock_avcodec(AVCodecContext *log_ctx, const AVCodec *codec)
3911 {
3912     if (codec->caps_internal & FF_CODEC_CAP_INIT_THREADSAFE || !codec->init)
3913         return 0;
3914
3915     if (lockmgr_cb) {
3916         if ((*lockmgr_cb)(&codec_mutex, AV_LOCK_OBTAIN))
3917             return -1;
3918     }
3919
3920     if (avpriv_atomic_int_add_and_fetch(&entangled_thread_counter, 1) != 1) {
3921         av_log(log_ctx, AV_LOG_ERROR,
3922                "Insufficient thread locking. At least %d threads are "
3923                "calling avcodec_open2() at the same time right now.\n",
3924                entangled_thread_counter);
3925         if (!lockmgr_cb)
3926             av_log(log_ctx, AV_LOG_ERROR, "No lock manager is set, please see av_lockmgr_register()\n");
3927         ff_avcodec_locked = 1;
3928         ff_unlock_avcodec(codec);
3929         return AVERROR(EINVAL);
3930     }
3931     av_assert0(!ff_avcodec_locked);
3932     ff_avcodec_locked = 1;
3933     return 0;
3934 }
3935
3936 int ff_unlock_avcodec(const AVCodec *codec)
3937 {
3938     if (codec->caps_internal & FF_CODEC_CAP_INIT_THREADSAFE || !codec->init)
3939         return 0;
3940
3941     av_assert0(ff_avcodec_locked);
3942     ff_avcodec_locked = 0;
3943     avpriv_atomic_int_add_and_fetch(&entangled_thread_counter, -1);
3944     if (lockmgr_cb) {
3945         if ((*lockmgr_cb)(&codec_mutex, AV_LOCK_RELEASE))
3946             return -1;
3947     }
3948
3949     return 0;
3950 }
3951
3952 int avpriv_lock_avformat(void)
3953 {
3954     if (lockmgr_cb) {
3955         if ((*lockmgr_cb)(&avformat_mutex, AV_LOCK_OBTAIN))
3956             return -1;
3957     }
3958     return 0;
3959 }
3960
3961 int avpriv_unlock_avformat(void)
3962 {
3963     if (lockmgr_cb) {
3964         if ((*lockmgr_cb)(&avformat_mutex, AV_LOCK_RELEASE))
3965             return -1;
3966     }
3967     return 0;
3968 }
3969
3970 unsigned int avpriv_toupper4(unsigned int x)
3971 {
3972     return av_toupper(x & 0xFF) +
3973           (av_toupper((x >>  8) & 0xFF) << 8)  +
3974           (av_toupper((x >> 16) & 0xFF) << 16) +
3975 ((unsigned)av_toupper((x >> 24) & 0xFF) << 24);
3976 }
3977
3978 int ff_thread_ref_frame(ThreadFrame *dst, ThreadFrame *src)
3979 {
3980     int ret;
3981
3982     dst->owner = src->owner;
3983
3984     ret = av_frame_ref(dst->f, src->f);
3985     if (ret < 0)
3986         return ret;
3987
3988     av_assert0(!dst->progress);
3989
3990     if (src->progress &&
3991         !(dst->progress = av_buffer_ref(src->progress))) {
3992         ff_thread_release_buffer(dst->owner, dst);
3993         return AVERROR(ENOMEM);
3994     }
3995
3996     return 0;
3997 }
3998
3999 #if !HAVE_THREADS
4000
4001 enum AVPixelFormat ff_thread_get_format(AVCodecContext *avctx, const enum AVPixelFormat *fmt)
4002 {
4003     return ff_get_format(avctx, fmt);
4004 }
4005
4006 int ff_thread_get_buffer(AVCodecContext *avctx, ThreadFrame *f, int flags)
4007 {
4008     f->owner = avctx;
4009     return ff_get_buffer(avctx, f->f, flags);
4010 }
4011
4012 void ff_thread_release_buffer(AVCodecContext *avctx, ThreadFrame *f)
4013 {
4014     if (f->f)
4015         av_frame_unref(f->f);
4016 }
4017
4018 void ff_thread_finish_setup(AVCodecContext *avctx)
4019 {
4020 }
4021
4022 void ff_thread_report_progress(ThreadFrame *f, int progress, int field)
4023 {
4024 }
4025
4026 void ff_thread_await_progress(ThreadFrame *f, int progress, int field)
4027 {
4028 }
4029
4030 int ff_thread_can_start_frame(AVCodecContext *avctx)
4031 {
4032     return 1;
4033 }
4034
4035 int ff_alloc_entries(AVCodecContext *avctx, int count)
4036 {
4037     return 0;
4038 }
4039
4040 void ff_reset_entries(AVCodecContext *avctx)
4041 {
4042 }
4043
4044 void ff_thread_await_progress2(AVCodecContext *avctx, int field, int thread, int shift)
4045 {
4046 }
4047
4048 void ff_thread_report_progress2(AVCodecContext *avctx, int field, int thread, int n)
4049 {
4050 }
4051
4052 #endif
4053
4054 int avcodec_is_open(AVCodecContext *s)
4055 {
4056     return !!s->internal;
4057 }
4058
4059 int avpriv_bprint_to_extradata(AVCodecContext *avctx, struct AVBPrint *buf)
4060 {
4061     int ret;
4062     char *str;
4063
4064     ret = av_bprint_finalize(buf, &str);
4065     if (ret < 0)
4066         return ret;
4067     if (!av_bprint_is_complete(buf)) {
4068         av_free(str);
4069         return AVERROR(ENOMEM);
4070     }
4071
4072     avctx->extradata = str;
4073     /* Note: the string is NUL terminated (so extradata can be read as a
4074      * string), but the ending character is not accounted in the size (in
4075      * binary formats you are likely not supposed to mux that character). When
4076      * extradata is copied, it is also padded with AV_INPUT_BUFFER_PADDING_SIZE
4077      * zeros. */
4078     avctx->extradata_size = buf->len;
4079     return 0;
4080 }
4081
4082 const uint8_t *avpriv_find_start_code(const uint8_t *av_restrict p,
4083                                       const uint8_t *end,
4084                                       uint32_t *av_restrict state)
4085 {
4086     int i;
4087
4088     av_assert0(p <= end);
4089     if (p >= end)
4090         return end;
4091
4092     for (i = 0; i < 3; i++) {
4093         uint32_t tmp = *state << 8;
4094         *state = tmp + *(p++);
4095         if (tmp == 0x100 || p == end)
4096             return p;
4097     }
4098
4099     while (p < end) {
4100         if      (p[-1] > 1      ) p += 3;
4101         else if (p[-2]          ) p += 2;
4102         else if (p[-3]|(p[-1]-1)) p++;
4103         else {
4104             p++;
4105             break;
4106         }
4107     }
4108
4109     p = FFMIN(p, end) - 4;
4110     *state = AV_RB32(p);
4111
4112     return p + 4;
4113 }
4114
4115 AVCPBProperties *av_cpb_properties_alloc(size_t *size)
4116 {
4117     AVCPBProperties *props = av_mallocz(sizeof(AVCPBProperties));
4118     if (!props)
4119         return NULL;
4120
4121     if (size)
4122         *size = sizeof(*props);
4123
4124     props->vbv_delay = UINT64_MAX;
4125
4126     return props;
4127 }
4128
4129 AVCPBProperties *ff_add_cpb_side_data(AVCodecContext *avctx)
4130 {
4131     AVPacketSideData *tmp;
4132     AVCPBProperties  *props;
4133     size_t size;
4134
4135     props = av_cpb_properties_alloc(&size);
4136     if (!props)
4137         return NULL;
4138
4139     tmp = av_realloc_array(avctx->coded_side_data, avctx->nb_coded_side_data + 1, sizeof(*tmp));
4140     if (!tmp) {
4141         av_freep(&props);
4142         return NULL;
4143     }
4144
4145     avctx->coded_side_data = tmp;
4146     avctx->nb_coded_side_data++;
4147
4148     avctx->coded_side_data[avctx->nb_coded_side_data - 1].type = AV_PKT_DATA_CPB_PROPERTIES;
4149     avctx->coded_side_data[avctx->nb_coded_side_data - 1].data = (uint8_t*)props;
4150     avctx->coded_side_data[avctx->nb_coded_side_data - 1].size = size;
4151
4152     return props;
4153 }
4154
4155 static void codec_parameters_reset(AVCodecParameters *par)
4156 {
4157     av_freep(&par->extradata);
4158
4159     memset(par, 0, sizeof(*par));
4160
4161     par->codec_type          = AVMEDIA_TYPE_UNKNOWN;
4162     par->codec_id            = AV_CODEC_ID_NONE;
4163     par->format              = -1;
4164     par->field_order         = AV_FIELD_UNKNOWN;
4165     par->color_range         = AVCOL_RANGE_UNSPECIFIED;
4166     par->color_primaries     = AVCOL_PRI_UNSPECIFIED;
4167     par->color_trc           = AVCOL_TRC_UNSPECIFIED;
4168     par->color_space         = AVCOL_SPC_UNSPECIFIED;
4169     par->chroma_location     = AVCHROMA_LOC_UNSPECIFIED;
4170     par->sample_aspect_ratio = (AVRational){ 0, 1 };
4171     par->profile             = FF_PROFILE_UNKNOWN;
4172     par->level               = FF_LEVEL_UNKNOWN;
4173 }
4174
4175 AVCodecParameters *avcodec_parameters_alloc(void)
4176 {
4177     AVCodecParameters *par = av_mallocz(sizeof(*par));
4178
4179     if (!par)
4180         return NULL;
4181     codec_parameters_reset(par);
4182     return par;
4183 }
4184
4185 void avcodec_parameters_free(AVCodecParameters **ppar)
4186 {
4187     AVCodecParameters *par = *ppar;
4188
4189     if (!par)
4190         return;
4191     codec_parameters_reset(par);
4192
4193     av_freep(ppar);
4194 }
4195
4196 int avcodec_parameters_copy(AVCodecParameters *dst, const AVCodecParameters *src)
4197 {
4198     codec_parameters_reset(dst);
4199     memcpy(dst, src, sizeof(*dst));
4200
4201     dst->extradata      = NULL;
4202     dst->extradata_size = 0;
4203     if (src->extradata) {
4204         dst->extradata = av_mallocz(src->extradata_size + AV_INPUT_BUFFER_PADDING_SIZE);
4205         if (!dst->extradata)
4206             return AVERROR(ENOMEM);
4207         memcpy(dst->extradata, src->extradata, src->extradata_size);
4208         dst->extradata_size = src->extradata_size;
4209     }
4210
4211     return 0;
4212 }
4213
4214 int avcodec_parameters_from_context(AVCodecParameters *par,
4215                                     const AVCodecContext *codec)
4216 {
4217     codec_parameters_reset(par);
4218
4219     par->codec_type = codec->codec_type;
4220     par->codec_id   = codec->codec_id;
4221     par->codec_tag  = codec->codec_tag;
4222
4223     par->bit_rate              = codec->bit_rate;
4224     par->bits_per_coded_sample = codec->bits_per_coded_sample;
4225     par->bits_per_raw_sample   = codec->bits_per_raw_sample;
4226     par->profile               = codec->profile;
4227     par->level                 = codec->level;
4228
4229     switch (par->codec_type) {
4230     case AVMEDIA_TYPE_VIDEO:
4231         par->format              = codec->pix_fmt;
4232         par->width               = codec->width;
4233         par->height              = codec->height;
4234         par->field_order         = codec->field_order;
4235         par->color_range         = codec->color_range;
4236         par->color_primaries     = codec->color_primaries;
4237         par->color_trc           = codec->color_trc;
4238         par->color_space         = codec->colorspace;
4239         par->chroma_location     = codec->chroma_sample_location;
4240         par->sample_aspect_ratio = codec->sample_aspect_ratio;
4241         par->video_delay         = codec->has_b_frames;
4242         break;
4243     case AVMEDIA_TYPE_AUDIO:
4244         par->format           = codec->sample_fmt;
4245         par->channel_layout   = codec->channel_layout;
4246         par->channels         = codec->channels;
4247         par->sample_rate      = codec->sample_rate;
4248         par->block_align      = codec->block_align;
4249         par->frame_size       = codec->frame_size;
4250         par->initial_padding  = codec->initial_padding;
4251         par->trailing_padding = codec->trailing_padding;
4252         par->seek_preroll     = codec->seek_preroll;
4253         break;
4254     case AVMEDIA_TYPE_SUBTITLE:
4255         par->width  = codec->width;
4256         par->height = codec->height;
4257         break;
4258     }
4259
4260     if (codec->extradata) {
4261         par->extradata = av_mallocz(codec->extradata_size + AV_INPUT_BUFFER_PADDING_SIZE);
4262         if (!par->extradata)
4263             return AVERROR(ENOMEM);
4264         memcpy(par->extradata, codec->extradata, codec->extradata_size);
4265         par->extradata_size = codec->extradata_size;
4266     }
4267
4268     return 0;
4269 }
4270
4271 int avcodec_parameters_to_context(AVCodecContext *codec,
4272                                   const AVCodecParameters *par)
4273 {
4274     codec->codec_type = par->codec_type;
4275     codec->codec_id   = par->codec_id;
4276     codec->codec_tag  = par->codec_tag;
4277
4278     codec->bit_rate              = par->bit_rate;
4279     codec->bits_per_coded_sample = par->bits_per_coded_sample;
4280     codec->bits_per_raw_sample   = par->bits_per_raw_sample;
4281     codec->profile               = par->profile;
4282     codec->level                 = par->level;
4283
4284     switch (par->codec_type) {
4285     case AVMEDIA_TYPE_VIDEO:
4286         codec->pix_fmt                = par->format;
4287         codec->width                  = par->width;
4288         codec->height                 = par->height;
4289         codec->field_order            = par->field_order;
4290         codec->color_range            = par->color_range;
4291         codec->color_primaries        = par->color_primaries;
4292         codec->color_trc              = par->color_trc;
4293         codec->colorspace             = par->color_space;
4294         codec->chroma_sample_location = par->chroma_location;
4295         codec->sample_aspect_ratio    = par->sample_aspect_ratio;
4296         codec->has_b_frames           = par->video_delay;
4297         break;
4298     case AVMEDIA_TYPE_AUDIO:
4299         codec->sample_fmt       = par->format;
4300         codec->channel_layout   = par->channel_layout;
4301         codec->channels         = par->channels;
4302         codec->sample_rate      = par->sample_rate;
4303         codec->block_align      = par->block_align;
4304         codec->frame_size       = par->frame_size;
4305         codec->delay            =
4306         codec->initial_padding  = par->initial_padding;
4307         codec->trailing_padding = par->trailing_padding;
4308         codec->seek_preroll     = par->seek_preroll;
4309         break;
4310     case AVMEDIA_TYPE_SUBTITLE:
4311         codec->width  = par->width;
4312         codec->height = par->height;
4313         break;
4314     }
4315
4316     if (par->extradata) {
4317         av_freep(&codec->extradata);
4318         codec->extradata = av_mallocz(par->extradata_size + AV_INPUT_BUFFER_PADDING_SIZE);
4319         if (!codec->extradata)
4320             return AVERROR(ENOMEM);
4321         memcpy(codec->extradata, par->extradata, par->extradata_size);
4322         codec->extradata_size = par->extradata_size;
4323     }
4324
4325     return 0;
4326 }
4327
4328 int ff_alloc_a53_sei(const AVFrame *frame, size_t prefix_len,
4329                      void **data, size_t *sei_size)
4330 {
4331     AVFrameSideData *side_data = NULL;
4332     uint8_t *sei_data;
4333
4334     if (frame)
4335         side_data = av_frame_get_side_data(frame, AV_FRAME_DATA_A53_CC);
4336
4337     if (!side_data) {
4338         *data = NULL;
4339         return 0;
4340     }
4341
4342     *sei_size = side_data->size + 11;
4343     *data = av_mallocz(*sei_size + prefix_len);
4344     if (!*data)
4345         return AVERROR(ENOMEM);
4346     sei_data = (uint8_t*)*data + prefix_len;
4347
4348     // country code
4349     sei_data[0] = 181;
4350     sei_data[1] = 0;
4351     sei_data[2] = 49;
4352
4353     /**
4354      * 'GA94' is standard in North America for ATSC, but hard coding
4355      * this style may not be the right thing to do -- other formats
4356      * do exist. This information is not available in the side_data
4357      * so we are going with this right now.
4358      */
4359     AV_WL32(sei_data + 3, MKTAG('G', 'A', '9', '4'));
4360     sei_data[7] = 3;
4361     sei_data[8] = ((side_data->size/3) & 0x1f) | 0x40;
4362     sei_data[9] = 0;
4363
4364     memcpy(sei_data + 10, side_data->data, side_data->size);
4365
4366     sei_data[side_data->size+10] = 255;
4367
4368     return 0;
4369 }
4370
4371 int64_t ff_guess_coded_bitrate(AVCodecContext *avctx)
4372 {
4373     AVRational framerate = avctx->framerate;
4374     int bits_per_coded_sample = avctx->bits_per_coded_sample;
4375     int64_t bitrate;
4376
4377     if (!(framerate.num && framerate.den))
4378         framerate = av_inv_q(avctx->time_base);
4379     if (!(framerate.num && framerate.den))
4380         return 0;
4381
4382     if (!bits_per_coded_sample) {
4383         const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(avctx->pix_fmt);
4384         bits_per_coded_sample = av_get_bits_per_pixel(desc);
4385     }
4386     bitrate = (int64_t)bits_per_coded_sample * avctx->width * avctx->height *
4387               framerate.num / framerate.den;
4388
4389     return bitrate;
4390 }