]> git.sesse.net Git - ffmpeg/blob - libavcodec/utils.c
Merge commit '9f0b6e6827e21e3477abe1199dc2728e30b8c061'
[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
1172     if (avcodec_is_open(avctx))
1173         return 0;
1174
1175     if ((!codec && !avctx->codec)) {
1176         av_log(avctx, AV_LOG_ERROR, "No codec provided to avcodec_open2()\n");
1177         return AVERROR(EINVAL);
1178     }
1179     if ((codec && avctx->codec && codec != avctx->codec)) {
1180         av_log(avctx, AV_LOG_ERROR, "This AVCodecContext was allocated for %s, "
1181                                     "but %s passed to avcodec_open2()\n", avctx->codec->name, codec->name);
1182         return AVERROR(EINVAL);
1183     }
1184     if (!codec)
1185         codec = avctx->codec;
1186
1187     if (avctx->extradata_size < 0 || avctx->extradata_size >= FF_MAX_EXTRADATA_SIZE)
1188         return AVERROR(EINVAL);
1189
1190     if (options)
1191         av_dict_copy(&tmp, *options, 0);
1192
1193     ret = ff_lock_avcodec(avctx, codec);
1194     if (ret < 0)
1195         return ret;
1196
1197     avctx->internal = av_mallocz(sizeof(AVCodecInternal));
1198     if (!avctx->internal) {
1199         ret = AVERROR(ENOMEM);
1200         goto end;
1201     }
1202
1203     avctx->internal->pool = av_mallocz(sizeof(*avctx->internal->pool));
1204     if (!avctx->internal->pool) {
1205         ret = AVERROR(ENOMEM);
1206         goto free_and_end;
1207     }
1208
1209     avctx->internal->to_free = av_frame_alloc();
1210     if (!avctx->internal->to_free) {
1211         ret = AVERROR(ENOMEM);
1212         goto free_and_end;
1213     }
1214
1215     if (codec->priv_data_size > 0) {
1216         if (!avctx->priv_data) {
1217             avctx->priv_data = av_mallocz(codec->priv_data_size);
1218             if (!avctx->priv_data) {
1219                 ret = AVERROR(ENOMEM);
1220                 goto end;
1221             }
1222             if (codec->priv_class) {
1223                 *(const AVClass **)avctx->priv_data = codec->priv_class;
1224                 av_opt_set_defaults(avctx->priv_data);
1225             }
1226         }
1227         if (codec->priv_class && (ret = av_opt_set_dict(avctx->priv_data, &tmp)) < 0)
1228             goto free_and_end;
1229     } else {
1230         avctx->priv_data = NULL;
1231     }
1232     if ((ret = av_opt_set_dict(avctx, &tmp)) < 0)
1233         goto free_and_end;
1234
1235     if (avctx->codec_whitelist && av_match_list(codec->name, avctx->codec_whitelist, ',') <= 0) {
1236         av_log(avctx, AV_LOG_ERROR, "Codec (%s) not on whitelist\n", codec->name);
1237         ret = AVERROR(EINVAL);
1238         goto free_and_end;
1239     }
1240
1241     // only call ff_set_dimensions() for non H.264/VP6F/DXV codecs so as not to overwrite previously setup dimensions
1242     if (!(avctx->coded_width && avctx->coded_height && avctx->width && avctx->height &&
1243           (avctx->codec_id == AV_CODEC_ID_H264 || avctx->codec_id == AV_CODEC_ID_VP6F || avctx->codec_id == AV_CODEC_ID_DXV))) {
1244     if (avctx->coded_width && avctx->coded_height)
1245         ret = ff_set_dimensions(avctx, avctx->coded_width, avctx->coded_height);
1246     else if (avctx->width && avctx->height)
1247         ret = ff_set_dimensions(avctx, avctx->width, avctx->height);
1248     if (ret < 0)
1249         goto free_and_end;
1250     }
1251
1252     if ((avctx->coded_width || avctx->coded_height || avctx->width || avctx->height)
1253         && (  av_image_check_size(avctx->coded_width, avctx->coded_height, 0, avctx) < 0
1254            || av_image_check_size(avctx->width,       avctx->height,       0, avctx) < 0)) {
1255         av_log(avctx, AV_LOG_WARNING, "Ignoring invalid width/height values\n");
1256         ff_set_dimensions(avctx, 0, 0);
1257     }
1258
1259     if (avctx->width > 0 && avctx->height > 0) {
1260         if (av_image_check_sar(avctx->width, avctx->height,
1261                                avctx->sample_aspect_ratio) < 0) {
1262             av_log(avctx, AV_LOG_WARNING, "ignoring invalid SAR: %u/%u\n",
1263                    avctx->sample_aspect_ratio.num,
1264                    avctx->sample_aspect_ratio.den);
1265             avctx->sample_aspect_ratio = (AVRational){ 0, 1 };
1266         }
1267     }
1268
1269     /* if the decoder init function was already called previously,
1270      * free the already allocated subtitle_header before overwriting it */
1271     if (av_codec_is_decoder(codec))
1272         av_freep(&avctx->subtitle_header);
1273
1274     if (avctx->channels > FF_SANE_NB_CHANNELS) {
1275         ret = AVERROR(EINVAL);
1276         goto free_and_end;
1277     }
1278
1279     avctx->codec = codec;
1280     if ((avctx->codec_type == AVMEDIA_TYPE_UNKNOWN || avctx->codec_type == codec->type) &&
1281         avctx->codec_id == AV_CODEC_ID_NONE) {
1282         avctx->codec_type = codec->type;
1283         avctx->codec_id   = codec->id;
1284     }
1285     if (avctx->codec_id != codec->id || (avctx->codec_type != codec->type
1286                                          && avctx->codec_type != AVMEDIA_TYPE_ATTACHMENT)) {
1287         av_log(avctx, AV_LOG_ERROR, "Codec type or id mismatches\n");
1288         ret = AVERROR(EINVAL);
1289         goto free_and_end;
1290     }
1291     avctx->frame_number = 0;
1292     avctx->codec_descriptor = avcodec_descriptor_get(avctx->codec_id);
1293
1294     if ((avctx->codec->capabilities & AV_CODEC_CAP_EXPERIMENTAL) &&
1295         avctx->strict_std_compliance > FF_COMPLIANCE_EXPERIMENTAL) {
1296         const char *codec_string = av_codec_is_encoder(codec) ? "encoder" : "decoder";
1297         AVCodec *codec2;
1298         av_log(avctx, AV_LOG_ERROR,
1299                "The %s '%s' is experimental but experimental codecs are not enabled, "
1300                "add '-strict %d' if you want to use it.\n",
1301                codec_string, codec->name, FF_COMPLIANCE_EXPERIMENTAL);
1302         codec2 = av_codec_is_encoder(codec) ? avcodec_find_encoder(codec->id) : avcodec_find_decoder(codec->id);
1303         if (!(codec2->capabilities & AV_CODEC_CAP_EXPERIMENTAL))
1304             av_log(avctx, AV_LOG_ERROR, "Alternatively use the non experimental %s '%s'.\n",
1305                 codec_string, codec2->name);
1306         ret = AVERROR_EXPERIMENTAL;
1307         goto free_and_end;
1308     }
1309
1310     if (avctx->codec_type == AVMEDIA_TYPE_AUDIO &&
1311         (!avctx->time_base.num || !avctx->time_base.den)) {
1312         avctx->time_base.num = 1;
1313         avctx->time_base.den = avctx->sample_rate;
1314     }
1315
1316     if (!HAVE_THREADS)
1317         av_log(avctx, AV_LOG_WARNING, "Warning: not compiled with thread support, using thread emulation\n");
1318
1319     if (CONFIG_FRAME_THREAD_ENCODER) {
1320         ff_unlock_avcodec(codec); //we will instanciate a few encoders thus kick the counter to prevent false detection of a problem
1321         ret = ff_frame_thread_encoder_init(avctx, options ? *options : NULL);
1322         ff_lock_avcodec(avctx, codec);
1323         if (ret < 0)
1324             goto free_and_end;
1325     }
1326
1327     if (HAVE_THREADS
1328         && !(avctx->internal->frame_thread_encoder && (avctx->active_thread_type&FF_THREAD_FRAME))) {
1329         ret = ff_thread_init(avctx);
1330         if (ret < 0) {
1331             goto free_and_end;
1332         }
1333     }
1334     if (!HAVE_THREADS && !(codec->capabilities & AV_CODEC_CAP_AUTO_THREADS))
1335         avctx->thread_count = 1;
1336
1337     if (avctx->codec->max_lowres < avctx->lowres || avctx->lowres < 0) {
1338         av_log(avctx, AV_LOG_ERROR, "The maximum value for lowres supported by the decoder is %d\n",
1339                avctx->codec->max_lowres);
1340         ret = AVERROR(EINVAL);
1341         goto free_and_end;
1342     }
1343
1344 #if FF_API_VISMV
1345     if (avctx->debug_mv)
1346         av_log(avctx, AV_LOG_WARNING, "The 'vismv' option is deprecated, "
1347                "see the codecview filter instead.\n");
1348 #endif
1349
1350     if (av_codec_is_encoder(avctx->codec)) {
1351         int i;
1352 #if FF_API_CODED_FRAME
1353 FF_DISABLE_DEPRECATION_WARNINGS
1354         avctx->coded_frame = av_frame_alloc();
1355         if (!avctx->coded_frame) {
1356             ret = AVERROR(ENOMEM);
1357             goto free_and_end;
1358         }
1359 FF_ENABLE_DEPRECATION_WARNINGS
1360 #endif
1361         if (avctx->codec->sample_fmts) {
1362             for (i = 0; avctx->codec->sample_fmts[i] != AV_SAMPLE_FMT_NONE; i++) {
1363                 if (avctx->sample_fmt == avctx->codec->sample_fmts[i])
1364                     break;
1365                 if (avctx->channels == 1 &&
1366                     av_get_planar_sample_fmt(avctx->sample_fmt) ==
1367                     av_get_planar_sample_fmt(avctx->codec->sample_fmts[i])) {
1368                     avctx->sample_fmt = avctx->codec->sample_fmts[i];
1369                     break;
1370                 }
1371             }
1372             if (avctx->codec->sample_fmts[i] == AV_SAMPLE_FMT_NONE) {
1373                 char buf[128];
1374                 snprintf(buf, sizeof(buf), "%d", avctx->sample_fmt);
1375                 av_log(avctx, AV_LOG_ERROR, "Specified sample format %s is invalid or not supported\n",
1376                        (char *)av_x_if_null(av_get_sample_fmt_name(avctx->sample_fmt), buf));
1377                 ret = AVERROR(EINVAL);
1378                 goto free_and_end;
1379             }
1380         }
1381         if (avctx->codec->pix_fmts) {
1382             for (i = 0; avctx->codec->pix_fmts[i] != AV_PIX_FMT_NONE; i++)
1383                 if (avctx->pix_fmt == avctx->codec->pix_fmts[i])
1384                     break;
1385             if (avctx->codec->pix_fmts[i] == AV_PIX_FMT_NONE
1386                 && !((avctx->codec_id == AV_CODEC_ID_MJPEG || avctx->codec_id == AV_CODEC_ID_LJPEG)
1387                      && avctx->strict_std_compliance <= FF_COMPLIANCE_UNOFFICIAL)) {
1388                 char buf[128];
1389                 snprintf(buf, sizeof(buf), "%d", avctx->pix_fmt);
1390                 av_log(avctx, AV_LOG_ERROR, "Specified pixel format %s is invalid or not supported\n",
1391                        (char *)av_x_if_null(av_get_pix_fmt_name(avctx->pix_fmt), buf));
1392                 ret = AVERROR(EINVAL);
1393                 goto free_and_end;
1394             }
1395             if (avctx->codec->pix_fmts[i] == AV_PIX_FMT_YUVJ420P ||
1396                 avctx->codec->pix_fmts[i] == AV_PIX_FMT_YUVJ411P ||
1397                 avctx->codec->pix_fmts[i] == AV_PIX_FMT_YUVJ422P ||
1398                 avctx->codec->pix_fmts[i] == AV_PIX_FMT_YUVJ440P ||
1399                 avctx->codec->pix_fmts[i] == AV_PIX_FMT_YUVJ444P)
1400                 avctx->color_range = AVCOL_RANGE_JPEG;
1401         }
1402         if (avctx->codec->supported_samplerates) {
1403             for (i = 0; avctx->codec->supported_samplerates[i] != 0; i++)
1404                 if (avctx->sample_rate == avctx->codec->supported_samplerates[i])
1405                     break;
1406             if (avctx->codec->supported_samplerates[i] == 0) {
1407                 av_log(avctx, AV_LOG_ERROR, "Specified sample rate %d is not supported\n",
1408                        avctx->sample_rate);
1409                 ret = AVERROR(EINVAL);
1410                 goto free_and_end;
1411             }
1412         }
1413         if (avctx->sample_rate < 0) {
1414             av_log(avctx, AV_LOG_ERROR, "Specified sample rate %d is not supported\n",
1415                     avctx->sample_rate);
1416             ret = AVERROR(EINVAL);
1417             goto free_and_end;
1418         }
1419         if (avctx->codec->channel_layouts) {
1420             if (!avctx->channel_layout) {
1421                 av_log(avctx, AV_LOG_WARNING, "Channel layout not specified\n");
1422             } else {
1423                 for (i = 0; avctx->codec->channel_layouts[i] != 0; i++)
1424                     if (avctx->channel_layout == avctx->codec->channel_layouts[i])
1425                         break;
1426                 if (avctx->codec->channel_layouts[i] == 0) {
1427                     char buf[512];
1428                     av_get_channel_layout_string(buf, sizeof(buf), -1, avctx->channel_layout);
1429                     av_log(avctx, AV_LOG_ERROR, "Specified channel layout '%s' is not supported\n", buf);
1430                     ret = AVERROR(EINVAL);
1431                     goto free_and_end;
1432                 }
1433             }
1434         }
1435         if (avctx->channel_layout && avctx->channels) {
1436             int channels = av_get_channel_layout_nb_channels(avctx->channel_layout);
1437             if (channels != avctx->channels) {
1438                 char buf[512];
1439                 av_get_channel_layout_string(buf, sizeof(buf), -1, avctx->channel_layout);
1440                 av_log(avctx, AV_LOG_ERROR,
1441                        "Channel layout '%s' with %d channels does not match number of specified channels %d\n",
1442                        buf, channels, avctx->channels);
1443                 ret = AVERROR(EINVAL);
1444                 goto free_and_end;
1445             }
1446         } else if (avctx->channel_layout) {
1447             avctx->channels = av_get_channel_layout_nb_channels(avctx->channel_layout);
1448         }
1449         if (avctx->channels < 0) {
1450             av_log(avctx, AV_LOG_ERROR, "Specified number of channels %d is not supported\n",
1451                     avctx->channels);
1452             ret = AVERROR(EINVAL);
1453             goto free_and_end;
1454         }
1455         if(avctx->codec_type == AVMEDIA_TYPE_VIDEO) {
1456             if (avctx->width <= 0 || avctx->height <= 0) {
1457                 av_log(avctx, AV_LOG_ERROR, "dimensions not set\n");
1458                 ret = AVERROR(EINVAL);
1459                 goto free_and_end;
1460             }
1461         }
1462         if (   (avctx->codec_type == AVMEDIA_TYPE_VIDEO || avctx->codec_type == AVMEDIA_TYPE_AUDIO)
1463             && avctx->bit_rate>0 && avctx->bit_rate<1000) {
1464             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);
1465         }
1466
1467         if (!avctx->rc_initial_buffer_occupancy)
1468             avctx->rc_initial_buffer_occupancy = avctx->rc_buffer_size * 3 / 4;
1469     }
1470
1471     avctx->pts_correction_num_faulty_pts =
1472     avctx->pts_correction_num_faulty_dts = 0;
1473     avctx->pts_correction_last_pts =
1474     avctx->pts_correction_last_dts = INT64_MIN;
1475
1476     if (   !CONFIG_GRAY && avctx->flags & AV_CODEC_FLAG_GRAY
1477         && avctx->codec_descriptor->type == AVMEDIA_TYPE_VIDEO)
1478         av_log(avctx, AV_LOG_WARNING,
1479                "gray decoding requested but not enabled at configuration time\n");
1480
1481     if (   avctx->codec->init && (!(avctx->active_thread_type&FF_THREAD_FRAME)
1482         || avctx->internal->frame_thread_encoder)) {
1483         ret = avctx->codec->init(avctx);
1484         if (ret < 0) {
1485             goto free_and_end;
1486         }
1487     }
1488
1489     ret=0;
1490
1491 #if FF_API_AUDIOENC_DELAY
1492     if (av_codec_is_encoder(avctx->codec))
1493         avctx->delay = avctx->initial_padding;
1494 #endif
1495
1496     if (av_codec_is_decoder(avctx->codec)) {
1497         if (!avctx->bit_rate)
1498             avctx->bit_rate = get_bit_rate(avctx);
1499         /* validate channel layout from the decoder */
1500         if (avctx->channel_layout) {
1501             int channels = av_get_channel_layout_nb_channels(avctx->channel_layout);
1502             if (!avctx->channels)
1503                 avctx->channels = channels;
1504             else if (channels != avctx->channels) {
1505                 char buf[512];
1506                 av_get_channel_layout_string(buf, sizeof(buf), -1, avctx->channel_layout);
1507                 av_log(avctx, AV_LOG_WARNING,
1508                        "Channel layout '%s' with %d channels does not match specified number of channels %d: "
1509                        "ignoring specified channel layout\n",
1510                        buf, channels, avctx->channels);
1511                 avctx->channel_layout = 0;
1512             }
1513         }
1514         if (avctx->channels && avctx->channels < 0 ||
1515             avctx->channels > FF_SANE_NB_CHANNELS) {
1516             ret = AVERROR(EINVAL);
1517             goto free_and_end;
1518         }
1519         if (avctx->sub_charenc) {
1520             if (avctx->codec_type != AVMEDIA_TYPE_SUBTITLE) {
1521                 av_log(avctx, AV_LOG_ERROR, "Character encoding is only "
1522                        "supported with subtitles codecs\n");
1523                 ret = AVERROR(EINVAL);
1524                 goto free_and_end;
1525             } else if (avctx->codec_descriptor->props & AV_CODEC_PROP_BITMAP_SUB) {
1526                 av_log(avctx, AV_LOG_WARNING, "Codec '%s' is bitmap-based, "
1527                        "subtitles character encoding will be ignored\n",
1528                        avctx->codec_descriptor->name);
1529                 avctx->sub_charenc_mode = FF_SUB_CHARENC_MODE_DO_NOTHING;
1530             } else {
1531                 /* input character encoding is set for a text based subtitle
1532                  * codec at this point */
1533                 if (avctx->sub_charenc_mode == FF_SUB_CHARENC_MODE_AUTOMATIC)
1534                     avctx->sub_charenc_mode = FF_SUB_CHARENC_MODE_PRE_DECODER;
1535
1536                 if (avctx->sub_charenc_mode == FF_SUB_CHARENC_MODE_PRE_DECODER) {
1537 #if CONFIG_ICONV
1538                     iconv_t cd = iconv_open("UTF-8", avctx->sub_charenc);
1539                     if (cd == (iconv_t)-1) {
1540                         ret = AVERROR(errno);
1541                         av_log(avctx, AV_LOG_ERROR, "Unable to open iconv context "
1542                                "with input character encoding \"%s\"\n", avctx->sub_charenc);
1543                         goto free_and_end;
1544                     }
1545                     iconv_close(cd);
1546 #else
1547                     av_log(avctx, AV_LOG_ERROR, "Character encoding subtitles "
1548                            "conversion needs a libavcodec built with iconv support "
1549                            "for this codec\n");
1550                     ret = AVERROR(ENOSYS);
1551                     goto free_and_end;
1552 #endif
1553                 }
1554             }
1555         }
1556
1557 #if FF_API_AVCTX_TIMEBASE
1558         if (avctx->framerate.num > 0 && avctx->framerate.den > 0)
1559             avctx->time_base = av_inv_q(av_mul_q(avctx->framerate, (AVRational){avctx->ticks_per_frame, 1}));
1560 #endif
1561     }
1562     if (codec->priv_data_size > 0 && avctx->priv_data && codec->priv_class) {
1563         av_assert0(*(const AVClass **)avctx->priv_data == codec->priv_class);
1564     }
1565
1566 end:
1567     ff_unlock_avcodec(codec);
1568     if (options) {
1569         av_dict_free(options);
1570         *options = tmp;
1571     }
1572
1573     return ret;
1574 free_and_end:
1575     if (avctx->codec &&
1576         (avctx->codec->caps_internal & FF_CODEC_CAP_INIT_CLEANUP))
1577         avctx->codec->close(avctx);
1578
1579     if (codec->priv_class && codec->priv_data_size)
1580         av_opt_free(avctx->priv_data);
1581     av_opt_free(avctx);
1582
1583 #if FF_API_CODED_FRAME
1584 FF_DISABLE_DEPRECATION_WARNINGS
1585     av_frame_free(&avctx->coded_frame);
1586 FF_ENABLE_DEPRECATION_WARNINGS
1587 #endif
1588
1589     av_dict_free(&tmp);
1590     av_freep(&avctx->priv_data);
1591     if (avctx->internal) {
1592         av_frame_free(&avctx->internal->to_free);
1593         av_freep(&avctx->internal->pool);
1594     }
1595     av_freep(&avctx->internal);
1596     avctx->codec = NULL;
1597     goto end;
1598 }
1599
1600 int ff_alloc_packet2(AVCodecContext *avctx, AVPacket *avpkt, int64_t size, int64_t min_size)
1601 {
1602     if (avpkt->size < 0) {
1603         av_log(avctx, AV_LOG_ERROR, "Invalid negative user packet size %d\n", avpkt->size);
1604         return AVERROR(EINVAL);
1605     }
1606     if (size < 0 || size > INT_MAX - AV_INPUT_BUFFER_PADDING_SIZE) {
1607         av_log(avctx, AV_LOG_ERROR, "Invalid minimum required packet size %"PRId64" (max allowed is %d)\n",
1608                size, INT_MAX - AV_INPUT_BUFFER_PADDING_SIZE);
1609         return AVERROR(EINVAL);
1610     }
1611
1612     if (avctx && 2*min_size < size) { // FIXME The factor needs to be finetuned
1613         av_assert0(!avpkt->data || avpkt->data != avctx->internal->byte_buffer);
1614         if (!avpkt->data || avpkt->size < size) {
1615             av_fast_padded_malloc(&avctx->internal->byte_buffer, &avctx->internal->byte_buffer_size, size);
1616             avpkt->data = avctx->internal->byte_buffer;
1617             avpkt->size = avctx->internal->byte_buffer_size;
1618         }
1619     }
1620
1621     if (avpkt->data) {
1622         AVBufferRef *buf = avpkt->buf;
1623
1624         if (avpkt->size < size) {
1625             av_log(avctx, AV_LOG_ERROR, "User packet is too small (%d < %"PRId64")\n", avpkt->size, size);
1626             return AVERROR(EINVAL);
1627         }
1628
1629         av_init_packet(avpkt);
1630         avpkt->buf      = buf;
1631         avpkt->size     = size;
1632         return 0;
1633     } else {
1634         int ret = av_new_packet(avpkt, size);
1635         if (ret < 0)
1636             av_log(avctx, AV_LOG_ERROR, "Failed to allocate packet of size %"PRId64"\n", size);
1637         return ret;
1638     }
1639 }
1640
1641 int ff_alloc_packet(AVPacket *avpkt, int size)
1642 {
1643     return ff_alloc_packet2(NULL, avpkt, size, 0);
1644 }
1645
1646 /**
1647  * Pad last frame with silence.
1648  */
1649 static int pad_last_frame(AVCodecContext *s, AVFrame **dst, const AVFrame *src)
1650 {
1651     AVFrame *frame = NULL;
1652     int ret;
1653
1654     if (!(frame = av_frame_alloc()))
1655         return AVERROR(ENOMEM);
1656
1657     frame->format         = src->format;
1658     frame->channel_layout = src->channel_layout;
1659     av_frame_set_channels(frame, av_frame_get_channels(src));
1660     frame->nb_samples     = s->frame_size;
1661     ret = av_frame_get_buffer(frame, 32);
1662     if (ret < 0)
1663         goto fail;
1664
1665     ret = av_frame_copy_props(frame, src);
1666     if (ret < 0)
1667         goto fail;
1668
1669     if ((ret = av_samples_copy(frame->extended_data, src->extended_data, 0, 0,
1670                                src->nb_samples, s->channels, s->sample_fmt)) < 0)
1671         goto fail;
1672     if ((ret = av_samples_set_silence(frame->extended_data, src->nb_samples,
1673                                       frame->nb_samples - src->nb_samples,
1674                                       s->channels, s->sample_fmt)) < 0)
1675         goto fail;
1676
1677     *dst = frame;
1678
1679     return 0;
1680
1681 fail:
1682     av_frame_free(&frame);
1683     return ret;
1684 }
1685
1686 int attribute_align_arg avcodec_encode_audio2(AVCodecContext *avctx,
1687                                               AVPacket *avpkt,
1688                                               const AVFrame *frame,
1689                                               int *got_packet_ptr)
1690 {
1691     AVFrame *extended_frame = NULL;
1692     AVFrame *padded_frame = NULL;
1693     int ret;
1694     AVPacket user_pkt = *avpkt;
1695     int needs_realloc = !user_pkt.data;
1696
1697     *got_packet_ptr = 0;
1698
1699     if (!(avctx->codec->capabilities & AV_CODEC_CAP_DELAY) && !frame) {
1700         av_packet_unref(avpkt);
1701         av_init_packet(avpkt);
1702         return 0;
1703     }
1704
1705     /* ensure that extended_data is properly set */
1706     if (frame && !frame->extended_data) {
1707         if (av_sample_fmt_is_planar(avctx->sample_fmt) &&
1708             avctx->channels > AV_NUM_DATA_POINTERS) {
1709             av_log(avctx, AV_LOG_ERROR, "Encoding to a planar sample format, "
1710                                         "with more than %d channels, but extended_data is not set.\n",
1711                    AV_NUM_DATA_POINTERS);
1712             return AVERROR(EINVAL);
1713         }
1714         av_log(avctx, AV_LOG_WARNING, "extended_data is not set.\n");
1715
1716         extended_frame = av_frame_alloc();
1717         if (!extended_frame)
1718             return AVERROR(ENOMEM);
1719
1720         memcpy(extended_frame, frame, sizeof(AVFrame));
1721         extended_frame->extended_data = extended_frame->data;
1722         frame = extended_frame;
1723     }
1724
1725     /* extract audio service type metadata */
1726     if (frame) {
1727         AVFrameSideData *sd = av_frame_get_side_data(frame, AV_FRAME_DATA_AUDIO_SERVICE_TYPE);
1728         if (sd && sd->size >= sizeof(enum AVAudioServiceType))
1729             avctx->audio_service_type = *(enum AVAudioServiceType*)sd->data;
1730     }
1731
1732     /* check for valid frame size */
1733     if (frame) {
1734         if (avctx->codec->capabilities & AV_CODEC_CAP_SMALL_LAST_FRAME) {
1735             if (frame->nb_samples > avctx->frame_size) {
1736                 av_log(avctx, AV_LOG_ERROR, "more samples than frame size (avcodec_encode_audio2)\n");
1737                 ret = AVERROR(EINVAL);
1738                 goto end;
1739             }
1740         } else if (!(avctx->codec->capabilities & AV_CODEC_CAP_VARIABLE_FRAME_SIZE)) {
1741             if (frame->nb_samples < avctx->frame_size &&
1742                 !avctx->internal->last_audio_frame) {
1743                 ret = pad_last_frame(avctx, &padded_frame, frame);
1744                 if (ret < 0)
1745                     goto end;
1746
1747                 frame = padded_frame;
1748                 avctx->internal->last_audio_frame = 1;
1749             }
1750
1751             if (frame->nb_samples != avctx->frame_size) {
1752                 av_log(avctx, AV_LOG_ERROR, "nb_samples (%d) != frame_size (%d) (avcodec_encode_audio2)\n", frame->nb_samples, avctx->frame_size);
1753                 ret = AVERROR(EINVAL);
1754                 goto end;
1755             }
1756         }
1757     }
1758
1759     av_assert0(avctx->codec->encode2);
1760
1761     ret = avctx->codec->encode2(avctx, avpkt, frame, got_packet_ptr);
1762     if (!ret) {
1763         if (*got_packet_ptr) {
1764             if (!(avctx->codec->capabilities & AV_CODEC_CAP_DELAY)) {
1765                 if (avpkt->pts == AV_NOPTS_VALUE)
1766                     avpkt->pts = frame->pts;
1767                 if (!avpkt->duration)
1768                     avpkt->duration = ff_samples_to_time_base(avctx,
1769                                                               frame->nb_samples);
1770             }
1771             avpkt->dts = avpkt->pts;
1772         } else {
1773             avpkt->size = 0;
1774         }
1775     }
1776     if (avpkt->data && avpkt->data == avctx->internal->byte_buffer) {
1777         needs_realloc = 0;
1778         if (user_pkt.data) {
1779             if (user_pkt.size >= avpkt->size) {
1780                 memcpy(user_pkt.data, avpkt->data, avpkt->size);
1781             } else {
1782                 av_log(avctx, AV_LOG_ERROR, "Provided packet is too small, needs to be %d\n", avpkt->size);
1783                 avpkt->size = user_pkt.size;
1784                 ret = -1;
1785             }
1786             avpkt->buf      = user_pkt.buf;
1787             avpkt->data     = user_pkt.data;
1788         } else {
1789             if (av_dup_packet(avpkt) < 0) {
1790                 ret = AVERROR(ENOMEM);
1791             }
1792         }
1793     }
1794
1795     if (!ret) {
1796         if (needs_realloc && avpkt->data) {
1797             ret = av_buffer_realloc(&avpkt->buf, avpkt->size + AV_INPUT_BUFFER_PADDING_SIZE);
1798             if (ret >= 0)
1799                 avpkt->data = avpkt->buf->data;
1800         }
1801
1802         avctx->frame_number++;
1803     }
1804
1805     if (ret < 0 || !*got_packet_ptr) {
1806         av_packet_unref(avpkt);
1807         av_init_packet(avpkt);
1808         goto end;
1809     }
1810
1811     /* NOTE: if we add any audio encoders which output non-keyframe packets,
1812      *       this needs to be moved to the encoders, but for now we can do it
1813      *       here to simplify things */
1814     avpkt->flags |= AV_PKT_FLAG_KEY;
1815
1816 end:
1817     av_frame_free(&padded_frame);
1818     av_free(extended_frame);
1819
1820 #if FF_API_AUDIOENC_DELAY
1821     avctx->delay = avctx->initial_padding;
1822 #endif
1823
1824     return ret;
1825 }
1826
1827 int attribute_align_arg avcodec_encode_video2(AVCodecContext *avctx,
1828                                               AVPacket *avpkt,
1829                                               const AVFrame *frame,
1830                                               int *got_packet_ptr)
1831 {
1832     int ret;
1833     AVPacket user_pkt = *avpkt;
1834     int needs_realloc = !user_pkt.data;
1835
1836     *got_packet_ptr = 0;
1837
1838     if(CONFIG_FRAME_THREAD_ENCODER &&
1839        avctx->internal->frame_thread_encoder && (avctx->active_thread_type&FF_THREAD_FRAME))
1840         return ff_thread_video_encode_frame(avctx, avpkt, frame, got_packet_ptr);
1841
1842     if ((avctx->flags&AV_CODEC_FLAG_PASS1) && avctx->stats_out)
1843         avctx->stats_out[0] = '\0';
1844
1845     if (!(avctx->codec->capabilities & AV_CODEC_CAP_DELAY) && !frame) {
1846         av_packet_unref(avpkt);
1847         av_init_packet(avpkt);
1848         avpkt->size = 0;
1849         return 0;
1850     }
1851
1852     if (av_image_check_size(avctx->width, avctx->height, 0, avctx))
1853         return AVERROR(EINVAL);
1854
1855     if (frame && frame->format == AV_PIX_FMT_NONE)
1856         av_log(avctx, AV_LOG_WARNING, "AVFrame.format is not set\n");
1857     if (frame && (frame->width == 0 || frame->height == 0))
1858         av_log(avctx, AV_LOG_WARNING, "AVFrame.width or height is not set\n");
1859
1860     av_assert0(avctx->codec->encode2);
1861
1862     ret = avctx->codec->encode2(avctx, avpkt, frame, got_packet_ptr);
1863     av_assert0(ret <= 0);
1864
1865     if (avpkt->data && avpkt->data == avctx->internal->byte_buffer) {
1866         needs_realloc = 0;
1867         if (user_pkt.data) {
1868             if (user_pkt.size >= avpkt->size) {
1869                 memcpy(user_pkt.data, avpkt->data, avpkt->size);
1870             } else {
1871                 av_log(avctx, AV_LOG_ERROR, "Provided packet is too small, needs to be %d\n", avpkt->size);
1872                 avpkt->size = user_pkt.size;
1873                 ret = -1;
1874             }
1875             avpkt->buf      = user_pkt.buf;
1876             avpkt->data     = user_pkt.data;
1877         } else {
1878             if (av_dup_packet(avpkt) < 0) {
1879                 ret = AVERROR(ENOMEM);
1880             }
1881         }
1882     }
1883
1884     if (!ret) {
1885         if (!*got_packet_ptr)
1886             avpkt->size = 0;
1887         else if (!(avctx->codec->capabilities & AV_CODEC_CAP_DELAY))
1888             avpkt->pts = avpkt->dts = frame->pts;
1889
1890         if (needs_realloc && avpkt->data) {
1891             ret = av_buffer_realloc(&avpkt->buf, avpkt->size + AV_INPUT_BUFFER_PADDING_SIZE);
1892             if (ret >= 0)
1893                 avpkt->data = avpkt->buf->data;
1894         }
1895
1896         avctx->frame_number++;
1897     }
1898
1899     if (ret < 0 || !*got_packet_ptr)
1900         av_packet_unref(avpkt);
1901
1902     emms_c();
1903     return ret;
1904 }
1905
1906 int avcodec_encode_subtitle(AVCodecContext *avctx, uint8_t *buf, int buf_size,
1907                             const AVSubtitle *sub)
1908 {
1909     int ret;
1910     if (sub->start_display_time) {
1911         av_log(avctx, AV_LOG_ERROR, "start_display_time must be 0.\n");
1912         return -1;
1913     }
1914
1915     ret = avctx->codec->encode_sub(avctx, buf, buf_size, sub);
1916     avctx->frame_number++;
1917     return ret;
1918 }
1919
1920 /**
1921  * Attempt to guess proper monotonic timestamps for decoded video frames
1922  * which might have incorrect times. Input timestamps may wrap around, in
1923  * which case the output will as well.
1924  *
1925  * @param pts the pts field of the decoded AVPacket, as passed through
1926  * AVFrame.pkt_pts
1927  * @param dts the dts field of the decoded AVPacket
1928  * @return one of the input values, may be AV_NOPTS_VALUE
1929  */
1930 static int64_t guess_correct_pts(AVCodecContext *ctx,
1931                                  int64_t reordered_pts, int64_t dts)
1932 {
1933     int64_t pts = AV_NOPTS_VALUE;
1934
1935     if (dts != AV_NOPTS_VALUE) {
1936         ctx->pts_correction_num_faulty_dts += dts <= ctx->pts_correction_last_dts;
1937         ctx->pts_correction_last_dts = dts;
1938     } else if (reordered_pts != AV_NOPTS_VALUE)
1939         ctx->pts_correction_last_dts = reordered_pts;
1940
1941     if (reordered_pts != AV_NOPTS_VALUE) {
1942         ctx->pts_correction_num_faulty_pts += reordered_pts <= ctx->pts_correction_last_pts;
1943         ctx->pts_correction_last_pts = reordered_pts;
1944     } else if(dts != AV_NOPTS_VALUE)
1945         ctx->pts_correction_last_pts = dts;
1946
1947     if ((ctx->pts_correction_num_faulty_pts<=ctx->pts_correction_num_faulty_dts || dts == AV_NOPTS_VALUE)
1948        && reordered_pts != AV_NOPTS_VALUE)
1949         pts = reordered_pts;
1950     else
1951         pts = dts;
1952
1953     return pts;
1954 }
1955
1956 static int apply_param_change(AVCodecContext *avctx, AVPacket *avpkt)
1957 {
1958     int size = 0, ret;
1959     const uint8_t *data;
1960     uint32_t flags;
1961     int64_t val;
1962
1963     data = av_packet_get_side_data(avpkt, AV_PKT_DATA_PARAM_CHANGE, &size);
1964     if (!data)
1965         return 0;
1966
1967     if (!(avctx->codec->capabilities & AV_CODEC_CAP_PARAM_CHANGE)) {
1968         av_log(avctx, AV_LOG_ERROR, "This decoder does not support parameter "
1969                "changes, but PARAM_CHANGE side data was sent to it.\n");
1970         return AVERROR(EINVAL);
1971     }
1972
1973     if (size < 4)
1974         goto fail;
1975
1976     flags = bytestream_get_le32(&data);
1977     size -= 4;
1978
1979     if (flags & AV_SIDE_DATA_PARAM_CHANGE_CHANNEL_COUNT) {
1980         if (size < 4)
1981             goto fail;
1982         val = bytestream_get_le32(&data);
1983         if (val <= 0 || val > INT_MAX) {
1984             av_log(avctx, AV_LOG_ERROR, "Invalid channel count");
1985             return AVERROR_INVALIDDATA;
1986         }
1987         avctx->channels = val;
1988         size -= 4;
1989     }
1990     if (flags & AV_SIDE_DATA_PARAM_CHANGE_CHANNEL_LAYOUT) {
1991         if (size < 8)
1992             goto fail;
1993         avctx->channel_layout = bytestream_get_le64(&data);
1994         size -= 8;
1995     }
1996     if (flags & AV_SIDE_DATA_PARAM_CHANGE_SAMPLE_RATE) {
1997         if (size < 4)
1998             goto fail;
1999         val = bytestream_get_le32(&data);
2000         if (val <= 0 || val > INT_MAX) {
2001             av_log(avctx, AV_LOG_ERROR, "Invalid sample rate");
2002             return AVERROR_INVALIDDATA;
2003         }
2004         avctx->sample_rate = val;
2005         size -= 4;
2006     }
2007     if (flags & AV_SIDE_DATA_PARAM_CHANGE_DIMENSIONS) {
2008         if (size < 8)
2009             goto fail;
2010         avctx->width  = bytestream_get_le32(&data);
2011         avctx->height = bytestream_get_le32(&data);
2012         size -= 8;
2013         ret = ff_set_dimensions(avctx, avctx->width, avctx->height);
2014         if (ret < 0)
2015             return ret;
2016     }
2017
2018     return 0;
2019 fail:
2020     av_log(avctx, AV_LOG_ERROR, "PARAM_CHANGE side data too small.\n");
2021     return AVERROR_INVALIDDATA;
2022 }
2023
2024 static int unrefcount_frame(AVCodecInternal *avci, AVFrame *frame)
2025 {
2026     int ret;
2027
2028     /* move the original frame to our backup */
2029     av_frame_unref(avci->to_free);
2030     av_frame_move_ref(avci->to_free, frame);
2031
2032     /* now copy everything except the AVBufferRefs back
2033      * note that we make a COPY of the side data, so calling av_frame_free() on
2034      * the caller's frame will work properly */
2035     ret = av_frame_copy_props(frame, avci->to_free);
2036     if (ret < 0)
2037         return ret;
2038
2039     memcpy(frame->data,     avci->to_free->data,     sizeof(frame->data));
2040     memcpy(frame->linesize, avci->to_free->linesize, sizeof(frame->linesize));
2041     if (avci->to_free->extended_data != avci->to_free->data) {
2042         int planes = av_frame_get_channels(avci->to_free);
2043         int size   = planes * sizeof(*frame->extended_data);
2044
2045         if (!size) {
2046             av_frame_unref(frame);
2047             return AVERROR_BUG;
2048         }
2049
2050         frame->extended_data = av_malloc(size);
2051         if (!frame->extended_data) {
2052             av_frame_unref(frame);
2053             return AVERROR(ENOMEM);
2054         }
2055         memcpy(frame->extended_data, avci->to_free->extended_data,
2056                size);
2057     } else
2058         frame->extended_data = frame->data;
2059
2060     frame->format         = avci->to_free->format;
2061     frame->width          = avci->to_free->width;
2062     frame->height         = avci->to_free->height;
2063     frame->channel_layout = avci->to_free->channel_layout;
2064     frame->nb_samples     = avci->to_free->nb_samples;
2065     av_frame_set_channels(frame, av_frame_get_channels(avci->to_free));
2066
2067     return 0;
2068 }
2069
2070 int attribute_align_arg avcodec_decode_video2(AVCodecContext *avctx, AVFrame *picture,
2071                                               int *got_picture_ptr,
2072                                               const AVPacket *avpkt)
2073 {
2074     AVCodecInternal *avci = avctx->internal;
2075     int ret;
2076     // copy to ensure we do not change avpkt
2077     AVPacket tmp = *avpkt;
2078
2079     if (!avctx->codec)
2080         return AVERROR(EINVAL);
2081     if (avctx->codec->type != AVMEDIA_TYPE_VIDEO) {
2082         av_log(avctx, AV_LOG_ERROR, "Invalid media type for video\n");
2083         return AVERROR(EINVAL);
2084     }
2085
2086     *got_picture_ptr = 0;
2087     if ((avctx->coded_width || avctx->coded_height) && av_image_check_size(avctx->coded_width, avctx->coded_height, 0, avctx))
2088         return AVERROR(EINVAL);
2089
2090     av_frame_unref(picture);
2091
2092     if ((avctx->codec->capabilities & AV_CODEC_CAP_DELAY) || avpkt->size ||
2093         (avctx->active_thread_type & FF_THREAD_FRAME)) {
2094         int did_split = av_packet_split_side_data(&tmp);
2095         ret = apply_param_change(avctx, &tmp);
2096         if (ret < 0) {
2097             av_log(avctx, AV_LOG_ERROR, "Error applying parameter changes.\n");
2098             if (avctx->err_recognition & AV_EF_EXPLODE)
2099                 goto fail;
2100         }
2101
2102         avctx->internal->pkt = &tmp;
2103         if (HAVE_THREADS && avctx->active_thread_type & FF_THREAD_FRAME)
2104             ret = ff_thread_decode_frame(avctx, picture, got_picture_ptr,
2105                                          &tmp);
2106         else {
2107             ret = avctx->codec->decode(avctx, picture, got_picture_ptr,
2108                                        &tmp);
2109             if (!(avctx->codec->caps_internal & FF_CODEC_CAP_SETS_PKT_DTS))
2110                 picture->pkt_dts = avpkt->dts;
2111
2112             if(!avctx->has_b_frames){
2113                 av_frame_set_pkt_pos(picture, avpkt->pos);
2114             }
2115             //FIXME these should be under if(!avctx->has_b_frames)
2116             /* get_buffer is supposed to set frame parameters */
2117             if (!(avctx->codec->capabilities & AV_CODEC_CAP_DR1)) {
2118                 if (!picture->sample_aspect_ratio.num)    picture->sample_aspect_ratio = avctx->sample_aspect_ratio;
2119                 if (!picture->width)                      picture->width               = avctx->width;
2120                 if (!picture->height)                     picture->height              = avctx->height;
2121                 if (picture->format == AV_PIX_FMT_NONE)   picture->format              = avctx->pix_fmt;
2122             }
2123         }
2124
2125 fail:
2126         emms_c(); //needed to avoid an emms_c() call before every return;
2127
2128         avctx->internal->pkt = NULL;
2129         if (did_split) {
2130             av_packet_free_side_data(&tmp);
2131             if(ret == tmp.size)
2132                 ret = avpkt->size;
2133         }
2134
2135         if (*got_picture_ptr) {
2136             if (!avctx->refcounted_frames) {
2137                 int err = unrefcount_frame(avci, picture);
2138                 if (err < 0)
2139                     return err;
2140             }
2141
2142             avctx->frame_number++;
2143             av_frame_set_best_effort_timestamp(picture,
2144                                                guess_correct_pts(avctx,
2145                                                                  picture->pkt_pts,
2146                                                                  picture->pkt_dts));
2147         } else
2148             av_frame_unref(picture);
2149     } else
2150         ret = 0;
2151
2152     /* many decoders assign whole AVFrames, thus overwriting extended_data;
2153      * make sure it's set correctly */
2154     av_assert0(!picture->extended_data || picture->extended_data == picture->data);
2155
2156 #if FF_API_AVCTX_TIMEBASE
2157     if (avctx->framerate.num > 0 && avctx->framerate.den > 0)
2158         avctx->time_base = av_inv_q(av_mul_q(avctx->framerate, (AVRational){avctx->ticks_per_frame, 1}));
2159 #endif
2160
2161     return ret;
2162 }
2163
2164 int attribute_align_arg avcodec_decode_audio4(AVCodecContext *avctx,
2165                                               AVFrame *frame,
2166                                               int *got_frame_ptr,
2167                                               const AVPacket *avpkt)
2168 {
2169     AVCodecInternal *avci = avctx->internal;
2170     int ret = 0;
2171
2172     *got_frame_ptr = 0;
2173
2174     if (!avpkt->data && avpkt->size) {
2175         av_log(avctx, AV_LOG_ERROR, "invalid packet: NULL data, size != 0\n");
2176         return AVERROR(EINVAL);
2177     }
2178     if (!avctx->codec)
2179         return AVERROR(EINVAL);
2180     if (avctx->codec->type != AVMEDIA_TYPE_AUDIO) {
2181         av_log(avctx, AV_LOG_ERROR, "Invalid media type for audio\n");
2182         return AVERROR(EINVAL);
2183     }
2184
2185     av_frame_unref(frame);
2186
2187     if ((avctx->codec->capabilities & AV_CODEC_CAP_DELAY) || avpkt->size || (avctx->active_thread_type & FF_THREAD_FRAME)) {
2188         uint8_t *side;
2189         int side_size;
2190         uint32_t discard_padding = 0;
2191         uint8_t skip_reason = 0;
2192         uint8_t discard_reason = 0;
2193         // copy to ensure we do not change avpkt
2194         AVPacket tmp = *avpkt;
2195         int did_split = av_packet_split_side_data(&tmp);
2196         ret = apply_param_change(avctx, &tmp);
2197         if (ret < 0) {
2198             av_log(avctx, AV_LOG_ERROR, "Error applying parameter changes.\n");
2199             if (avctx->err_recognition & AV_EF_EXPLODE)
2200                 goto fail;
2201         }
2202
2203         avctx->internal->pkt = &tmp;
2204         if (HAVE_THREADS && avctx->active_thread_type & FF_THREAD_FRAME)
2205             ret = ff_thread_decode_frame(avctx, frame, got_frame_ptr, &tmp);
2206         else {
2207             ret = avctx->codec->decode(avctx, frame, got_frame_ptr, &tmp);
2208             av_assert0(ret <= tmp.size);
2209             frame->pkt_dts = avpkt->dts;
2210         }
2211         if (ret >= 0 && *got_frame_ptr) {
2212             avctx->frame_number++;
2213             av_frame_set_best_effort_timestamp(frame,
2214                                                guess_correct_pts(avctx,
2215                                                                  frame->pkt_pts,
2216                                                                  frame->pkt_dts));
2217             if (frame->format == AV_SAMPLE_FMT_NONE)
2218                 frame->format = avctx->sample_fmt;
2219             if (!frame->channel_layout)
2220                 frame->channel_layout = avctx->channel_layout;
2221             if (!av_frame_get_channels(frame))
2222                 av_frame_set_channels(frame, avctx->channels);
2223             if (!frame->sample_rate)
2224                 frame->sample_rate = avctx->sample_rate;
2225         }
2226
2227         side= av_packet_get_side_data(avctx->internal->pkt, AV_PKT_DATA_SKIP_SAMPLES, &side_size);
2228         if(side && side_size>=10) {
2229             avctx->internal->skip_samples = AV_RL32(side);
2230             discard_padding = AV_RL32(side + 4);
2231             av_log(avctx, AV_LOG_DEBUG, "skip %d / discard %d samples due to side data\n",
2232                    avctx->internal->skip_samples, (int)discard_padding);
2233             skip_reason = AV_RL8(side + 8);
2234             discard_reason = AV_RL8(side + 9);
2235         }
2236         if (avctx->internal->skip_samples && *got_frame_ptr &&
2237             !(avctx->flags2 & AV_CODEC_FLAG2_SKIP_MANUAL)) {
2238             if(frame->nb_samples <= avctx->internal->skip_samples){
2239                 *got_frame_ptr = 0;
2240                 avctx->internal->skip_samples -= frame->nb_samples;
2241                 av_log(avctx, AV_LOG_DEBUG, "skip whole frame, skip left: %d\n",
2242                        avctx->internal->skip_samples);
2243             } else {
2244                 av_samples_copy(frame->extended_data, frame->extended_data, 0, avctx->internal->skip_samples,
2245                                 frame->nb_samples - avctx->internal->skip_samples, avctx->channels, frame->format);
2246                 if(avctx->pkt_timebase.num && avctx->sample_rate) {
2247                     int64_t diff_ts = av_rescale_q(avctx->internal->skip_samples,
2248                                                    (AVRational){1, avctx->sample_rate},
2249                                                    avctx->pkt_timebase);
2250                     if(frame->pkt_pts!=AV_NOPTS_VALUE)
2251                         frame->pkt_pts += diff_ts;
2252                     if(frame->pkt_dts!=AV_NOPTS_VALUE)
2253                         frame->pkt_dts += diff_ts;
2254                     if (av_frame_get_pkt_duration(frame) >= diff_ts)
2255                         av_frame_set_pkt_duration(frame, av_frame_get_pkt_duration(frame) - diff_ts);
2256                 } else {
2257                     av_log(avctx, AV_LOG_WARNING, "Could not update timestamps for skipped samples.\n");
2258                 }
2259                 av_log(avctx, AV_LOG_DEBUG, "skip %d/%d samples\n",
2260                        avctx->internal->skip_samples, frame->nb_samples);
2261                 frame->nb_samples -= avctx->internal->skip_samples;
2262                 avctx->internal->skip_samples = 0;
2263             }
2264         }
2265
2266         if (discard_padding > 0 && discard_padding <= frame->nb_samples && *got_frame_ptr &&
2267             !(avctx->flags2 & AV_CODEC_FLAG2_SKIP_MANUAL)) {
2268             if (discard_padding == frame->nb_samples) {
2269                 *got_frame_ptr = 0;
2270             } else {
2271                 if(avctx->pkt_timebase.num && avctx->sample_rate) {
2272                     int64_t diff_ts = av_rescale_q(frame->nb_samples - discard_padding,
2273                                                    (AVRational){1, avctx->sample_rate},
2274                                                    avctx->pkt_timebase);
2275                     if (av_frame_get_pkt_duration(frame) >= diff_ts)
2276                         av_frame_set_pkt_duration(frame, av_frame_get_pkt_duration(frame) - diff_ts);
2277                 } else {
2278                     av_log(avctx, AV_LOG_WARNING, "Could not update timestamps for discarded samples.\n");
2279                 }
2280                 av_log(avctx, AV_LOG_DEBUG, "discard %d/%d samples\n",
2281                        (int)discard_padding, frame->nb_samples);
2282                 frame->nb_samples -= discard_padding;
2283             }
2284         }
2285
2286         if ((avctx->flags2 & AV_CODEC_FLAG2_SKIP_MANUAL) && *got_frame_ptr) {
2287             AVFrameSideData *fside = av_frame_new_side_data(frame, AV_FRAME_DATA_SKIP_SAMPLES, 10);
2288             if (fside) {
2289                 AV_WL32(fside->data, avctx->internal->skip_samples);
2290                 AV_WL32(fside->data + 4, discard_padding);
2291                 AV_WL8(fside->data + 8, skip_reason);
2292                 AV_WL8(fside->data + 9, discard_reason);
2293                 avctx->internal->skip_samples = 0;
2294             }
2295         }
2296 fail:
2297         avctx->internal->pkt = NULL;
2298         if (did_split) {
2299             av_packet_free_side_data(&tmp);
2300             if(ret == tmp.size)
2301                 ret = avpkt->size;
2302         }
2303
2304         if (ret >= 0 && *got_frame_ptr) {
2305             if (!avctx->refcounted_frames) {
2306                 int err = unrefcount_frame(avci, frame);
2307                 if (err < 0)
2308                     return err;
2309             }
2310         } else
2311             av_frame_unref(frame);
2312     }
2313
2314     return ret;
2315 }
2316
2317 #define UTF8_MAX_BYTES 4 /* 5 and 6 bytes sequences should not be used */
2318 static int recode_subtitle(AVCodecContext *avctx,
2319                            AVPacket *outpkt, const AVPacket *inpkt)
2320 {
2321 #if CONFIG_ICONV
2322     iconv_t cd = (iconv_t)-1;
2323     int ret = 0;
2324     char *inb, *outb;
2325     size_t inl, outl;
2326     AVPacket tmp;
2327 #endif
2328
2329     if (avctx->sub_charenc_mode != FF_SUB_CHARENC_MODE_PRE_DECODER || inpkt->size == 0)
2330         return 0;
2331
2332 #if CONFIG_ICONV
2333     cd = iconv_open("UTF-8", avctx->sub_charenc);
2334     av_assert0(cd != (iconv_t)-1);
2335
2336     inb = inpkt->data;
2337     inl = inpkt->size;
2338
2339     if (inl >= INT_MAX / UTF8_MAX_BYTES - AV_INPUT_BUFFER_PADDING_SIZE) {
2340         av_log(avctx, AV_LOG_ERROR, "Subtitles packet is too big for recoding\n");
2341         ret = AVERROR(ENOMEM);
2342         goto end;
2343     }
2344
2345     ret = av_new_packet(&tmp, inl * UTF8_MAX_BYTES);
2346     if (ret < 0)
2347         goto end;
2348     outpkt->buf  = tmp.buf;
2349     outpkt->data = tmp.data;
2350     outpkt->size = tmp.size;
2351     outb = outpkt->data;
2352     outl = outpkt->size;
2353
2354     if (iconv(cd, &inb, &inl, &outb, &outl) == (size_t)-1 ||
2355         iconv(cd, NULL, NULL, &outb, &outl) == (size_t)-1 ||
2356         outl >= outpkt->size || inl != 0) {
2357         ret = FFMIN(AVERROR(errno), -1);
2358         av_log(avctx, AV_LOG_ERROR, "Unable to recode subtitle event \"%s\" "
2359                "from %s to UTF-8\n", inpkt->data, avctx->sub_charenc);
2360         av_packet_unref(&tmp);
2361         goto end;
2362     }
2363     outpkt->size -= outl;
2364     memset(outpkt->data + outpkt->size, 0, outl);
2365
2366 end:
2367     if (cd != (iconv_t)-1)
2368         iconv_close(cd);
2369     return ret;
2370 #else
2371     av_log(avctx, AV_LOG_ERROR, "requesting subtitles recoding without iconv");
2372     return AVERROR(EINVAL);
2373 #endif
2374 }
2375
2376 static int utf8_check(const uint8_t *str)
2377 {
2378     const uint8_t *byte;
2379     uint32_t codepoint, min;
2380
2381     while (*str) {
2382         byte = str;
2383         GET_UTF8(codepoint, *(byte++), return 0;);
2384         min = byte - str == 1 ? 0 : byte - str == 2 ? 0x80 :
2385               1 << (5 * (byte - str) - 4);
2386         if (codepoint < min || codepoint >= 0x110000 ||
2387             codepoint == 0xFFFE /* BOM */ ||
2388             codepoint >= 0xD800 && codepoint <= 0xDFFF /* surrogates */)
2389             return 0;
2390         str = byte;
2391     }
2392     return 1;
2393 }
2394
2395 int avcodec_decode_subtitle2(AVCodecContext *avctx, AVSubtitle *sub,
2396                              int *got_sub_ptr,
2397                              AVPacket *avpkt)
2398 {
2399     int i, ret = 0;
2400
2401     if (!avpkt->data && avpkt->size) {
2402         av_log(avctx, AV_LOG_ERROR, "invalid packet: NULL data, size != 0\n");
2403         return AVERROR(EINVAL);
2404     }
2405     if (!avctx->codec)
2406         return AVERROR(EINVAL);
2407     if (avctx->codec->type != AVMEDIA_TYPE_SUBTITLE) {
2408         av_log(avctx, AV_LOG_ERROR, "Invalid media type for subtitles\n");
2409         return AVERROR(EINVAL);
2410     }
2411
2412     *got_sub_ptr = 0;
2413     get_subtitle_defaults(sub);
2414
2415     if ((avctx->codec->capabilities & AV_CODEC_CAP_DELAY) || avpkt->size) {
2416         AVPacket pkt_recoded;
2417         AVPacket tmp = *avpkt;
2418         int did_split = av_packet_split_side_data(&tmp);
2419         //apply_param_change(avctx, &tmp);
2420
2421         if (did_split) {
2422             /* FFMIN() prevents overflow in case the packet wasn't allocated with
2423              * proper padding.
2424              * If the side data is smaller than the buffer padding size, the
2425              * remaining bytes should have already been filled with zeros by the
2426              * original packet allocation anyway. */
2427             memset(tmp.data + tmp.size, 0,
2428                    FFMIN(avpkt->size - tmp.size, AV_INPUT_BUFFER_PADDING_SIZE));
2429         }
2430
2431         pkt_recoded = tmp;
2432         ret = recode_subtitle(avctx, &pkt_recoded, &tmp);
2433         if (ret < 0) {
2434             *got_sub_ptr = 0;
2435         } else {
2436             avctx->internal->pkt = &pkt_recoded;
2437
2438             if (avctx->pkt_timebase.num && avpkt->pts != AV_NOPTS_VALUE)
2439                 sub->pts = av_rescale_q(avpkt->pts,
2440                                         avctx->pkt_timebase, AV_TIME_BASE_Q);
2441             ret = avctx->codec->decode(avctx, sub, got_sub_ptr, &pkt_recoded);
2442             av_assert1((ret >= 0) >= !!*got_sub_ptr &&
2443                        !!*got_sub_ptr >= !!sub->num_rects);
2444
2445             if (sub->num_rects && !sub->end_display_time && avpkt->duration &&
2446                 avctx->pkt_timebase.num) {
2447                 AVRational ms = { 1, 1000 };
2448                 sub->end_display_time = av_rescale_q(avpkt->duration,
2449                                                      avctx->pkt_timebase, ms);
2450             }
2451
2452             for (i = 0; i < sub->num_rects; i++) {
2453                 if (sub->rects[i]->ass && !utf8_check(sub->rects[i]->ass)) {
2454                     av_log(avctx, AV_LOG_ERROR,
2455                            "Invalid UTF-8 in decoded subtitles text; "
2456                            "maybe missing -sub_charenc option\n");
2457                     avsubtitle_free(sub);
2458                     return AVERROR_INVALIDDATA;
2459                 }
2460             }
2461
2462             if (tmp.data != pkt_recoded.data) { // did we recode?
2463                 /* prevent from destroying side data from original packet */
2464                 pkt_recoded.side_data = NULL;
2465                 pkt_recoded.side_data_elems = 0;
2466
2467                 av_packet_unref(&pkt_recoded);
2468             }
2469             if (avctx->codec_descriptor->props & AV_CODEC_PROP_BITMAP_SUB)
2470                 sub->format = 0;
2471             else if (avctx->codec_descriptor->props & AV_CODEC_PROP_TEXT_SUB)
2472                 sub->format = 1;
2473             avctx->internal->pkt = NULL;
2474         }
2475
2476         if (did_split) {
2477             av_packet_free_side_data(&tmp);
2478             if(ret == tmp.size)
2479                 ret = avpkt->size;
2480         }
2481
2482         if (*got_sub_ptr)
2483             avctx->frame_number++;
2484     }
2485
2486     return ret;
2487 }
2488
2489 void avsubtitle_free(AVSubtitle *sub)
2490 {
2491     int i;
2492
2493     for (i = 0; i < sub->num_rects; i++) {
2494         av_freep(&sub->rects[i]->data[0]);
2495         av_freep(&sub->rects[i]->data[1]);
2496         av_freep(&sub->rects[i]->data[2]);
2497         av_freep(&sub->rects[i]->data[3]);
2498         av_freep(&sub->rects[i]->text);
2499         av_freep(&sub->rects[i]->ass);
2500         av_freep(&sub->rects[i]);
2501     }
2502
2503     av_freep(&sub->rects);
2504
2505     memset(sub, 0, sizeof(AVSubtitle));
2506 }
2507
2508 av_cold int avcodec_close(AVCodecContext *avctx)
2509 {
2510     int i;
2511
2512     if (!avctx)
2513         return 0;
2514
2515     if (avcodec_is_open(avctx)) {
2516         FramePool *pool = avctx->internal->pool;
2517         if (CONFIG_FRAME_THREAD_ENCODER &&
2518             avctx->internal->frame_thread_encoder && avctx->thread_count > 1) {
2519             ff_frame_thread_encoder_free(avctx);
2520         }
2521         if (HAVE_THREADS && avctx->internal->thread_ctx)
2522             ff_thread_free(avctx);
2523         if (avctx->codec && avctx->codec->close)
2524             avctx->codec->close(avctx);
2525         avctx->internal->byte_buffer_size = 0;
2526         av_freep(&avctx->internal->byte_buffer);
2527         av_frame_free(&avctx->internal->to_free);
2528         for (i = 0; i < FF_ARRAY_ELEMS(pool->pools); i++)
2529             av_buffer_pool_uninit(&pool->pools[i]);
2530         av_freep(&avctx->internal->pool);
2531
2532         if (avctx->hwaccel && avctx->hwaccel->uninit)
2533             avctx->hwaccel->uninit(avctx);
2534         av_freep(&avctx->internal->hwaccel_priv_data);
2535
2536         av_freep(&avctx->internal);
2537     }
2538
2539     for (i = 0; i < avctx->nb_coded_side_data; i++)
2540         av_freep(&avctx->coded_side_data[i].data);
2541     av_freep(&avctx->coded_side_data);
2542     avctx->nb_coded_side_data = 0;
2543
2544     if (avctx->priv_data && avctx->codec && avctx->codec->priv_class)
2545         av_opt_free(avctx->priv_data);
2546     av_opt_free(avctx);
2547     av_freep(&avctx->priv_data);
2548     if (av_codec_is_encoder(avctx->codec)) {
2549         av_freep(&avctx->extradata);
2550 #if FF_API_CODED_FRAME
2551 FF_DISABLE_DEPRECATION_WARNINGS
2552         av_frame_free(&avctx->coded_frame);
2553 FF_ENABLE_DEPRECATION_WARNINGS
2554 #endif
2555     }
2556     avctx->codec = NULL;
2557     avctx->active_thread_type = 0;
2558
2559     return 0;
2560 }
2561
2562 static enum AVCodecID remap_deprecated_codec_id(enum AVCodecID id)
2563 {
2564     switch(id){
2565         //This is for future deprecatec codec ids, its empty since
2566         //last major bump but will fill up again over time, please don't remove it
2567         default                                         : return id;
2568     }
2569 }
2570
2571 static AVCodec *find_encdec(enum AVCodecID id, int encoder)
2572 {
2573     AVCodec *p, *experimental = NULL;
2574     p = first_avcodec;
2575     id= remap_deprecated_codec_id(id);
2576     while (p) {
2577         if ((encoder ? av_codec_is_encoder(p) : av_codec_is_decoder(p)) &&
2578             p->id == id) {
2579             if (p->capabilities & AV_CODEC_CAP_EXPERIMENTAL && !experimental) {
2580                 experimental = p;
2581             } else
2582                 return p;
2583         }
2584         p = p->next;
2585     }
2586     return experimental;
2587 }
2588
2589 AVCodec *avcodec_find_encoder(enum AVCodecID id)
2590 {
2591     return find_encdec(id, 1);
2592 }
2593
2594 AVCodec *avcodec_find_encoder_by_name(const char *name)
2595 {
2596     AVCodec *p;
2597     if (!name)
2598         return NULL;
2599     p = first_avcodec;
2600     while (p) {
2601         if (av_codec_is_encoder(p) && strcmp(name, p->name) == 0)
2602             return p;
2603         p = p->next;
2604     }
2605     return NULL;
2606 }
2607
2608 AVCodec *avcodec_find_decoder(enum AVCodecID id)
2609 {
2610     return find_encdec(id, 0);
2611 }
2612
2613 AVCodec *avcodec_find_decoder_by_name(const char *name)
2614 {
2615     AVCodec *p;
2616     if (!name)
2617         return NULL;
2618     p = first_avcodec;
2619     while (p) {
2620         if (av_codec_is_decoder(p) && strcmp(name, p->name) == 0)
2621             return p;
2622         p = p->next;
2623     }
2624     return NULL;
2625 }
2626
2627 const char *avcodec_get_name(enum AVCodecID id)
2628 {
2629     const AVCodecDescriptor *cd;
2630     AVCodec *codec;
2631
2632     if (id == AV_CODEC_ID_NONE)
2633         return "none";
2634     cd = avcodec_descriptor_get(id);
2635     if (cd)
2636         return cd->name;
2637     av_log(NULL, AV_LOG_WARNING, "Codec 0x%x is not in the full list.\n", id);
2638     codec = avcodec_find_decoder(id);
2639     if (codec)
2640         return codec->name;
2641     codec = avcodec_find_encoder(id);
2642     if (codec)
2643         return codec->name;
2644     return "unknown_codec";
2645 }
2646
2647 size_t av_get_codec_tag_string(char *buf, size_t buf_size, unsigned int codec_tag)
2648 {
2649     int i, len, ret = 0;
2650
2651 #define TAG_PRINT(x)                                              \
2652     (((x) >= '0' && (x) <= '9') ||                                \
2653      ((x) >= 'a' && (x) <= 'z') || ((x) >= 'A' && (x) <= 'Z') ||  \
2654      ((x) == '.' || (x) == ' ' || (x) == '-' || (x) == '_'))
2655
2656     for (i = 0; i < 4; i++) {
2657         len = snprintf(buf, buf_size,
2658                        TAG_PRINT(codec_tag & 0xFF) ? "%c" : "[%d]", codec_tag & 0xFF);
2659         buf        += len;
2660         buf_size    = buf_size > len ? buf_size - len : 0;
2661         ret        += len;
2662         codec_tag >>= 8;
2663     }
2664     return ret;
2665 }
2666
2667 void avcodec_string(char *buf, int buf_size, AVCodecContext *enc, int encode)
2668 {
2669     const char *codec_type;
2670     const char *codec_name;
2671     const char *profile = NULL;
2672     int64_t bitrate;
2673     int new_line = 0;
2674     AVRational display_aspect_ratio;
2675     const char *separator = enc->dump_separator ? (const char *)enc->dump_separator : ", ";
2676
2677     if (!buf || buf_size <= 0)
2678         return;
2679     codec_type = av_get_media_type_string(enc->codec_type);
2680     codec_name = avcodec_get_name(enc->codec_id);
2681     profile = avcodec_profile_name(enc->codec_id, enc->profile);
2682
2683     snprintf(buf, buf_size, "%s: %s", codec_type ? codec_type : "unknown",
2684              codec_name);
2685     buf[0] ^= 'a' ^ 'A'; /* first letter in uppercase */
2686
2687     if (enc->codec && strcmp(enc->codec->name, codec_name))
2688         snprintf(buf + strlen(buf), buf_size - strlen(buf), " (%s)", enc->codec->name);
2689
2690     if (profile)
2691         snprintf(buf + strlen(buf), buf_size - strlen(buf), " (%s)", profile);
2692     if (   enc->codec_type == AVMEDIA_TYPE_VIDEO
2693         && av_log_get_level() >= AV_LOG_VERBOSE
2694         && enc->refs)
2695         snprintf(buf + strlen(buf), buf_size - strlen(buf),
2696                  ", %d reference frame%s",
2697                  enc->refs, enc->refs > 1 ? "s" : "");
2698
2699     if (enc->codec_tag) {
2700         char tag_buf[32];
2701         av_get_codec_tag_string(tag_buf, sizeof(tag_buf), enc->codec_tag);
2702         snprintf(buf + strlen(buf), buf_size - strlen(buf),
2703                  " (%s / 0x%04X)", tag_buf, enc->codec_tag);
2704     }
2705
2706     switch (enc->codec_type) {
2707     case AVMEDIA_TYPE_VIDEO:
2708         {
2709             char detail[256] = "(";
2710
2711             av_strlcat(buf, separator, buf_size);
2712
2713             snprintf(buf + strlen(buf), buf_size - strlen(buf),
2714                  "%s", enc->pix_fmt == AV_PIX_FMT_NONE ? "none" :
2715                      av_get_pix_fmt_name(enc->pix_fmt));
2716             if (enc->bits_per_raw_sample && enc->pix_fmt != AV_PIX_FMT_NONE &&
2717                 enc->bits_per_raw_sample < av_pix_fmt_desc_get(enc->pix_fmt)->comp[0].depth)
2718                 av_strlcatf(detail, sizeof(detail), "%d bpc, ", enc->bits_per_raw_sample);
2719             if (enc->color_range != AVCOL_RANGE_UNSPECIFIED)
2720                 av_strlcatf(detail, sizeof(detail), "%s, ",
2721                             av_color_range_name(enc->color_range));
2722
2723             if (enc->colorspace != AVCOL_SPC_UNSPECIFIED ||
2724                 enc->color_primaries != AVCOL_PRI_UNSPECIFIED ||
2725                 enc->color_trc != AVCOL_TRC_UNSPECIFIED) {
2726                 if (enc->colorspace != (int)enc->color_primaries ||
2727                     enc->colorspace != (int)enc->color_trc) {
2728                     new_line = 1;
2729                     av_strlcatf(detail, sizeof(detail), "%s/%s/%s, ",
2730                                 av_color_space_name(enc->colorspace),
2731                                 av_color_primaries_name(enc->color_primaries),
2732                                 av_color_transfer_name(enc->color_trc));
2733                 } else
2734                     av_strlcatf(detail, sizeof(detail), "%s, ",
2735                                 av_get_colorspace_name(enc->colorspace));
2736             }
2737
2738             if (av_log_get_level() >= AV_LOG_DEBUG &&
2739                 enc->chroma_sample_location != AVCHROMA_LOC_UNSPECIFIED)
2740                 av_strlcatf(detail, sizeof(detail), "%s, ",
2741                             av_chroma_location_name(enc->chroma_sample_location));
2742
2743             if (strlen(detail) > 1) {
2744                 detail[strlen(detail) - 2] = 0;
2745                 av_strlcatf(buf, buf_size, "%s)", detail);
2746             }
2747         }
2748
2749         if (enc->width) {
2750             av_strlcat(buf, new_line ? separator : ", ", buf_size);
2751
2752             snprintf(buf + strlen(buf), buf_size - strlen(buf),
2753                      "%dx%d",
2754                      enc->width, enc->height);
2755
2756             if (av_log_get_level() >= AV_LOG_VERBOSE &&
2757                 (enc->width != enc->coded_width ||
2758                  enc->height != enc->coded_height))
2759                 snprintf(buf + strlen(buf), buf_size - strlen(buf),
2760                          " (%dx%d)", enc->coded_width, enc->coded_height);
2761
2762             if (enc->sample_aspect_ratio.num) {
2763                 av_reduce(&display_aspect_ratio.num, &display_aspect_ratio.den,
2764                           enc->width * (int64_t)enc->sample_aspect_ratio.num,
2765                           enc->height * (int64_t)enc->sample_aspect_ratio.den,
2766                           1024 * 1024);
2767                 snprintf(buf + strlen(buf), buf_size - strlen(buf),
2768                          " [SAR %d:%d DAR %d:%d]",
2769                          enc->sample_aspect_ratio.num, enc->sample_aspect_ratio.den,
2770                          display_aspect_ratio.num, display_aspect_ratio.den);
2771             }
2772             if (av_log_get_level() >= AV_LOG_DEBUG) {
2773                 int g = av_gcd(enc->time_base.num, enc->time_base.den);
2774                 snprintf(buf + strlen(buf), buf_size - strlen(buf),
2775                          ", %d/%d",
2776                          enc->time_base.num / g, enc->time_base.den / g);
2777             }
2778         }
2779         if (encode) {
2780             snprintf(buf + strlen(buf), buf_size - strlen(buf),
2781                      ", q=%d-%d", enc->qmin, enc->qmax);
2782         } else {
2783             if (enc->properties & FF_CODEC_PROPERTY_CLOSED_CAPTIONS)
2784                 snprintf(buf + strlen(buf), buf_size - strlen(buf),
2785                          ", Closed Captions");
2786             if (enc->properties & FF_CODEC_PROPERTY_LOSSLESS)
2787                 snprintf(buf + strlen(buf), buf_size - strlen(buf),
2788                          ", lossless");
2789         }
2790         break;
2791     case AVMEDIA_TYPE_AUDIO:
2792         av_strlcat(buf, separator, buf_size);
2793
2794         if (enc->sample_rate) {
2795             snprintf(buf + strlen(buf), buf_size - strlen(buf),
2796                      "%d Hz, ", enc->sample_rate);
2797         }
2798         av_get_channel_layout_string(buf + strlen(buf), buf_size - strlen(buf), enc->channels, enc->channel_layout);
2799         if (enc->sample_fmt != AV_SAMPLE_FMT_NONE) {
2800             snprintf(buf + strlen(buf), buf_size - strlen(buf),
2801                      ", %s", av_get_sample_fmt_name(enc->sample_fmt));
2802         }
2803         if (   enc->bits_per_raw_sample > 0
2804             && enc->bits_per_raw_sample != av_get_bytes_per_sample(enc->sample_fmt) * 8)
2805             snprintf(buf + strlen(buf), buf_size - strlen(buf),
2806                      " (%d bit)", enc->bits_per_raw_sample);
2807         break;
2808     case AVMEDIA_TYPE_DATA:
2809         if (av_log_get_level() >= AV_LOG_DEBUG) {
2810             int g = av_gcd(enc->time_base.num, enc->time_base.den);
2811             if (g)
2812                 snprintf(buf + strlen(buf), buf_size - strlen(buf),
2813                          ", %d/%d",
2814                          enc->time_base.num / g, enc->time_base.den / g);
2815         }
2816         break;
2817     case AVMEDIA_TYPE_SUBTITLE:
2818         if (enc->width)
2819             snprintf(buf + strlen(buf), buf_size - strlen(buf),
2820                      ", %dx%d", enc->width, enc->height);
2821         break;
2822     default:
2823         return;
2824     }
2825     if (encode) {
2826         if (enc->flags & AV_CODEC_FLAG_PASS1)
2827             snprintf(buf + strlen(buf), buf_size - strlen(buf),
2828                      ", pass 1");
2829         if (enc->flags & AV_CODEC_FLAG_PASS2)
2830             snprintf(buf + strlen(buf), buf_size - strlen(buf),
2831                      ", pass 2");
2832     }
2833     bitrate = get_bit_rate(enc);
2834     if (bitrate != 0) {
2835         snprintf(buf + strlen(buf), buf_size - strlen(buf),
2836                  ", %"PRId64" kb/s", bitrate / 1000);
2837     } else if (enc->rc_max_rate > 0) {
2838         snprintf(buf + strlen(buf), buf_size - strlen(buf),
2839                  ", max. %"PRId64" kb/s", (int64_t)enc->rc_max_rate / 1000);
2840     }
2841 }
2842
2843 const char *av_get_profile_name(const AVCodec *codec, int profile)
2844 {
2845     const AVProfile *p;
2846     if (profile == FF_PROFILE_UNKNOWN || !codec->profiles)
2847         return NULL;
2848
2849     for (p = codec->profiles; p->profile != FF_PROFILE_UNKNOWN; p++)
2850         if (p->profile == profile)
2851             return p->name;
2852
2853     return NULL;
2854 }
2855
2856 const char *avcodec_profile_name(enum AVCodecID codec_id, int profile)
2857 {
2858     const AVCodecDescriptor *desc = avcodec_descriptor_get(codec_id);
2859     const AVProfile *p;
2860
2861     if (profile == FF_PROFILE_UNKNOWN || !desc || !desc->profiles)
2862         return NULL;
2863
2864     for (p = desc->profiles; p->profile != FF_PROFILE_UNKNOWN; p++)
2865         if (p->profile == profile)
2866             return p->name;
2867
2868     return NULL;
2869 }
2870
2871 unsigned avcodec_version(void)
2872 {
2873 //    av_assert0(AV_CODEC_ID_V410==164);
2874     av_assert0(AV_CODEC_ID_PCM_S8_PLANAR==65563);
2875     av_assert0(AV_CODEC_ID_ADPCM_G722==69660);
2876 //     av_assert0(AV_CODEC_ID_BMV_AUDIO==86071);
2877     av_assert0(AV_CODEC_ID_SRT==94216);
2878     av_assert0(LIBAVCODEC_VERSION_MICRO >= 100);
2879
2880     return LIBAVCODEC_VERSION_INT;
2881 }
2882
2883 const char *avcodec_configuration(void)
2884 {
2885     return FFMPEG_CONFIGURATION;
2886 }
2887
2888 const char *avcodec_license(void)
2889 {
2890 #define LICENSE_PREFIX "libavcodec license: "
2891     return LICENSE_PREFIX FFMPEG_LICENSE + sizeof(LICENSE_PREFIX) - 1;
2892 }
2893
2894 void avcodec_flush_buffers(AVCodecContext *avctx)
2895 {
2896     if (HAVE_THREADS && avctx->active_thread_type & FF_THREAD_FRAME)
2897         ff_thread_flush(avctx);
2898     else if (avctx->codec->flush)
2899         avctx->codec->flush(avctx);
2900
2901     avctx->pts_correction_last_pts =
2902     avctx->pts_correction_last_dts = INT64_MIN;
2903
2904     if (!avctx->refcounted_frames)
2905         av_frame_unref(avctx->internal->to_free);
2906 }
2907
2908 int av_get_exact_bits_per_sample(enum AVCodecID codec_id)
2909 {
2910     switch (codec_id) {
2911     case AV_CODEC_ID_8SVX_EXP:
2912     case AV_CODEC_ID_8SVX_FIB:
2913     case AV_CODEC_ID_ADPCM_CT:
2914     case AV_CODEC_ID_ADPCM_IMA_APC:
2915     case AV_CODEC_ID_ADPCM_IMA_EA_SEAD:
2916     case AV_CODEC_ID_ADPCM_IMA_OKI:
2917     case AV_CODEC_ID_ADPCM_IMA_WS:
2918     case AV_CODEC_ID_ADPCM_G722:
2919     case AV_CODEC_ID_ADPCM_YAMAHA:
2920     case AV_CODEC_ID_ADPCM_AICA:
2921         return 4;
2922     case AV_CODEC_ID_DSD_LSBF:
2923     case AV_CODEC_ID_DSD_MSBF:
2924     case AV_CODEC_ID_DSD_LSBF_PLANAR:
2925     case AV_CODEC_ID_DSD_MSBF_PLANAR:
2926     case AV_CODEC_ID_PCM_ALAW:
2927     case AV_CODEC_ID_PCM_MULAW:
2928     case AV_CODEC_ID_PCM_S8:
2929     case AV_CODEC_ID_PCM_S8_PLANAR:
2930     case AV_CODEC_ID_PCM_U8:
2931     case AV_CODEC_ID_PCM_ZORK:
2932     case AV_CODEC_ID_SDX2_DPCM:
2933         return 8;
2934     case AV_CODEC_ID_PCM_S16BE:
2935     case AV_CODEC_ID_PCM_S16BE_PLANAR:
2936     case AV_CODEC_ID_PCM_S16LE:
2937     case AV_CODEC_ID_PCM_S16LE_PLANAR:
2938     case AV_CODEC_ID_PCM_U16BE:
2939     case AV_CODEC_ID_PCM_U16LE:
2940         return 16;
2941     case AV_CODEC_ID_PCM_S24DAUD:
2942     case AV_CODEC_ID_PCM_S24BE:
2943     case AV_CODEC_ID_PCM_S24LE:
2944     case AV_CODEC_ID_PCM_S24LE_PLANAR:
2945     case AV_CODEC_ID_PCM_U24BE:
2946     case AV_CODEC_ID_PCM_U24LE:
2947         return 24;
2948     case AV_CODEC_ID_PCM_S32BE:
2949     case AV_CODEC_ID_PCM_S32LE:
2950     case AV_CODEC_ID_PCM_S32LE_PLANAR:
2951     case AV_CODEC_ID_PCM_U32BE:
2952     case AV_CODEC_ID_PCM_U32LE:
2953     case AV_CODEC_ID_PCM_F32BE:
2954     case AV_CODEC_ID_PCM_F32LE:
2955         return 32;
2956     case AV_CODEC_ID_PCM_F64BE:
2957     case AV_CODEC_ID_PCM_F64LE:
2958         return 64;
2959     default:
2960         return 0;
2961     }
2962 }
2963
2964 enum AVCodecID av_get_pcm_codec(enum AVSampleFormat fmt, int be)
2965 {
2966     static const enum AVCodecID map[AV_SAMPLE_FMT_NB][2] = {
2967         [AV_SAMPLE_FMT_U8  ] = { AV_CODEC_ID_PCM_U8,    AV_CODEC_ID_PCM_U8    },
2968         [AV_SAMPLE_FMT_S16 ] = { AV_CODEC_ID_PCM_S16LE, AV_CODEC_ID_PCM_S16BE },
2969         [AV_SAMPLE_FMT_S32 ] = { AV_CODEC_ID_PCM_S32LE, AV_CODEC_ID_PCM_S32BE },
2970         [AV_SAMPLE_FMT_FLT ] = { AV_CODEC_ID_PCM_F32LE, AV_CODEC_ID_PCM_F32BE },
2971         [AV_SAMPLE_FMT_DBL ] = { AV_CODEC_ID_PCM_F64LE, AV_CODEC_ID_PCM_F64BE },
2972         [AV_SAMPLE_FMT_U8P ] = { AV_CODEC_ID_PCM_U8,    AV_CODEC_ID_PCM_U8    },
2973         [AV_SAMPLE_FMT_S16P] = { AV_CODEC_ID_PCM_S16LE, AV_CODEC_ID_PCM_S16BE },
2974         [AV_SAMPLE_FMT_S32P] = { AV_CODEC_ID_PCM_S32LE, AV_CODEC_ID_PCM_S32BE },
2975         [AV_SAMPLE_FMT_FLTP] = { AV_CODEC_ID_PCM_F32LE, AV_CODEC_ID_PCM_F32BE },
2976         [AV_SAMPLE_FMT_DBLP] = { AV_CODEC_ID_PCM_F64LE, AV_CODEC_ID_PCM_F64BE },
2977     };
2978     if (fmt < 0 || fmt >= AV_SAMPLE_FMT_NB)
2979         return AV_CODEC_ID_NONE;
2980     if (be < 0 || be > 1)
2981         be = AV_NE(1, 0);
2982     return map[fmt][be];
2983 }
2984
2985 int av_get_bits_per_sample(enum AVCodecID codec_id)
2986 {
2987     switch (codec_id) {
2988     case AV_CODEC_ID_ADPCM_SBPRO_2:
2989         return 2;
2990     case AV_CODEC_ID_ADPCM_SBPRO_3:
2991         return 3;
2992     case AV_CODEC_ID_ADPCM_SBPRO_4:
2993     case AV_CODEC_ID_ADPCM_IMA_WAV:
2994     case AV_CODEC_ID_ADPCM_IMA_QT:
2995     case AV_CODEC_ID_ADPCM_SWF:
2996     case AV_CODEC_ID_ADPCM_MS:
2997         return 4;
2998     default:
2999         return av_get_exact_bits_per_sample(codec_id);
3000     }
3001 }
3002
3003 int av_get_audio_frame_duration(AVCodecContext *avctx, int frame_bytes)
3004 {
3005     int id, sr, ch, ba, tag, bps;
3006
3007     id  = avctx->codec_id;
3008     sr  = avctx->sample_rate;
3009     ch  = avctx->channels;
3010     ba  = avctx->block_align;
3011     tag = avctx->codec_tag;
3012     bps = av_get_exact_bits_per_sample(avctx->codec_id);
3013
3014     /* codecs with an exact constant bits per sample */
3015     if (bps > 0 && ch > 0 && frame_bytes > 0 && ch < 32768 && bps < 32768)
3016         return (frame_bytes * 8LL) / (bps * ch);
3017     bps = avctx->bits_per_coded_sample;
3018
3019     /* codecs with a fixed packet duration */
3020     switch (id) {
3021     case AV_CODEC_ID_ADPCM_ADX:    return   32;
3022     case AV_CODEC_ID_ADPCM_IMA_QT: return   64;
3023     case AV_CODEC_ID_ADPCM_EA_XAS: return  128;
3024     case AV_CODEC_ID_AMR_NB:
3025     case AV_CODEC_ID_EVRC:
3026     case AV_CODEC_ID_GSM:
3027     case AV_CODEC_ID_QCELP:
3028     case AV_CODEC_ID_RA_288:       return  160;
3029     case AV_CODEC_ID_AMR_WB:
3030     case AV_CODEC_ID_GSM_MS:       return  320;
3031     case AV_CODEC_ID_MP1:          return  384;
3032     case AV_CODEC_ID_ATRAC1:       return  512;
3033     case AV_CODEC_ID_ATRAC3:       return 1024;
3034     case AV_CODEC_ID_ATRAC3P:      return 2048;
3035     case AV_CODEC_ID_MP2:
3036     case AV_CODEC_ID_MUSEPACK7:    return 1152;
3037     case AV_CODEC_ID_AC3:          return 1536;
3038     }
3039
3040     if (sr > 0) {
3041         /* calc from sample rate */
3042         if (id == AV_CODEC_ID_TTA)
3043             return 256 * sr / 245;
3044
3045         if (ch > 0) {
3046             /* calc from sample rate and channels */
3047             if (id == AV_CODEC_ID_BINKAUDIO_DCT)
3048                 return (480 << (sr / 22050)) / ch;
3049         }
3050     }
3051
3052     if (ba > 0) {
3053         /* calc from block_align */
3054         if (id == AV_CODEC_ID_SIPR) {
3055             switch (ba) {
3056             case 20: return 160;
3057             case 19: return 144;
3058             case 29: return 288;
3059             case 37: return 480;
3060             }
3061         } else if (id == AV_CODEC_ID_ILBC) {
3062             switch (ba) {
3063             case 38: return 160;
3064             case 50: return 240;
3065             }
3066         }
3067     }
3068
3069     if (frame_bytes > 0) {
3070         /* calc from frame_bytes only */
3071         if (id == AV_CODEC_ID_TRUESPEECH)
3072             return 240 * (frame_bytes / 32);
3073         if (id == AV_CODEC_ID_NELLYMOSER)
3074             return 256 * (frame_bytes / 64);
3075         if (id == AV_CODEC_ID_RA_144)
3076             return 160 * (frame_bytes / 20);
3077         if (id == AV_CODEC_ID_G723_1)
3078             return 240 * (frame_bytes / 24);
3079
3080         if (bps > 0) {
3081             /* calc from frame_bytes and bits_per_coded_sample */
3082             if (id == AV_CODEC_ID_ADPCM_G726)
3083                 return frame_bytes * 8 / bps;
3084         }
3085
3086         if (ch > 0 && ch < INT_MAX/16) {
3087             /* calc from frame_bytes and channels */
3088             switch (id) {
3089             case AV_CODEC_ID_ADPCM_AFC:
3090                 return frame_bytes / (9 * ch) * 16;
3091             case AV_CODEC_ID_ADPCM_PSX:
3092             case AV_CODEC_ID_ADPCM_DTK:
3093                 return frame_bytes / (16 * ch) * 28;
3094             case AV_CODEC_ID_ADPCM_4XM:
3095             case AV_CODEC_ID_ADPCM_IMA_ISS:
3096                 return (frame_bytes - 4 * ch) * 2 / ch;
3097             case AV_CODEC_ID_ADPCM_IMA_SMJPEG:
3098                 return (frame_bytes - 4) * 2 / ch;
3099             case AV_CODEC_ID_ADPCM_IMA_AMV:
3100                 return (frame_bytes - 8) * 2 / ch;
3101             case AV_CODEC_ID_ADPCM_THP:
3102             case AV_CODEC_ID_ADPCM_THP_LE:
3103                 if (avctx->extradata)
3104                     return frame_bytes * 14 / (8 * ch);
3105                 break;
3106             case AV_CODEC_ID_ADPCM_XA:
3107                 return (frame_bytes / 128) * 224 / ch;
3108             case AV_CODEC_ID_INTERPLAY_DPCM:
3109                 return (frame_bytes - 6 - ch) / ch;
3110             case AV_CODEC_ID_ROQ_DPCM:
3111                 return (frame_bytes - 8) / ch;
3112             case AV_CODEC_ID_XAN_DPCM:
3113                 return (frame_bytes - 2 * ch) / ch;
3114             case AV_CODEC_ID_MACE3:
3115                 return 3 * frame_bytes / ch;
3116             case AV_CODEC_ID_MACE6:
3117                 return 6 * frame_bytes / ch;
3118             case AV_CODEC_ID_PCM_LXF:
3119                 return 2 * (frame_bytes / (5 * ch));
3120             case AV_CODEC_ID_IAC:
3121             case AV_CODEC_ID_IMC:
3122                 return 4 * frame_bytes / ch;
3123             }
3124
3125             if (tag) {
3126                 /* calc from frame_bytes, channels, and codec_tag */
3127                 if (id == AV_CODEC_ID_SOL_DPCM) {
3128                     if (tag == 3)
3129                         return frame_bytes / ch;
3130                     else
3131                         return frame_bytes * 2 / ch;
3132                 }
3133             }
3134
3135             if (ba > 0) {
3136                 /* calc from frame_bytes, channels, and block_align */
3137                 int blocks = frame_bytes / ba;
3138                 switch (avctx->codec_id) {
3139                 case AV_CODEC_ID_ADPCM_IMA_WAV:
3140                     if (bps < 2 || bps > 5)
3141                         return 0;
3142                     return blocks * (1 + (ba - 4 * ch) / (bps * ch) * 8);
3143                 case AV_CODEC_ID_ADPCM_IMA_DK3:
3144                     return blocks * (((ba - 16) * 2 / 3 * 4) / ch);
3145                 case AV_CODEC_ID_ADPCM_IMA_DK4:
3146                     return blocks * (1 + (ba - 4 * ch) * 2 / ch);
3147                 case AV_CODEC_ID_ADPCM_IMA_RAD:
3148                     return blocks * ((ba - 4 * ch) * 2 / ch);
3149                 case AV_CODEC_ID_ADPCM_MS:
3150                     return blocks * (2 + (ba - 7 * ch) * 2 / ch);
3151                 }
3152             }
3153
3154             if (bps > 0) {
3155                 /* calc from frame_bytes, channels, and bits_per_coded_sample */
3156                 switch (avctx->codec_id) {
3157                 case AV_CODEC_ID_PCM_DVD:
3158                     if(bps<4)
3159                         return 0;
3160                     return 2 * (frame_bytes / ((bps * 2 / 8) * ch));
3161                 case AV_CODEC_ID_PCM_BLURAY:
3162                     if(bps<4)
3163                         return 0;
3164                     return frame_bytes / ((FFALIGN(ch, 2) * bps) / 8);
3165                 case AV_CODEC_ID_S302M:
3166                     return 2 * (frame_bytes / ((bps + 4) / 4)) / ch;
3167                 }
3168             }
3169         }
3170     }
3171
3172     /* Fall back on using frame_size */
3173     if (avctx->frame_size > 1 && frame_bytes)
3174         return avctx->frame_size;
3175
3176     //For WMA we currently have no other means to calculate duration thus we
3177     //do it here by assuming CBR, which is true for all known cases.
3178     if (avctx->bit_rate>0 && frame_bytes>0 && avctx->sample_rate>0 && avctx->block_align>1) {
3179         if (avctx->codec_id == AV_CODEC_ID_WMAV1 || avctx->codec_id == AV_CODEC_ID_WMAV2)
3180             return  (frame_bytes * 8LL * avctx->sample_rate) / avctx->bit_rate;
3181     }
3182
3183     return 0;
3184 }
3185
3186 #if !HAVE_THREADS
3187 int ff_thread_init(AVCodecContext *s)
3188 {
3189     return -1;
3190 }
3191
3192 #endif
3193
3194 unsigned int av_xiphlacing(unsigned char *s, unsigned int v)
3195 {
3196     unsigned int n = 0;
3197
3198     while (v >= 0xff) {
3199         *s++ = 0xff;
3200         v -= 0xff;
3201         n++;
3202     }
3203     *s = v;
3204     n++;
3205     return n;
3206 }
3207
3208 int ff_match_2uint16(const uint16_t(*tab)[2], int size, int a, int b)
3209 {
3210     int i;
3211     for (i = 0; i < size && !(tab[i][0] == a && tab[i][1] == b); i++) ;
3212     return i;
3213 }
3214
3215 #if FF_API_MISSING_SAMPLE
3216 FF_DISABLE_DEPRECATION_WARNINGS
3217 void av_log_missing_feature(void *avc, const char *feature, int want_sample)
3218 {
3219     av_log(avc, AV_LOG_WARNING, "%s is not implemented. Update your FFmpeg "
3220             "version to the newest one from Git. If the problem still "
3221             "occurs, it means that your file has a feature which has not "
3222             "been implemented.\n", feature);
3223     if(want_sample)
3224         av_log_ask_for_sample(avc, NULL);
3225 }
3226
3227 void av_log_ask_for_sample(void *avc, const char *msg, ...)
3228 {
3229     va_list argument_list;
3230
3231     va_start(argument_list, msg);
3232
3233     if (msg)
3234         av_vlog(avc, AV_LOG_WARNING, msg, argument_list);
3235     av_log(avc, AV_LOG_WARNING, "If you want to help, upload a sample "
3236             "of this file to ftp://upload.ffmpeg.org/incoming/ "
3237             "and contact the ffmpeg-devel mailing list. (ffmpeg-devel@ffmpeg.org)\n");
3238
3239     va_end(argument_list);
3240 }
3241 FF_ENABLE_DEPRECATION_WARNINGS
3242 #endif /* FF_API_MISSING_SAMPLE */
3243
3244 static AVHWAccel *first_hwaccel = NULL;
3245 static AVHWAccel **last_hwaccel = &first_hwaccel;
3246
3247 void av_register_hwaccel(AVHWAccel *hwaccel)
3248 {
3249     AVHWAccel **p = last_hwaccel;
3250     hwaccel->next = NULL;
3251     while(*p || avpriv_atomic_ptr_cas((void * volatile *)p, NULL, hwaccel))
3252         p = &(*p)->next;
3253     last_hwaccel = &hwaccel->next;
3254 }
3255
3256 AVHWAccel *av_hwaccel_next(const AVHWAccel *hwaccel)
3257 {
3258     return hwaccel ? hwaccel->next : first_hwaccel;
3259 }
3260
3261 int av_lockmgr_register(int (*cb)(void **mutex, enum AVLockOp op))
3262 {
3263     if (lockmgr_cb) {
3264         // There is no good way to rollback a failure to destroy the
3265         // mutex, so we ignore failures.
3266         lockmgr_cb(&codec_mutex,    AV_LOCK_DESTROY);
3267         lockmgr_cb(&avformat_mutex, AV_LOCK_DESTROY);
3268         lockmgr_cb     = NULL;
3269         codec_mutex    = NULL;
3270         avformat_mutex = NULL;
3271     }
3272
3273     if (cb) {
3274         void *new_codec_mutex    = NULL;
3275         void *new_avformat_mutex = NULL;
3276         int err;
3277         if (err = cb(&new_codec_mutex, AV_LOCK_CREATE)) {
3278             return err > 0 ? AVERROR_UNKNOWN : err;
3279         }
3280         if (err = cb(&new_avformat_mutex, AV_LOCK_CREATE)) {
3281             // Ignore failures to destroy the newly created mutex.
3282             cb(&new_codec_mutex, AV_LOCK_DESTROY);
3283             return err > 0 ? AVERROR_UNKNOWN : err;
3284         }
3285         lockmgr_cb     = cb;
3286         codec_mutex    = new_codec_mutex;
3287         avformat_mutex = new_avformat_mutex;
3288     }
3289
3290     return 0;
3291 }
3292
3293 int ff_lock_avcodec(AVCodecContext *log_ctx, const AVCodec *codec)
3294 {
3295     if (codec->caps_internal & FF_CODEC_CAP_INIT_THREADSAFE || !codec->init)
3296         return 0;
3297
3298     if (lockmgr_cb) {
3299         if ((*lockmgr_cb)(&codec_mutex, AV_LOCK_OBTAIN))
3300             return -1;
3301     }
3302
3303     if (avpriv_atomic_int_add_and_fetch(&entangled_thread_counter, 1) != 1) {
3304         av_log(log_ctx, AV_LOG_ERROR,
3305                "Insufficient thread locking. At least %d threads are "
3306                "calling avcodec_open2() at the same time right now.\n",
3307                entangled_thread_counter);
3308         if (!lockmgr_cb)
3309             av_log(log_ctx, AV_LOG_ERROR, "No lock manager is set, please see av_lockmgr_register()\n");
3310         ff_avcodec_locked = 1;
3311         ff_unlock_avcodec(codec);
3312         return AVERROR(EINVAL);
3313     }
3314     av_assert0(!ff_avcodec_locked);
3315     ff_avcodec_locked = 1;
3316     return 0;
3317 }
3318
3319 int ff_unlock_avcodec(const AVCodec *codec)
3320 {
3321     if (codec->caps_internal & FF_CODEC_CAP_INIT_THREADSAFE || !codec->init)
3322         return 0;
3323
3324     av_assert0(ff_avcodec_locked);
3325     ff_avcodec_locked = 0;
3326     avpriv_atomic_int_add_and_fetch(&entangled_thread_counter, -1);
3327     if (lockmgr_cb) {
3328         if ((*lockmgr_cb)(&codec_mutex, AV_LOCK_RELEASE))
3329             return -1;
3330     }
3331
3332     return 0;
3333 }
3334
3335 int avpriv_lock_avformat(void)
3336 {
3337     if (lockmgr_cb) {
3338         if ((*lockmgr_cb)(&avformat_mutex, AV_LOCK_OBTAIN))
3339             return -1;
3340     }
3341     return 0;
3342 }
3343
3344 int avpriv_unlock_avformat(void)
3345 {
3346     if (lockmgr_cb) {
3347         if ((*lockmgr_cb)(&avformat_mutex, AV_LOCK_RELEASE))
3348             return -1;
3349     }
3350     return 0;
3351 }
3352
3353 unsigned int avpriv_toupper4(unsigned int x)
3354 {
3355     return av_toupper(x & 0xFF) +
3356           (av_toupper((x >>  8) & 0xFF) << 8)  +
3357           (av_toupper((x >> 16) & 0xFF) << 16) +
3358 ((unsigned)av_toupper((x >> 24) & 0xFF) << 24);
3359 }
3360
3361 int ff_thread_ref_frame(ThreadFrame *dst, ThreadFrame *src)
3362 {
3363     int ret;
3364
3365     dst->owner = src->owner;
3366
3367     ret = av_frame_ref(dst->f, src->f);
3368     if (ret < 0)
3369         return ret;
3370
3371     av_assert0(!dst->progress);
3372
3373     if (src->progress &&
3374         !(dst->progress = av_buffer_ref(src->progress))) {
3375         ff_thread_release_buffer(dst->owner, dst);
3376         return AVERROR(ENOMEM);
3377     }
3378
3379     return 0;
3380 }
3381
3382 #if !HAVE_THREADS
3383
3384 enum AVPixelFormat ff_thread_get_format(AVCodecContext *avctx, const enum AVPixelFormat *fmt)
3385 {
3386     return ff_get_format(avctx, fmt);
3387 }
3388
3389 int ff_thread_get_buffer(AVCodecContext *avctx, ThreadFrame *f, int flags)
3390 {
3391     f->owner = avctx;
3392     return ff_get_buffer(avctx, f->f, flags);
3393 }
3394
3395 void ff_thread_release_buffer(AVCodecContext *avctx, ThreadFrame *f)
3396 {
3397     if (f->f)
3398         av_frame_unref(f->f);
3399 }
3400
3401 void ff_thread_finish_setup(AVCodecContext *avctx)
3402 {
3403 }
3404
3405 void ff_thread_report_progress(ThreadFrame *f, int progress, int field)
3406 {
3407 }
3408
3409 void ff_thread_await_progress(ThreadFrame *f, int progress, int field)
3410 {
3411 }
3412
3413 int ff_thread_can_start_frame(AVCodecContext *avctx)
3414 {
3415     return 1;
3416 }
3417
3418 int ff_alloc_entries(AVCodecContext *avctx, int count)
3419 {
3420     return 0;
3421 }
3422
3423 void ff_reset_entries(AVCodecContext *avctx)
3424 {
3425 }
3426
3427 void ff_thread_await_progress2(AVCodecContext *avctx, int field, int thread, int shift)
3428 {
3429 }
3430
3431 void ff_thread_report_progress2(AVCodecContext *avctx, int field, int thread, int n)
3432 {
3433 }
3434
3435 #endif
3436
3437 int avcodec_is_open(AVCodecContext *s)
3438 {
3439     return !!s->internal;
3440 }
3441
3442 int avpriv_bprint_to_extradata(AVCodecContext *avctx, struct AVBPrint *buf)
3443 {
3444     int ret;
3445     char *str;
3446
3447     ret = av_bprint_finalize(buf, &str);
3448     if (ret < 0)
3449         return ret;
3450     if (!av_bprint_is_complete(buf)) {
3451         av_free(str);
3452         return AVERROR(ENOMEM);
3453     }
3454
3455     avctx->extradata = str;
3456     /* Note: the string is NUL terminated (so extradata can be read as a
3457      * string), but the ending character is not accounted in the size (in
3458      * binary formats you are likely not supposed to mux that character). When
3459      * extradata is copied, it is also padded with AV_INPUT_BUFFER_PADDING_SIZE
3460      * zeros. */
3461     avctx->extradata_size = buf->len;
3462     return 0;
3463 }
3464
3465 const uint8_t *avpriv_find_start_code(const uint8_t *av_restrict p,
3466                                       const uint8_t *end,
3467                                       uint32_t *av_restrict state)
3468 {
3469     int i;
3470
3471     av_assert0(p <= end);
3472     if (p >= end)
3473         return end;
3474
3475     for (i = 0; i < 3; i++) {
3476         uint32_t tmp = *state << 8;
3477         *state = tmp + *(p++);
3478         if (tmp == 0x100 || p == end)
3479             return p;
3480     }
3481
3482     while (p < end) {
3483         if      (p[-1] > 1      ) p += 3;
3484         else if (p[-2]          ) p += 2;
3485         else if (p[-3]|(p[-1]-1)) p++;
3486         else {
3487             p++;
3488             break;
3489         }
3490     }
3491
3492     p = FFMIN(p, end) - 4;
3493     *state = AV_RB32(p);
3494
3495     return p + 4;
3496 }
3497
3498 AVCPBProperties *av_cpb_properties_alloc(size_t *size)
3499 {
3500     AVCPBProperties *props = av_mallocz(sizeof(AVCPBProperties));
3501     if (!props)
3502         return NULL;
3503
3504     if (size)
3505         *size = sizeof(*props);
3506
3507     props->vbv_delay = UINT64_MAX;
3508
3509     return props;
3510 }
3511
3512 AVCPBProperties *ff_add_cpb_side_data(AVCodecContext *avctx)
3513 {
3514     AVPacketSideData *tmp;
3515     AVCPBProperties  *props;
3516     size_t size;
3517
3518     props = av_cpb_properties_alloc(&size);
3519     if (!props)
3520         return NULL;
3521
3522     tmp = av_realloc_array(avctx->coded_side_data, avctx->nb_coded_side_data + 1, sizeof(*tmp));
3523     if (!tmp) {
3524         av_freep(&props);
3525         return NULL;
3526     }
3527
3528     avctx->coded_side_data = tmp;
3529     avctx->nb_coded_side_data++;
3530
3531     avctx->coded_side_data[avctx->nb_coded_side_data - 1].type = AV_PKT_DATA_CPB_PROPERTIES;
3532     avctx->coded_side_data[avctx->nb_coded_side_data - 1].data = (uint8_t*)props;
3533     avctx->coded_side_data[avctx->nb_coded_side_data - 1].size = size;
3534
3535     return props;
3536 }