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