]> git.sesse.net Git - ffmpeg/blob - libavcodec/utils.c
Merge commit 'f187557ab4612776f7f527ecf3d40062975c3e4c'
[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;
2016     const uint8_t *side_metadata;
2017
2018     AVDictionary **frame_md = avpriv_frame_get_metadatap(frame);
2019
2020     side_metadata = av_packet_get_side_data(avctx->internal->pkt,
2021                                             AV_PKT_DATA_STRINGS_METADATA, &size);
2022     return av_packet_unpack_dictionary(side_metadata, size, frame_md);
2023 }
2024
2025 int attribute_align_arg avcodec_decode_video2(AVCodecContext *avctx, AVFrame *picture,
2026                                               int *got_picture_ptr,
2027                                               const AVPacket *avpkt)
2028 {
2029     AVCodecInternal *avci = avctx->internal;
2030     int ret;
2031     // copy to ensure we do not change avpkt
2032     AVPacket tmp = *avpkt;
2033
2034     if (!avctx->codec)
2035         return AVERROR(EINVAL);
2036     if (avctx->codec->type != AVMEDIA_TYPE_VIDEO) {
2037         av_log(avctx, AV_LOG_ERROR, "Invalid media type for video\n");
2038         return AVERROR(EINVAL);
2039     }
2040
2041     *got_picture_ptr = 0;
2042     if ((avctx->coded_width || avctx->coded_height) && av_image_check_size(avctx->coded_width, avctx->coded_height, 0, avctx))
2043         return AVERROR(EINVAL);
2044
2045     avcodec_get_frame_defaults(picture);
2046
2047     if (!avctx->refcounted_frames)
2048         av_frame_unref(&avci->to_free);
2049
2050     if ((avctx->codec->capabilities & CODEC_CAP_DELAY) || avpkt->size || (avctx->active_thread_type & FF_THREAD_FRAME)) {
2051         int did_split = av_packet_split_side_data(&tmp);
2052         ret = apply_param_change(avctx, &tmp);
2053         if (ret < 0) {
2054             av_log(avctx, AV_LOG_ERROR, "Error applying parameter changes.\n");
2055             if (avctx->err_recognition & AV_EF_EXPLODE)
2056                 goto fail;
2057         }
2058
2059         avctx->internal->pkt = &tmp;
2060         if (HAVE_THREADS && avctx->active_thread_type & FF_THREAD_FRAME)
2061             ret = ff_thread_decode_frame(avctx, picture, got_picture_ptr,
2062                                          &tmp);
2063         else {
2064             ret = avctx->codec->decode(avctx, picture, got_picture_ptr,
2065                                        &tmp);
2066             picture->pkt_dts = avpkt->dts;
2067
2068             if(!avctx->has_b_frames){
2069                 av_frame_set_pkt_pos(picture, avpkt->pos);
2070             }
2071             //FIXME these should be under if(!avctx->has_b_frames)
2072             /* get_buffer is supposed to set frame parameters */
2073             if (!(avctx->codec->capabilities & CODEC_CAP_DR1)) {
2074                 if (!picture->sample_aspect_ratio.num)    picture->sample_aspect_ratio = avctx->sample_aspect_ratio;
2075                 if (!picture->width)                      picture->width               = avctx->width;
2076                 if (!picture->height)                     picture->height              = avctx->height;
2077                 if (picture->format == AV_PIX_FMT_NONE)   picture->format              = avctx->pix_fmt;
2078             }
2079         }
2080         add_metadata_from_side_data(avctx, picture);
2081
2082 fail:
2083         emms_c(); //needed to avoid an emms_c() call before every return;
2084
2085         avctx->internal->pkt = NULL;
2086         if (did_split) {
2087             av_packet_free_side_data(&tmp);
2088             if(ret == tmp.size)
2089                 ret = avpkt->size;
2090         }
2091
2092         if (ret < 0 && picture->data[0])
2093             av_frame_unref(picture);
2094
2095         if (*got_picture_ptr) {
2096             if (!avctx->refcounted_frames) {
2097                 avci->to_free = *picture;
2098                 avci->to_free.extended_data = avci->to_free.data;
2099                 memset(picture->buf, 0, sizeof(picture->buf));
2100             }
2101
2102             avctx->frame_number++;
2103             av_frame_set_best_effort_timestamp(picture,
2104                                                guess_correct_pts(avctx,
2105                                                                  picture->pkt_pts,
2106                                                                  picture->pkt_dts));
2107         }
2108     } else
2109         ret = 0;
2110
2111     /* many decoders assign whole AVFrames, thus overwriting extended_data;
2112      * make sure it's set correctly */
2113     picture->extended_data = picture->data;
2114
2115     return ret;
2116 }
2117
2118 #if FF_API_OLD_DECODE_AUDIO
2119 int attribute_align_arg avcodec_decode_audio3(AVCodecContext *avctx, int16_t *samples,
2120                                               int *frame_size_ptr,
2121                                               AVPacket *avpkt)
2122 {
2123     AVFrame frame = { { 0 } };
2124     int ret, got_frame = 0;
2125
2126     if (avctx->get_buffer != avcodec_default_get_buffer) {
2127         av_log(avctx, AV_LOG_ERROR, "Custom get_buffer() for use with"
2128                                     "avcodec_decode_audio3() detected. Overriding with avcodec_default_get_buffer\n");
2129         av_log(avctx, AV_LOG_ERROR, "Please port your application to "
2130                                     "avcodec_decode_audio4()\n");
2131         avctx->get_buffer = avcodec_default_get_buffer;
2132         avctx->release_buffer = avcodec_default_release_buffer;
2133     }
2134
2135     ret = avcodec_decode_audio4(avctx, &frame, &got_frame, avpkt);
2136
2137     if (ret >= 0 && got_frame) {
2138         int ch, plane_size;
2139         int planar    = av_sample_fmt_is_planar(avctx->sample_fmt);
2140         int data_size = av_samples_get_buffer_size(&plane_size, avctx->channels,
2141                                                    frame.nb_samples,
2142                                                    avctx->sample_fmt, 1);
2143         if (*frame_size_ptr < data_size) {
2144             av_log(avctx, AV_LOG_ERROR, "output buffer size is too small for "
2145                                         "the current frame (%d < %d)\n", *frame_size_ptr, data_size);
2146             return AVERROR(EINVAL);
2147         }
2148
2149         memcpy(samples, frame.extended_data[0], plane_size);
2150
2151         if (planar && avctx->channels > 1) {
2152             uint8_t *out = ((uint8_t *)samples) + plane_size;
2153             for (ch = 1; ch < avctx->channels; ch++) {
2154                 memcpy(out, frame.extended_data[ch], plane_size);
2155                 out += plane_size;
2156             }
2157         }
2158         *frame_size_ptr = data_size;
2159     } else {
2160         *frame_size_ptr = 0;
2161     }
2162     return ret;
2163 }
2164
2165 #endif
2166
2167 int attribute_align_arg avcodec_decode_audio4(AVCodecContext *avctx,
2168                                               AVFrame *frame,
2169                                               int *got_frame_ptr,
2170                                               const AVPacket *avpkt)
2171 {
2172     AVCodecInternal *avci = avctx->internal;
2173     int planar, channels;
2174     int ret = 0;
2175
2176     *got_frame_ptr = 0;
2177
2178     if (!avpkt->data && avpkt->size) {
2179         av_log(avctx, AV_LOG_ERROR, "invalid packet: NULL data, size != 0\n");
2180         return AVERROR(EINVAL);
2181     }
2182     if (!avctx->codec)
2183         return AVERROR(EINVAL);
2184     if (avctx->codec->type != AVMEDIA_TYPE_AUDIO) {
2185         av_log(avctx, AV_LOG_ERROR, "Invalid media type for audio\n");
2186         return AVERROR(EINVAL);
2187     }
2188
2189     avcodec_get_frame_defaults(frame);
2190
2191     if (!avctx->refcounted_frames)
2192         av_frame_unref(&avci->to_free);
2193
2194     if ((avctx->codec->capabilities & CODEC_CAP_DELAY) || avpkt->size || (avctx->active_thread_type & FF_THREAD_FRAME)) {
2195         uint8_t *side;
2196         int side_size;
2197         uint32_t discard_padding = 0;
2198         // copy to ensure we do not change avpkt
2199         AVPacket tmp = *avpkt;
2200         int did_split = av_packet_split_side_data(&tmp);
2201         ret = apply_param_change(avctx, &tmp);
2202         if (ret < 0) {
2203             av_log(avctx, AV_LOG_ERROR, "Error applying parameter changes.\n");
2204             if (avctx->err_recognition & AV_EF_EXPLODE)
2205                 goto fail;
2206         }
2207
2208         avctx->internal->pkt = &tmp;
2209         if (HAVE_THREADS && avctx->active_thread_type & FF_THREAD_FRAME)
2210             ret = ff_thread_decode_frame(avctx, frame, got_frame_ptr, &tmp);
2211         else {
2212             ret = avctx->codec->decode(avctx, frame, got_frame_ptr, &tmp);
2213             frame->pkt_dts = avpkt->dts;
2214         }
2215         if (ret >= 0 && *got_frame_ptr) {
2216             add_metadata_from_side_data(avctx, frame);
2217             avctx->frame_number++;
2218             av_frame_set_best_effort_timestamp(frame,
2219                                                guess_correct_pts(avctx,
2220                                                                  frame->pkt_pts,
2221                                                                  frame->pkt_dts));
2222             if (frame->format == AV_SAMPLE_FMT_NONE)
2223                 frame->format = avctx->sample_fmt;
2224             if (!frame->channel_layout)
2225                 frame->channel_layout = avctx->channel_layout;
2226             if (!av_frame_get_channels(frame))
2227                 av_frame_set_channels(frame, avctx->channels);
2228             if (!frame->sample_rate)
2229                 frame->sample_rate = avctx->sample_rate;
2230         }
2231
2232         side= av_packet_get_side_data(avctx->internal->pkt, AV_PKT_DATA_SKIP_SAMPLES, &side_size);
2233         if(side && side_size>=10) {
2234             avctx->internal->skip_samples = AV_RL32(side);
2235             av_log(avctx, AV_LOG_DEBUG, "skip %d samples due to side data\n",
2236                    avctx->internal->skip_samples);
2237             discard_padding = AV_RL32(side + 4);
2238         }
2239         if (avctx->internal->skip_samples && *got_frame_ptr) {
2240             if(frame->nb_samples <= avctx->internal->skip_samples){
2241                 *got_frame_ptr = 0;
2242                 avctx->internal->skip_samples -= frame->nb_samples;
2243                 av_log(avctx, AV_LOG_DEBUG, "skip whole frame, skip left: %d\n",
2244                        avctx->internal->skip_samples);
2245             } else {
2246                 av_samples_copy(frame->extended_data, frame->extended_data, 0, avctx->internal->skip_samples,
2247                                 frame->nb_samples - avctx->internal->skip_samples, avctx->channels, frame->format);
2248                 if(avctx->pkt_timebase.num && avctx->sample_rate) {
2249                     int64_t diff_ts = av_rescale_q(avctx->internal->skip_samples,
2250                                                    (AVRational){1, avctx->sample_rate},
2251                                                    avctx->pkt_timebase);
2252                     if(frame->pkt_pts!=AV_NOPTS_VALUE)
2253                         frame->pkt_pts += diff_ts;
2254                     if(frame->pkt_dts!=AV_NOPTS_VALUE)
2255                         frame->pkt_dts += diff_ts;
2256                     if (av_frame_get_pkt_duration(frame) >= diff_ts)
2257                         av_frame_set_pkt_duration(frame, av_frame_get_pkt_duration(frame) - diff_ts);
2258                 } else {
2259                     av_log(avctx, AV_LOG_WARNING, "Could not update timestamps for skipped samples.\n");
2260                 }
2261                 av_log(avctx, AV_LOG_DEBUG, "skip %d/%d samples\n",
2262                        avctx->internal->skip_samples, frame->nb_samples);
2263                 frame->nb_samples -= avctx->internal->skip_samples;
2264                 avctx->internal->skip_samples = 0;
2265             }
2266         }
2267
2268         if (discard_padding > 0 && discard_padding <= frame->nb_samples && *got_frame_ptr) {
2269             if (discard_padding == frame->nb_samples) {
2270                 *got_frame_ptr = 0;
2271             } else {
2272                 if(avctx->pkt_timebase.num && avctx->sample_rate) {
2273                     int64_t diff_ts = av_rescale_q(frame->nb_samples - discard_padding,
2274                                                    (AVRational){1, avctx->sample_rate},
2275                                                    avctx->pkt_timebase);
2276                     if (av_frame_get_pkt_duration(frame) >= diff_ts)
2277                         av_frame_set_pkt_duration(frame, av_frame_get_pkt_duration(frame) - diff_ts);
2278                 } else {
2279                     av_log(avctx, AV_LOG_WARNING, "Could not update timestamps for discarded samples.\n");
2280                 }
2281                 av_log(avctx, AV_LOG_DEBUG, "discard %d/%d samples\n",
2282                        discard_padding, frame->nb_samples);
2283                 frame->nb_samples -= discard_padding;
2284             }
2285         }
2286 fail:
2287         avctx->internal->pkt = NULL;
2288         if (did_split) {
2289             av_packet_free_side_data(&tmp);
2290             if(ret == tmp.size)
2291                 ret = avpkt->size;
2292         }
2293
2294         if (ret >= 0 && *got_frame_ptr) {
2295             if (!avctx->refcounted_frames) {
2296                 avci->to_free = *frame;
2297                 avci->to_free.extended_data = avci->to_free.data;
2298                 memset(frame->buf, 0, sizeof(frame->buf));
2299                 frame->extended_buf    = NULL;
2300                 frame->nb_extended_buf = 0;
2301             }
2302         } else if (frame->data[0])
2303             av_frame_unref(frame);
2304     }
2305
2306     /* many decoders assign whole AVFrames, thus overwriting extended_data;
2307      * make sure it's set correctly; assume decoders that actually use
2308      * extended_data are doing it correctly */
2309     if (*got_frame_ptr) {
2310         planar   = av_sample_fmt_is_planar(frame->format);
2311         channels = av_frame_get_channels(frame);
2312         if (!(planar && channels > AV_NUM_DATA_POINTERS))
2313             frame->extended_data = frame->data;
2314     } else {
2315         frame->extended_data = NULL;
2316     }
2317
2318     return ret;
2319 }
2320
2321 #define UTF8_MAX_BYTES 4 /* 5 and 6 bytes sequences should not be used */
2322 static int recode_subtitle(AVCodecContext *avctx,
2323                            AVPacket *outpkt, const AVPacket *inpkt)
2324 {
2325 #if CONFIG_ICONV
2326     iconv_t cd = (iconv_t)-1;
2327     int ret = 0;
2328     char *inb, *outb;
2329     size_t inl, outl;
2330     AVPacket tmp;
2331 #endif
2332
2333     if (avctx->sub_charenc_mode != FF_SUB_CHARENC_MODE_PRE_DECODER || inpkt->size == 0)
2334         return 0;
2335
2336 #if CONFIG_ICONV
2337     cd = iconv_open("UTF-8", avctx->sub_charenc);
2338     av_assert0(cd != (iconv_t)-1);
2339
2340     inb = inpkt->data;
2341     inl = inpkt->size;
2342
2343     if (inl >= INT_MAX / UTF8_MAX_BYTES - FF_INPUT_BUFFER_PADDING_SIZE) {
2344         av_log(avctx, AV_LOG_ERROR, "Subtitles packet is too big for recoding\n");
2345         ret = AVERROR(ENOMEM);
2346         goto end;
2347     }
2348
2349     ret = av_new_packet(&tmp, inl * UTF8_MAX_BYTES);
2350     if (ret < 0)
2351         goto end;
2352     outpkt->buf  = tmp.buf;
2353     outpkt->data = tmp.data;
2354     outpkt->size = tmp.size;
2355     outb = outpkt->data;
2356     outl = outpkt->size;
2357
2358     if (iconv(cd, &inb, &inl, &outb, &outl) == (size_t)-1 ||
2359         iconv(cd, NULL, NULL, &outb, &outl) == (size_t)-1 ||
2360         outl >= outpkt->size || inl != 0) {
2361         av_log(avctx, AV_LOG_ERROR, "Unable to recode subtitle event \"%s\" "
2362                "from %s to UTF-8\n", inpkt->data, avctx->sub_charenc);
2363         av_free_packet(&tmp);
2364         ret = AVERROR(errno);
2365         goto end;
2366     }
2367     outpkt->size -= outl;
2368     memset(outpkt->data + outpkt->size, 0, outl);
2369
2370 end:
2371     if (cd != (iconv_t)-1)
2372         iconv_close(cd);
2373     return ret;
2374 #else
2375     av_assert0(!"requesting subtitles recoding without iconv");
2376 #endif
2377 }
2378
2379 static int utf8_check(const uint8_t *str)
2380 {
2381     const uint8_t *byte;
2382     uint32_t codepoint, min;
2383
2384     while (*str) {
2385         byte = str;
2386         GET_UTF8(codepoint, *(byte++), return 0;);
2387         min = byte - str == 1 ? 0 : byte - str == 2 ? 0x80 :
2388               1 << (5 * (byte - str) - 4);
2389         if (codepoint < min || codepoint >= 0x110000 ||
2390             codepoint == 0xFFFE /* BOM */ ||
2391             codepoint >= 0xD800 && codepoint <= 0xDFFF /* surrogates */)
2392             return 0;
2393         str = byte;
2394     }
2395     return 1;
2396 }
2397
2398 int avcodec_decode_subtitle2(AVCodecContext *avctx, AVSubtitle *sub,
2399                              int *got_sub_ptr,
2400                              AVPacket *avpkt)
2401 {
2402     int i, ret = 0;
2403
2404     if (!avpkt->data && avpkt->size) {
2405         av_log(avctx, AV_LOG_ERROR, "invalid packet: NULL data, size != 0\n");
2406         return AVERROR(EINVAL);
2407     }
2408     if (!avctx->codec)
2409         return AVERROR(EINVAL);
2410     if (avctx->codec->type != AVMEDIA_TYPE_SUBTITLE) {
2411         av_log(avctx, AV_LOG_ERROR, "Invalid media type for subtitles\n");
2412         return AVERROR(EINVAL);
2413     }
2414
2415     *got_sub_ptr = 0;
2416     avcodec_get_subtitle_defaults(sub);
2417
2418     if ((avctx->codec->capabilities & CODEC_CAP_DELAY) || avpkt->size) {
2419         AVPacket pkt_recoded;
2420         AVPacket tmp = *avpkt;
2421         int did_split = av_packet_split_side_data(&tmp);
2422         //apply_param_change(avctx, &tmp);
2423
2424         if (did_split) {
2425             /* FFMIN() prevents overflow in case the packet wasn't allocated with
2426              * proper padding.
2427              * If the side data is smaller than the buffer padding size, the
2428              * remaining bytes should have already been filled with zeros by the
2429              * original packet allocation anyway. */
2430             memset(tmp.data + tmp.size, 0,
2431                    FFMIN(avpkt->size - tmp.size, FF_INPUT_BUFFER_PADDING_SIZE));
2432         }
2433
2434         pkt_recoded = tmp;
2435         ret = recode_subtitle(avctx, &pkt_recoded, &tmp);
2436         if (ret < 0) {
2437             *got_sub_ptr = 0;
2438         } else {
2439             avctx->internal->pkt = &pkt_recoded;
2440
2441             if (avctx->pkt_timebase.den && avpkt->pts != AV_NOPTS_VALUE)
2442                 sub->pts = av_rescale_q(avpkt->pts,
2443                                         avctx->pkt_timebase, AV_TIME_BASE_Q);
2444             ret = avctx->codec->decode(avctx, sub, got_sub_ptr, &pkt_recoded);
2445             av_assert1((ret >= 0) >= !!*got_sub_ptr &&
2446                        !!*got_sub_ptr >= !!sub->num_rects);
2447
2448             if (sub->num_rects && !sub->end_display_time && avpkt->duration &&
2449                 avctx->pkt_timebase.num) {
2450                 AVRational ms = { 1, 1000 };
2451                 sub->end_display_time = av_rescale_q(avpkt->duration,
2452                                                      avctx->pkt_timebase, ms);
2453             }
2454
2455             for (i = 0; i < sub->num_rects; i++) {
2456                 if (sub->rects[i]->ass && !utf8_check(sub->rects[i]->ass)) {
2457                     av_log(avctx, AV_LOG_ERROR,
2458                            "Invalid UTF-8 in decoded subtitles text; "
2459                            "maybe missing -sub_charenc option\n");
2460                     avsubtitle_free(sub);
2461                     return AVERROR_INVALIDDATA;
2462                 }
2463             }
2464
2465             if (tmp.data != pkt_recoded.data) { // did we recode?
2466                 /* prevent from destroying side data from original packet */
2467                 pkt_recoded.side_data = NULL;
2468                 pkt_recoded.side_data_elems = 0;
2469
2470                 av_free_packet(&pkt_recoded);
2471             }
2472             if (avctx->codec_descriptor->props & AV_CODEC_PROP_BITMAP_SUB)
2473                 sub->format = 0;
2474             else if (avctx->codec_descriptor->props & AV_CODEC_PROP_TEXT_SUB)
2475                 sub->format = 1;
2476             avctx->internal->pkt = NULL;
2477         }
2478
2479         if (did_split) {
2480             av_packet_free_side_data(&tmp);
2481             if(ret == tmp.size)
2482                 ret = avpkt->size;
2483         }
2484
2485         if (*got_sub_ptr)
2486             avctx->frame_number++;
2487     }
2488
2489     return ret;
2490 }
2491
2492 void avsubtitle_free(AVSubtitle *sub)
2493 {
2494     int i;
2495
2496     for (i = 0; i < sub->num_rects; i++) {
2497         av_freep(&sub->rects[i]->pict.data[0]);
2498         av_freep(&sub->rects[i]->pict.data[1]);
2499         av_freep(&sub->rects[i]->pict.data[2]);
2500         av_freep(&sub->rects[i]->pict.data[3]);
2501         av_freep(&sub->rects[i]->text);
2502         av_freep(&sub->rects[i]->ass);
2503         av_freep(&sub->rects[i]);
2504     }
2505
2506     av_freep(&sub->rects);
2507
2508     memset(sub, 0, sizeof(AVSubtitle));
2509 }
2510
2511 av_cold int ff_codec_close_recursive(AVCodecContext *avctx)
2512 {
2513     int ret = 0;
2514
2515     ff_unlock_avcodec();
2516
2517     ret = avcodec_close(avctx);
2518
2519     ff_lock_avcodec(NULL);
2520     return ret;
2521 }
2522
2523 av_cold int avcodec_close(AVCodecContext *avctx)
2524 {
2525     int ret;
2526
2527     if (!avctx)
2528         return 0;
2529
2530     ret = ff_lock_avcodec(avctx);
2531     if (ret < 0)
2532         return ret;
2533
2534     if (avcodec_is_open(avctx)) {
2535         FramePool *pool = avctx->internal->pool;
2536         int i;
2537         if (CONFIG_FRAME_THREAD_ENCODER &&
2538             avctx->internal->frame_thread_encoder && avctx->thread_count > 1) {
2539             ff_unlock_avcodec();
2540             ff_frame_thread_encoder_free(avctx);
2541             ff_lock_avcodec(avctx);
2542         }
2543         if (HAVE_THREADS && avctx->internal->thread_ctx)
2544             ff_thread_free(avctx);
2545         if (avctx->codec && avctx->codec->close)
2546             avctx->codec->close(avctx);
2547         avctx->coded_frame = NULL;
2548         avctx->internal->byte_buffer_size = 0;
2549         av_freep(&avctx->internal->byte_buffer);
2550         if (!avctx->refcounted_frames)
2551             av_frame_unref(&avctx->internal->to_free);
2552         for (i = 0; i < FF_ARRAY_ELEMS(pool->pools); i++)
2553             av_buffer_pool_uninit(&pool->pools[i]);
2554         av_freep(&avctx->internal->pool);
2555         av_freep(&avctx->internal);
2556     }
2557
2558     if (avctx->priv_data && avctx->codec && avctx->codec->priv_class)
2559         av_opt_free(avctx->priv_data);
2560     av_opt_free(avctx);
2561     av_freep(&avctx->priv_data);
2562     if (av_codec_is_encoder(avctx->codec))
2563         av_freep(&avctx->extradata);
2564     avctx->codec = NULL;
2565     avctx->active_thread_type = 0;
2566
2567     ff_unlock_avcodec();
2568     return 0;
2569 }
2570
2571 static enum AVCodecID remap_deprecated_codec_id(enum AVCodecID id)
2572 {
2573     switch(id){
2574         //This is for future deprecatec codec ids, its empty since
2575         //last major bump but will fill up again over time, please don't remove it
2576 //         case AV_CODEC_ID_UTVIDEO_DEPRECATED: return AV_CODEC_ID_UTVIDEO;
2577         case AV_CODEC_ID_OPUS_DEPRECATED: return AV_CODEC_ID_OPUS;
2578         case AV_CODEC_ID_TAK_DEPRECATED : return AV_CODEC_ID_TAK;
2579         case AV_CODEC_ID_PCM_S24LE_PLANAR_DEPRECATED : return AV_CODEC_ID_PCM_S24LE_PLANAR;
2580         case AV_CODEC_ID_PCM_S32LE_PLANAR_DEPRECATED : return AV_CODEC_ID_PCM_S32LE_PLANAR;
2581         case AV_CODEC_ID_ESCAPE130_DEPRECATED : return AV_CODEC_ID_ESCAPE130;
2582         case AV_CODEC_ID_G2M_DEPRECATED : return AV_CODEC_ID_G2M;
2583         case AV_CODEC_ID_WEBP_DEPRECATED: return AV_CODEC_ID_WEBP;
2584         case AV_CODEC_ID_HEVC_DEPRECATED: return AV_CODEC_ID_HEVC;
2585         default                         : return id;
2586     }
2587 }
2588
2589 static AVCodec *find_encdec(enum AVCodecID id, int encoder)
2590 {
2591     AVCodec *p, *experimental = NULL;
2592     p = first_avcodec;
2593     id= remap_deprecated_codec_id(id);
2594     while (p) {
2595         if ((encoder ? av_codec_is_encoder(p) : av_codec_is_decoder(p)) &&
2596             p->id == id) {
2597             if (p->capabilities & CODEC_CAP_EXPERIMENTAL && !experimental) {
2598                 experimental = p;
2599             } else
2600                 return p;
2601         }
2602         p = p->next;
2603     }
2604     return experimental;
2605 }
2606
2607 AVCodec *avcodec_find_encoder(enum AVCodecID id)
2608 {
2609     return find_encdec(id, 1);
2610 }
2611
2612 AVCodec *avcodec_find_encoder_by_name(const char *name)
2613 {
2614     AVCodec *p;
2615     if (!name)
2616         return NULL;
2617     p = first_avcodec;
2618     while (p) {
2619         if (av_codec_is_encoder(p) && strcmp(name, p->name) == 0)
2620             return p;
2621         p = p->next;
2622     }
2623     return NULL;
2624 }
2625
2626 AVCodec *avcodec_find_decoder(enum AVCodecID id)
2627 {
2628     return find_encdec(id, 0);
2629 }
2630
2631 AVCodec *avcodec_find_decoder_by_name(const char *name)
2632 {
2633     AVCodec *p;
2634     if (!name)
2635         return NULL;
2636     p = first_avcodec;
2637     while (p) {
2638         if (av_codec_is_decoder(p) && strcmp(name, p->name) == 0)
2639             return p;
2640         p = p->next;
2641     }
2642     return NULL;
2643 }
2644
2645 const char *avcodec_get_name(enum AVCodecID id)
2646 {
2647     const AVCodecDescriptor *cd;
2648     AVCodec *codec;
2649
2650     if (id == AV_CODEC_ID_NONE)
2651         return "none";
2652     cd = avcodec_descriptor_get(id);
2653     if (cd)
2654         return cd->name;
2655     av_log(NULL, AV_LOG_WARNING, "Codec 0x%x is not in the full list.\n", id);
2656     codec = avcodec_find_decoder(id);
2657     if (codec)
2658         return codec->name;
2659     codec = avcodec_find_encoder(id);
2660     if (codec)
2661         return codec->name;
2662     return "unknown_codec";
2663 }
2664
2665 size_t av_get_codec_tag_string(char *buf, size_t buf_size, unsigned int codec_tag)
2666 {
2667     int i, len, ret = 0;
2668
2669 #define TAG_PRINT(x)                                              \
2670     (((x) >= '0' && (x) <= '9') ||                                \
2671      ((x) >= 'a' && (x) <= 'z') || ((x) >= 'A' && (x) <= 'Z') ||  \
2672      ((x) == '.' || (x) == ' ' || (x) == '-' || (x) == '_'))
2673
2674     for (i = 0; i < 4; i++) {
2675         len = snprintf(buf, buf_size,
2676                        TAG_PRINT(codec_tag & 0xFF) ? "%c" : "[%d]", codec_tag & 0xFF);
2677         buf        += len;
2678         buf_size    = buf_size > len ? buf_size - len : 0;
2679         ret        += len;
2680         codec_tag >>= 8;
2681     }
2682     return ret;
2683 }
2684
2685 void avcodec_string(char *buf, int buf_size, AVCodecContext *enc, int encode)
2686 {
2687     const char *codec_type;
2688     const char *codec_name;
2689     const char *profile = NULL;
2690     const AVCodec *p;
2691     int bitrate;
2692     AVRational display_aspect_ratio;
2693
2694     if (!buf || buf_size <= 0)
2695         return;
2696     codec_type = av_get_media_type_string(enc->codec_type);
2697     codec_name = avcodec_get_name(enc->codec_id);
2698     if (enc->profile != FF_PROFILE_UNKNOWN) {
2699         if (enc->codec)
2700             p = enc->codec;
2701         else
2702             p = encode ? avcodec_find_encoder(enc->codec_id) :
2703                         avcodec_find_decoder(enc->codec_id);
2704         if (p)
2705             profile = av_get_profile_name(p, enc->profile);
2706     }
2707
2708     snprintf(buf, buf_size, "%s: %s", codec_type ? codec_type : "unknown",
2709              codec_name);
2710     buf[0] ^= 'a' ^ 'A'; /* first letter in uppercase */
2711
2712     if (enc->codec && strcmp(enc->codec->name, codec_name))
2713         snprintf(buf + strlen(buf), buf_size - strlen(buf), " (%s)", enc->codec->name);
2714
2715     if (profile)
2716         snprintf(buf + strlen(buf), buf_size - strlen(buf), " (%s)", profile);
2717     if (enc->codec_tag) {
2718         char tag_buf[32];
2719         av_get_codec_tag_string(tag_buf, sizeof(tag_buf), enc->codec_tag);
2720         snprintf(buf + strlen(buf), buf_size - strlen(buf),
2721                  " (%s / 0x%04X)", tag_buf, enc->codec_tag);
2722     }
2723
2724     switch (enc->codec_type) {
2725     case AVMEDIA_TYPE_VIDEO:
2726         if (enc->pix_fmt != AV_PIX_FMT_NONE) {
2727             char detail[256] = "(";
2728             const char *colorspace_name;
2729             snprintf(buf + strlen(buf), buf_size - strlen(buf),
2730                      ", %s",
2731                      av_get_pix_fmt_name(enc->pix_fmt));
2732             if (enc->bits_per_raw_sample &&
2733                 enc->bits_per_raw_sample <= av_pix_fmt_desc_get(enc->pix_fmt)->comp[0].depth_minus1)
2734                 av_strlcatf(detail, sizeof(detail), "%d bpc, ", enc->bits_per_raw_sample);
2735             if (enc->color_range != AVCOL_RANGE_UNSPECIFIED)
2736                 av_strlcatf(detail, sizeof(detail),
2737                             enc->color_range == AVCOL_RANGE_MPEG ? "tv, ": "pc, ");
2738
2739             colorspace_name = av_get_colorspace_name(enc->colorspace);
2740             if (colorspace_name)
2741                 av_strlcatf(detail, sizeof(detail), "%s, ", colorspace_name);
2742
2743             if (strlen(detail) > 1) {
2744                 detail[strlen(detail) - 2] = 0;
2745                 av_strlcatf(buf, buf_size, "%s)", detail);
2746             }
2747         }
2748         if (enc->width) {
2749             snprintf(buf + strlen(buf), buf_size - strlen(buf),
2750                      ", %dx%d",
2751                      enc->width, enc->height);
2752             if (enc->sample_aspect_ratio.num) {
2753                 av_reduce(&display_aspect_ratio.num, &display_aspect_ratio.den,
2754                           enc->width * enc->sample_aspect_ratio.num,
2755                           enc->height * enc->sample_aspect_ratio.den,
2756                           1024 * 1024);
2757                 snprintf(buf + strlen(buf), buf_size - strlen(buf),
2758                          " [SAR %d:%d DAR %d:%d]",
2759                          enc->sample_aspect_ratio.num, enc->sample_aspect_ratio.den,
2760                          display_aspect_ratio.num, display_aspect_ratio.den);
2761             }
2762             if (av_log_get_level() >= AV_LOG_DEBUG) {
2763                 int g = av_gcd(enc->time_base.num, enc->time_base.den);
2764                 snprintf(buf + strlen(buf), buf_size - strlen(buf),
2765                          ", %d/%d",
2766                          enc->time_base.num / g, enc->time_base.den / g);
2767             }
2768         }
2769         if (encode) {
2770             snprintf(buf + strlen(buf), buf_size - strlen(buf),
2771                      ", q=%d-%d", enc->qmin, enc->qmax);
2772         }
2773         break;
2774     case AVMEDIA_TYPE_AUDIO:
2775         if (enc->sample_rate) {
2776             snprintf(buf + strlen(buf), buf_size - strlen(buf),
2777                      ", %d Hz", enc->sample_rate);
2778         }
2779         av_strlcat(buf, ", ", buf_size);
2780         av_get_channel_layout_string(buf + strlen(buf), buf_size - strlen(buf), enc->channels, enc->channel_layout);
2781         if (enc->sample_fmt != AV_SAMPLE_FMT_NONE) {
2782             snprintf(buf + strlen(buf), buf_size - strlen(buf),
2783                      ", %s", av_get_sample_fmt_name(enc->sample_fmt));
2784         }
2785         break;
2786     case AVMEDIA_TYPE_DATA:
2787         if (av_log_get_level() >= AV_LOG_DEBUG) {
2788             int g = av_gcd(enc->time_base.num, enc->time_base.den);
2789             if (g)
2790                 snprintf(buf + strlen(buf), buf_size - strlen(buf),
2791                          ", %d/%d",
2792                          enc->time_base.num / g, enc->time_base.den / g);
2793         }
2794         break;
2795     case AVMEDIA_TYPE_SUBTITLE:
2796         if (enc->width)
2797             snprintf(buf + strlen(buf), buf_size - strlen(buf),
2798                      ", %dx%d", enc->width, enc->height);
2799         break;
2800     default:
2801         return;
2802     }
2803     if (encode) {
2804         if (enc->flags & CODEC_FLAG_PASS1)
2805             snprintf(buf + strlen(buf), buf_size - strlen(buf),
2806                      ", pass 1");
2807         if (enc->flags & CODEC_FLAG_PASS2)
2808             snprintf(buf + strlen(buf), buf_size - strlen(buf),
2809                      ", pass 2");
2810     }
2811     bitrate = get_bit_rate(enc);
2812     if (bitrate != 0) {
2813         snprintf(buf + strlen(buf), buf_size - strlen(buf),
2814                  ", %d kb/s", bitrate / 1000);
2815     } else if (enc->rc_max_rate > 0) {
2816         snprintf(buf + strlen(buf), buf_size - strlen(buf),
2817                  ", max. %d kb/s", enc->rc_max_rate / 1000);
2818     }
2819 }
2820
2821 const char *av_get_profile_name(const AVCodec *codec, int profile)
2822 {
2823     const AVProfile *p;
2824     if (profile == FF_PROFILE_UNKNOWN || !codec->profiles)
2825         return NULL;
2826
2827     for (p = codec->profiles; p->profile != FF_PROFILE_UNKNOWN; p++)
2828         if (p->profile == profile)
2829             return p->name;
2830
2831     return NULL;
2832 }
2833
2834 unsigned avcodec_version(void)
2835 {
2836 //    av_assert0(AV_CODEC_ID_V410==164);
2837     av_assert0(AV_CODEC_ID_PCM_S8_PLANAR==65563);
2838     av_assert0(AV_CODEC_ID_ADPCM_G722==69660);
2839 //     av_assert0(AV_CODEC_ID_BMV_AUDIO==86071);
2840     av_assert0(AV_CODEC_ID_SRT==94216);
2841     av_assert0(LIBAVCODEC_VERSION_MICRO >= 100);
2842
2843     av_assert0(CODEC_ID_CLLC == AV_CODEC_ID_CLLC);
2844     av_assert0(CODEC_ID_PCM_S8_PLANAR == AV_CODEC_ID_PCM_S8_PLANAR);
2845     av_assert0(CODEC_ID_ADPCM_IMA_APC == AV_CODEC_ID_ADPCM_IMA_APC);
2846     av_assert0(CODEC_ID_ILBC == AV_CODEC_ID_ILBC);
2847     av_assert0(CODEC_ID_SRT == AV_CODEC_ID_SRT);
2848     return LIBAVCODEC_VERSION_INT;
2849 }
2850
2851 const char *avcodec_configuration(void)
2852 {
2853     return FFMPEG_CONFIGURATION;
2854 }
2855
2856 const char *avcodec_license(void)
2857 {
2858 #define LICENSE_PREFIX "libavcodec license: "
2859     return LICENSE_PREFIX FFMPEG_LICENSE + sizeof(LICENSE_PREFIX) - 1;
2860 }
2861
2862 void avcodec_flush_buffers(AVCodecContext *avctx)
2863 {
2864     if (HAVE_THREADS && avctx->active_thread_type & FF_THREAD_FRAME)
2865         ff_thread_flush(avctx);
2866     else if (avctx->codec->flush)
2867         avctx->codec->flush(avctx);
2868
2869     avctx->pts_correction_last_pts =
2870     avctx->pts_correction_last_dts = INT64_MIN;
2871
2872     if (!avctx->refcounted_frames)
2873         av_frame_unref(&avctx->internal->to_free);
2874 }
2875
2876 int av_get_exact_bits_per_sample(enum AVCodecID codec_id)
2877 {
2878     switch (codec_id) {
2879     case AV_CODEC_ID_8SVX_EXP:
2880     case AV_CODEC_ID_8SVX_FIB:
2881     case AV_CODEC_ID_ADPCM_CT:
2882     case AV_CODEC_ID_ADPCM_IMA_APC:
2883     case AV_CODEC_ID_ADPCM_IMA_EA_SEAD:
2884     case AV_CODEC_ID_ADPCM_IMA_OKI:
2885     case AV_CODEC_ID_ADPCM_IMA_WS:
2886     case AV_CODEC_ID_ADPCM_G722:
2887     case AV_CODEC_ID_ADPCM_YAMAHA:
2888         return 4;
2889     case AV_CODEC_ID_PCM_ALAW:
2890     case AV_CODEC_ID_PCM_MULAW:
2891     case AV_CODEC_ID_PCM_S8:
2892     case AV_CODEC_ID_PCM_S8_PLANAR:
2893     case AV_CODEC_ID_PCM_U8:
2894     case AV_CODEC_ID_PCM_ZORK:
2895         return 8;
2896     case AV_CODEC_ID_PCM_S16BE:
2897     case AV_CODEC_ID_PCM_S16BE_PLANAR:
2898     case AV_CODEC_ID_PCM_S16LE:
2899     case AV_CODEC_ID_PCM_S16LE_PLANAR:
2900     case AV_CODEC_ID_PCM_U16BE:
2901     case AV_CODEC_ID_PCM_U16LE:
2902         return 16;
2903     case AV_CODEC_ID_PCM_S24DAUD:
2904     case AV_CODEC_ID_PCM_S24BE:
2905     case AV_CODEC_ID_PCM_S24LE:
2906     case AV_CODEC_ID_PCM_S24LE_PLANAR:
2907     case AV_CODEC_ID_PCM_U24BE:
2908     case AV_CODEC_ID_PCM_U24LE:
2909         return 24;
2910     case AV_CODEC_ID_PCM_S32BE:
2911     case AV_CODEC_ID_PCM_S32LE:
2912     case AV_CODEC_ID_PCM_S32LE_PLANAR:
2913     case AV_CODEC_ID_PCM_U32BE:
2914     case AV_CODEC_ID_PCM_U32LE:
2915     case AV_CODEC_ID_PCM_F32BE:
2916     case AV_CODEC_ID_PCM_F32LE:
2917         return 32;
2918     case AV_CODEC_ID_PCM_F64BE:
2919     case AV_CODEC_ID_PCM_F64LE:
2920         return 64;
2921     default:
2922         return 0;
2923     }
2924 }
2925
2926 enum AVCodecID av_get_pcm_codec(enum AVSampleFormat fmt, int be)
2927 {
2928     static const enum AVCodecID map[AV_SAMPLE_FMT_NB][2] = {
2929         [AV_SAMPLE_FMT_U8  ] = { AV_CODEC_ID_PCM_U8,    AV_CODEC_ID_PCM_U8    },
2930         [AV_SAMPLE_FMT_S16 ] = { AV_CODEC_ID_PCM_S16LE, AV_CODEC_ID_PCM_S16BE },
2931         [AV_SAMPLE_FMT_S32 ] = { AV_CODEC_ID_PCM_S32LE, AV_CODEC_ID_PCM_S32BE },
2932         [AV_SAMPLE_FMT_FLT ] = { AV_CODEC_ID_PCM_F32LE, AV_CODEC_ID_PCM_F32BE },
2933         [AV_SAMPLE_FMT_DBL ] = { AV_CODEC_ID_PCM_F64LE, AV_CODEC_ID_PCM_F64BE },
2934         [AV_SAMPLE_FMT_U8P ] = { AV_CODEC_ID_PCM_U8,    AV_CODEC_ID_PCM_U8    },
2935         [AV_SAMPLE_FMT_S16P] = { AV_CODEC_ID_PCM_S16LE, AV_CODEC_ID_PCM_S16BE },
2936         [AV_SAMPLE_FMT_S32P] = { AV_CODEC_ID_PCM_S32LE, AV_CODEC_ID_PCM_S32BE },
2937         [AV_SAMPLE_FMT_FLTP] = { AV_CODEC_ID_PCM_F32LE, AV_CODEC_ID_PCM_F32BE },
2938         [AV_SAMPLE_FMT_DBLP] = { AV_CODEC_ID_PCM_F64LE, AV_CODEC_ID_PCM_F64BE },
2939     };
2940     if (fmt < 0 || fmt >= AV_SAMPLE_FMT_NB)
2941         return AV_CODEC_ID_NONE;
2942     if (be < 0 || be > 1)
2943         be = AV_NE(1, 0);
2944     return map[fmt][be];
2945 }
2946
2947 int av_get_bits_per_sample(enum AVCodecID codec_id)
2948 {
2949     switch (codec_id) {
2950     case AV_CODEC_ID_ADPCM_SBPRO_2:
2951         return 2;
2952     case AV_CODEC_ID_ADPCM_SBPRO_3:
2953         return 3;
2954     case AV_CODEC_ID_ADPCM_SBPRO_4:
2955     case AV_CODEC_ID_ADPCM_IMA_WAV:
2956     case AV_CODEC_ID_ADPCM_IMA_QT:
2957     case AV_CODEC_ID_ADPCM_SWF:
2958     case AV_CODEC_ID_ADPCM_MS:
2959         return 4;
2960     default:
2961         return av_get_exact_bits_per_sample(codec_id);
2962     }
2963 }
2964
2965 int av_get_audio_frame_duration(AVCodecContext *avctx, int frame_bytes)
2966 {
2967     int id, sr, ch, ba, tag, bps;
2968
2969     id  = avctx->codec_id;
2970     sr  = avctx->sample_rate;
2971     ch  = avctx->channels;
2972     ba  = avctx->block_align;
2973     tag = avctx->codec_tag;
2974     bps = av_get_exact_bits_per_sample(avctx->codec_id);
2975
2976     /* codecs with an exact constant bits per sample */
2977     if (bps > 0 && ch > 0 && frame_bytes > 0 && ch < 32768 && bps < 32768)
2978         return (frame_bytes * 8LL) / (bps * ch);
2979     bps = avctx->bits_per_coded_sample;
2980
2981     /* codecs with a fixed packet duration */
2982     switch (id) {
2983     case AV_CODEC_ID_ADPCM_ADX:    return   32;
2984     case AV_CODEC_ID_ADPCM_IMA_QT: return   64;
2985     case AV_CODEC_ID_ADPCM_EA_XAS: return  128;
2986     case AV_CODEC_ID_AMR_NB:
2987     case AV_CODEC_ID_EVRC:
2988     case AV_CODEC_ID_GSM:
2989     case AV_CODEC_ID_QCELP:
2990     case AV_CODEC_ID_RA_288:       return  160;
2991     case AV_CODEC_ID_AMR_WB:
2992     case AV_CODEC_ID_GSM_MS:       return  320;
2993     case AV_CODEC_ID_MP1:          return  384;
2994     case AV_CODEC_ID_ATRAC1:       return  512;
2995     case AV_CODEC_ID_ATRAC3:       return 1024;
2996     case AV_CODEC_ID_MP2:
2997     case AV_CODEC_ID_MUSEPACK7:    return 1152;
2998     case AV_CODEC_ID_AC3:          return 1536;
2999     }
3000
3001     if (sr > 0) {
3002         /* calc from sample rate */
3003         if (id == AV_CODEC_ID_TTA)
3004             return 256 * sr / 245;
3005
3006         if (ch > 0) {
3007             /* calc from sample rate and channels */
3008             if (id == AV_CODEC_ID_BINKAUDIO_DCT)
3009                 return (480 << (sr / 22050)) / ch;
3010         }
3011     }
3012
3013     if (ba > 0) {
3014         /* calc from block_align */
3015         if (id == AV_CODEC_ID_SIPR) {
3016             switch (ba) {
3017             case 20: return 160;
3018             case 19: return 144;
3019             case 29: return 288;
3020             case 37: return 480;
3021             }
3022         } else if (id == AV_CODEC_ID_ILBC) {
3023             switch (ba) {
3024             case 38: return 160;
3025             case 50: return 240;
3026             }
3027         }
3028     }
3029
3030     if (frame_bytes > 0) {
3031         /* calc from frame_bytes only */
3032         if (id == AV_CODEC_ID_TRUESPEECH)
3033             return 240 * (frame_bytes / 32);
3034         if (id == AV_CODEC_ID_NELLYMOSER)
3035             return 256 * (frame_bytes / 64);
3036         if (id == AV_CODEC_ID_RA_144)
3037             return 160 * (frame_bytes / 20);
3038         if (id == AV_CODEC_ID_G723_1)
3039             return 240 * (frame_bytes / 24);
3040
3041         if (bps > 0) {
3042             /* calc from frame_bytes and bits_per_coded_sample */
3043             if (id == AV_CODEC_ID_ADPCM_G726)
3044                 return frame_bytes * 8 / bps;
3045         }
3046
3047         if (ch > 0) {
3048             /* calc from frame_bytes and channels */
3049             switch (id) {
3050             case AV_CODEC_ID_ADPCM_AFC:
3051                 return frame_bytes / (9 * ch) * 16;
3052             case AV_CODEC_ID_ADPCM_DTK:
3053                 return frame_bytes / (16 * ch) * 28;
3054             case AV_CODEC_ID_ADPCM_4XM:
3055             case AV_CODEC_ID_ADPCM_IMA_ISS:
3056                 return (frame_bytes - 4 * ch) * 2 / ch;
3057             case AV_CODEC_ID_ADPCM_IMA_SMJPEG:
3058                 return (frame_bytes - 4) * 2 / ch;
3059             case AV_CODEC_ID_ADPCM_IMA_AMV:
3060                 return (frame_bytes - 8) * 2 / ch;
3061             case AV_CODEC_ID_ADPCM_XA:
3062                 return (frame_bytes / 128) * 224 / ch;
3063             case AV_CODEC_ID_INTERPLAY_DPCM:
3064                 return (frame_bytes - 6 - ch) / ch;
3065             case AV_CODEC_ID_ROQ_DPCM:
3066                 return (frame_bytes - 8) / ch;
3067             case AV_CODEC_ID_XAN_DPCM:
3068                 return (frame_bytes - 2 * ch) / ch;
3069             case AV_CODEC_ID_MACE3:
3070                 return 3 * frame_bytes / ch;
3071             case AV_CODEC_ID_MACE6:
3072                 return 6 * frame_bytes / ch;
3073             case AV_CODEC_ID_PCM_LXF:
3074                 return 2 * (frame_bytes / (5 * ch));
3075             case AV_CODEC_ID_IAC:
3076             case AV_CODEC_ID_IMC:
3077                 return 4 * frame_bytes / ch;
3078             }
3079
3080             if (tag) {
3081                 /* calc from frame_bytes, channels, and codec_tag */
3082                 if (id == AV_CODEC_ID_SOL_DPCM) {
3083                     if (tag == 3)
3084                         return frame_bytes / ch;
3085                     else
3086                         return frame_bytes * 2 / ch;
3087                 }
3088             }
3089
3090             if (ba > 0) {
3091                 /* calc from frame_bytes, channels, and block_align */
3092                 int blocks = frame_bytes / ba;
3093                 switch (avctx->codec_id) {
3094                 case AV_CODEC_ID_ADPCM_IMA_WAV:
3095                     if (bps < 2 || bps > 5)
3096                         return 0;
3097                     return blocks * (1 + (ba - 4 * ch) / (bps * ch) * 8);
3098                 case AV_CODEC_ID_ADPCM_IMA_DK3:
3099                     return blocks * (((ba - 16) * 2 / 3 * 4) / ch);
3100                 case AV_CODEC_ID_ADPCM_IMA_DK4:
3101                     return blocks * (1 + (ba - 4 * ch) * 2 / ch);
3102                 case AV_CODEC_ID_ADPCM_IMA_RAD:
3103                     return blocks * ((ba - 4 * ch) * 2 / ch);
3104                 case AV_CODEC_ID_ADPCM_MS:
3105                     return blocks * (2 + (ba - 7 * ch) * 2 / ch);
3106                 }
3107             }
3108
3109             if (bps > 0) {
3110                 /* calc from frame_bytes, channels, and bits_per_coded_sample */
3111                 switch (avctx->codec_id) {
3112                 case AV_CODEC_ID_PCM_DVD:
3113                     if(bps<4)
3114                         return 0;
3115                     return 2 * (frame_bytes / ((bps * 2 / 8) * ch));
3116                 case AV_CODEC_ID_PCM_BLURAY:
3117                     if(bps<4)
3118                         return 0;
3119                     return frame_bytes / ((FFALIGN(ch, 2) * bps) / 8);
3120                 case AV_CODEC_ID_S302M:
3121                     return 2 * (frame_bytes / ((bps + 4) / 4)) / ch;
3122                 }
3123             }
3124         }
3125     }
3126
3127     return 0;
3128 }
3129
3130 #if !HAVE_THREADS
3131 int ff_thread_init(AVCodecContext *s)
3132 {
3133     return -1;
3134 }
3135
3136 #endif
3137
3138 unsigned int av_xiphlacing(unsigned char *s, unsigned int v)
3139 {
3140     unsigned int n = 0;
3141
3142     while (v >= 0xff) {
3143         *s++ = 0xff;
3144         v -= 0xff;
3145         n++;
3146     }
3147     *s = v;
3148     n++;
3149     return n;
3150 }
3151
3152 int ff_match_2uint16(const uint16_t(*tab)[2], int size, int a, int b)
3153 {
3154     int i;
3155     for (i = 0; i < size && !(tab[i][0] == a && tab[i][1] == b); i++) ;
3156     return i;
3157 }
3158
3159 #if FF_API_MISSING_SAMPLE
3160 FF_DISABLE_DEPRECATION_WARNINGS
3161 void av_log_missing_feature(void *avc, const char *feature, int want_sample)
3162 {
3163     av_log(avc, AV_LOG_WARNING, "%s is not implemented. Update your FFmpeg "
3164             "version to the newest one from Git. If the problem still "
3165             "occurs, it means that your file has a feature which has not "
3166             "been implemented.\n", feature);
3167     if(want_sample)
3168         av_log_ask_for_sample(avc, NULL);
3169 }
3170
3171 void av_log_ask_for_sample(void *avc, const char *msg, ...)
3172 {
3173     va_list argument_list;
3174
3175     va_start(argument_list, msg);
3176
3177     if (msg)
3178         av_vlog(avc, AV_LOG_WARNING, msg, argument_list);
3179     av_log(avc, AV_LOG_WARNING, "If you want to help, upload a sample "
3180             "of this file to ftp://upload.ffmpeg.org/MPlayer/incoming/ "
3181             "and contact the ffmpeg-devel mailing list.\n");
3182
3183     va_end(argument_list);
3184 }
3185 FF_ENABLE_DEPRECATION_WARNINGS
3186 #endif /* FF_API_MISSING_SAMPLE */
3187
3188 static AVHWAccel *first_hwaccel = NULL;
3189
3190 void av_register_hwaccel(AVHWAccel *hwaccel)
3191 {
3192     AVHWAccel **p = &first_hwaccel;
3193     hwaccel->next = NULL;
3194     while(avpriv_atomic_ptr_cas((void * volatile *)p, NULL, hwaccel))
3195         p = &(*p)->next;
3196 }
3197
3198 AVHWAccel *av_hwaccel_next(AVHWAccel *hwaccel)
3199 {
3200     return hwaccel ? hwaccel->next : first_hwaccel;
3201 }
3202
3203 AVHWAccel *ff_find_hwaccel(AVCodecContext *avctx)
3204 {
3205     enum AVCodecID codec_id = avctx->codec->id;
3206     enum AVPixelFormat pix_fmt = avctx->pix_fmt;
3207
3208     AVHWAccel *hwaccel = NULL;
3209
3210     while ((hwaccel = av_hwaccel_next(hwaccel)))
3211         if (hwaccel->id == codec_id
3212             && hwaccel->pix_fmt == pix_fmt)
3213             return hwaccel;
3214     return NULL;
3215 }
3216
3217 int av_lockmgr_register(int (*cb)(void **mutex, enum AVLockOp op))
3218 {
3219     if (lockmgr_cb) {
3220         if (lockmgr_cb(&codec_mutex, AV_LOCK_DESTROY))
3221             return -1;
3222         if (lockmgr_cb(&avformat_mutex, AV_LOCK_DESTROY))
3223             return -1;
3224     }
3225
3226     lockmgr_cb = cb;
3227
3228     if (lockmgr_cb) {
3229         if (lockmgr_cb(&codec_mutex, AV_LOCK_CREATE))
3230             return -1;
3231         if (lockmgr_cb(&avformat_mutex, AV_LOCK_CREATE))
3232             return -1;
3233     }
3234     return 0;
3235 }
3236
3237 int ff_lock_avcodec(AVCodecContext *log_ctx)
3238 {
3239     if (lockmgr_cb) {
3240         if ((*lockmgr_cb)(&codec_mutex, AV_LOCK_OBTAIN))
3241             return -1;
3242     }
3243     entangled_thread_counter++;
3244     if (entangled_thread_counter != 1) {
3245         av_log(log_ctx, AV_LOG_ERROR, "Insufficient thread locking around avcodec_open/close()\n");
3246         if (!lockmgr_cb)
3247             av_log(log_ctx, AV_LOG_ERROR, "No lock manager is set, please see av_lockmgr_register()\n");
3248         ff_avcodec_locked = 1;
3249         ff_unlock_avcodec();
3250         return AVERROR(EINVAL);
3251     }
3252     av_assert0(!ff_avcodec_locked);
3253     ff_avcodec_locked = 1;
3254     return 0;
3255 }
3256
3257 int ff_unlock_avcodec(void)
3258 {
3259     av_assert0(ff_avcodec_locked);
3260     ff_avcodec_locked = 0;
3261     entangled_thread_counter--;
3262     if (lockmgr_cb) {
3263         if ((*lockmgr_cb)(&codec_mutex, AV_LOCK_RELEASE))
3264             return -1;
3265     }
3266     return 0;
3267 }
3268
3269 int avpriv_lock_avformat(void)
3270 {
3271     if (lockmgr_cb) {
3272         if ((*lockmgr_cb)(&avformat_mutex, AV_LOCK_OBTAIN))
3273             return -1;
3274     }
3275     return 0;
3276 }
3277
3278 int avpriv_unlock_avformat(void)
3279 {
3280     if (lockmgr_cb) {
3281         if ((*lockmgr_cb)(&avformat_mutex, AV_LOCK_RELEASE))
3282             return -1;
3283     }
3284     return 0;
3285 }
3286
3287 unsigned int avpriv_toupper4(unsigned int x)
3288 {
3289     return av_toupper(x & 0xFF) +
3290           (av_toupper((x >>  8) & 0xFF) << 8)  +
3291           (av_toupper((x >> 16) & 0xFF) << 16) +
3292           (av_toupper((x >> 24) & 0xFF) << 24);
3293 }
3294
3295 int ff_thread_ref_frame(ThreadFrame *dst, ThreadFrame *src)
3296 {
3297     int ret;
3298
3299     dst->owner = src->owner;
3300
3301     ret = av_frame_ref(dst->f, src->f);
3302     if (ret < 0)
3303         return ret;
3304
3305     if (src->progress &&
3306         !(dst->progress = av_buffer_ref(src->progress))) {
3307         ff_thread_release_buffer(dst->owner, dst);
3308         return AVERROR(ENOMEM);
3309     }
3310
3311     return 0;
3312 }
3313
3314 #if !HAVE_THREADS
3315
3316 enum AVPixelFormat ff_thread_get_format(AVCodecContext *avctx, const enum AVPixelFormat *fmt)
3317 {
3318     return avctx->get_format(avctx, fmt);
3319 }
3320
3321 int ff_thread_get_buffer(AVCodecContext *avctx, ThreadFrame *f, int flags)
3322 {
3323     f->owner = avctx;
3324     return ff_get_buffer(avctx, f->f, flags);
3325 }
3326
3327 void ff_thread_release_buffer(AVCodecContext *avctx, ThreadFrame *f)
3328 {
3329     av_frame_unref(f->f);
3330 }
3331
3332 void ff_thread_finish_setup(AVCodecContext *avctx)
3333 {
3334 }
3335
3336 void ff_thread_report_progress(ThreadFrame *f, int progress, int field)
3337 {
3338 }
3339
3340 void ff_thread_await_progress(ThreadFrame *f, int progress, int field)
3341 {
3342 }
3343
3344 int ff_thread_can_start_frame(AVCodecContext *avctx)
3345 {
3346     return 1;
3347 }
3348
3349 int ff_alloc_entries(AVCodecContext *avctx, int count)
3350 {
3351     return 0;
3352 }
3353
3354 void ff_reset_entries(AVCodecContext *avctx)
3355 {
3356 }
3357
3358 void ff_thread_await_progress2(AVCodecContext *avctx, int field, int thread, int shift)
3359 {
3360 }
3361
3362 void ff_thread_report_progress2(AVCodecContext *avctx, int field, int thread, int n)
3363 {
3364 }
3365
3366 #endif
3367
3368 enum AVMediaType avcodec_get_type(enum AVCodecID codec_id)
3369 {
3370     AVCodec *c= avcodec_find_decoder(codec_id);
3371     if(!c)
3372         c= avcodec_find_encoder(codec_id);
3373     if(c)
3374         return c->type;
3375
3376     if (codec_id <= AV_CODEC_ID_NONE)
3377         return AVMEDIA_TYPE_UNKNOWN;
3378     else if (codec_id < AV_CODEC_ID_FIRST_AUDIO)
3379         return AVMEDIA_TYPE_VIDEO;
3380     else if (codec_id < AV_CODEC_ID_FIRST_SUBTITLE)
3381         return AVMEDIA_TYPE_AUDIO;
3382     else if (codec_id < AV_CODEC_ID_FIRST_UNKNOWN)
3383         return AVMEDIA_TYPE_SUBTITLE;
3384
3385     return AVMEDIA_TYPE_UNKNOWN;
3386 }
3387
3388 int avcodec_is_open(AVCodecContext *s)
3389 {
3390     return !!s->internal;
3391 }
3392
3393 int avpriv_bprint_to_extradata(AVCodecContext *avctx, struct AVBPrint *buf)
3394 {
3395     int ret;
3396     char *str;
3397
3398     ret = av_bprint_finalize(buf, &str);
3399     if (ret < 0)
3400         return ret;
3401     avctx->extradata = str;
3402     /* Note: the string is NUL terminated (so extradata can be read as a
3403      * string), but the ending character is not accounted in the size (in
3404      * binary formats you are likely not supposed to mux that character). When
3405      * extradata is copied, it is also padded with FF_INPUT_BUFFER_PADDING_SIZE
3406      * zeros. */
3407     avctx->extradata_size = buf->len;
3408     return 0;
3409 }
3410
3411 const uint8_t *avpriv_find_start_code(const uint8_t *av_restrict p,
3412                                       const uint8_t *end,
3413                                       uint32_t *av_restrict state)
3414 {
3415     int i;
3416
3417     av_assert0(p <= end);
3418     if (p >= end)
3419         return end;
3420
3421     for (i = 0; i < 3; i++) {
3422         uint32_t tmp = *state << 8;
3423         *state = tmp + *(p++);
3424         if (tmp == 0x100 || p == end)
3425             return p;
3426     }
3427
3428     while (p < end) {
3429         if      (p[-1] > 1      ) p += 3;
3430         else if (p[-2]          ) p += 2;
3431         else if (p[-3]|(p[-1]-1)) p++;
3432         else {
3433             p++;
3434             break;
3435         }
3436     }
3437
3438     p = FFMIN(p, end) - 4;
3439     *state = AV_RB32(p);
3440
3441     return p + 4;
3442 }