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