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