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