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