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