]> git.sesse.net Git - ffmpeg/blob - libavcodec/utils.c
DirectDraw Surface image decoder
[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 Libav.
7  *
8  * Libav 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  * Libav 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 Libav; 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/attributes.h"
30 #include "libavutil/avassert.h"
31 #include "libavutil/avstring.h"
32 #include "libavutil/channel_layout.h"
33 #include "libavutil/crc.h"
34 #include "libavutil/frame.h"
35 #include "libavutil/internal.h"
36 #include "libavutil/mathematics.h"
37 #include "libavutil/pixdesc.h"
38 #include "libavutil/imgutils.h"
39 #include "libavutil/samplefmt.h"
40 #include "libavutil/dict.h"
41 #include "avcodec.h"
42 #include "libavutil/opt.h"
43 #include "me_cmp.h"
44 #include "mpegvideo.h"
45 #include "thread.h"
46 #include "internal.h"
47 #include "bytestream.h"
48 #include "version.h"
49 #include <stdlib.h>
50 #include <stdarg.h>
51 #include <limits.h>
52 #include <float.h>
53
54 static int volatile entangled_thread_counter = 0;
55 static int (*lockmgr_cb)(void **mutex, enum AVLockOp op);
56 static void *codec_mutex;
57 static void *avformat_mutex;
58
59 void av_fast_padded_malloc(void *ptr, unsigned int *size, size_t min_size)
60 {
61     void **p = ptr;
62     if (min_size > SIZE_MAX - FF_INPUT_BUFFER_PADDING_SIZE) {
63         av_freep(p);
64         *size = 0;
65         return;
66     }
67     av_fast_malloc(p, size, min_size + FF_INPUT_BUFFER_PADDING_SIZE);
68     if (*size)
69         memset((uint8_t *)*p + min_size, 0, FF_INPUT_BUFFER_PADDING_SIZE);
70 }
71
72 /* encoder management */
73 static AVCodec *first_avcodec = NULL;
74
75 AVCodec *av_codec_next(const AVCodec *c)
76 {
77     if (c)
78         return c->next;
79     else
80         return first_avcodec;
81 }
82
83 static av_cold void avcodec_init(void)
84 {
85     static int initialized = 0;
86
87     if (initialized != 0)
88         return;
89     initialized = 1;
90
91     if (CONFIG_ME_CMP)
92         ff_me_cmp_init_static();
93 }
94
95 int av_codec_is_encoder(const AVCodec *codec)
96 {
97     return codec && (codec->encode_sub || codec->encode2);
98 }
99
100 int av_codec_is_decoder(const AVCodec *codec)
101 {
102     return codec && codec->decode;
103 }
104
105 av_cold void avcodec_register(AVCodec *codec)
106 {
107     AVCodec **p;
108     avcodec_init();
109     p = &first_avcodec;
110     while (*p)
111         p = &(*p)->next;
112     *p          = codec;
113     codec->next = NULL;
114
115     if (codec->init_static_data)
116         codec->init_static_data(codec);
117 }
118
119 #if FF_API_EMU_EDGE
120 unsigned avcodec_get_edge_width(void)
121 {
122     return EDGE_WIDTH;
123 }
124 #endif
125
126 #if FF_API_SET_DIMENSIONS
127 void avcodec_set_dimensions(AVCodecContext *s, int width, int height)
128 {
129     ff_set_dimensions(s, width, height);
130 }
131 #endif
132
133 int ff_set_dimensions(AVCodecContext *s, int width, int height)
134 {
135     int ret = av_image_check_size(width, height, 0, s);
136
137     if (ret < 0)
138         width = height = 0;
139     s->width  = s->coded_width  = width;
140     s->height = s->coded_height = height;
141
142     return ret;
143 }
144
145 int ff_set_sar(AVCodecContext *avctx, AVRational sar)
146 {
147     int ret = av_image_check_sar(avctx->width, avctx->height, sar);
148
149     if (ret < 0) {
150         av_log(avctx, AV_LOG_WARNING, "ignoring invalid SAR: %d/%d\n",
151                sar.num, sar.den);
152         avctx->sample_aspect_ratio = (AVRational){ 0, 1 };
153         return ret;
154     } else {
155         avctx->sample_aspect_ratio = sar;
156     }
157     return 0;
158 }
159
160 int ff_side_data_update_matrix_encoding(AVFrame *frame,
161                                         enum AVMatrixEncoding matrix_encoding)
162 {
163     AVFrameSideData *side_data;
164     enum AVMatrixEncoding *data;
165
166     side_data = av_frame_get_side_data(frame, AV_FRAME_DATA_MATRIXENCODING);
167     if (!side_data)
168         side_data = av_frame_new_side_data(frame, AV_FRAME_DATA_MATRIXENCODING,
169                                            sizeof(enum AVMatrixEncoding));
170
171     if (!side_data)
172         return AVERROR(ENOMEM);
173
174     data  = (enum AVMatrixEncoding*)side_data->data;
175     *data = matrix_encoding;
176
177     return 0;
178 }
179
180 #if HAVE_SIMD_ALIGN_16
181 #   define STRIDE_ALIGN 16
182 #else
183 #   define STRIDE_ALIGN 8
184 #endif
185
186 void avcodec_align_dimensions2(AVCodecContext *s, int *width, int *height,
187                                int linesize_align[AV_NUM_DATA_POINTERS])
188 {
189     int i;
190     int w_align = 1;
191     int h_align = 1;
192
193     switch (s->pix_fmt) {
194     case AV_PIX_FMT_YUV420P:
195     case AV_PIX_FMT_YUYV422:
196     case AV_PIX_FMT_YVYU422:
197     case AV_PIX_FMT_UYVY422:
198     case AV_PIX_FMT_YUV422P:
199     case AV_PIX_FMT_YUV440P:
200     case AV_PIX_FMT_YUV444P:
201     case AV_PIX_FMT_GBRP:
202     case AV_PIX_FMT_GBRAP:
203     case AV_PIX_FMT_GRAY8:
204     case AV_PIX_FMT_GRAY16BE:
205     case AV_PIX_FMT_GRAY16LE:
206     case AV_PIX_FMT_YUVJ420P:
207     case AV_PIX_FMT_YUVJ422P:
208     case AV_PIX_FMT_YUVJ440P:
209     case AV_PIX_FMT_YUVJ444P:
210     case AV_PIX_FMT_YUVA420P:
211     case AV_PIX_FMT_YUVA422P:
212     case AV_PIX_FMT_YUVA444P:
213     case AV_PIX_FMT_YUV420P9LE:
214     case AV_PIX_FMT_YUV420P9BE:
215     case AV_PIX_FMT_YUV420P10LE:
216     case AV_PIX_FMT_YUV420P10BE:
217     case AV_PIX_FMT_YUV422P9LE:
218     case AV_PIX_FMT_YUV422P9BE:
219     case AV_PIX_FMT_YUV422P10LE:
220     case AV_PIX_FMT_YUV422P10BE:
221     case AV_PIX_FMT_YUVA422P10LE:
222     case AV_PIX_FMT_YUVA422P10BE:
223     case AV_PIX_FMT_YUV444P9LE:
224     case AV_PIX_FMT_YUV444P9BE:
225     case AV_PIX_FMT_YUV444P10LE:
226     case AV_PIX_FMT_YUV444P10BE:
227     case AV_PIX_FMT_YUVA444P10LE:
228     case AV_PIX_FMT_YUVA444P10BE:
229     case AV_PIX_FMT_GBRP9LE:
230     case AV_PIX_FMT_GBRP9BE:
231     case AV_PIX_FMT_GBRP10LE:
232     case AV_PIX_FMT_GBRP10BE:
233         w_align = 16; //FIXME assume 16 pixel per macroblock
234         h_align = 16 * 2; // interlaced needs 2 macroblocks height
235         break;
236     case AV_PIX_FMT_YUV411P:
237     case AV_PIX_FMT_UYYVYY411:
238         w_align = 32;
239         h_align = 8;
240         break;
241     case AV_PIX_FMT_YUV410P:
242         if (s->codec_id == AV_CODEC_ID_SVQ1) {
243             w_align = 64;
244             h_align = 64;
245         }
246     case AV_PIX_FMT_RGB555:
247         if (s->codec_id == AV_CODEC_ID_RPZA) {
248             w_align = 4;
249             h_align = 4;
250         }
251     case AV_PIX_FMT_PAL8:
252     case AV_PIX_FMT_BGR8:
253     case AV_PIX_FMT_RGB8:
254         if (s->codec_id == AV_CODEC_ID_SMC) {
255             w_align = 4;
256             h_align = 4;
257         }
258         break;
259     case AV_PIX_FMT_BGR24:
260         if ((s->codec_id == AV_CODEC_ID_MSZH) ||
261             (s->codec_id == AV_CODEC_ID_ZLIB)) {
262             w_align = 4;
263             h_align = 4;
264         }
265         break;
266     default:
267         w_align = 1;
268         h_align = 1;
269         break;
270     }
271
272     *width  = FFALIGN(*width, w_align);
273     *height = FFALIGN(*height, h_align);
274     if (s->codec_id == AV_CODEC_ID_H264)
275         // some of the optimized chroma MC reads one line too much
276         *height += 2;
277
278     for (i = 0; i < 4; i++)
279         linesize_align[i] = STRIDE_ALIGN;
280 }
281
282 void avcodec_align_dimensions(AVCodecContext *s, int *width, int *height)
283 {
284     const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(s->pix_fmt);
285     int chroma_shift = desc->log2_chroma_w;
286     int linesize_align[AV_NUM_DATA_POINTERS];
287     int align;
288
289     avcodec_align_dimensions2(s, width, height, linesize_align);
290     align               = FFMAX(linesize_align[0], linesize_align[3]);
291     linesize_align[1] <<= chroma_shift;
292     linesize_align[2] <<= chroma_shift;
293     align               = FFMAX3(align, linesize_align[1], linesize_align[2]);
294     *width              = FFALIGN(*width, align);
295 }
296
297 int avcodec_fill_audio_frame(AVFrame *frame, int nb_channels,
298                              enum AVSampleFormat sample_fmt, const uint8_t *buf,
299                              int buf_size, int align)
300 {
301     int ch, planar, needed_size, ret = 0;
302
303     needed_size = av_samples_get_buffer_size(NULL, nb_channels,
304                                              frame->nb_samples, sample_fmt,
305                                              align);
306     if (buf_size < needed_size)
307         return AVERROR(EINVAL);
308
309     planar = av_sample_fmt_is_planar(sample_fmt);
310     if (planar && nb_channels > AV_NUM_DATA_POINTERS) {
311         if (!(frame->extended_data = av_mallocz(nb_channels *
312                                                 sizeof(*frame->extended_data))))
313             return AVERROR(ENOMEM);
314     } else {
315         frame->extended_data = frame->data;
316     }
317
318     if ((ret = av_samples_fill_arrays(frame->extended_data, &frame->linesize[0],
319                                       buf, nb_channels, frame->nb_samples,
320                                       sample_fmt, align)) < 0) {
321         if (frame->extended_data != frame->data)
322             av_free(frame->extended_data);
323         return ret;
324     }
325     if (frame->extended_data != frame->data) {
326         for (ch = 0; ch < AV_NUM_DATA_POINTERS; ch++)
327             frame->data[ch] = frame->extended_data[ch];
328     }
329
330     return ret;
331 }
332
333 static int update_frame_pool(AVCodecContext *avctx, AVFrame *frame)
334 {
335     FramePool *pool = avctx->internal->pool;
336     int i, ret;
337
338     switch (avctx->codec_type) {
339     case AVMEDIA_TYPE_VIDEO: {
340         AVPicture picture;
341         int size[4] = { 0 };
342         int w = frame->width;
343         int h = frame->height;
344         int tmpsize, unaligned;
345
346         if (pool->format == frame->format &&
347             pool->width == frame->width && pool->height == frame->height)
348             return 0;
349
350         avcodec_align_dimensions2(avctx, &w, &h, pool->stride_align);
351
352         do {
353             // NOTE: do not align linesizes individually, this breaks e.g. assumptions
354             // that linesize[0] == 2*linesize[1] in the MPEG-encoder for 4:2:2
355             av_image_fill_linesizes(picture.linesize, avctx->pix_fmt, w);
356             // increase alignment of w for next try (rhs gives the lowest bit set in w)
357             w += w & ~(w - 1);
358
359             unaligned = 0;
360             for (i = 0; i < 4; i++)
361                 unaligned |= picture.linesize[i] % pool->stride_align[i];
362         } while (unaligned);
363
364         tmpsize = av_image_fill_pointers(picture.data, avctx->pix_fmt, h,
365                                          NULL, picture.linesize);
366         if (tmpsize < 0)
367             return -1;
368
369         for (i = 0; i < 3 && picture.data[i + 1]; i++)
370             size[i] = picture.data[i + 1] - picture.data[i];
371         size[i] = tmpsize - (picture.data[i] - picture.data[0]);
372
373         for (i = 0; i < 4; i++) {
374             av_buffer_pool_uninit(&pool->pools[i]);
375             pool->linesize[i] = picture.linesize[i];
376             if (size[i]) {
377                 pool->pools[i] = av_buffer_pool_init(size[i] + 16, NULL);
378                 if (!pool->pools[i]) {
379                     ret = AVERROR(ENOMEM);
380                     goto fail;
381                 }
382             }
383         }
384         pool->format = frame->format;
385         pool->width  = frame->width;
386         pool->height = frame->height;
387
388         break;
389         }
390     case AVMEDIA_TYPE_AUDIO: {
391         int ch     = av_get_channel_layout_nb_channels(frame->channel_layout);
392         int planar = av_sample_fmt_is_planar(frame->format);
393         int planes = planar ? ch : 1;
394
395         if (pool->format == frame->format && pool->planes == planes &&
396             pool->channels == ch && frame->nb_samples == pool->samples)
397             return 0;
398
399         av_buffer_pool_uninit(&pool->pools[0]);
400         ret = av_samples_get_buffer_size(&pool->linesize[0], ch,
401                                          frame->nb_samples, frame->format, 0);
402         if (ret < 0)
403             goto fail;
404
405         pool->pools[0] = av_buffer_pool_init(pool->linesize[0], NULL);
406         if (!pool->pools[0]) {
407             ret = AVERROR(ENOMEM);
408             goto fail;
409         }
410
411         pool->format     = frame->format;
412         pool->planes     = planes;
413         pool->channels   = ch;
414         pool->samples = frame->nb_samples;
415         break;
416         }
417     default: av_assert0(0);
418     }
419     return 0;
420 fail:
421     for (i = 0; i < 4; i++)
422         av_buffer_pool_uninit(&pool->pools[i]);
423     pool->format = -1;
424     pool->planes = pool->channels = pool->samples = 0;
425     pool->width  = pool->height = 0;
426     return ret;
427 }
428
429 static int audio_get_buffer(AVCodecContext *avctx, AVFrame *frame)
430 {
431     FramePool *pool = avctx->internal->pool;
432     int planes = pool->planes;
433     int i;
434
435     frame->linesize[0] = pool->linesize[0];
436
437     if (planes > AV_NUM_DATA_POINTERS) {
438         frame->extended_data = av_mallocz(planes * sizeof(*frame->extended_data));
439         frame->nb_extended_buf = planes - AV_NUM_DATA_POINTERS;
440         frame->extended_buf  = av_mallocz(frame->nb_extended_buf *
441                                           sizeof(*frame->extended_buf));
442         if (!frame->extended_data || !frame->extended_buf) {
443             av_freep(&frame->extended_data);
444             av_freep(&frame->extended_buf);
445             return AVERROR(ENOMEM);
446         }
447     } else
448         frame->extended_data = frame->data;
449
450     for (i = 0; i < FFMIN(planes, AV_NUM_DATA_POINTERS); i++) {
451         frame->buf[i] = av_buffer_pool_get(pool->pools[0]);
452         if (!frame->buf[i])
453             goto fail;
454         frame->extended_data[i] = frame->data[i] = frame->buf[i]->data;
455     }
456     for (i = 0; i < frame->nb_extended_buf; i++) {
457         frame->extended_buf[i] = av_buffer_pool_get(pool->pools[0]);
458         if (!frame->extended_buf[i])
459             goto fail;
460         frame->extended_data[i + AV_NUM_DATA_POINTERS] = frame->extended_buf[i]->data;
461     }
462
463     if (avctx->debug & FF_DEBUG_BUFFERS)
464         av_log(avctx, AV_LOG_DEBUG, "default_get_buffer called on frame %p", frame);
465
466     return 0;
467 fail:
468     av_frame_unref(frame);
469     return AVERROR(ENOMEM);
470 }
471
472 static int video_get_buffer(AVCodecContext *s, AVFrame *pic)
473 {
474     FramePool *pool = s->internal->pool;
475     int i;
476
477     if (pic->data[0]) {
478         av_log(s, AV_LOG_ERROR, "pic->data[0]!=NULL in avcodec_default_get_buffer\n");
479         return -1;
480     }
481
482     memset(pic->data, 0, sizeof(pic->data));
483     pic->extended_data = pic->data;
484
485     for (i = 0; i < 4 && pool->pools[i]; i++) {
486         pic->linesize[i] = pool->linesize[i];
487
488         pic->buf[i] = av_buffer_pool_get(pool->pools[i]);
489         if (!pic->buf[i])
490             goto fail;
491
492         pic->data[i] = pic->buf[i]->data;
493     }
494     for (; i < AV_NUM_DATA_POINTERS; i++) {
495         pic->data[i] = NULL;
496         pic->linesize[i] = 0;
497     }
498     if (pic->data[1] && !pic->data[2])
499         avpriv_set_systematic_pal2((uint32_t *)pic->data[1], s->pix_fmt);
500
501     if (s->debug & FF_DEBUG_BUFFERS)
502         av_log(s, AV_LOG_DEBUG, "default_get_buffer called on pic %p\n", pic);
503
504     return 0;
505 fail:
506     av_frame_unref(pic);
507     return AVERROR(ENOMEM);
508 }
509
510 int avcodec_default_get_buffer2(AVCodecContext *avctx, AVFrame *frame, int flags)
511 {
512     int ret;
513
514     if ((ret = update_frame_pool(avctx, frame)) < 0)
515         return ret;
516
517 #if FF_API_GET_BUFFER
518 FF_DISABLE_DEPRECATION_WARNINGS
519     frame->type = FF_BUFFER_TYPE_INTERNAL;
520 FF_ENABLE_DEPRECATION_WARNINGS
521 #endif
522
523     switch (avctx->codec_type) {
524     case AVMEDIA_TYPE_VIDEO:
525         return video_get_buffer(avctx, frame);
526     case AVMEDIA_TYPE_AUDIO:
527         return audio_get_buffer(avctx, frame);
528     default:
529         return -1;
530     }
531 }
532
533 #if FF_API_GET_BUFFER
534 FF_DISABLE_DEPRECATION_WARNINGS
535 int avcodec_default_get_buffer(AVCodecContext *avctx, AVFrame *frame)
536 {
537     return avcodec_default_get_buffer2(avctx, frame, 0);
538 }
539
540 typedef struct CompatReleaseBufPriv {
541     AVCodecContext avctx;
542     AVFrame frame;
543 } CompatReleaseBufPriv;
544
545 static void compat_free_buffer(void *opaque, uint8_t *data)
546 {
547     CompatReleaseBufPriv *priv = opaque;
548     if (priv->avctx.release_buffer)
549         priv->avctx.release_buffer(&priv->avctx, &priv->frame);
550     av_freep(&priv);
551 }
552
553 static void compat_release_buffer(void *opaque, uint8_t *data)
554 {
555     AVBufferRef *buf = opaque;
556     av_buffer_unref(&buf);
557 }
558 FF_ENABLE_DEPRECATION_WARNINGS
559 #endif
560
561 int ff_decode_frame_props(AVCodecContext *avctx, AVFrame *frame)
562 {
563     AVPacket *pkt = avctx->internal->pkt;
564     int i;
565     struct {
566         enum AVPacketSideDataType packet;
567         enum AVFrameSideDataType frame;
568     } sd[] = {
569         { AV_PKT_DATA_REPLAYGAIN ,   AV_FRAME_DATA_REPLAYGAIN },
570         { AV_PKT_DATA_DISPLAYMATRIX, AV_FRAME_DATA_DISPLAYMATRIX },
571         { AV_PKT_DATA_STEREO3D,      AV_FRAME_DATA_STEREO3D },
572         { AV_PKT_DATA_AUDIO_SERVICE_TYPE, AV_FRAME_DATA_AUDIO_SERVICE_TYPE },
573     };
574
575     frame->color_primaries = avctx->color_primaries;
576     frame->color_trc       = avctx->color_trc;
577     frame->colorspace      = avctx->colorspace;
578     frame->color_range     = avctx->color_range;
579     frame->chroma_location = avctx->chroma_sample_location;
580
581     frame->reordered_opaque = avctx->reordered_opaque;
582     if (!pkt) {
583         frame->pkt_pts = AV_NOPTS_VALUE;
584         return 0;
585     }
586
587     frame->pkt_pts = pkt->pts;
588
589     for (i = 0; i < FF_ARRAY_ELEMS(sd); i++) {
590         int size;
591         uint8_t *packet_sd = av_packet_get_side_data(pkt, sd[i].packet, &size);
592         if (packet_sd) {
593             AVFrameSideData *frame_sd = av_frame_new_side_data(frame,
594                                                                sd[i].frame,
595                                                                size);
596             if (!frame_sd)
597                 return AVERROR(ENOMEM);
598
599             memcpy(frame_sd->data, packet_sd, size);
600         }
601     }
602
603     return 0;
604 }
605
606 int ff_get_buffer(AVCodecContext *avctx, AVFrame *frame, int flags)
607 {
608     const AVHWAccel *hwaccel = avctx->hwaccel;
609     int override_dimensions = 1;
610     int ret;
611
612     switch (avctx->codec_type) {
613     case AVMEDIA_TYPE_VIDEO:
614         if (frame->width <= 0 || frame->height <= 0) {
615             frame->width  = FFMAX(avctx->width, avctx->coded_width);
616             frame->height = FFMAX(avctx->height, avctx->coded_height);
617             override_dimensions = 0;
618         }
619         if (frame->format < 0)
620             frame->format              = avctx->pix_fmt;
621         if (!frame->sample_aspect_ratio.num)
622             frame->sample_aspect_ratio = avctx->sample_aspect_ratio;
623
624         if (av_image_check_sar(frame->width, frame->height,
625                                frame->sample_aspect_ratio) < 0) {
626             av_log(avctx, AV_LOG_WARNING, "ignoring invalid SAR: %u/%u\n",
627                    frame->sample_aspect_ratio.num,
628                    frame->sample_aspect_ratio.den);
629             frame->sample_aspect_ratio = (AVRational){ 0, 1 };
630         }
631
632         if ((ret = av_image_check_size(avctx->width, avctx->height, 0, avctx)) < 0)
633             return ret;
634         break;
635     case AVMEDIA_TYPE_AUDIO:
636         if (!frame->sample_rate)
637             frame->sample_rate    = avctx->sample_rate;
638         if (frame->format < 0)
639             frame->format         = avctx->sample_fmt;
640         if (!frame->channel_layout) {
641             if (avctx->channel_layout) {
642                  if (av_get_channel_layout_nb_channels(avctx->channel_layout) !=
643                      avctx->channels) {
644                      av_log(avctx, AV_LOG_ERROR, "Inconsistent channel "
645                             "configuration.\n");
646                      return AVERROR(EINVAL);
647                  }
648
649                 frame->channel_layout = avctx->channel_layout;
650             } else {
651                 if (avctx->channels > FF_SANE_NB_CHANNELS) {
652                     av_log(avctx, AV_LOG_ERROR, "Too many channels: %d.\n",
653                            avctx->channels);
654                     return AVERROR(ENOSYS);
655                 }
656
657                 frame->channel_layout = av_get_default_channel_layout(avctx->channels);
658                 if (!frame->channel_layout)
659                     frame->channel_layout = (1ULL << avctx->channels) - 1;
660             }
661         }
662         break;
663     default: return AVERROR(EINVAL);
664     }
665
666     ret = ff_decode_frame_props(avctx, frame);
667     if (ret < 0)
668         return ret;
669
670     if (hwaccel) {
671         if (hwaccel->alloc_frame) {
672             ret = hwaccel->alloc_frame(avctx, frame);
673             goto end;
674         }
675     } else
676         avctx->sw_pix_fmt = avctx->pix_fmt;
677
678 #if FF_API_GET_BUFFER
679 FF_DISABLE_DEPRECATION_WARNINGS
680     /*
681      * Wrap an old get_buffer()-allocated buffer in an bunch of AVBuffers.
682      * We wrap each plane in its own AVBuffer. Each of those has a reference to
683      * a dummy AVBuffer as its private data, unreffing it on free.
684      * When all the planes are freed, the dummy buffer's free callback calls
685      * release_buffer().
686      */
687     if (avctx->get_buffer) {
688         CompatReleaseBufPriv *priv = NULL;
689         AVBufferRef *dummy_buf = NULL;
690         int planes, i, ret;
691
692         if (flags & AV_GET_BUFFER_FLAG_REF)
693             frame->reference    = 1;
694
695         ret = avctx->get_buffer(avctx, frame);
696         if (ret < 0)
697             return ret;
698
699         /* return if the buffers are already set up
700          * this would happen e.g. when a custom get_buffer() calls
701          * avcodec_default_get_buffer
702          */
703         if (frame->buf[0])
704             return 0;
705
706         priv = av_mallocz(sizeof(*priv));
707         if (!priv) {
708             ret = AVERROR(ENOMEM);
709             goto fail;
710         }
711         priv->avctx = *avctx;
712         priv->frame = *frame;
713
714         dummy_buf = av_buffer_create(NULL, 0, compat_free_buffer, priv, 0);
715         if (!dummy_buf) {
716             ret = AVERROR(ENOMEM);
717             goto fail;
718         }
719
720 #define WRAP_PLANE(ref_out, data, data_size)                            \
721 do {                                                                    \
722     AVBufferRef *dummy_ref = av_buffer_ref(dummy_buf);                  \
723     if (!dummy_ref) {                                                   \
724         ret = AVERROR(ENOMEM);                                          \
725         goto fail;                                                      \
726     }                                                                   \
727     ref_out = av_buffer_create(data, data_size, compat_release_buffer,  \
728                                dummy_ref, 0);                           \
729     if (!ref_out) {                                                     \
730         av_buffer_unref(&dummy_ref);                                    \
731         av_frame_unref(frame);                                          \
732         ret = AVERROR(ENOMEM);                                          \
733         goto fail;                                                      \
734     }                                                                   \
735 } while (0)
736
737         if (avctx->codec_type == AVMEDIA_TYPE_VIDEO) {
738             const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(frame->format);
739
740             planes = av_pix_fmt_count_planes(frame->format);
741             /* workaround for AVHWAccel plane count of 0, buf[0] is used as
742                check for allocated buffers: make libavcodec happy */
743             if (desc && desc->flags & AV_PIX_FMT_FLAG_HWACCEL)
744                 planes = 1;
745             if (!desc || planes <= 0) {
746                 ret = AVERROR(EINVAL);
747                 goto fail;
748             }
749
750             for (i = 0; i < planes; i++) {
751                 int v_shift    = (i == 1 || i == 2) ? desc->log2_chroma_h : 0;
752                 int plane_size = (frame->height >> v_shift) * frame->linesize[i];
753
754                 WRAP_PLANE(frame->buf[i], frame->data[i], plane_size);
755             }
756         } else {
757             int planar = av_sample_fmt_is_planar(frame->format);
758             planes = planar ? avctx->channels : 1;
759
760             if (planes > FF_ARRAY_ELEMS(frame->buf)) {
761                 frame->nb_extended_buf = planes - FF_ARRAY_ELEMS(frame->buf);
762                 frame->extended_buf = av_malloc(sizeof(*frame->extended_buf) *
763                                                 frame->nb_extended_buf);
764                 if (!frame->extended_buf) {
765                     ret = AVERROR(ENOMEM);
766                     goto fail;
767                 }
768             }
769
770             for (i = 0; i < FFMIN(planes, FF_ARRAY_ELEMS(frame->buf)); i++)
771                 WRAP_PLANE(frame->buf[i], frame->extended_data[i], frame->linesize[0]);
772
773             for (i = 0; i < frame->nb_extended_buf; i++)
774                 WRAP_PLANE(frame->extended_buf[i],
775                            frame->extended_data[i + FF_ARRAY_ELEMS(frame->buf)],
776                            frame->linesize[0]);
777         }
778
779         av_buffer_unref(&dummy_buf);
780
781         frame->width  = avctx->width;
782         frame->height = avctx->height;
783
784         return 0;
785
786 fail:
787         avctx->release_buffer(avctx, frame);
788         av_freep(&priv);
789         av_buffer_unref(&dummy_buf);
790         return ret;
791     }
792 FF_ENABLE_DEPRECATION_WARNINGS
793 #endif
794
795     ret = avctx->get_buffer2(avctx, frame, flags);
796
797 end:
798     if (avctx->codec_type == AVMEDIA_TYPE_VIDEO && !override_dimensions) {
799         frame->width  = avctx->width;
800         frame->height = avctx->height;
801     }
802
803     return ret;
804 }
805
806 int ff_reget_buffer(AVCodecContext *avctx, AVFrame *frame)
807 {
808     AVFrame *tmp;
809     int ret;
810
811     av_assert0(avctx->codec_type == AVMEDIA_TYPE_VIDEO);
812
813     if (!frame->data[0])
814         return ff_get_buffer(avctx, frame, AV_GET_BUFFER_FLAG_REF);
815
816     if (av_frame_is_writable(frame))
817         return ff_decode_frame_props(avctx, frame);
818
819     tmp = av_frame_alloc();
820     if (!tmp)
821         return AVERROR(ENOMEM);
822
823     av_frame_move_ref(tmp, frame);
824
825     ret = ff_get_buffer(avctx, frame, AV_GET_BUFFER_FLAG_REF);
826     if (ret < 0) {
827         av_frame_free(&tmp);
828         return ret;
829     }
830
831     av_frame_copy(frame, tmp);
832     av_frame_free(&tmp);
833
834     return 0;
835 }
836
837 #if FF_API_GET_BUFFER
838 void avcodec_default_release_buffer(AVCodecContext *s, AVFrame *pic)
839 {
840     av_frame_unref(pic);
841 }
842
843 int avcodec_default_reget_buffer(AVCodecContext *s, AVFrame *pic)
844 {
845     av_assert0(0);
846     return AVERROR_BUG;
847 }
848 #endif
849
850 int avcodec_default_execute(AVCodecContext *c, int (*func)(AVCodecContext *c2, void *arg2), void *arg, int *ret, int count, int size)
851 {
852     int i;
853
854     for (i = 0; i < count; i++) {
855         int r = func(c, (char *)arg + i * size);
856         if (ret)
857             ret[i] = r;
858     }
859     return 0;
860 }
861
862 int avcodec_default_execute2(AVCodecContext *c, int (*func)(AVCodecContext *c2, void *arg2, int jobnr, int threadnr), void *arg, int *ret, int count)
863 {
864     int i;
865
866     for (i = 0; i < count; i++) {
867         int r = func(c, arg, i, 0);
868         if (ret)
869             ret[i] = r;
870     }
871     return 0;
872 }
873
874 static int is_hwaccel_pix_fmt(enum AVPixelFormat pix_fmt)
875 {
876     const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(pix_fmt);
877     return desc->flags & AV_PIX_FMT_FLAG_HWACCEL;
878 }
879
880 enum AVPixelFormat avcodec_default_get_format(struct AVCodecContext *s, const enum AVPixelFormat *fmt)
881 {
882     while (*fmt != AV_PIX_FMT_NONE && is_hwaccel_pix_fmt(*fmt))
883         ++fmt;
884     return fmt[0];
885 }
886
887 static AVHWAccel *find_hwaccel(enum AVCodecID codec_id,
888                                enum AVPixelFormat pix_fmt)
889 {
890     AVHWAccel *hwaccel = NULL;
891
892     while ((hwaccel = av_hwaccel_next(hwaccel)))
893         if (hwaccel->id == codec_id
894             && hwaccel->pix_fmt == pix_fmt)
895             return hwaccel;
896     return NULL;
897 }
898
899 static int setup_hwaccel(AVCodecContext *avctx,
900                          const enum AVPixelFormat fmt,
901                          const char *name)
902 {
903     AVHWAccel *hwa = find_hwaccel(avctx->codec_id, fmt);
904     int ret        = 0;
905
906     if (!hwa) {
907         av_log(avctx, AV_LOG_ERROR,
908                "Could not find an AVHWAccel for the pixel format: %s",
909                name);
910         return AVERROR(ENOENT);
911     }
912
913     if (hwa->priv_data_size) {
914         avctx->internal->hwaccel_priv_data = av_mallocz(hwa->priv_data_size);
915         if (!avctx->internal->hwaccel_priv_data)
916             return AVERROR(ENOMEM);
917     }
918
919     if (hwa->init) {
920         ret = hwa->init(avctx);
921         if (ret < 0) {
922             av_freep(&avctx->internal->hwaccel_priv_data);
923             return ret;
924         }
925     }
926
927     avctx->hwaccel = hwa;
928
929     return 0;
930 }
931
932 int ff_get_format(AVCodecContext *avctx, const enum AVPixelFormat *fmt)
933 {
934     const AVPixFmtDescriptor *desc;
935     enum AVPixelFormat *choices;
936     enum AVPixelFormat ret;
937     unsigned n = 0;
938
939     while (fmt[n] != AV_PIX_FMT_NONE)
940         ++n;
941
942     av_assert0(n >= 1);
943     avctx->sw_pix_fmt = fmt[n - 1];
944     av_assert2(!is_hwaccel_pix_fmt(avctx->sw_pix_fmt));
945
946     choices = av_malloc_array(n + 1, sizeof(*choices));
947     if (!choices)
948         return AV_PIX_FMT_NONE;
949
950     memcpy(choices, fmt, (n + 1) * sizeof(*choices));
951
952     for (;;) {
953         if (avctx->hwaccel && avctx->hwaccel->uninit)
954             avctx->hwaccel->uninit(avctx);
955         av_freep(&avctx->internal->hwaccel_priv_data);
956         avctx->hwaccel = NULL;
957
958         ret = avctx->get_format(avctx, choices);
959
960         desc = av_pix_fmt_desc_get(ret);
961         if (!desc) {
962             ret = AV_PIX_FMT_NONE;
963             break;
964         }
965
966         if (!(desc->flags & AV_PIX_FMT_FLAG_HWACCEL))
967             break;
968
969         if (!setup_hwaccel(avctx, ret, desc->name))
970             break;
971
972         /* Remove failed hwaccel from choices */
973         for (n = 0; choices[n] != ret; n++)
974             av_assert0(choices[n] != AV_PIX_FMT_NONE);
975
976         do
977             choices[n] = choices[n + 1];
978         while (choices[n++] != AV_PIX_FMT_NONE);
979     }
980
981     av_freep(&choices);
982     return ret;
983 }
984
985 #if FF_API_AVFRAME_LAVC
986 void avcodec_get_frame_defaults(AVFrame *frame)
987 {
988     if (frame->extended_data != frame->data)
989         av_freep(&frame->extended_data);
990
991     memset(frame, 0, sizeof(AVFrame));
992
993     frame->pts                 = AV_NOPTS_VALUE;
994     frame->key_frame           = 1;
995     frame->sample_aspect_ratio = (AVRational) {0, 1 };
996     frame->format              = -1; /* unknown */
997     frame->extended_data       = frame->data;
998 }
999
1000 AVFrame *avcodec_alloc_frame(void)
1001 {
1002     AVFrame *frame = av_mallocz(sizeof(AVFrame));
1003
1004     if (!frame)
1005         return NULL;
1006
1007 FF_DISABLE_DEPRECATION_WARNINGS
1008     avcodec_get_frame_defaults(frame);
1009 FF_ENABLE_DEPRECATION_WARNINGS
1010
1011     return frame;
1012 }
1013
1014 void avcodec_free_frame(AVFrame **frame)
1015 {
1016     av_frame_free(frame);
1017 }
1018 #endif
1019
1020 int attribute_align_arg avcodec_open2(AVCodecContext *avctx, const AVCodec *codec, AVDictionary **options)
1021 {
1022     int ret = 0;
1023     AVDictionary *tmp = NULL;
1024
1025     if (avcodec_is_open(avctx))
1026         return 0;
1027
1028     if ((!codec && !avctx->codec)) {
1029         av_log(avctx, AV_LOG_ERROR, "No codec provided to avcodec_open2().\n");
1030         return AVERROR(EINVAL);
1031     }
1032     if ((codec && avctx->codec && codec != avctx->codec)) {
1033         av_log(avctx, AV_LOG_ERROR, "This AVCodecContext was allocated for %s, "
1034                                     "but %s passed to avcodec_open2().\n", avctx->codec->name, codec->name);
1035         return AVERROR(EINVAL);
1036     }
1037     if (!codec)
1038         codec = avctx->codec;
1039
1040     if (avctx->extradata_size < 0 || avctx->extradata_size >= FF_MAX_EXTRADATA_SIZE)
1041         return AVERROR(EINVAL);
1042
1043     if (options)
1044         av_dict_copy(&tmp, *options, 0);
1045
1046     /* If there is a user-supplied mutex locking routine, call it. */
1047     if (lockmgr_cb) {
1048         if ((*lockmgr_cb)(&codec_mutex, AV_LOCK_OBTAIN))
1049             return -1;
1050     }
1051
1052     entangled_thread_counter++;
1053     if (entangled_thread_counter != 1 &&
1054         !(codec->caps_internal & FF_CODEC_CAP_INIT_THREADSAFE)) {
1055         av_log(avctx, AV_LOG_ERROR,
1056                "Insufficient thread locking. At least %d threads are "
1057                "calling avcodec_open2() at the same time right now.\n",
1058                entangled_thread_counter);
1059         ret = -1;
1060         goto end;
1061     }
1062
1063     avctx->internal = av_mallocz(sizeof(AVCodecInternal));
1064     if (!avctx->internal) {
1065         ret = AVERROR(ENOMEM);
1066         goto end;
1067     }
1068
1069     avctx->internal->pool = av_mallocz(sizeof(*avctx->internal->pool));
1070     if (!avctx->internal->pool) {
1071         ret = AVERROR(ENOMEM);
1072         goto free_and_end;
1073     }
1074
1075     avctx->internal->to_free = av_frame_alloc();
1076     if (!avctx->internal->to_free) {
1077         ret = AVERROR(ENOMEM);
1078         goto free_and_end;
1079     }
1080
1081     if (codec->priv_data_size > 0) {
1082         if (!avctx->priv_data) {
1083             avctx->priv_data = av_mallocz(codec->priv_data_size);
1084             if (!avctx->priv_data) {
1085                 ret = AVERROR(ENOMEM);
1086                 goto end;
1087             }
1088             if (codec->priv_class) {
1089                 *(const AVClass **)avctx->priv_data = codec->priv_class;
1090                 av_opt_set_defaults(avctx->priv_data);
1091             }
1092         }
1093         if (codec->priv_class && (ret = av_opt_set_dict(avctx->priv_data, &tmp)) < 0)
1094             goto free_and_end;
1095     } else {
1096         avctx->priv_data = NULL;
1097     }
1098     if ((ret = av_opt_set_dict(avctx, &tmp)) < 0)
1099         goto free_and_end;
1100
1101     if (avctx->coded_width && avctx->coded_height && !avctx->width && !avctx->height)
1102         ret = ff_set_dimensions(avctx, avctx->coded_width, avctx->coded_height);
1103     else if (avctx->width && avctx->height)
1104         ret = ff_set_dimensions(avctx, avctx->width, avctx->height);
1105     if (ret < 0)
1106         goto free_and_end;
1107
1108     if ((avctx->coded_width || avctx->coded_height || avctx->width || avctx->height)
1109         && (  av_image_check_size(avctx->coded_width, avctx->coded_height, 0, avctx) < 0
1110            || av_image_check_size(avctx->width,       avctx->height,       0, avctx) < 0)) {
1111         av_log(avctx, AV_LOG_WARNING, "ignoring invalid width/height values\n");
1112         ff_set_dimensions(avctx, 0, 0);
1113     }
1114
1115     if (avctx->width > 0 && avctx->height > 0) {
1116         if (av_image_check_sar(avctx->width, avctx->height,
1117                                avctx->sample_aspect_ratio) < 0) {
1118             av_log(avctx, AV_LOG_WARNING, "ignoring invalid SAR: %u/%u\n",
1119                    avctx->sample_aspect_ratio.num,
1120                    avctx->sample_aspect_ratio.den);
1121             avctx->sample_aspect_ratio = (AVRational){ 0, 1 };
1122         }
1123     }
1124
1125     /* if the decoder init function was already called previously,
1126      * free the already allocated subtitle_header before overwriting it */
1127     if (av_codec_is_decoder(codec))
1128         av_freep(&avctx->subtitle_header);
1129
1130     if (avctx->channels > FF_SANE_NB_CHANNELS) {
1131         ret = AVERROR(EINVAL);
1132         goto free_and_end;
1133     }
1134
1135     avctx->codec = codec;
1136     if ((avctx->codec_type == AVMEDIA_TYPE_UNKNOWN || avctx->codec_type == codec->type) &&
1137         avctx->codec_id == AV_CODEC_ID_NONE) {
1138         avctx->codec_type = codec->type;
1139         avctx->codec_id   = codec->id;
1140     }
1141     if (avctx->codec_id != codec->id || (avctx->codec_type != codec->type
1142                                          && avctx->codec_type != AVMEDIA_TYPE_ATTACHMENT)) {
1143         av_log(avctx, AV_LOG_ERROR, "codec type or id mismatches\n");
1144         ret = AVERROR(EINVAL);
1145         goto free_and_end;
1146     }
1147     avctx->frame_number = 0;
1148
1149     if (avctx->codec->capabilities & CODEC_CAP_EXPERIMENTAL &&
1150         avctx->strict_std_compliance > FF_COMPLIANCE_EXPERIMENTAL) {
1151         ret = AVERROR_EXPERIMENTAL;
1152         goto free_and_end;
1153     }
1154
1155     if (avctx->codec_type == AVMEDIA_TYPE_AUDIO &&
1156         (!avctx->time_base.num || !avctx->time_base.den)) {
1157         avctx->time_base.num = 1;
1158         avctx->time_base.den = avctx->sample_rate;
1159     }
1160
1161     if (HAVE_THREADS) {
1162         ret = ff_thread_init(avctx);
1163         if (ret < 0) {
1164             goto free_and_end;
1165         }
1166     }
1167     if (!HAVE_THREADS && !(codec->capabilities & CODEC_CAP_AUTO_THREADS))
1168         avctx->thread_count = 1;
1169
1170     if (av_codec_is_encoder(avctx->codec)) {
1171         int i;
1172         if (avctx->codec->sample_fmts) {
1173             for (i = 0; avctx->codec->sample_fmts[i] != AV_SAMPLE_FMT_NONE; i++) {
1174                 if (avctx->sample_fmt == avctx->codec->sample_fmts[i])
1175                     break;
1176                 if (avctx->channels == 1 &&
1177                     av_get_planar_sample_fmt(avctx->sample_fmt) ==
1178                     av_get_planar_sample_fmt(avctx->codec->sample_fmts[i])) {
1179                     avctx->sample_fmt = avctx->codec->sample_fmts[i];
1180                     break;
1181                 }
1182             }
1183             if (avctx->codec->sample_fmts[i] == AV_SAMPLE_FMT_NONE) {
1184                 av_log(avctx, AV_LOG_ERROR, "Specified sample_fmt is not supported.\n");
1185                 ret = AVERROR(EINVAL);
1186                 goto free_and_end;
1187             }
1188         }
1189         if (avctx->codec->pix_fmts) {
1190             for (i = 0; avctx->codec->pix_fmts[i] != AV_PIX_FMT_NONE; i++)
1191                 if (avctx->pix_fmt == avctx->codec->pix_fmts[i])
1192                     break;
1193             if (avctx->codec->pix_fmts[i] == AV_PIX_FMT_NONE) {
1194                 av_log(avctx, AV_LOG_ERROR, "Specified pix_fmt is not supported\n");
1195                 ret = AVERROR(EINVAL);
1196                 goto free_and_end;
1197             }
1198             if (avctx->codec->pix_fmts[i] == AV_PIX_FMT_YUVJ420P ||
1199                 avctx->codec->pix_fmts[i] == AV_PIX_FMT_YUVJ422P ||
1200                 avctx->codec->pix_fmts[i] == AV_PIX_FMT_YUVJ440P ||
1201                 avctx->codec->pix_fmts[i] == AV_PIX_FMT_YUVJ444P)
1202                 avctx->color_range = AVCOL_RANGE_JPEG;
1203         }
1204         if (avctx->codec->supported_samplerates) {
1205             for (i = 0; avctx->codec->supported_samplerates[i] != 0; i++)
1206                 if (avctx->sample_rate == avctx->codec->supported_samplerates[i])
1207                     break;
1208             if (avctx->codec->supported_samplerates[i] == 0) {
1209                 av_log(avctx, AV_LOG_ERROR, "Specified sample_rate is not supported\n");
1210                 ret = AVERROR(EINVAL);
1211                 goto free_and_end;
1212             }
1213         }
1214         if (avctx->codec->channel_layouts) {
1215             if (!avctx->channel_layout) {
1216                 av_log(avctx, AV_LOG_WARNING, "channel_layout not specified\n");
1217             } else {
1218                 for (i = 0; avctx->codec->channel_layouts[i] != 0; i++)
1219                     if (avctx->channel_layout == avctx->codec->channel_layouts[i])
1220                         break;
1221                 if (avctx->codec->channel_layouts[i] == 0) {
1222                     av_log(avctx, AV_LOG_ERROR, "Specified channel_layout is not supported\n");
1223                     ret = AVERROR(EINVAL);
1224                     goto free_and_end;
1225                 }
1226             }
1227         }
1228         if (avctx->channel_layout && avctx->channels) {
1229             if (av_get_channel_layout_nb_channels(avctx->channel_layout) != avctx->channels) {
1230                 av_log(avctx, AV_LOG_ERROR, "channel layout does not match number of channels\n");
1231                 ret = AVERROR(EINVAL);
1232                 goto free_and_end;
1233             }
1234         } else if (avctx->channel_layout) {
1235             avctx->channels = av_get_channel_layout_nb_channels(avctx->channel_layout);
1236         }
1237
1238         if (!avctx->rc_initial_buffer_occupancy)
1239             avctx->rc_initial_buffer_occupancy = avctx->rc_buffer_size * 3 / 4;
1240     }
1241
1242     if (avctx->codec->init && !(avctx->active_thread_type & FF_THREAD_FRAME)) {
1243         ret = avctx->codec->init(avctx);
1244         if (ret < 0) {
1245             goto free_and_end;
1246         }
1247     }
1248
1249 #if FF_API_AUDIOENC_DELAY
1250     if (av_codec_is_encoder(avctx->codec))
1251         avctx->delay = avctx->initial_padding;
1252 #endif
1253
1254     if (av_codec_is_decoder(avctx->codec)) {
1255         /* validate channel layout from the decoder */
1256         if (avctx->channel_layout) {
1257             int channels = av_get_channel_layout_nb_channels(avctx->channel_layout);
1258             if (!avctx->channels)
1259                 avctx->channels = channels;
1260             else if (channels != avctx->channels) {
1261                 av_log(avctx, AV_LOG_WARNING,
1262                        "channel layout does not match number of channels\n");
1263                 avctx->channel_layout = 0;
1264             }
1265         }
1266         if (avctx->channels && avctx->channels < 0 ||
1267             avctx->channels > FF_SANE_NB_CHANNELS) {
1268             ret = AVERROR(EINVAL);
1269             goto free_and_end;
1270         }
1271
1272 #if FF_API_AVCTX_TIMEBASE
1273         if (avctx->framerate.num > 0 && avctx->framerate.den > 0)
1274             avctx->time_base = av_inv_q(avctx->framerate);
1275 #endif
1276     }
1277 end:
1278     entangled_thread_counter--;
1279
1280     /* Release any user-supplied mutex. */
1281     if (lockmgr_cb) {
1282         (*lockmgr_cb)(&codec_mutex, AV_LOCK_RELEASE);
1283     }
1284     if (options) {
1285         av_dict_free(options);
1286         *options = tmp;
1287     }
1288
1289     return ret;
1290 free_and_end:
1291     if (avctx->codec &&
1292         (avctx->codec->caps_internal & FF_CODEC_CAP_INIT_CLEANUP))
1293         avctx->codec->close(avctx);
1294
1295     if (avctx->priv_data && avctx->codec && avctx->codec->priv_class)
1296         av_opt_free(avctx->priv_data);
1297     av_opt_free(avctx);
1298
1299     av_dict_free(&tmp);
1300     av_freep(&avctx->priv_data);
1301     if (avctx->internal) {
1302         av_frame_free(&avctx->internal->to_free);
1303         av_freep(&avctx->internal->pool);
1304     }
1305     av_freep(&avctx->internal);
1306     avctx->codec = NULL;
1307     goto end;
1308 }
1309
1310 int ff_alloc_packet(AVPacket *avpkt, int size)
1311 {
1312     if (size > INT_MAX - FF_INPUT_BUFFER_PADDING_SIZE)
1313         return AVERROR(EINVAL);
1314
1315     if (avpkt->data) {
1316         AVBufferRef *buf = avpkt->buf;
1317 #if FF_API_DESTRUCT_PACKET
1318 FF_DISABLE_DEPRECATION_WARNINGS
1319         void *destruct = avpkt->destruct;
1320 FF_ENABLE_DEPRECATION_WARNINGS
1321 #endif
1322
1323         if (avpkt->size < size)
1324             return AVERROR(EINVAL);
1325
1326         av_init_packet(avpkt);
1327 #if FF_API_DESTRUCT_PACKET
1328 FF_DISABLE_DEPRECATION_WARNINGS
1329         avpkt->destruct = destruct;
1330 FF_ENABLE_DEPRECATION_WARNINGS
1331 #endif
1332         avpkt->buf      = buf;
1333         avpkt->size     = size;
1334         return 0;
1335     } else {
1336         return av_new_packet(avpkt, size);
1337     }
1338 }
1339
1340 /**
1341  * Pad last frame with silence.
1342  */
1343 static int pad_last_frame(AVCodecContext *s, AVFrame **dst, const AVFrame *src)
1344 {
1345     AVFrame *frame = NULL;
1346     int ret;
1347
1348     if (!(frame = av_frame_alloc()))
1349         return AVERROR(ENOMEM);
1350
1351     frame->format         = src->format;
1352     frame->channel_layout = src->channel_layout;
1353     frame->nb_samples     = s->frame_size;
1354     ret = av_frame_get_buffer(frame, 32);
1355     if (ret < 0)
1356         goto fail;
1357
1358     ret = av_frame_copy_props(frame, src);
1359     if (ret < 0)
1360         goto fail;
1361
1362     if ((ret = av_samples_copy(frame->extended_data, src->extended_data, 0, 0,
1363                                src->nb_samples, s->channels, s->sample_fmt)) < 0)
1364         goto fail;
1365     if ((ret = av_samples_set_silence(frame->extended_data, src->nb_samples,
1366                                       frame->nb_samples - src->nb_samples,
1367                                       s->channels, s->sample_fmt)) < 0)
1368         goto fail;
1369
1370     *dst = frame;
1371
1372     return 0;
1373
1374 fail:
1375     av_frame_free(&frame);
1376     return ret;
1377 }
1378
1379 int attribute_align_arg avcodec_encode_audio2(AVCodecContext *avctx,
1380                                               AVPacket *avpkt,
1381                                               const AVFrame *frame,
1382                                               int *got_packet_ptr)
1383 {
1384     AVFrame tmp;
1385     AVFrame *padded_frame = NULL;
1386     int ret;
1387     int user_packet = !!avpkt->data;
1388
1389     *got_packet_ptr = 0;
1390
1391     if (!(avctx->codec->capabilities & CODEC_CAP_DELAY) && !frame) {
1392         av_free_packet(avpkt);
1393         av_init_packet(avpkt);
1394         return 0;
1395     }
1396
1397     /* ensure that extended_data is properly set */
1398     if (frame && !frame->extended_data) {
1399         if (av_sample_fmt_is_planar(avctx->sample_fmt) &&
1400             avctx->channels > AV_NUM_DATA_POINTERS) {
1401             av_log(avctx, AV_LOG_ERROR, "Encoding to a planar sample format, "
1402                                         "with more than %d channels, but extended_data is not set.\n",
1403                    AV_NUM_DATA_POINTERS);
1404             return AVERROR(EINVAL);
1405         }
1406         av_log(avctx, AV_LOG_WARNING, "extended_data is not set.\n");
1407
1408         tmp = *frame;
1409         tmp.extended_data = tmp.data;
1410         frame = &tmp;
1411     }
1412
1413     /* extract audio service type metadata */
1414     if (frame) {
1415         AVFrameSideData *sd = av_frame_get_side_data(frame, AV_FRAME_DATA_AUDIO_SERVICE_TYPE);
1416         if (sd && sd->size >= sizeof(enum AVAudioServiceType))
1417             avctx->audio_service_type = *(enum AVAudioServiceType*)sd->data;
1418     }
1419
1420     /* check for valid frame size */
1421     if (frame) {
1422         if (avctx->codec->capabilities & CODEC_CAP_SMALL_LAST_FRAME) {
1423             if (frame->nb_samples > avctx->frame_size)
1424                 return AVERROR(EINVAL);
1425         } else if (!(avctx->codec->capabilities & CODEC_CAP_VARIABLE_FRAME_SIZE)) {
1426             if (frame->nb_samples < avctx->frame_size &&
1427                 !avctx->internal->last_audio_frame) {
1428                 ret = pad_last_frame(avctx, &padded_frame, frame);
1429                 if (ret < 0)
1430                     return ret;
1431
1432                 frame = padded_frame;
1433                 avctx->internal->last_audio_frame = 1;
1434             }
1435
1436             if (frame->nb_samples != avctx->frame_size) {
1437                 ret = AVERROR(EINVAL);
1438                 goto end;
1439             }
1440         }
1441     }
1442
1443     ret = avctx->codec->encode2(avctx, avpkt, frame, got_packet_ptr);
1444     if (!ret) {
1445         if (*got_packet_ptr) {
1446             if (!(avctx->codec->capabilities & CODEC_CAP_DELAY)) {
1447                 if (avpkt->pts == AV_NOPTS_VALUE)
1448                     avpkt->pts = frame->pts;
1449                 if (!avpkt->duration)
1450                     avpkt->duration = ff_samples_to_time_base(avctx,
1451                                                               frame->nb_samples);
1452             }
1453             avpkt->dts = avpkt->pts;
1454         } else {
1455             avpkt->size = 0;
1456         }
1457
1458         if (!user_packet && avpkt->size) {
1459             ret = av_buffer_realloc(&avpkt->buf, avpkt->size);
1460             if (ret >= 0)
1461                 avpkt->data = avpkt->buf->data;
1462         }
1463
1464         avctx->frame_number++;
1465     }
1466
1467     if (ret < 0 || !*got_packet_ptr) {
1468         av_free_packet(avpkt);
1469         av_init_packet(avpkt);
1470         goto end;
1471     }
1472
1473     /* NOTE: if we add any audio encoders which output non-keyframe packets,
1474      *       this needs to be moved to the encoders, but for now we can do it
1475      *       here to simplify things */
1476     avpkt->flags |= AV_PKT_FLAG_KEY;
1477
1478 end:
1479     av_frame_free(&padded_frame);
1480
1481 #if FF_API_AUDIOENC_DELAY
1482     avctx->delay = avctx->initial_padding;
1483 #endif
1484
1485     return ret;
1486 }
1487
1488 int attribute_align_arg avcodec_encode_video2(AVCodecContext *avctx,
1489                                               AVPacket *avpkt,
1490                                               const AVFrame *frame,
1491                                               int *got_packet_ptr)
1492 {
1493     int ret;
1494     int user_packet = !!avpkt->data;
1495
1496     *got_packet_ptr = 0;
1497
1498     if (!(avctx->codec->capabilities & CODEC_CAP_DELAY) && !frame) {
1499         av_free_packet(avpkt);
1500         av_init_packet(avpkt);
1501         avpkt->size = 0;
1502         return 0;
1503     }
1504
1505     if (av_image_check_size(avctx->width, avctx->height, 0, avctx))
1506         return AVERROR(EINVAL);
1507
1508     av_assert0(avctx->codec->encode2);
1509
1510     ret = avctx->codec->encode2(avctx, avpkt, frame, got_packet_ptr);
1511     if (!ret) {
1512         if (!*got_packet_ptr)
1513             avpkt->size = 0;
1514         else if (!(avctx->codec->capabilities & CODEC_CAP_DELAY))
1515             avpkt->pts = avpkt->dts = frame->pts;
1516
1517         if (!user_packet && avpkt->size) {
1518             ret = av_buffer_realloc(&avpkt->buf, avpkt->size);
1519             if (ret >= 0)
1520                 avpkt->data = avpkt->buf->data;
1521         }
1522
1523         avctx->frame_number++;
1524     }
1525
1526     if (ret < 0 || !*got_packet_ptr)
1527         av_free_packet(avpkt);
1528
1529     emms_c();
1530     return ret;
1531 }
1532
1533 int avcodec_encode_subtitle(AVCodecContext *avctx, uint8_t *buf, int buf_size,
1534                             const AVSubtitle *sub)
1535 {
1536     int ret;
1537     if (sub->start_display_time) {
1538         av_log(avctx, AV_LOG_ERROR, "start_display_time must be 0.\n");
1539         return -1;
1540     }
1541     if (sub->num_rects == 0 || !sub->rects)
1542         return -1;
1543     ret = avctx->codec->encode_sub(avctx, buf, buf_size, sub);
1544     avctx->frame_number++;
1545     return ret;
1546 }
1547
1548 static int apply_param_change(AVCodecContext *avctx, AVPacket *avpkt)
1549 {
1550     int size = 0, ret;
1551     const uint8_t *data;
1552     uint32_t flags;
1553
1554     data = av_packet_get_side_data(avpkt, AV_PKT_DATA_PARAM_CHANGE, &size);
1555     if (!data)
1556         return 0;
1557
1558     if (!(avctx->codec->capabilities & CODEC_CAP_PARAM_CHANGE)) {
1559         av_log(avctx, AV_LOG_ERROR, "This decoder does not support parameter "
1560                "changes, but PARAM_CHANGE side data was sent to it.\n");
1561         return AVERROR(EINVAL);
1562     }
1563
1564     if (size < 4)
1565         goto fail;
1566
1567     flags = bytestream_get_le32(&data);
1568     size -= 4;
1569
1570     if (flags & AV_SIDE_DATA_PARAM_CHANGE_CHANNEL_COUNT) {
1571         if (size < 4)
1572             goto fail;
1573         avctx->channels = bytestream_get_le32(&data);
1574         size -= 4;
1575     }
1576     if (flags & AV_SIDE_DATA_PARAM_CHANGE_CHANNEL_LAYOUT) {
1577         if (size < 8)
1578             goto fail;
1579         avctx->channel_layout = bytestream_get_le64(&data);
1580         size -= 8;
1581     }
1582     if (flags & AV_SIDE_DATA_PARAM_CHANGE_SAMPLE_RATE) {
1583         if (size < 4)
1584             goto fail;
1585         avctx->sample_rate = bytestream_get_le32(&data);
1586         size -= 4;
1587     }
1588     if (flags & AV_SIDE_DATA_PARAM_CHANGE_DIMENSIONS) {
1589         if (size < 8)
1590             goto fail;
1591         avctx->width  = bytestream_get_le32(&data);
1592         avctx->height = bytestream_get_le32(&data);
1593         size -= 8;
1594         ret = ff_set_dimensions(avctx, avctx->width, avctx->height);
1595         if (ret < 0)
1596             return ret;
1597     }
1598
1599     return 0;
1600 fail:
1601     av_log(avctx, AV_LOG_ERROR, "PARAM_CHANGE side data too small.\n");
1602     return AVERROR_INVALIDDATA;
1603 }
1604
1605 static int unrefcount_frame(AVCodecInternal *avci, AVFrame *frame)
1606 {
1607     int ret;
1608
1609     /* move the original frame to our backup */
1610     av_frame_unref(avci->to_free);
1611     av_frame_move_ref(avci->to_free, frame);
1612
1613     /* now copy everything except the AVBufferRefs back
1614      * note that we make a COPY of the side data, so calling av_frame_free() on
1615      * the caller's frame will work properly */
1616     ret = av_frame_copy_props(frame, avci->to_free);
1617     if (ret < 0)
1618         return ret;
1619
1620     memcpy(frame->data,     avci->to_free->data,     sizeof(frame->data));
1621     memcpy(frame->linesize, avci->to_free->linesize, sizeof(frame->linesize));
1622     if (avci->to_free->extended_data != avci->to_free->data) {
1623         int planes = av_get_channel_layout_nb_channels(avci->to_free->channel_layout);
1624         int size   = planes * sizeof(*frame->extended_data);
1625
1626         if (!size) {
1627             av_frame_unref(frame);
1628             return AVERROR_BUG;
1629         }
1630
1631         frame->extended_data = av_malloc(size);
1632         if (!frame->extended_data) {
1633             av_frame_unref(frame);
1634             return AVERROR(ENOMEM);
1635         }
1636         memcpy(frame->extended_data, avci->to_free->extended_data,
1637                size);
1638     } else
1639         frame->extended_data = frame->data;
1640
1641     frame->format         = avci->to_free->format;
1642     frame->width          = avci->to_free->width;
1643     frame->height         = avci->to_free->height;
1644     frame->channel_layout = avci->to_free->channel_layout;
1645     frame->nb_samples     = avci->to_free->nb_samples;
1646
1647     return 0;
1648 }
1649
1650 int attribute_align_arg avcodec_decode_video2(AVCodecContext *avctx, AVFrame *picture,
1651                                               int *got_picture_ptr,
1652                                               AVPacket *avpkt)
1653 {
1654     AVCodecInternal *avci = avctx->internal;
1655     int ret;
1656
1657     *got_picture_ptr = 0;
1658     if ((avctx->coded_width || avctx->coded_height) && av_image_check_size(avctx->coded_width, avctx->coded_height, 0, avctx))
1659         return -1;
1660
1661     avctx->internal->pkt = avpkt;
1662     ret = apply_param_change(avctx, avpkt);
1663     if (ret < 0) {
1664         av_log(avctx, AV_LOG_ERROR, "Error applying parameter changes.\n");
1665         if (avctx->err_recognition & AV_EF_EXPLODE)
1666             return ret;
1667     }
1668
1669     av_frame_unref(picture);
1670
1671     if ((avctx->codec->capabilities & CODEC_CAP_DELAY) || avpkt->size || (avctx->active_thread_type & FF_THREAD_FRAME)) {
1672         if (HAVE_THREADS && avctx->active_thread_type & FF_THREAD_FRAME)
1673             ret = ff_thread_decode_frame(avctx, picture, got_picture_ptr,
1674                                          avpkt);
1675         else {
1676             ret = avctx->codec->decode(avctx, picture, got_picture_ptr,
1677                                        avpkt);
1678             picture->pkt_dts = avpkt->dts;
1679             /* get_buffer is supposed to set frame parameters */
1680             if (!(avctx->codec->capabilities & CODEC_CAP_DR1)) {
1681                 picture->sample_aspect_ratio = avctx->sample_aspect_ratio;
1682                 picture->width               = avctx->width;
1683                 picture->height              = avctx->height;
1684                 picture->format              = avctx->pix_fmt;
1685             }
1686         }
1687
1688         emms_c(); //needed to avoid an emms_c() call before every return;
1689
1690         if (*got_picture_ptr) {
1691             if (!avctx->refcounted_frames) {
1692                 int err = unrefcount_frame(avci, picture);
1693                 if (err < 0)
1694                     return err;
1695             }
1696
1697             avctx->frame_number++;
1698         } else
1699             av_frame_unref(picture);
1700     } else
1701         ret = 0;
1702
1703 #if FF_API_AVCTX_TIMEBASE
1704     if (avctx->framerate.num > 0 && avctx->framerate.den > 0)
1705         avctx->time_base = av_inv_q(avctx->framerate);
1706 #endif
1707
1708     return ret;
1709 }
1710
1711 int attribute_align_arg avcodec_decode_audio4(AVCodecContext *avctx,
1712                                               AVFrame *frame,
1713                                               int *got_frame_ptr,
1714                                               AVPacket *avpkt)
1715 {
1716     AVCodecInternal *avci = avctx->internal;
1717     int ret = 0;
1718
1719     *got_frame_ptr = 0;
1720
1721     avctx->internal->pkt = avpkt;
1722
1723     if (!avpkt->data && avpkt->size) {
1724         av_log(avctx, AV_LOG_ERROR, "invalid packet: NULL data, size != 0\n");
1725         return AVERROR(EINVAL);
1726     }
1727
1728     ret = apply_param_change(avctx, avpkt);
1729     if (ret < 0) {
1730         av_log(avctx, AV_LOG_ERROR, "Error applying parameter changes.\n");
1731         if (avctx->err_recognition & AV_EF_EXPLODE)
1732             return ret;
1733     }
1734
1735     av_frame_unref(frame);
1736
1737     if ((avctx->codec->capabilities & CODEC_CAP_DELAY) || avpkt->size) {
1738         ret = avctx->codec->decode(avctx, frame, got_frame_ptr, avpkt);
1739         if (ret >= 0 && *got_frame_ptr) {
1740             avctx->frame_number++;
1741             frame->pkt_dts = avpkt->dts;
1742             if (frame->format == AV_SAMPLE_FMT_NONE)
1743                 frame->format = avctx->sample_fmt;
1744
1745             if (!avctx->refcounted_frames) {
1746                 int err = unrefcount_frame(avci, frame);
1747                 if (err < 0)
1748                     return err;
1749             }
1750         } else
1751             av_frame_unref(frame);
1752     }
1753
1754
1755     return ret;
1756 }
1757
1758 int avcodec_decode_subtitle2(AVCodecContext *avctx, AVSubtitle *sub,
1759                              int *got_sub_ptr,
1760                              AVPacket *avpkt)
1761 {
1762     int ret;
1763
1764     avctx->internal->pkt = avpkt;
1765     *got_sub_ptr = 0;
1766     ret = avctx->codec->decode(avctx, sub, got_sub_ptr, avpkt);
1767     if (*got_sub_ptr)
1768         avctx->frame_number++;
1769     return ret;
1770 }
1771
1772 void avsubtitle_free(AVSubtitle *sub)
1773 {
1774     int i;
1775
1776     for (i = 0; i < sub->num_rects; i++) {
1777         av_freep(&sub->rects[i]->pict.data[0]);
1778         av_freep(&sub->rects[i]->pict.data[1]);
1779         av_freep(&sub->rects[i]->pict.data[2]);
1780         av_freep(&sub->rects[i]->pict.data[3]);
1781         av_freep(&sub->rects[i]->text);
1782         av_freep(&sub->rects[i]->ass);
1783         av_freep(&sub->rects[i]);
1784     }
1785
1786     av_freep(&sub->rects);
1787
1788     memset(sub, 0, sizeof(AVSubtitle));
1789 }
1790
1791 av_cold int avcodec_close(AVCodecContext *avctx)
1792 {
1793     if (avcodec_is_open(avctx)) {
1794         FramePool *pool = avctx->internal->pool;
1795         int i;
1796         if (HAVE_THREADS && avctx->internal->thread_ctx)
1797             ff_thread_free(avctx);
1798         if (avctx->codec && avctx->codec->close)
1799             avctx->codec->close(avctx);
1800         avctx->coded_frame = NULL;
1801         av_frame_free(&avctx->internal->to_free);
1802         for (i = 0; i < FF_ARRAY_ELEMS(pool->pools); i++)
1803             av_buffer_pool_uninit(&pool->pools[i]);
1804         av_freep(&avctx->internal->pool);
1805
1806         if (avctx->hwaccel && avctx->hwaccel->uninit)
1807             avctx->hwaccel->uninit(avctx);
1808         av_freep(&avctx->internal->hwaccel_priv_data);
1809
1810         av_freep(&avctx->internal);
1811     }
1812
1813     if (avctx->priv_data && avctx->codec && avctx->codec->priv_class)
1814         av_opt_free(avctx->priv_data);
1815     av_opt_free(avctx);
1816     av_freep(&avctx->priv_data);
1817     if (av_codec_is_encoder(avctx->codec))
1818         av_freep(&avctx->extradata);
1819     avctx->codec = NULL;
1820     avctx->active_thread_type = 0;
1821
1822     return 0;
1823 }
1824
1825 static AVCodec *find_encdec(enum AVCodecID id, int encoder)
1826 {
1827     AVCodec *p, *experimental = NULL;
1828     p = first_avcodec;
1829     while (p) {
1830         if ((encoder ? av_codec_is_encoder(p) : av_codec_is_decoder(p)) &&
1831             p->id == id) {
1832             if (p->capabilities & CODEC_CAP_EXPERIMENTAL && !experimental) {
1833                 experimental = p;
1834             } else
1835                 return p;
1836         }
1837         p = p->next;
1838     }
1839     return experimental;
1840 }
1841
1842 AVCodec *avcodec_find_encoder(enum AVCodecID id)
1843 {
1844     return find_encdec(id, 1);
1845 }
1846
1847 AVCodec *avcodec_find_encoder_by_name(const char *name)
1848 {
1849     AVCodec *p;
1850     if (!name)
1851         return NULL;
1852     p = first_avcodec;
1853     while (p) {
1854         if (av_codec_is_encoder(p) && strcmp(name, p->name) == 0)
1855             return p;
1856         p = p->next;
1857     }
1858     return NULL;
1859 }
1860
1861 AVCodec *avcodec_find_decoder(enum AVCodecID id)
1862 {
1863     return find_encdec(id, 0);
1864 }
1865
1866 AVCodec *avcodec_find_decoder_by_name(const char *name)
1867 {
1868     AVCodec *p;
1869     if (!name)
1870         return NULL;
1871     p = first_avcodec;
1872     while (p) {
1873         if (av_codec_is_decoder(p) && strcmp(name, p->name) == 0)
1874             return p;
1875         p = p->next;
1876     }
1877     return NULL;
1878 }
1879
1880 static int get_bit_rate(AVCodecContext *ctx)
1881 {
1882     int bit_rate;
1883     int bits_per_sample;
1884
1885     switch (ctx->codec_type) {
1886     case AVMEDIA_TYPE_VIDEO:
1887     case AVMEDIA_TYPE_DATA:
1888     case AVMEDIA_TYPE_SUBTITLE:
1889     case AVMEDIA_TYPE_ATTACHMENT:
1890         bit_rate = ctx->bit_rate;
1891         break;
1892     case AVMEDIA_TYPE_AUDIO:
1893         bits_per_sample = av_get_bits_per_sample(ctx->codec_id);
1894         bit_rate = bits_per_sample ? ctx->sample_rate * ctx->channels * bits_per_sample : ctx->bit_rate;
1895         break;
1896     default:
1897         bit_rate = 0;
1898         break;
1899     }
1900     return bit_rate;
1901 }
1902
1903 size_t av_get_codec_tag_string(char *buf, size_t buf_size, unsigned int codec_tag)
1904 {
1905     int i, len, ret = 0;
1906
1907 #define TAG_PRINT(x)                                              \
1908     (((x) >= '0' && (x) <= '9') ||                                \
1909      ((x) >= 'a' && (x) <= 'z') || ((x) >= 'A' && (x) <= 'Z') ||  \
1910      ((x) == '.' || (x) == ' '))
1911
1912     for (i = 0; i < 4; i++) {
1913         len = snprintf(buf, buf_size,
1914                        TAG_PRINT(codec_tag & 0xFF) ? "%c" : "[%d]", codec_tag & 0xFF);
1915         buf        += len;
1916         buf_size    = buf_size > len ? buf_size - len : 0;
1917         ret        += len;
1918         codec_tag >>= 8;
1919     }
1920     return ret;
1921 }
1922
1923 void avcodec_string(char *buf, int buf_size, AVCodecContext *enc, int encode)
1924 {
1925     const char *codec_name;
1926     const char *profile = NULL;
1927     const AVCodec *p;
1928     char buf1[32];
1929     int bitrate;
1930     int new_line = 0;
1931     AVRational display_aspect_ratio;
1932
1933     if (enc->codec)
1934         p = enc->codec;
1935     else if (encode)
1936         p = avcodec_find_encoder(enc->codec_id);
1937     else
1938         p = avcodec_find_decoder(enc->codec_id);
1939
1940     if (p) {
1941         codec_name = p->name;
1942         profile = av_get_profile_name(p, enc->profile);
1943     } else if (enc->codec_id == AV_CODEC_ID_MPEG2TS) {
1944         /* fake mpeg2 transport stream codec (currently not
1945          * registered) */
1946         codec_name = "mpeg2ts";
1947     } else {
1948         /* output avi tags */
1949         char tag_buf[32];
1950         av_get_codec_tag_string(tag_buf, sizeof(tag_buf), enc->codec_tag);
1951         snprintf(buf1, sizeof(buf1), "%s / 0x%04X", tag_buf, enc->codec_tag);
1952         codec_name = buf1;
1953     }
1954
1955     switch (enc->codec_type) {
1956     case AVMEDIA_TYPE_VIDEO:
1957         snprintf(buf, buf_size,
1958                  "Video: %s%s",
1959                  codec_name, enc->mb_decision ? " (hq)" : "");
1960         if (profile)
1961             snprintf(buf + strlen(buf), buf_size - strlen(buf),
1962                      " (%s)", profile);
1963         if (enc->codec_tag) {
1964             char tag_buf[32];
1965             av_get_codec_tag_string(tag_buf, sizeof(tag_buf), enc->codec_tag);
1966             snprintf(buf + strlen(buf), buf_size - strlen(buf),
1967                      " [%s / 0x%04X]", tag_buf, enc->codec_tag);
1968         }
1969
1970         av_strlcat(buf, "\n      ", buf_size);
1971         snprintf(buf + strlen(buf), buf_size - strlen(buf),
1972                  "%s", enc->pix_fmt == AV_PIX_FMT_NONE ? "none" :
1973                      av_get_pix_fmt_name(enc->pix_fmt));
1974
1975         if (enc->color_range != AVCOL_RANGE_UNSPECIFIED)
1976             snprintf(buf + strlen(buf), buf_size - strlen(buf), ", %s",
1977                      av_color_range_name(enc->color_range));
1978         if (enc->colorspace != AVCOL_SPC_UNSPECIFIED ||
1979             enc->color_primaries != AVCOL_PRI_UNSPECIFIED ||
1980             enc->color_trc != AVCOL_TRC_UNSPECIFIED) {
1981             new_line = 1;
1982             snprintf(buf + strlen(buf), buf_size - strlen(buf), ", %s/%s/%s",
1983                      av_color_space_name(enc->colorspace),
1984                      av_color_primaries_name(enc->color_primaries),
1985                      av_color_transfer_name(enc->color_trc));
1986         }
1987         if (av_log_get_level() >= AV_LOG_DEBUG &&
1988             enc->chroma_sample_location != AVCHROMA_LOC_UNSPECIFIED)
1989             snprintf(buf + strlen(buf), buf_size - strlen(buf), ", %s",
1990                      av_chroma_location_name(enc->chroma_sample_location));
1991
1992         if (enc->width) {
1993             av_strlcat(buf, new_line ? "\n      " : ", ", buf_size);
1994
1995             snprintf(buf + strlen(buf), buf_size - strlen(buf),
1996                      "%dx%d",
1997                      enc->width, enc->height);
1998
1999             if (av_log_get_level() >= AV_LOG_VERBOSE &&
2000                 (enc->width != enc->coded_width ||
2001                  enc->height != enc->coded_height))
2002                 snprintf(buf + strlen(buf), buf_size - strlen(buf),
2003                          " (%dx%d)", enc->coded_width, enc->coded_height);
2004
2005             if (enc->sample_aspect_ratio.num) {
2006                 av_reduce(&display_aspect_ratio.num, &display_aspect_ratio.den,
2007                           enc->width * enc->sample_aspect_ratio.num,
2008                           enc->height * enc->sample_aspect_ratio.den,
2009                           1024 * 1024);
2010                 snprintf(buf + strlen(buf), buf_size - strlen(buf),
2011                          " [PAR %d:%d DAR %d:%d]",
2012                          enc->sample_aspect_ratio.num, enc->sample_aspect_ratio.den,
2013                          display_aspect_ratio.num, display_aspect_ratio.den);
2014             }
2015             if (av_log_get_level() >= AV_LOG_DEBUG) {
2016                 int g = av_gcd(enc->time_base.num, enc->time_base.den);
2017                 snprintf(buf + strlen(buf), buf_size - strlen(buf),
2018                          ", %d/%d",
2019                          enc->time_base.num / g, enc->time_base.den / g);
2020             }
2021         }
2022         if (encode) {
2023             snprintf(buf + strlen(buf), buf_size - strlen(buf),
2024                      ", q=%d-%d", enc->qmin, enc->qmax);
2025         }
2026         break;
2027     case AVMEDIA_TYPE_AUDIO:
2028         snprintf(buf, buf_size,
2029                  "Audio: %s",
2030                  codec_name);
2031         if (profile)
2032             snprintf(buf + strlen(buf), buf_size - strlen(buf),
2033                      " (%s)", profile);
2034         if (enc->codec_tag) {
2035             char tag_buf[32];
2036             av_get_codec_tag_string(tag_buf, sizeof(tag_buf), enc->codec_tag);
2037             snprintf(buf + strlen(buf), buf_size - strlen(buf),
2038                      " [%s / 0x%04X]", tag_buf, enc->codec_tag);
2039         }
2040
2041         av_strlcat(buf, "\n      ", buf_size);
2042         if (enc->sample_rate) {
2043             snprintf(buf + strlen(buf), buf_size - strlen(buf),
2044                      "%d Hz, ", enc->sample_rate);
2045         }
2046         av_get_channel_layout_string(buf + strlen(buf), buf_size - strlen(buf), enc->channels, enc->channel_layout);
2047         if (enc->sample_fmt != AV_SAMPLE_FMT_NONE) {
2048             snprintf(buf + strlen(buf), buf_size - strlen(buf),
2049                      ", %s", av_get_sample_fmt_name(enc->sample_fmt));
2050         }
2051         break;
2052     case AVMEDIA_TYPE_DATA:
2053         snprintf(buf, buf_size, "Data: %s", codec_name);
2054         break;
2055     case AVMEDIA_TYPE_SUBTITLE:
2056         snprintf(buf, buf_size, "Subtitle: %s", codec_name);
2057         break;
2058     case AVMEDIA_TYPE_ATTACHMENT:
2059         snprintf(buf, buf_size, "Attachment: %s", codec_name);
2060         break;
2061     default:
2062         snprintf(buf, buf_size, "Invalid Codec type %d", enc->codec_type);
2063         return;
2064     }
2065     if (encode) {
2066         if (enc->flags & CODEC_FLAG_PASS1)
2067             snprintf(buf + strlen(buf), buf_size - strlen(buf),
2068                      ", pass 1");
2069         if (enc->flags & CODEC_FLAG_PASS2)
2070             snprintf(buf + strlen(buf), buf_size - strlen(buf),
2071                      ", pass 2");
2072     }
2073     bitrate = get_bit_rate(enc);
2074     if (bitrate != 0) {
2075         snprintf(buf + strlen(buf), buf_size - strlen(buf),
2076                  ", %d kb/s", bitrate / 1000);
2077     }
2078 }
2079
2080 const char *av_get_profile_name(const AVCodec *codec, int profile)
2081 {
2082     const AVProfile *p;
2083     if (profile == FF_PROFILE_UNKNOWN || !codec->profiles)
2084         return NULL;
2085
2086     for (p = codec->profiles; p->profile != FF_PROFILE_UNKNOWN; p++)
2087         if (p->profile == profile)
2088             return p->name;
2089
2090     return NULL;
2091 }
2092
2093 unsigned avcodec_version(void)
2094 {
2095     return LIBAVCODEC_VERSION_INT;
2096 }
2097
2098 const char *avcodec_configuration(void)
2099 {
2100     return LIBAV_CONFIGURATION;
2101 }
2102
2103 const char *avcodec_license(void)
2104 {
2105 #define LICENSE_PREFIX "libavcodec license: "
2106     return LICENSE_PREFIX LIBAV_LICENSE + sizeof(LICENSE_PREFIX) - 1;
2107 }
2108
2109 void avcodec_flush_buffers(AVCodecContext *avctx)
2110 {
2111     if (HAVE_THREADS && avctx->active_thread_type & FF_THREAD_FRAME)
2112         ff_thread_flush(avctx);
2113     else if (avctx->codec->flush)
2114         avctx->codec->flush(avctx);
2115
2116     if (!avctx->refcounted_frames)
2117         av_frame_unref(avctx->internal->to_free);
2118 }
2119
2120 int av_get_exact_bits_per_sample(enum AVCodecID codec_id)
2121 {
2122     switch (codec_id) {
2123     case AV_CODEC_ID_ADPCM_CT:
2124     case AV_CODEC_ID_ADPCM_IMA_APC:
2125     case AV_CODEC_ID_ADPCM_IMA_EA_SEAD:
2126     case AV_CODEC_ID_ADPCM_IMA_WS:
2127     case AV_CODEC_ID_ADPCM_G722:
2128     case AV_CODEC_ID_ADPCM_YAMAHA:
2129         return 4;
2130     case AV_CODEC_ID_PCM_ALAW:
2131     case AV_CODEC_ID_PCM_MULAW:
2132     case AV_CODEC_ID_PCM_S8:
2133     case AV_CODEC_ID_PCM_U8:
2134     case AV_CODEC_ID_PCM_ZORK:
2135         return 8;
2136     case AV_CODEC_ID_PCM_S16BE:
2137     case AV_CODEC_ID_PCM_S16LE:
2138     case AV_CODEC_ID_PCM_S16LE_PLANAR:
2139     case AV_CODEC_ID_PCM_U16BE:
2140     case AV_CODEC_ID_PCM_U16LE:
2141         return 16;
2142     case AV_CODEC_ID_PCM_S24DAUD:
2143     case AV_CODEC_ID_PCM_S24BE:
2144     case AV_CODEC_ID_PCM_S24LE:
2145     case AV_CODEC_ID_PCM_S24LE_PLANAR:
2146     case AV_CODEC_ID_PCM_U24BE:
2147     case AV_CODEC_ID_PCM_U24LE:
2148         return 24;
2149     case AV_CODEC_ID_PCM_S32BE:
2150     case AV_CODEC_ID_PCM_S32LE:
2151     case AV_CODEC_ID_PCM_S32LE_PLANAR:
2152     case AV_CODEC_ID_PCM_U32BE:
2153     case AV_CODEC_ID_PCM_U32LE:
2154     case AV_CODEC_ID_PCM_F32BE:
2155     case AV_CODEC_ID_PCM_F32LE:
2156         return 32;
2157     case AV_CODEC_ID_PCM_F64BE:
2158     case AV_CODEC_ID_PCM_F64LE:
2159         return 64;
2160     default:
2161         return 0;
2162     }
2163 }
2164
2165 int av_get_bits_per_sample(enum AVCodecID codec_id)
2166 {
2167     switch (codec_id) {
2168     case AV_CODEC_ID_ADPCM_SBPRO_2:
2169         return 2;
2170     case AV_CODEC_ID_ADPCM_SBPRO_3:
2171         return 3;
2172     case AV_CODEC_ID_ADPCM_SBPRO_4:
2173     case AV_CODEC_ID_ADPCM_IMA_WAV:
2174     case AV_CODEC_ID_ADPCM_IMA_QT:
2175     case AV_CODEC_ID_ADPCM_SWF:
2176     case AV_CODEC_ID_ADPCM_MS:
2177         return 4;
2178     default:
2179         return av_get_exact_bits_per_sample(codec_id);
2180     }
2181 }
2182
2183 int av_get_audio_frame_duration(AVCodecContext *avctx, int frame_bytes)
2184 {
2185     int id, sr, ch, ba, tag, bps;
2186
2187     id  = avctx->codec_id;
2188     sr  = avctx->sample_rate;
2189     ch  = avctx->channels;
2190     ba  = avctx->block_align;
2191     tag = avctx->codec_tag;
2192     bps = av_get_exact_bits_per_sample(avctx->codec_id);
2193
2194     /* codecs with an exact constant bits per sample */
2195     if (bps > 0 && ch > 0 && frame_bytes > 0)
2196         return (frame_bytes * 8) / (bps * ch);
2197     bps = avctx->bits_per_coded_sample;
2198
2199     /* codecs with a fixed packet duration */
2200     switch (id) {
2201     case AV_CODEC_ID_ADPCM_ADX:    return   32;
2202     case AV_CODEC_ID_ADPCM_IMA_QT: return   64;
2203     case AV_CODEC_ID_ADPCM_EA_XAS: return  128;
2204     case AV_CODEC_ID_AMR_NB:
2205     case AV_CODEC_ID_GSM:
2206     case AV_CODEC_ID_QCELP:
2207     case AV_CODEC_ID_RA_144:
2208     case AV_CODEC_ID_RA_288:       return  160;
2209     case AV_CODEC_ID_IMC:          return  256;
2210     case AV_CODEC_ID_AMR_WB:
2211     case AV_CODEC_ID_GSM_MS:       return  320;
2212     case AV_CODEC_ID_MP1:          return  384;
2213     case AV_CODEC_ID_ATRAC1:       return  512;
2214     case AV_CODEC_ID_ATRAC3:       return 1024;
2215     case AV_CODEC_ID_MP2:
2216     case AV_CODEC_ID_MUSEPACK7:    return 1152;
2217     case AV_CODEC_ID_AC3:          return 1536;
2218     }
2219
2220     if (sr > 0) {
2221         /* calc from sample rate */
2222         if (id == AV_CODEC_ID_TTA)
2223             return 256 * sr / 245;
2224
2225         if (ch > 0) {
2226             /* calc from sample rate and channels */
2227             if (id == AV_CODEC_ID_BINKAUDIO_DCT)
2228                 return (480 << (sr / 22050)) / ch;
2229         }
2230     }
2231
2232     if (ba > 0) {
2233         /* calc from block_align */
2234         if (id == AV_CODEC_ID_SIPR) {
2235             switch (ba) {
2236             case 20: return 160;
2237             case 19: return 144;
2238             case 29: return 288;
2239             case 37: return 480;
2240             }
2241         } else if (id == AV_CODEC_ID_ILBC) {
2242             switch (ba) {
2243             case 38: return 160;
2244             case 50: return 240;
2245             }
2246         }
2247     }
2248
2249     if (frame_bytes > 0) {
2250         /* calc from frame_bytes only */
2251         if (id == AV_CODEC_ID_TRUESPEECH)
2252             return 240 * (frame_bytes / 32);
2253         if (id == AV_CODEC_ID_NELLYMOSER)
2254             return 256 * (frame_bytes / 64);
2255
2256         if (bps > 0) {
2257             /* calc from frame_bytes and bits_per_coded_sample */
2258             if (id == AV_CODEC_ID_ADPCM_G726)
2259                 return frame_bytes * 8 / bps;
2260         }
2261
2262         if (ch > 0) {
2263             /* calc from frame_bytes and channels */
2264             switch (id) {
2265             case AV_CODEC_ID_ADPCM_4XM:
2266             case AV_CODEC_ID_ADPCM_IMA_ISS:
2267                 return (frame_bytes - 4 * ch) * 2 / ch;
2268             case AV_CODEC_ID_ADPCM_IMA_SMJPEG:
2269                 return (frame_bytes - 4) * 2 / ch;
2270             case AV_CODEC_ID_ADPCM_IMA_AMV:
2271                 return (frame_bytes - 8) * 2 / ch;
2272             case AV_CODEC_ID_ADPCM_XA:
2273                 return (frame_bytes / 128) * 224 / ch;
2274             case AV_CODEC_ID_INTERPLAY_DPCM:
2275                 return (frame_bytes - 6 - ch) / ch;
2276             case AV_CODEC_ID_ROQ_DPCM:
2277                 return (frame_bytes - 8) / ch;
2278             case AV_CODEC_ID_XAN_DPCM:
2279                 return (frame_bytes - 2 * ch) / ch;
2280             case AV_CODEC_ID_MACE3:
2281                 return 3 * frame_bytes / ch;
2282             case AV_CODEC_ID_MACE6:
2283                 return 6 * frame_bytes / ch;
2284             case AV_CODEC_ID_PCM_LXF:
2285                 return 2 * (frame_bytes / (5 * ch));
2286             }
2287
2288             if (tag) {
2289                 /* calc from frame_bytes, channels, and codec_tag */
2290                 if (id == AV_CODEC_ID_SOL_DPCM) {
2291                     if (tag == 3)
2292                         return frame_bytes / ch;
2293                     else
2294                         return frame_bytes * 2 / ch;
2295                 }
2296             }
2297
2298             if (ba > 0) {
2299                 /* calc from frame_bytes, channels, and block_align */
2300                 int blocks = frame_bytes / ba;
2301                 switch (avctx->codec_id) {
2302                 case AV_CODEC_ID_ADPCM_IMA_WAV:
2303                     return blocks * (1 + (ba - 4 * ch) / (4 * ch) * 8);
2304                 case AV_CODEC_ID_ADPCM_IMA_DK3:
2305                     return blocks * (((ba - 16) * 2 / 3 * 4) / ch);
2306                 case AV_CODEC_ID_ADPCM_IMA_DK4:
2307                     return blocks * (1 + (ba - 4 * ch) * 2 / ch);
2308                 case AV_CODEC_ID_ADPCM_MS:
2309                     return blocks * (2 + (ba - 7 * ch) * 2 / ch);
2310                 }
2311             }
2312
2313             if (bps > 0) {
2314                 /* calc from frame_bytes, channels, and bits_per_coded_sample */
2315                 switch (avctx->codec_id) {
2316                 case AV_CODEC_ID_PCM_DVD:
2317                     return 2 * (frame_bytes / ((bps * 2 / 8) * ch));
2318                 case AV_CODEC_ID_PCM_BLURAY:
2319                     return frame_bytes / ((FFALIGN(ch, 2) * bps) / 8);
2320                 case AV_CODEC_ID_S302M:
2321                     return 2 * (frame_bytes / ((bps + 4) / 4)) / ch;
2322                 }
2323             }
2324         }
2325     }
2326
2327     return 0;
2328 }
2329
2330 #if !HAVE_THREADS
2331 int ff_thread_init(AVCodecContext *s)
2332 {
2333     return -1;
2334 }
2335
2336 #endif
2337
2338 unsigned int av_xiphlacing(unsigned char *s, unsigned int v)
2339 {
2340     unsigned int n = 0;
2341
2342     while (v >= 0xff) {
2343         *s++ = 0xff;
2344         v -= 0xff;
2345         n++;
2346     }
2347     *s = v;
2348     n++;
2349     return n;
2350 }
2351
2352 int ff_match_2uint16(const uint16_t(*tab)[2], int size, int a, int b)
2353 {
2354     int i;
2355     for (i = 0; i < size && !(tab[i][0] == a && tab[i][1] == b); i++) ;
2356     return i;
2357 }
2358
2359 #if FF_API_MISSING_SAMPLE
2360 FF_DISABLE_DEPRECATION_WARNINGS
2361 void av_log_missing_feature(void *avc, const char *feature, int want_sample)
2362 {
2363     av_log(avc, AV_LOG_WARNING, "%s is not implemented. Update your Libav "
2364             "version to the newest one from Git. If the problem still "
2365             "occurs, it means that your file has a feature which has not "
2366             "been implemented.\n", feature);
2367     if(want_sample)
2368         av_log_ask_for_sample(avc, NULL);
2369 }
2370
2371 void av_log_ask_for_sample(void *avc, const char *msg, ...)
2372 {
2373     va_list argument_list;
2374
2375     va_start(argument_list, msg);
2376
2377     if (msg)
2378         av_vlog(avc, AV_LOG_WARNING, msg, argument_list);
2379     av_log(avc, AV_LOG_WARNING, "If you want to help, upload a sample "
2380             "of this file to ftp://upload.libav.org/incoming/ "
2381             "and contact the libav-devel mailing list.\n");
2382
2383     va_end(argument_list);
2384 }
2385 FF_ENABLE_DEPRECATION_WARNINGS
2386 #endif /* FF_API_MISSING_SAMPLE */
2387
2388 static AVHWAccel *first_hwaccel = NULL;
2389
2390 void av_register_hwaccel(AVHWAccel *hwaccel)
2391 {
2392     AVHWAccel **p = &first_hwaccel;
2393     while (*p)
2394         p = &(*p)->next;
2395     *p = hwaccel;
2396     hwaccel->next = NULL;
2397 }
2398
2399 AVHWAccel *av_hwaccel_next(const AVHWAccel *hwaccel)
2400 {
2401     return hwaccel ? hwaccel->next : first_hwaccel;
2402 }
2403
2404 int av_lockmgr_register(int (*cb)(void **mutex, enum AVLockOp op))
2405 {
2406     if (lockmgr_cb) {
2407         // There is no good way to rollback a failure to destroy the
2408         // mutex, so we ignore failures.
2409         lockmgr_cb(&codec_mutex,    AV_LOCK_DESTROY);
2410         lockmgr_cb(&avformat_mutex, AV_LOCK_DESTROY);
2411         lockmgr_cb     = NULL;
2412         codec_mutex    = NULL;
2413         avformat_mutex = NULL;
2414     }
2415
2416     if (cb) {
2417         void *new_codec_mutex    = NULL;
2418         void *new_avformat_mutex = NULL;
2419         int err;
2420         if (err = cb(&new_codec_mutex, AV_LOCK_CREATE)) {
2421             return err > 0 ? AVERROR_UNKNOWN : err;
2422         }
2423         if (err = cb(&new_avformat_mutex, AV_LOCK_CREATE)) {
2424             // Ignore failures to destroy the newly created mutex.
2425             cb(&new_codec_mutex, AV_LOCK_DESTROY);
2426             return err > 0 ? AVERROR_UNKNOWN : err;
2427         }
2428         lockmgr_cb     = cb;
2429         codec_mutex    = new_codec_mutex;
2430         avformat_mutex = new_avformat_mutex;
2431     }
2432
2433     return 0;
2434 }
2435
2436 int avpriv_lock_avformat(void)
2437 {
2438     if (lockmgr_cb) {
2439         if ((*lockmgr_cb)(&avformat_mutex, AV_LOCK_OBTAIN))
2440             return -1;
2441     }
2442     return 0;
2443 }
2444
2445 int avpriv_unlock_avformat(void)
2446 {
2447     if (lockmgr_cb) {
2448         if ((*lockmgr_cb)(&avformat_mutex, AV_LOCK_RELEASE))
2449             return -1;
2450     }
2451     return 0;
2452 }
2453
2454 unsigned int avpriv_toupper4(unsigned int x)
2455 {
2456     return av_toupper(x & 0xFF) +
2457           (av_toupper((x >>  8) & 0xFF) << 8)  +
2458           (av_toupper((x >> 16) & 0xFF) << 16) +
2459           (av_toupper((x >> 24) & 0xFF) << 24);
2460 }
2461
2462 int ff_thread_ref_frame(ThreadFrame *dst, ThreadFrame *src)
2463 {
2464     int ret;
2465
2466     dst->owner = src->owner;
2467
2468     ret = av_frame_ref(dst->f, src->f);
2469     if (ret < 0)
2470         return ret;
2471
2472     if (src->progress &&
2473         !(dst->progress = av_buffer_ref(src->progress))) {
2474         ff_thread_release_buffer(dst->owner, dst);
2475         return AVERROR(ENOMEM);
2476     }
2477
2478     return 0;
2479 }
2480
2481 #if !HAVE_THREADS
2482
2483 int ff_thread_get_buffer(AVCodecContext *avctx, ThreadFrame *f, int flags)
2484 {
2485     f->owner = avctx;
2486     return ff_get_buffer(avctx, f->f, flags);
2487 }
2488
2489 void ff_thread_release_buffer(AVCodecContext *avctx, ThreadFrame *f)
2490 {
2491     if (f->f)
2492         av_frame_unref(f->f);
2493 }
2494
2495 void ff_thread_finish_setup(AVCodecContext *avctx)
2496 {
2497 }
2498
2499 void ff_thread_report_progress(ThreadFrame *f, int progress, int field)
2500 {
2501 }
2502
2503 void ff_thread_await_progress(ThreadFrame *f, int progress, int field)
2504 {
2505 }
2506
2507 #endif
2508
2509 enum AVMediaType avcodec_get_type(enum AVCodecID codec_id)
2510 {
2511     if (codec_id <= AV_CODEC_ID_NONE)
2512         return AVMEDIA_TYPE_UNKNOWN;
2513     else if (codec_id < AV_CODEC_ID_FIRST_AUDIO)
2514         return AVMEDIA_TYPE_VIDEO;
2515     else if (codec_id < AV_CODEC_ID_FIRST_SUBTITLE)
2516         return AVMEDIA_TYPE_AUDIO;
2517     else if (codec_id < AV_CODEC_ID_FIRST_UNKNOWN)
2518         return AVMEDIA_TYPE_SUBTITLE;
2519
2520     return AVMEDIA_TYPE_UNKNOWN;
2521 }
2522
2523 int avcodec_is_open(AVCodecContext *s)
2524 {
2525     return !!s->internal;
2526 }
2527
2528 const uint8_t *avpriv_find_start_code(const uint8_t *restrict p,
2529                                       const uint8_t *end,
2530                                       uint32_t * restrict state)
2531 {
2532     int i;
2533
2534     assert(p <= end);
2535     if (p >= end)
2536         return end;
2537
2538     for (i = 0; i < 3; i++) {
2539         uint32_t tmp = *state << 8;
2540         *state = tmp + *(p++);
2541         if (tmp == 0x100 || p == end)
2542             return p;
2543     }
2544
2545     while (p < end) {
2546         if      (p[-1] > 1      ) p += 3;
2547         else if (p[-2]          ) p += 2;
2548         else if (p[-3]|(p[-1]-1)) p++;
2549         else {
2550             p++;
2551             break;
2552         }
2553     }
2554
2555     p = FFMIN(p, end) - 4;
2556     *state = AV_RB32(p);
2557
2558     return p + 4;
2559 }