]> git.sesse.net Git - ffmpeg/blob - libavcodec/utils.c
lavc: drop encode() support for video.
[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 "libavutil/avassert.h"
29 #include "libavutil/avstring.h"
30 #include "libavutil/crc.h"
31 #include "libavutil/mathematics.h"
32 #include "libavutil/pixdesc.h"
33 #include "libavutil/audioconvert.h"
34 #include "libavutil/imgutils.h"
35 #include "libavutil/samplefmt.h"
36 #include "libavutil/dict.h"
37 #include "avcodec.h"
38 #include "dsputil.h"
39 #include "libavutil/opt.h"
40 #include "imgconvert.h"
41 #include "thread.h"
42 #include "audioconvert.h"
43 #include "internal.h"
44 #include "bytestream.h"
45 #include <stdlib.h>
46 #include <stdarg.h>
47 #include <limits.h>
48 #include <float.h>
49
50 static int volatile entangled_thread_counter=0;
51 static int (*ff_lockmgr_cb)(void **mutex, enum AVLockOp op);
52 static void *codec_mutex;
53 static void *avformat_mutex;
54
55 void *av_fast_realloc(void *ptr, unsigned int *size, size_t min_size)
56 {
57     if(min_size < *size)
58         return ptr;
59
60     min_size= FFMAX(17*min_size/16 + 32, min_size);
61
62     ptr= av_realloc(ptr, min_size);
63     if(!ptr) //we could set this to the unmodified min_size but this is safer if the user lost the ptr and uses NULL now
64         min_size= 0;
65
66     *size= min_size;
67
68     return ptr;
69 }
70
71 void av_fast_malloc(void *ptr, unsigned int *size, size_t min_size)
72 {
73     void **p = ptr;
74     if (min_size < *size)
75         return;
76     min_size= FFMAX(17*min_size/16 + 32, min_size);
77     av_free(*p);
78     *p = av_malloc(min_size);
79     if (!*p) min_size = 0;
80     *size= min_size;
81 }
82
83 void av_fast_padded_malloc(void *ptr, unsigned int *size, size_t min_size)
84 {
85     void **p = ptr;
86     if (min_size > SIZE_MAX - FF_INPUT_BUFFER_PADDING_SIZE) {
87         av_freep(p);
88         *size = 0;
89         return;
90     }
91     av_fast_malloc(p, size, min_size + FF_INPUT_BUFFER_PADDING_SIZE);
92     if (*size)
93         memset((uint8_t *)*p + min_size, 0, FF_INPUT_BUFFER_PADDING_SIZE);
94 }
95
96 /* encoder management */
97 static AVCodec *first_avcodec = NULL;
98
99 AVCodec *av_codec_next(AVCodec *c){
100     if(c) return c->next;
101     else  return first_avcodec;
102 }
103
104 static void avcodec_init(void)
105 {
106     static int initialized = 0;
107
108     if (initialized != 0)
109         return;
110     initialized = 1;
111
112     ff_dsputil_static_init();
113 }
114
115 static av_always_inline int codec_is_encoder(AVCodec *codec)
116 {
117     return codec && (codec->encode || codec->encode2);
118 }
119
120 static av_always_inline int codec_is_decoder(AVCodec *codec)
121 {
122     return codec && codec->decode;
123 }
124
125 void avcodec_register(AVCodec *codec)
126 {
127     AVCodec **p;
128     avcodec_init();
129     p = &first_avcodec;
130     while (*p != NULL) p = &(*p)->next;
131     *p = codec;
132     codec->next = NULL;
133
134     if (codec->init_static_data)
135         codec->init_static_data(codec);
136 }
137
138 unsigned avcodec_get_edge_width(void)
139 {
140     return EDGE_WIDTH;
141 }
142
143 void avcodec_set_dimensions(AVCodecContext *s, int width, int height){
144     s->coded_width = width;
145     s->coded_height= height;
146     s->width = -((-width )>>s->lowres);
147     s->height= -((-height)>>s->lowres);
148 }
149
150 #define INTERNAL_BUFFER_SIZE (32+1)
151
152 void avcodec_align_dimensions2(AVCodecContext *s, int *width, int *height,
153                                int linesize_align[AV_NUM_DATA_POINTERS])
154 {
155     int i;
156     int w_align= 1;
157     int h_align= 1;
158
159     switch(s->pix_fmt){
160     case PIX_FMT_YUV420P:
161     case PIX_FMT_YUYV422:
162     case PIX_FMT_UYVY422:
163     case PIX_FMT_YUV422P:
164     case PIX_FMT_YUV440P:
165     case PIX_FMT_YUV444P:
166     case PIX_FMT_GBRP:
167     case PIX_FMT_GRAY8:
168     case PIX_FMT_GRAY16BE:
169     case PIX_FMT_GRAY16LE:
170     case PIX_FMT_YUVJ420P:
171     case PIX_FMT_YUVJ422P:
172     case PIX_FMT_YUVJ440P:
173     case PIX_FMT_YUVJ444P:
174     case PIX_FMT_YUVA420P:
175     case PIX_FMT_YUV420P9LE:
176     case PIX_FMT_YUV420P9BE:
177     case PIX_FMT_YUV420P10LE:
178     case PIX_FMT_YUV420P10BE:
179     case PIX_FMT_YUV422P9LE:
180     case PIX_FMT_YUV422P9BE:
181     case PIX_FMT_YUV422P10LE:
182     case PIX_FMT_YUV422P10BE:
183     case PIX_FMT_YUV444P9LE:
184     case PIX_FMT_YUV444P9BE:
185     case PIX_FMT_YUV444P10LE:
186     case PIX_FMT_YUV444P10BE:
187     case PIX_FMT_GBRP9LE:
188     case PIX_FMT_GBRP9BE:
189     case PIX_FMT_GBRP10LE:
190     case PIX_FMT_GBRP10BE:
191         w_align = 16; //FIXME assume 16 pixel per macroblock
192         h_align = 16 * 2; // interlaced needs 2 macroblocks height
193         break;
194     case PIX_FMT_YUV411P:
195     case PIX_FMT_UYYVYY411:
196         w_align=32;
197         h_align=8;
198         break;
199     case PIX_FMT_YUV410P:
200         if(s->codec_id == CODEC_ID_SVQ1){
201             w_align=64;
202             h_align=64;
203         }
204     case PIX_FMT_RGB555:
205         if(s->codec_id == CODEC_ID_RPZA){
206             w_align=4;
207             h_align=4;
208         }
209     case PIX_FMT_PAL8:
210     case PIX_FMT_BGR8:
211     case PIX_FMT_RGB8:
212         if(s->codec_id == CODEC_ID_SMC){
213             w_align=4;
214             h_align=4;
215         }
216         break;
217     case PIX_FMT_BGR24:
218         if((s->codec_id == CODEC_ID_MSZH) || (s->codec_id == CODEC_ID_ZLIB)){
219             w_align=4;
220             h_align=4;
221         }
222         break;
223     default:
224         w_align= 1;
225         h_align= 1;
226         break;
227     }
228
229     *width = FFALIGN(*width , w_align);
230     *height= FFALIGN(*height, h_align);
231     if(s->codec_id == CODEC_ID_H264 || s->lowres)
232         *height+=2; // some of the optimized chroma MC reads one line too much
233                     // which is also done in mpeg decoders with lowres > 0
234
235     for (i = 0; i < 4; i++)
236         linesize_align[i] = STRIDE_ALIGN;
237 }
238
239 void avcodec_align_dimensions(AVCodecContext *s, int *width, int *height){
240     int chroma_shift = av_pix_fmt_descriptors[s->pix_fmt].log2_chroma_w;
241     int linesize_align[AV_NUM_DATA_POINTERS];
242     int align;
243     avcodec_align_dimensions2(s, width, height, linesize_align);
244     align = FFMAX(linesize_align[0], linesize_align[3]);
245     linesize_align[1] <<= chroma_shift;
246     linesize_align[2] <<= chroma_shift;
247     align = FFMAX3(align, linesize_align[1], linesize_align[2]);
248     *width=FFALIGN(*width, align);
249 }
250
251 int avcodec_fill_audio_frame(AVFrame *frame, int nb_channels,
252                              enum AVSampleFormat sample_fmt, const uint8_t *buf,
253                              int buf_size, int align)
254 {
255     int ch, planar, needed_size, ret = 0;
256
257     needed_size = av_samples_get_buffer_size(NULL, nb_channels,
258                                              frame->nb_samples, sample_fmt,
259                                              align);
260     if (buf_size < needed_size)
261         return AVERROR(EINVAL);
262
263     planar = av_sample_fmt_is_planar(sample_fmt);
264     if (planar && nb_channels > AV_NUM_DATA_POINTERS) {
265         if (!(frame->extended_data = av_mallocz(nb_channels *
266                                                 sizeof(*frame->extended_data))))
267             return AVERROR(ENOMEM);
268     } else {
269         frame->extended_data = frame->data;
270     }
271
272     if ((ret = av_samples_fill_arrays(frame->extended_data, &frame->linesize[0],
273                                       buf, nb_channels, frame->nb_samples,
274                                       sample_fmt, align)) < 0) {
275         if (frame->extended_data != frame->data)
276             av_free(frame->extended_data);
277         return ret;
278     }
279     if (frame->extended_data != frame->data) {
280         for (ch = 0; ch < AV_NUM_DATA_POINTERS; ch++)
281             frame->data[ch] = frame->extended_data[ch];
282     }
283
284     return ret;
285 }
286
287 static int audio_get_buffer(AVCodecContext *avctx, AVFrame *frame)
288 {
289     AVCodecInternal *avci = avctx->internal;
290     InternalBuffer *buf;
291     int buf_size, ret;
292
293     buf_size = av_samples_get_buffer_size(NULL, avctx->channels,
294                                           frame->nb_samples, avctx->sample_fmt,
295                                           32);
296     if (buf_size < 0)
297         return AVERROR(EINVAL);
298
299     /* allocate InternalBuffer if needed */
300     if (!avci->buffer) {
301         avci->buffer = av_mallocz(sizeof(InternalBuffer));
302         if (!avci->buffer)
303             return AVERROR(ENOMEM);
304     }
305     buf = avci->buffer;
306
307     /* if there is a previously-used internal buffer, check its size and
308        channel count to see if we can reuse it */
309     if (buf->extended_data) {
310         /* if current buffer is too small, free it */
311         if (buf->extended_data[0] && buf_size > buf->audio_data_size) {
312             av_free(buf->extended_data[0]);
313             if (buf->extended_data != buf->data)
314                 av_free(&buf->extended_data);
315             buf->extended_data = NULL;
316             buf->data[0] = NULL;
317         }
318         /* if number of channels has changed, reset and/or free extended data
319            pointers but leave data buffer in buf->data[0] for reuse */
320         if (buf->nb_channels != avctx->channels) {
321             if (buf->extended_data != buf->data)
322                 av_free(buf->extended_data);
323             buf->extended_data = NULL;
324         }
325     }
326
327     /* if there is no previous buffer or the previous buffer cannot be used
328        as-is, allocate a new buffer and/or rearrange the channel pointers */
329     if (!buf->extended_data) {
330         if (!buf->data[0]) {
331             if (!(buf->data[0] = av_mallocz(buf_size)))
332                 return AVERROR(ENOMEM);
333             buf->audio_data_size = buf_size;
334         }
335         if ((ret = avcodec_fill_audio_frame(frame, avctx->channels,
336                                             avctx->sample_fmt, buf->data[0],
337                                             buf->audio_data_size, 32)))
338             return ret;
339
340         if (frame->extended_data == frame->data)
341             buf->extended_data = buf->data;
342         else
343             buf->extended_data = frame->extended_data;
344         memcpy(buf->data, frame->data, sizeof(frame->data));
345         buf->linesize[0] = frame->linesize[0];
346         buf->nb_channels = avctx->channels;
347     } else {
348         /* copy InternalBuffer info to the AVFrame */
349         frame->extended_data = buf->extended_data;
350         frame->linesize[0]   = buf->linesize[0];
351         memcpy(frame->data, buf->data, sizeof(frame->data));
352     }
353
354     frame->type          = FF_BUFFER_TYPE_INTERNAL;
355
356     if (avctx->pkt) frame->pkt_pts = avctx->pkt->pts;
357     else            frame->pkt_pts = AV_NOPTS_VALUE;
358     frame->reordered_opaque = avctx->reordered_opaque;
359
360     if (avctx->debug & FF_DEBUG_BUFFERS)
361         av_log(avctx, AV_LOG_DEBUG, "default_get_buffer called on frame %p, "
362                "internal audio buffer used\n", frame);
363
364     return 0;
365 }
366
367 static int video_get_buffer(AVCodecContext *s, AVFrame *pic)
368 {
369     int i;
370     int w= s->width;
371     int h= s->height;
372     InternalBuffer *buf;
373     AVCodecInternal *avci = s->internal;
374
375     if(pic->data[0]!=NULL) {
376         av_log(s, AV_LOG_ERROR, "pic->data[0]!=NULL in avcodec_default_get_buffer\n");
377         return -1;
378     }
379     if(avci->buffer_count >= INTERNAL_BUFFER_SIZE) {
380         av_log(s, AV_LOG_ERROR, "buffer_count overflow (missing release_buffer?)\n");
381         return -1;
382     }
383
384     if(av_image_check_size(w, h, 0, s))
385         return -1;
386
387     if (!avci->buffer) {
388         avci->buffer = av_mallocz((INTERNAL_BUFFER_SIZE+1) *
389                                   sizeof(InternalBuffer));
390     }
391
392     buf = &avci->buffer[avci->buffer_count];
393
394     if(buf->base[0] && (buf->width != w || buf->height != h || buf->pix_fmt != s->pix_fmt)){
395         if(s->active_thread_type&FF_THREAD_FRAME) {
396             av_log_missing_feature(s, "Width/height changing with frame threads is", 0);
397             return -1;
398         }
399
400         for (i = 0; i < AV_NUM_DATA_POINTERS; i++) {
401             av_freep(&buf->base[i]);
402             buf->data[i]= NULL;
403         }
404     }
405
406     if (!buf->base[0]) {
407         int h_chroma_shift, v_chroma_shift;
408         int size[4] = {0};
409         int tmpsize;
410         int unaligned;
411         AVPicture picture;
412         int stride_align[AV_NUM_DATA_POINTERS];
413         const int pixel_size = av_pix_fmt_descriptors[s->pix_fmt].comp[0].step_minus1+1;
414
415         avcodec_get_chroma_sub_sample(s->pix_fmt, &h_chroma_shift, &v_chroma_shift);
416
417         avcodec_align_dimensions2(s, &w, &h, stride_align);
418
419         if(!(s->flags&CODEC_FLAG_EMU_EDGE)){
420             w+= EDGE_WIDTH*2;
421             h+= EDGE_WIDTH*2;
422         }
423
424         do {
425             // NOTE: do not align linesizes individually, this breaks e.g. assumptions
426             // that linesize[0] == 2*linesize[1] in the MPEG-encoder for 4:2:2
427             av_image_fill_linesizes(picture.linesize, s->pix_fmt, w);
428             // increase alignment of w for next try (rhs gives the lowest bit set in w)
429             w += w & ~(w-1);
430
431             unaligned = 0;
432             for (i=0; i<4; i++){
433                 unaligned |= picture.linesize[i] % stride_align[i];
434             }
435         } while (unaligned);
436
437         tmpsize = av_image_fill_pointers(picture.data, s->pix_fmt, h, NULL, picture.linesize);
438         if (tmpsize < 0)
439             return -1;
440
441         for (i=0; i<3 && picture.data[i+1]; i++)
442             size[i] = picture.data[i+1] - picture.data[i];
443         size[i] = tmpsize - (picture.data[i] - picture.data[0]);
444
445         memset(buf->base, 0, sizeof(buf->base));
446         memset(buf->data, 0, sizeof(buf->data));
447
448         for(i=0; i<4 && size[i]; i++){
449             const int h_shift= i==0 ? 0 : h_chroma_shift;
450             const int v_shift= i==0 ? 0 : v_chroma_shift;
451
452             buf->linesize[i]= picture.linesize[i];
453
454             buf->base[i]= av_malloc(size[i]+16); //FIXME 16
455             if(buf->base[i]==NULL) return -1;
456             memset(buf->base[i], 128, size[i]);
457
458             // no edge if EDGE EMU or not planar YUV
459             if((s->flags&CODEC_FLAG_EMU_EDGE) || !size[2])
460                 buf->data[i] = buf->base[i];
461             else
462                 buf->data[i] = buf->base[i] + FFALIGN((buf->linesize[i]*EDGE_WIDTH>>v_shift) + (pixel_size*EDGE_WIDTH>>h_shift), stride_align[i]);
463         }
464         for (; i < AV_NUM_DATA_POINTERS; i++) {
465             buf->base[i] = buf->data[i] = NULL;
466             buf->linesize[i] = 0;
467         }
468         if(size[1] && !size[2])
469             ff_set_systematic_pal2((uint32_t*)buf->data[1], s->pix_fmt);
470         buf->width  = s->width;
471         buf->height = s->height;
472         buf->pix_fmt= s->pix_fmt;
473     }
474     pic->type= FF_BUFFER_TYPE_INTERNAL;
475
476     for (i = 0; i < AV_NUM_DATA_POINTERS; i++) {
477         pic->base[i]= buf->base[i];
478         pic->data[i]= buf->data[i];
479         pic->linesize[i]= buf->linesize[i];
480     }
481     pic->extended_data = pic->data;
482     avci->buffer_count++;
483
484     if(s->pkt) pic->pkt_pts= s->pkt->pts;
485     else       pic->pkt_pts= AV_NOPTS_VALUE;
486     pic->reordered_opaque= s->reordered_opaque;
487
488     if(s->debug&FF_DEBUG_BUFFERS)
489         av_log(s, AV_LOG_DEBUG, "default_get_buffer called on pic %p, %d "
490                "buffers used\n", pic, avci->buffer_count);
491
492     return 0;
493 }
494
495 int avcodec_default_get_buffer(AVCodecContext *avctx, AVFrame *frame)
496 {
497     switch (avctx->codec_type) {
498     case AVMEDIA_TYPE_VIDEO:
499         return video_get_buffer(avctx, frame);
500     case AVMEDIA_TYPE_AUDIO:
501         return audio_get_buffer(avctx, frame);
502     default:
503         return -1;
504     }
505 }
506
507 void avcodec_default_release_buffer(AVCodecContext *s, AVFrame *pic){
508     int i;
509     InternalBuffer *buf, *last;
510     AVCodecInternal *avci = s->internal;
511
512     assert(s->codec_type == AVMEDIA_TYPE_VIDEO);
513
514     assert(pic->type==FF_BUFFER_TYPE_INTERNAL);
515     assert(avci->buffer_count);
516
517     if (avci->buffer) {
518         buf = NULL; /* avoids warning */
519         for (i = 0; i < avci->buffer_count; i++) { //just 3-5 checks so is not worth to optimize
520             buf = &avci->buffer[i];
521             if (buf->data[0] == pic->data[0])
522                 break;
523         }
524         assert(i < avci->buffer_count);
525         avci->buffer_count--;
526         last = &avci->buffer[avci->buffer_count];
527
528         if (buf != last)
529             FFSWAP(InternalBuffer, *buf, *last);
530     }
531
532     for (i = 0; i < AV_NUM_DATA_POINTERS; i++) {
533         pic->data[i]=NULL;
534 //        pic->base[i]=NULL;
535     }
536 //printf("R%X\n", pic->opaque);
537
538     if(s->debug&FF_DEBUG_BUFFERS)
539         av_log(s, AV_LOG_DEBUG, "default_release_buffer called on pic %p, %d "
540                "buffers used\n", pic, avci->buffer_count);
541 }
542
543 int avcodec_default_reget_buffer(AVCodecContext *s, AVFrame *pic){
544     AVFrame temp_pic;
545     int i;
546
547     assert(s->codec_type == AVMEDIA_TYPE_VIDEO);
548
549     /* If no picture return a new buffer */
550     if(pic->data[0] == NULL) {
551         /* We will copy from buffer, so must be readable */
552         pic->buffer_hints |= FF_BUFFER_HINTS_READABLE;
553         return s->get_buffer(s, pic);
554     }
555
556     /* If internal buffer type return the same buffer */
557     if(pic->type == FF_BUFFER_TYPE_INTERNAL) {
558         if(s->pkt) pic->pkt_pts= s->pkt->pts;
559         else       pic->pkt_pts= AV_NOPTS_VALUE;
560         pic->reordered_opaque= s->reordered_opaque;
561         return 0;
562     }
563
564     /*
565      * Not internal type and reget_buffer not overridden, emulate cr buffer
566      */
567     temp_pic = *pic;
568     for(i = 0; i < AV_NUM_DATA_POINTERS; i++)
569         pic->data[i] = pic->base[i] = NULL;
570     pic->opaque = NULL;
571     /* Allocate new frame */
572     if (s->get_buffer(s, pic))
573         return -1;
574     /* Copy image data from old buffer to new buffer */
575     av_picture_copy((AVPicture*)pic, (AVPicture*)&temp_pic, s->pix_fmt, s->width,
576              s->height);
577     s->release_buffer(s, &temp_pic); // Release old frame
578     return 0;
579 }
580
581 int avcodec_default_execute(AVCodecContext *c, int (*func)(AVCodecContext *c2, void *arg2),void *arg, int *ret, int count, int size){
582     int i;
583
584     for(i=0; i<count; i++){
585         int r= func(c, (char*)arg + i*size);
586         if(ret) ret[i]= r;
587     }
588     return 0;
589 }
590
591 int avcodec_default_execute2(AVCodecContext *c, int (*func)(AVCodecContext *c2, void *arg2, int jobnr, int threadnr),void *arg, int *ret, int count){
592     int i;
593
594     for(i=0; i<count; i++){
595         int r= func(c, arg, i, 0);
596         if(ret) ret[i]= r;
597     }
598     return 0;
599 }
600
601 enum PixelFormat avcodec_default_get_format(struct AVCodecContext *s, const enum PixelFormat *fmt){
602     while (*fmt != PIX_FMT_NONE && ff_is_hwaccel_pix_fmt(*fmt))
603         ++fmt;
604     return fmt[0];
605 }
606
607 void avcodec_get_frame_defaults(AVFrame *pic){
608     memset(pic, 0, sizeof(AVFrame));
609
610     pic->pts= AV_NOPTS_VALUE;
611     pic->key_frame= 1;
612     pic->sample_aspect_ratio = (AVRational){0, 1};
613     pic->format = -1;           /* unknown */
614 }
615
616 AVFrame *avcodec_alloc_frame(void){
617     AVFrame *pic= av_malloc(sizeof(AVFrame));
618
619     if(pic==NULL) return NULL;
620
621     avcodec_get_frame_defaults(pic);
622
623     return pic;
624 }
625
626 int attribute_align_arg avcodec_open2(AVCodecContext *avctx, AVCodec *codec, AVDictionary **options)
627 {
628     int ret = 0;
629     AVDictionary *tmp = NULL;
630
631     if (avcodec_is_open(avctx))
632         return 0;
633
634     if ((!codec && !avctx->codec)) {
635         av_log(avctx, AV_LOG_ERROR, "No codec provided to avcodec_open2().\n");
636         return AVERROR(EINVAL);
637     }
638     if ((codec && avctx->codec && codec != avctx->codec)) {
639         av_log(avctx, AV_LOG_ERROR, "This AVCodecContext was allocated for %s, "
640                "but %s passed to avcodec_open2().\n", avctx->codec->name, codec->name);
641         return AVERROR(EINVAL);
642     }
643     if (!codec)
644         codec = avctx->codec;
645
646     if (avctx->extradata_size < 0 || avctx->extradata_size >= FF_MAX_EXTRADATA_SIZE)
647         return AVERROR(EINVAL);
648
649     if (options)
650         av_dict_copy(&tmp, *options, 0);
651
652     /* If there is a user-supplied mutex locking routine, call it. */
653     if (ff_lockmgr_cb) {
654         if ((*ff_lockmgr_cb)(&codec_mutex, AV_LOCK_OBTAIN))
655             return -1;
656     }
657
658     entangled_thread_counter++;
659     if(entangled_thread_counter != 1){
660         av_log(avctx, AV_LOG_ERROR, "insufficient thread locking around avcodec_open/close()\n");
661         ret = -1;
662         goto end;
663     }
664
665     avctx->internal = av_mallocz(sizeof(AVCodecInternal));
666     if (!avctx->internal) {
667         ret = AVERROR(ENOMEM);
668         goto end;
669     }
670
671     if (codec->priv_data_size > 0) {
672       if(!avctx->priv_data){
673         avctx->priv_data = av_mallocz(codec->priv_data_size);
674         if (!avctx->priv_data) {
675             ret = AVERROR(ENOMEM);
676             goto end;
677         }
678         if (codec->priv_class) {
679             *(AVClass**)avctx->priv_data= codec->priv_class;
680             av_opt_set_defaults(avctx->priv_data);
681         }
682       }
683       if (codec->priv_class && (ret = av_opt_set_dict(avctx->priv_data, &tmp)) < 0)
684           goto free_and_end;
685     } else {
686         avctx->priv_data = NULL;
687     }
688     if ((ret = av_opt_set_dict(avctx, &tmp)) < 0)
689         goto free_and_end;
690
691     if(avctx->coded_width && avctx->coded_height)
692         avcodec_set_dimensions(avctx, avctx->coded_width, avctx->coded_height);
693     else if(avctx->width && avctx->height)
694         avcodec_set_dimensions(avctx, avctx->width, avctx->height);
695
696     if ((avctx->coded_width || avctx->coded_height || avctx->width || avctx->height)
697         && (  av_image_check_size(avctx->coded_width, avctx->coded_height, 0, avctx) < 0
698            || av_image_check_size(avctx->width,       avctx->height,       0, avctx) < 0)) {
699         av_log(avctx, AV_LOG_WARNING, "ignoring invalid width/height values\n");
700         avcodec_set_dimensions(avctx, 0, 0);
701     }
702
703     /* if the decoder init function was already called previously,
704        free the already allocated subtitle_header before overwriting it */
705     if (codec_is_decoder(codec))
706         av_freep(&avctx->subtitle_header);
707
708 #define SANE_NB_CHANNELS 128U
709     if (avctx->channels > SANE_NB_CHANNELS) {
710         ret = AVERROR(EINVAL);
711         goto free_and_end;
712     }
713
714     avctx->codec = codec;
715     if ((avctx->codec_type == AVMEDIA_TYPE_UNKNOWN || avctx->codec_type == codec->type) &&
716         avctx->codec_id == CODEC_ID_NONE) {
717         avctx->codec_type = codec->type;
718         avctx->codec_id   = codec->id;
719     }
720     if (avctx->codec_id != codec->id || (avctx->codec_type != codec->type
721                            && avctx->codec_type != AVMEDIA_TYPE_ATTACHMENT)) {
722         av_log(avctx, AV_LOG_ERROR, "codec type or id mismatches\n");
723         ret = AVERROR(EINVAL);
724         goto free_and_end;
725     }
726     avctx->frame_number = 0;
727
728     if (avctx->codec_type == AVMEDIA_TYPE_AUDIO &&
729         (!avctx->time_base.num || !avctx->time_base.den)) {
730         avctx->time_base.num = 1;
731         avctx->time_base.den = avctx->sample_rate;
732     }
733
734     if (HAVE_THREADS && !avctx->thread_opaque) {
735         ret = ff_thread_init(avctx);
736         if (ret < 0) {
737             goto free_and_end;
738         }
739     }
740     if (!HAVE_THREADS && !(codec->capabilities & CODEC_CAP_AUTO_THREADS))
741         avctx->thread_count = 1;
742
743     if (avctx->codec->max_lowres < avctx->lowres) {
744         av_log(avctx, AV_LOG_ERROR, "The maximum value for lowres supported by the decoder is %d\n",
745                avctx->codec->max_lowres);
746         ret = AVERROR(EINVAL);
747         goto free_and_end;
748     }
749     if (codec_is_encoder(avctx->codec)) {
750         int i;
751         if (avctx->codec->sample_fmts) {
752             for (i = 0; avctx->codec->sample_fmts[i] != AV_SAMPLE_FMT_NONE; i++)
753                 if (avctx->sample_fmt == avctx->codec->sample_fmts[i])
754                     break;
755             if (avctx->codec->sample_fmts[i] == AV_SAMPLE_FMT_NONE) {
756                 av_log(avctx, AV_LOG_ERROR, "Specified sample_fmt is not supported.\n");
757                 ret = AVERROR(EINVAL);
758                 goto free_and_end;
759             }
760         }
761         if (avctx->codec->pix_fmts) {
762             for (i = 0; avctx->codec->pix_fmts[i] != PIX_FMT_NONE; i++)
763                 if (avctx->pix_fmt == avctx->codec->pix_fmts[i])
764                     break;
765             if (avctx->codec->pix_fmts[i] == PIX_FMT_NONE) {
766                 av_log(avctx, AV_LOG_ERROR, "Specified pix_fmt is not supported\n");
767                 ret = AVERROR(EINVAL);
768                 goto free_and_end;
769             }
770         }
771         if (avctx->codec->supported_samplerates) {
772             for (i = 0; avctx->codec->supported_samplerates[i] != 0; i++)
773                 if (avctx->sample_rate == avctx->codec->supported_samplerates[i])
774                     break;
775             if (avctx->codec->supported_samplerates[i] == 0) {
776                 av_log(avctx, AV_LOG_ERROR, "Specified sample_rate is not supported\n");
777                 ret = AVERROR(EINVAL);
778                 goto free_and_end;
779             }
780         }
781         if (avctx->codec->channel_layouts) {
782             if (!avctx->channel_layout) {
783                 av_log(avctx, AV_LOG_WARNING, "channel_layout not specified\n");
784             } else {
785                 for (i = 0; avctx->codec->channel_layouts[i] != 0; i++)
786                     if (avctx->channel_layout == avctx->codec->channel_layouts[i])
787                         break;
788                 if (avctx->codec->channel_layouts[i] == 0) {
789                     av_log(avctx, AV_LOG_ERROR, "Specified channel_layout is not supported\n");
790                     ret = AVERROR(EINVAL);
791                     goto free_and_end;
792                 }
793             }
794         }
795         if (avctx->channel_layout && avctx->channels) {
796             if (av_get_channel_layout_nb_channels(avctx->channel_layout) != avctx->channels) {
797                 av_log(avctx, AV_LOG_ERROR, "channel layout does not match number of channels\n");
798                 ret = AVERROR(EINVAL);
799                 goto free_and_end;
800             }
801         } else if (avctx->channel_layout) {
802             avctx->channels = av_get_channel_layout_nb_channels(avctx->channel_layout);
803         }
804     }
805
806     if(avctx->codec->init && !(avctx->active_thread_type&FF_THREAD_FRAME)){
807         ret = avctx->codec->init(avctx);
808         if (ret < 0) {
809             goto free_and_end;
810         }
811     }
812 end:
813     entangled_thread_counter--;
814
815     /* Release any user-supplied mutex. */
816     if (ff_lockmgr_cb) {
817         (*ff_lockmgr_cb)(&codec_mutex, AV_LOCK_RELEASE);
818     }
819     if (options) {
820         av_dict_free(options);
821         *options = tmp;
822     }
823
824     return ret;
825 free_and_end:
826     av_dict_free(&tmp);
827     av_freep(&avctx->priv_data);
828     av_freep(&avctx->internal);
829     avctx->codec= NULL;
830     goto end;
831 }
832
833 int ff_alloc_packet(AVPacket *avpkt, int size)
834 {
835     if (size > INT_MAX - FF_INPUT_BUFFER_PADDING_SIZE)
836         return AVERROR(EINVAL);
837
838     if (avpkt->data) {
839         uint8_t *pkt_data;
840
841         if (avpkt->size < size)
842             return AVERROR(EINVAL);
843
844         pkt_data = avpkt->data;
845         av_init_packet(avpkt);
846         avpkt->data = pkt_data;
847         avpkt->size = size;
848         return 0;
849     } else {
850         return av_new_packet(avpkt, size);
851     }
852 }
853
854 int attribute_align_arg avcodec_encode_audio2(AVCodecContext *avctx,
855                                               AVPacket *avpkt,
856                                               const AVFrame *frame,
857                                               int *got_packet_ptr)
858 {
859     int ret;
860     int user_packet = !!avpkt->data;
861     int nb_samples;
862
863     if (!(avctx->codec->capabilities & CODEC_CAP_DELAY) && !frame) {
864         av_init_packet(avpkt);
865         avpkt->size = 0;
866         return 0;
867     }
868
869     /* check for valid frame size */
870     if (frame) {
871         nb_samples = frame->nb_samples;
872         if (avctx->codec->capabilities & CODEC_CAP_SMALL_LAST_FRAME) {
873             if (nb_samples > avctx->frame_size)
874                 return AVERROR(EINVAL);
875         } else if (!(avctx->codec->capabilities & CODEC_CAP_VARIABLE_FRAME_SIZE)) {
876             if (nb_samples != avctx->frame_size)
877                 return AVERROR(EINVAL);
878         }
879     } else {
880         nb_samples = avctx->frame_size;
881     }
882
883     if (avctx->codec->encode2) {
884         *got_packet_ptr = 0;
885         ret = avctx->codec->encode2(avctx, avpkt, frame, got_packet_ptr);
886         if (!ret && *got_packet_ptr) {
887             if (!(avctx->codec->capabilities & CODEC_CAP_DELAY)) {
888                 if (avpkt->pts == AV_NOPTS_VALUE)
889                     avpkt->pts = frame->pts;
890                 if (!avpkt->duration)
891                     avpkt->duration = ff_samples_to_time_base(avctx,
892                                                               frame->nb_samples);
893             }
894             avpkt->dts = avpkt->pts;
895         } else {
896             avpkt->size = 0;
897         }
898     } else {
899         /* for compatibility with encoders not supporting encode2(), we need to
900            allocate a packet buffer if the user has not provided one or check
901            the size otherwise */
902         int fs_tmp   = 0;
903         int buf_size = avpkt->size;
904         if (!user_packet) {
905             if (avctx->codec->capabilities & CODEC_CAP_VARIABLE_FRAME_SIZE) {
906                 av_assert0(av_get_bits_per_sample(avctx->codec_id) != 0);
907                 buf_size = nb_samples * avctx->channels *
908                            av_get_bits_per_sample(avctx->codec_id) / 8;
909             } else {
910                 /* this is a guess as to the required size.
911                    if an encoder needs more than this, it should probably
912                    implement encode2() */
913                 buf_size = 2 * avctx->frame_size * avctx->channels *
914                            av_get_bytes_per_sample(avctx->sample_fmt);
915                 buf_size += FF_MIN_BUFFER_SIZE;
916             }
917         }
918         if ((ret = ff_alloc_packet(avpkt, buf_size)))
919             return ret;
920
921         /* Encoders using AVCodec.encode() that support
922            CODEC_CAP_SMALL_LAST_FRAME require avctx->frame_size to be set to
923            the smaller size when encoding the last frame.
924            This code can be removed once all encoders supporting
925            CODEC_CAP_SMALL_LAST_FRAME use encode2() */
926         if ((avctx->codec->capabilities & CODEC_CAP_SMALL_LAST_FRAME) &&
927             nb_samples < avctx->frame_size) {
928             fs_tmp = avctx->frame_size;
929             avctx->frame_size = nb_samples;
930         }
931
932         /* encode the frame */
933         ret = avctx->codec->encode(avctx, avpkt->data, avpkt->size,
934                                    frame ? frame->data[0] : NULL);
935         if (ret >= 0) {
936             if (!ret) {
937                 /* no output. if the packet data was allocated by libavcodec,
938                    free it */
939                 if (!user_packet)
940                     av_freep(&avpkt->data);
941             } else {
942                 if (avctx->coded_frame)
943                     avpkt->pts = avpkt->dts = avctx->coded_frame->pts;
944                 /* Set duration for final small packet. This can be removed
945                    once all encoders supporting CODEC_CAP_SMALL_LAST_FRAME use
946                    encode2() */
947                 if (fs_tmp) {
948                     avpkt->duration = ff_samples_to_time_base(avctx,
949                                                               avctx->frame_size);
950                 }
951             }
952             avpkt->size = ret;
953             *got_packet_ptr = (ret > 0);
954             ret = 0;
955         }
956
957         if (fs_tmp)
958             avctx->frame_size = fs_tmp;
959     }
960     if (!ret)
961         avctx->frame_number++;
962
963     /* NOTE: if we add any audio encoders which output non-keyframe packets,
964              this needs to be moved to the encoders, but for now we can do it
965              here to simplify things */
966     avpkt->flags |= AV_PKT_FLAG_KEY;
967
968     return ret;
969 }
970
971 #if FF_API_OLD_DECODE_AUDIO
972 int attribute_align_arg avcodec_encode_audio(AVCodecContext *avctx,
973                                              uint8_t *buf, int buf_size,
974                                              const short *samples)
975 {
976     AVPacket pkt;
977     AVFrame frame0;
978     AVFrame *frame;
979     int ret, samples_size, got_packet;
980
981     av_init_packet(&pkt);
982     pkt.data = buf;
983     pkt.size = buf_size;
984
985     if (samples) {
986         frame = &frame0;
987         avcodec_get_frame_defaults(frame);
988
989         if (avctx->frame_size) {
990             frame->nb_samples = avctx->frame_size;
991         } else {
992             /* if frame_size is not set, the number of samples must be
993                calculated from the buffer size */
994             int64_t nb_samples;
995             if (!av_get_bits_per_sample(avctx->codec_id)) {
996                 av_log(avctx, AV_LOG_ERROR, "avcodec_encode_audio() does not "
997                        "support this codec\n");
998                 return AVERROR(EINVAL);
999             }
1000             nb_samples = (int64_t)buf_size * 8 /
1001                          (av_get_bits_per_sample(avctx->codec_id) *
1002                          avctx->channels);
1003             if (nb_samples >= INT_MAX)
1004                 return AVERROR(EINVAL);
1005             frame->nb_samples = nb_samples;
1006         }
1007
1008         /* it is assumed that the samples buffer is large enough based on the
1009            relevant parameters */
1010         samples_size = av_samples_get_buffer_size(NULL, avctx->channels,
1011                                                   frame->nb_samples,
1012                                                   avctx->sample_fmt, 1);
1013         if ((ret = avcodec_fill_audio_frame(frame, avctx->channels,
1014                                             avctx->sample_fmt,
1015                                             samples, samples_size, 1)))
1016             return ret;
1017
1018         /* fabricate frame pts from sample count.
1019            this is needed because the avcodec_encode_audio() API does not have
1020            a way for the user to provide pts */
1021         frame->pts = ff_samples_to_time_base(avctx,
1022                                              avctx->internal->sample_count);
1023         avctx->internal->sample_count += frame->nb_samples;
1024     } else {
1025         frame = NULL;
1026     }
1027
1028     got_packet = 0;
1029     ret = avcodec_encode_audio2(avctx, &pkt, frame, &got_packet);
1030     if (!ret && got_packet && avctx->coded_frame) {
1031         avctx->coded_frame->pts       = pkt.pts;
1032         avctx->coded_frame->key_frame = !!(pkt.flags & AV_PKT_FLAG_KEY);
1033     }
1034     /* free any side data since we cannot return it */
1035     if (pkt.side_data_elems > 0) {
1036         int i;
1037         for (i = 0; i < pkt.side_data_elems; i++)
1038             av_free(pkt.side_data[i].data);
1039         av_freep(&pkt.side_data);
1040         pkt.side_data_elems = 0;
1041     }
1042
1043     if (frame && frame->extended_data != frame->data)
1044         av_free(frame->extended_data);
1045
1046     return ret ? ret : pkt.size;
1047 }
1048 #endif
1049
1050 #if FF_API_OLD_ENCODE_VIDEO
1051 int attribute_align_arg avcodec_encode_video(AVCodecContext *avctx, uint8_t *buf, int buf_size,
1052                          const AVFrame *pict)
1053 {
1054     AVPacket pkt;
1055     int ret, got_packet = 0;
1056
1057     if(buf_size < FF_MIN_BUFFER_SIZE){
1058         av_log(avctx, AV_LOG_ERROR, "buffer smaller than minimum size\n");
1059         return -1;
1060     }
1061
1062     av_init_packet(&pkt);
1063     pkt.data = buf;
1064     pkt.size = buf_size;
1065
1066     ret = avcodec_encode_video2(avctx, &pkt, pict, &got_packet);
1067     if (!ret && got_packet && avctx->coded_frame) {
1068         avctx->coded_frame->pts       = pkt.pts;
1069         avctx->coded_frame->key_frame = !!(pkt.flags & AV_PKT_FLAG_KEY);
1070     }
1071
1072     /* free any side data since we cannot return it */
1073     if (pkt.side_data_elems > 0) {
1074         int i;
1075         for (i = 0; i < pkt.side_data_elems; i++)
1076             av_free(pkt.side_data[i].data);
1077         av_freep(&pkt.side_data);
1078         pkt.side_data_elems = 0;
1079     }
1080
1081     return ret ? ret : pkt.size;
1082 }
1083 #endif
1084
1085 int attribute_align_arg avcodec_encode_video2(AVCodecContext *avctx,
1086                                               AVPacket *avpkt,
1087                                               const AVFrame *frame,
1088                                               int *got_packet_ptr)
1089 {
1090     int ret;
1091     int user_packet = !!avpkt->data;
1092
1093     if (!(avctx->codec->capabilities & CODEC_CAP_DELAY) && !frame) {
1094         av_init_packet(avpkt);
1095         avpkt->size     = 0;
1096         *got_packet_ptr = 0;
1097         return 0;
1098     }
1099
1100     if (av_image_check_size(avctx->width, avctx->height, 0, avctx))
1101         return AVERROR(EINVAL);
1102
1103     av_assert0(avctx->codec->encode2);
1104
1105     *got_packet_ptr = 0;
1106     ret = avctx->codec->encode2(avctx, avpkt, frame, got_packet_ptr);
1107     if (!ret) {
1108         if (!*got_packet_ptr)
1109             avpkt->size = 0;
1110         else if (!(avctx->codec->capabilities & CODEC_CAP_DELAY))
1111             avpkt->pts = avpkt->dts = frame->pts;
1112     }
1113
1114     if (!ret)
1115         avctx->frame_number++;
1116
1117     emms_c();
1118     return ret;
1119 }
1120
1121 int avcodec_encode_subtitle(AVCodecContext *avctx, uint8_t *buf, int buf_size,
1122                             const AVSubtitle *sub)
1123 {
1124     int ret;
1125     if(sub->start_display_time) {
1126         av_log(avctx, AV_LOG_ERROR, "start_display_time must be 0.\n");
1127         return -1;
1128     }
1129     if(sub->num_rects == 0 || !sub->rects)
1130         return -1;
1131     ret = avctx->codec->encode(avctx, buf, buf_size, sub);
1132     avctx->frame_number++;
1133     return ret;
1134 }
1135
1136 static void apply_param_change(AVCodecContext *avctx, AVPacket *avpkt)
1137 {
1138     int size = 0;
1139     const uint8_t *data;
1140     uint32_t flags;
1141
1142     if (!(avctx->codec->capabilities & CODEC_CAP_PARAM_CHANGE))
1143         return;
1144
1145     data = av_packet_get_side_data(avpkt, AV_PKT_DATA_PARAM_CHANGE, &size);
1146     if (!data || size < 4)
1147         return;
1148     flags = bytestream_get_le32(&data);
1149     size -= 4;
1150     if (size < 4) /* Required for any of the changes */
1151         return;
1152     if (flags & AV_SIDE_DATA_PARAM_CHANGE_CHANNEL_COUNT) {
1153         avctx->channels = bytestream_get_le32(&data);
1154         size -= 4;
1155     }
1156     if (flags & AV_SIDE_DATA_PARAM_CHANGE_CHANNEL_LAYOUT) {
1157         if (size < 8)
1158             return;
1159         avctx->channel_layout = bytestream_get_le64(&data);
1160         size -= 8;
1161     }
1162     if (size < 4)
1163         return;
1164     if (flags & AV_SIDE_DATA_PARAM_CHANGE_SAMPLE_RATE) {
1165         avctx->sample_rate = bytestream_get_le32(&data);
1166         size -= 4;
1167     }
1168     if (flags & AV_SIDE_DATA_PARAM_CHANGE_DIMENSIONS) {
1169         if (size < 8)
1170             return;
1171         avctx->width  = bytestream_get_le32(&data);
1172         avctx->height = bytestream_get_le32(&data);
1173         avcodec_set_dimensions(avctx, avctx->width, avctx->height);
1174         size -= 8;
1175     }
1176 }
1177
1178 int attribute_align_arg avcodec_decode_video2(AVCodecContext *avctx, AVFrame *picture,
1179                          int *got_picture_ptr,
1180                          AVPacket *avpkt)
1181 {
1182     int ret;
1183
1184     *got_picture_ptr= 0;
1185     if((avctx->coded_width||avctx->coded_height) && av_image_check_size(avctx->coded_width, avctx->coded_height, 0, avctx))
1186         return -1;
1187
1188     avctx->pkt = avpkt;
1189     apply_param_change(avctx, avpkt);
1190
1191     if((avctx->codec->capabilities & CODEC_CAP_DELAY) || avpkt->size || (avctx->active_thread_type&FF_THREAD_FRAME)){
1192         if (HAVE_THREADS && avctx->active_thread_type&FF_THREAD_FRAME)
1193              ret = ff_thread_decode_frame(avctx, picture, got_picture_ptr,
1194                                           avpkt);
1195         else {
1196             ret = avctx->codec->decode(avctx, picture, got_picture_ptr,
1197                               avpkt);
1198             picture->pkt_dts= avpkt->dts;
1199             picture->sample_aspect_ratio = avctx->sample_aspect_ratio;
1200             picture->width  = avctx->width;
1201             picture->height = avctx->height;
1202             picture->format = avctx->pix_fmt;
1203         }
1204
1205         emms_c(); //needed to avoid an emms_c() call before every return;
1206
1207         if (*got_picture_ptr)
1208             avctx->frame_number++;
1209     }else
1210         ret= 0;
1211
1212     return ret;
1213 }
1214
1215 #if FF_API_OLD_DECODE_AUDIO
1216 int attribute_align_arg avcodec_decode_audio3(AVCodecContext *avctx, int16_t *samples,
1217                          int *frame_size_ptr,
1218                          AVPacket *avpkt)
1219 {
1220     AVFrame frame;
1221     int ret, got_frame = 0;
1222
1223     if (avctx->get_buffer != avcodec_default_get_buffer) {
1224         av_log(avctx, AV_LOG_ERROR, "Custom get_buffer() for use with"
1225                "avcodec_decode_audio3() detected. Overriding with avcodec_default_get_buffer\n");
1226         av_log(avctx, AV_LOG_ERROR, "Please port your application to "
1227                "avcodec_decode_audio4()\n");
1228         avctx->get_buffer = avcodec_default_get_buffer;
1229     }
1230
1231     ret = avcodec_decode_audio4(avctx, &frame, &got_frame, avpkt);
1232
1233     if (ret >= 0 && got_frame) {
1234         int ch, plane_size;
1235         int planar = av_sample_fmt_is_planar(avctx->sample_fmt);
1236         int data_size = av_samples_get_buffer_size(&plane_size, avctx->channels,
1237                                                    frame.nb_samples,
1238                                                    avctx->sample_fmt, 1);
1239         if (*frame_size_ptr < data_size) {
1240             av_log(avctx, AV_LOG_ERROR, "output buffer size is too small for "
1241                    "the current frame (%d < %d)\n", *frame_size_ptr, data_size);
1242             return AVERROR(EINVAL);
1243         }
1244
1245         memcpy(samples, frame.extended_data[0], plane_size);
1246
1247         if (planar && avctx->channels > 1) {
1248             uint8_t *out = ((uint8_t *)samples) + plane_size;
1249             for (ch = 1; ch < avctx->channels; ch++) {
1250                 memcpy(out, frame.extended_data[ch], plane_size);
1251                 out += plane_size;
1252             }
1253         }
1254         *frame_size_ptr = data_size;
1255     } else {
1256         *frame_size_ptr = 0;
1257     }
1258     return ret;
1259 }
1260 #endif
1261
1262 int attribute_align_arg avcodec_decode_audio4(AVCodecContext *avctx,
1263                                               AVFrame *frame,
1264                                               int *got_frame_ptr,
1265                                               AVPacket *avpkt)
1266 {
1267     int ret = 0;
1268
1269     *got_frame_ptr = 0;
1270
1271     avctx->pkt = avpkt;
1272
1273     if (!avpkt->data && avpkt->size) {
1274         av_log(avctx, AV_LOG_ERROR, "invalid packet: NULL data, size != 0\n");
1275         return AVERROR(EINVAL);
1276     }
1277
1278     apply_param_change(avctx, avpkt);
1279
1280     if ((avctx->codec->capabilities & CODEC_CAP_DELAY) || avpkt->size) {
1281         ret = avctx->codec->decode(avctx, frame, got_frame_ptr, avpkt);
1282         if (ret >= 0 && *got_frame_ptr) {
1283             avctx->frame_number++;
1284             frame->pkt_dts = avpkt->dts;
1285             if (frame->format == AV_SAMPLE_FMT_NONE)
1286                 frame->format = avctx->sample_fmt;
1287         }
1288     }
1289     return ret;
1290 }
1291
1292 int avcodec_decode_subtitle2(AVCodecContext *avctx, AVSubtitle *sub,
1293                             int *got_sub_ptr,
1294                             AVPacket *avpkt)
1295 {
1296     int ret;
1297
1298     avctx->pkt = avpkt;
1299     *got_sub_ptr = 0;
1300     ret = avctx->codec->decode(avctx, sub, got_sub_ptr, avpkt);
1301     if (*got_sub_ptr)
1302         avctx->frame_number++;
1303     return ret;
1304 }
1305
1306 void avsubtitle_free(AVSubtitle *sub)
1307 {
1308     int i;
1309
1310     for (i = 0; i < sub->num_rects; i++)
1311     {
1312         av_freep(&sub->rects[i]->pict.data[0]);
1313         av_freep(&sub->rects[i]->pict.data[1]);
1314         av_freep(&sub->rects[i]->pict.data[2]);
1315         av_freep(&sub->rects[i]->pict.data[3]);
1316         av_freep(&sub->rects[i]->text);
1317         av_freep(&sub->rects[i]->ass);
1318         av_freep(&sub->rects[i]);
1319     }
1320
1321     av_freep(&sub->rects);
1322
1323     memset(sub, 0, sizeof(AVSubtitle));
1324 }
1325
1326 av_cold int avcodec_close(AVCodecContext *avctx)
1327 {
1328     /* If there is a user-supplied mutex locking routine, call it. */
1329     if (ff_lockmgr_cb) {
1330         if ((*ff_lockmgr_cb)(&codec_mutex, AV_LOCK_OBTAIN))
1331             return -1;
1332     }
1333
1334     entangled_thread_counter++;
1335     if(entangled_thread_counter != 1){
1336         av_log(avctx, AV_LOG_ERROR, "insufficient thread locking around avcodec_open/close()\n");
1337         entangled_thread_counter--;
1338         return -1;
1339     }
1340
1341     if (avcodec_is_open(avctx)) {
1342         if (HAVE_THREADS && avctx->thread_opaque)
1343             ff_thread_free(avctx);
1344         if (avctx->codec && avctx->codec->close)
1345             avctx->codec->close(avctx);
1346         avcodec_default_free_buffers(avctx);
1347         avctx->coded_frame = NULL;
1348         av_freep(&avctx->internal);
1349     }
1350
1351     if (avctx->priv_data && avctx->codec && avctx->codec->priv_class)
1352         av_opt_free(avctx->priv_data);
1353     av_opt_free(avctx);
1354     av_freep(&avctx->priv_data);
1355     if (codec_is_encoder(avctx->codec))
1356         av_freep(&avctx->extradata);
1357     avctx->codec = NULL;
1358     avctx->active_thread_type = 0;
1359     entangled_thread_counter--;
1360
1361     /* Release any user-supplied mutex. */
1362     if (ff_lockmgr_cb) {
1363         (*ff_lockmgr_cb)(&codec_mutex, AV_LOCK_RELEASE);
1364     }
1365     return 0;
1366 }
1367
1368 AVCodec *avcodec_find_encoder(enum CodecID id)
1369 {
1370     AVCodec *p, *experimental=NULL;
1371     p = first_avcodec;
1372     while (p) {
1373         if (codec_is_encoder(p) && p->id == id) {
1374             if (p->capabilities & CODEC_CAP_EXPERIMENTAL && !experimental) {
1375                 experimental = p;
1376             } else
1377                 return p;
1378         }
1379         p = p->next;
1380     }
1381     return experimental;
1382 }
1383
1384 AVCodec *avcodec_find_encoder_by_name(const char *name)
1385 {
1386     AVCodec *p;
1387     if (!name)
1388         return NULL;
1389     p = first_avcodec;
1390     while (p) {
1391         if (codec_is_encoder(p) && strcmp(name,p->name) == 0)
1392             return p;
1393         p = p->next;
1394     }
1395     return NULL;
1396 }
1397
1398 AVCodec *avcodec_find_decoder(enum CodecID id)
1399 {
1400     AVCodec *p;
1401     p = first_avcodec;
1402     while (p) {
1403         if (codec_is_decoder(p) && p->id == id)
1404             return p;
1405         p = p->next;
1406     }
1407     return NULL;
1408 }
1409
1410 AVCodec *avcodec_find_decoder_by_name(const char *name)
1411 {
1412     AVCodec *p;
1413     if (!name)
1414         return NULL;
1415     p = first_avcodec;
1416     while (p) {
1417         if (codec_is_decoder(p) && strcmp(name,p->name) == 0)
1418             return p;
1419         p = p->next;
1420     }
1421     return NULL;
1422 }
1423
1424 static int get_bit_rate(AVCodecContext *ctx)
1425 {
1426     int bit_rate;
1427     int bits_per_sample;
1428
1429     switch(ctx->codec_type) {
1430     case AVMEDIA_TYPE_VIDEO:
1431     case AVMEDIA_TYPE_DATA:
1432     case AVMEDIA_TYPE_SUBTITLE:
1433     case AVMEDIA_TYPE_ATTACHMENT:
1434         bit_rate = ctx->bit_rate;
1435         break;
1436     case AVMEDIA_TYPE_AUDIO:
1437         bits_per_sample = av_get_bits_per_sample(ctx->codec_id);
1438         bit_rate = bits_per_sample ? ctx->sample_rate * ctx->channels * bits_per_sample : ctx->bit_rate;
1439         break;
1440     default:
1441         bit_rate = 0;
1442         break;
1443     }
1444     return bit_rate;
1445 }
1446
1447 size_t av_get_codec_tag_string(char *buf, size_t buf_size, unsigned int codec_tag)
1448 {
1449     int i, len, ret = 0;
1450
1451     for (i = 0; i < 4; i++) {
1452         len = snprintf(buf, buf_size,
1453                        isprint(codec_tag&0xFF) ? "%c" : "[%d]", codec_tag&0xFF);
1454         buf      += len;
1455         buf_size  = buf_size > len ? buf_size - len : 0;
1456         ret      += len;
1457         codec_tag>>=8;
1458     }
1459     return ret;
1460 }
1461
1462 void avcodec_string(char *buf, int buf_size, AVCodecContext *enc, int encode)
1463 {
1464     const char *codec_name;
1465     const char *profile = NULL;
1466     AVCodec *p;
1467     char buf1[32];
1468     int bitrate;
1469     AVRational display_aspect_ratio;
1470
1471     if (encode)
1472         p = avcodec_find_encoder(enc->codec_id);
1473     else
1474         p = avcodec_find_decoder(enc->codec_id);
1475
1476     if (p) {
1477         codec_name = p->name;
1478         profile = av_get_profile_name(p, enc->profile);
1479     } else if (enc->codec_id == CODEC_ID_MPEG2TS) {
1480         /* fake mpeg2 transport stream codec (currently not
1481            registered) */
1482         codec_name = "mpeg2ts";
1483     } else if (enc->codec_name[0] != '\0') {
1484         codec_name = enc->codec_name;
1485     } else {
1486         /* output avi tags */
1487         char tag_buf[32];
1488         av_get_codec_tag_string(tag_buf, sizeof(tag_buf), enc->codec_tag);
1489         snprintf(buf1, sizeof(buf1), "%s / 0x%04X", tag_buf, enc->codec_tag);
1490         codec_name = buf1;
1491     }
1492
1493     switch(enc->codec_type) {
1494     case AVMEDIA_TYPE_VIDEO:
1495         snprintf(buf, buf_size,
1496                  "Video: %s%s",
1497                  codec_name, enc->mb_decision ? " (hq)" : "");
1498         if (profile)
1499             snprintf(buf + strlen(buf), buf_size - strlen(buf),
1500                      " (%s)", profile);
1501         if (enc->pix_fmt != PIX_FMT_NONE) {
1502             snprintf(buf + strlen(buf), buf_size - strlen(buf),
1503                      ", %s",
1504                      av_get_pix_fmt_name(enc->pix_fmt));
1505         }
1506         if (enc->width) {
1507             snprintf(buf + strlen(buf), buf_size - strlen(buf),
1508                      ", %dx%d",
1509                      enc->width, enc->height);
1510             if (enc->sample_aspect_ratio.num) {
1511                 av_reduce(&display_aspect_ratio.num, &display_aspect_ratio.den,
1512                           enc->width*enc->sample_aspect_ratio.num,
1513                           enc->height*enc->sample_aspect_ratio.den,
1514                           1024*1024);
1515                 snprintf(buf + strlen(buf), buf_size - strlen(buf),
1516                          " [PAR %d:%d DAR %d:%d]",
1517                          enc->sample_aspect_ratio.num, enc->sample_aspect_ratio.den,
1518                          display_aspect_ratio.num, display_aspect_ratio.den);
1519             }
1520             if(av_log_get_level() >= AV_LOG_DEBUG){
1521                 int g= av_gcd(enc->time_base.num, enc->time_base.den);
1522                 snprintf(buf + strlen(buf), buf_size - strlen(buf),
1523                      ", %d/%d",
1524                      enc->time_base.num/g, enc->time_base.den/g);
1525             }
1526         }
1527         if (encode) {
1528             snprintf(buf + strlen(buf), buf_size - strlen(buf),
1529                      ", q=%d-%d", enc->qmin, enc->qmax);
1530         }
1531         break;
1532     case AVMEDIA_TYPE_AUDIO:
1533         snprintf(buf, buf_size,
1534                  "Audio: %s",
1535                  codec_name);
1536         if (profile)
1537             snprintf(buf + strlen(buf), buf_size - strlen(buf),
1538                      " (%s)", profile);
1539         if (enc->sample_rate) {
1540             snprintf(buf + strlen(buf), buf_size - strlen(buf),
1541                      ", %d Hz", enc->sample_rate);
1542         }
1543         av_strlcat(buf, ", ", buf_size);
1544         av_get_channel_layout_string(buf + strlen(buf), buf_size - strlen(buf), enc->channels, enc->channel_layout);
1545         if (enc->sample_fmt != AV_SAMPLE_FMT_NONE) {
1546             snprintf(buf + strlen(buf), buf_size - strlen(buf),
1547                      ", %s", av_get_sample_fmt_name(enc->sample_fmt));
1548         }
1549         break;
1550     case AVMEDIA_TYPE_DATA:
1551         snprintf(buf, buf_size, "Data: %s", codec_name);
1552         break;
1553     case AVMEDIA_TYPE_SUBTITLE:
1554         snprintf(buf, buf_size, "Subtitle: %s", codec_name);
1555         break;
1556     case AVMEDIA_TYPE_ATTACHMENT:
1557         snprintf(buf, buf_size, "Attachment: %s", codec_name);
1558         break;
1559     default:
1560         snprintf(buf, buf_size, "Invalid Codec type %d", enc->codec_type);
1561         return;
1562     }
1563     if (encode) {
1564         if (enc->flags & CODEC_FLAG_PASS1)
1565             snprintf(buf + strlen(buf), buf_size - strlen(buf),
1566                      ", pass 1");
1567         if (enc->flags & CODEC_FLAG_PASS2)
1568             snprintf(buf + strlen(buf), buf_size - strlen(buf),
1569                      ", pass 2");
1570     }
1571     bitrate = get_bit_rate(enc);
1572     if (bitrate != 0) {
1573         snprintf(buf + strlen(buf), buf_size - strlen(buf),
1574                  ", %d kb/s", bitrate / 1000);
1575     }
1576 }
1577
1578 const char *av_get_profile_name(const AVCodec *codec, int profile)
1579 {
1580     const AVProfile *p;
1581     if (profile == FF_PROFILE_UNKNOWN || !codec->profiles)
1582         return NULL;
1583
1584     for (p = codec->profiles; p->profile != FF_PROFILE_UNKNOWN; p++)
1585         if (p->profile == profile)
1586             return p->name;
1587
1588     return NULL;
1589 }
1590
1591 unsigned avcodec_version( void )
1592 {
1593   return LIBAVCODEC_VERSION_INT;
1594 }
1595
1596 const char *avcodec_configuration(void)
1597 {
1598     return LIBAV_CONFIGURATION;
1599 }
1600
1601 const char *avcodec_license(void)
1602 {
1603 #define LICENSE_PREFIX "libavcodec license: "
1604     return LICENSE_PREFIX LIBAV_LICENSE + sizeof(LICENSE_PREFIX) - 1;
1605 }
1606
1607 void avcodec_flush_buffers(AVCodecContext *avctx)
1608 {
1609     if(HAVE_THREADS && avctx->active_thread_type&FF_THREAD_FRAME)
1610         ff_thread_flush(avctx);
1611     else if(avctx->codec->flush)
1612         avctx->codec->flush(avctx);
1613 }
1614
1615 static void video_free_buffers(AVCodecContext *s)
1616 {
1617     AVCodecInternal *avci = s->internal;
1618     int i, j;
1619
1620     if (!avci->buffer)
1621         return;
1622
1623     if (avci->buffer_count)
1624         av_log(s, AV_LOG_WARNING, "Found %i unreleased buffers!\n",
1625                avci->buffer_count);
1626     for(i=0; i<INTERNAL_BUFFER_SIZE; i++){
1627         InternalBuffer *buf = &avci->buffer[i];
1628         for(j=0; j<4; j++){
1629             av_freep(&buf->base[j]);
1630             buf->data[j]= NULL;
1631         }
1632     }
1633     av_freep(&avci->buffer);
1634
1635     avci->buffer_count=0;
1636 }
1637
1638 static void audio_free_buffers(AVCodecContext *avctx)
1639 {
1640     AVCodecInternal *avci = avctx->internal;
1641     InternalBuffer *buf;
1642
1643     if (!avci->buffer)
1644         return;
1645     buf = avci->buffer;
1646
1647     if (buf->extended_data) {
1648         av_free(buf->extended_data[0]);
1649         if (buf->extended_data != buf->data)
1650             av_free(buf->extended_data);
1651     }
1652     av_freep(&avci->buffer);
1653 }
1654
1655 void avcodec_default_free_buffers(AVCodecContext *avctx)
1656 {
1657     switch (avctx->codec_type) {
1658     case AVMEDIA_TYPE_VIDEO:
1659         video_free_buffers(avctx);
1660         break;
1661     case AVMEDIA_TYPE_AUDIO:
1662         audio_free_buffers(avctx);
1663         break;
1664     default:
1665         break;
1666     }
1667 }
1668
1669 int av_get_bits_per_sample(enum CodecID codec_id){
1670     switch(codec_id){
1671     case CODEC_ID_ADPCM_SBPRO_2:
1672         return 2;
1673     case CODEC_ID_ADPCM_SBPRO_3:
1674         return 3;
1675     case CODEC_ID_ADPCM_SBPRO_4:
1676     case CODEC_ID_ADPCM_CT:
1677     case CODEC_ID_ADPCM_IMA_APC:
1678     case CODEC_ID_ADPCM_IMA_WAV:
1679     case CODEC_ID_ADPCM_IMA_QT:
1680     case CODEC_ID_ADPCM_SWF:
1681     case CODEC_ID_ADPCM_MS:
1682     case CODEC_ID_ADPCM_YAMAHA:
1683     case CODEC_ID_ADPCM_G722:
1684         return 4;
1685     case CODEC_ID_PCM_ALAW:
1686     case CODEC_ID_PCM_MULAW:
1687     case CODEC_ID_PCM_S8:
1688     case CODEC_ID_PCM_U8:
1689     case CODEC_ID_PCM_ZORK:
1690         return 8;
1691     case CODEC_ID_PCM_S16BE:
1692     case CODEC_ID_PCM_S16LE:
1693     case CODEC_ID_PCM_S16LE_PLANAR:
1694     case CODEC_ID_PCM_U16BE:
1695     case CODEC_ID_PCM_U16LE:
1696         return 16;
1697     case CODEC_ID_PCM_S24DAUD:
1698     case CODEC_ID_PCM_S24BE:
1699     case CODEC_ID_PCM_S24LE:
1700     case CODEC_ID_PCM_U24BE:
1701     case CODEC_ID_PCM_U24LE:
1702         return 24;
1703     case CODEC_ID_PCM_S32BE:
1704     case CODEC_ID_PCM_S32LE:
1705     case CODEC_ID_PCM_U32BE:
1706     case CODEC_ID_PCM_U32LE:
1707     case CODEC_ID_PCM_F32BE:
1708     case CODEC_ID_PCM_F32LE:
1709         return 32;
1710     case CODEC_ID_PCM_F64BE:
1711     case CODEC_ID_PCM_F64LE:
1712         return 64;
1713     default:
1714         return 0;
1715     }
1716 }
1717
1718 #if !HAVE_THREADS
1719 int ff_thread_init(AVCodecContext *s){
1720     return -1;
1721 }
1722 #endif
1723
1724 unsigned int av_xiphlacing(unsigned char *s, unsigned int v)
1725 {
1726     unsigned int n = 0;
1727
1728     while(v >= 0xff) {
1729         *s++ = 0xff;
1730         v -= 0xff;
1731         n++;
1732     }
1733     *s = v;
1734     n++;
1735     return n;
1736 }
1737
1738 int ff_match_2uint16(const uint16_t (*tab)[2], int size, int a, int b){
1739     int i;
1740     for(i=0; i<size && !(tab[i][0]==a && tab[i][1]==b); i++);
1741     return i;
1742 }
1743
1744 void av_log_missing_feature(void *avc, const char *feature, int want_sample)
1745 {
1746     av_log(avc, AV_LOG_WARNING, "%s not implemented. Update your Libav "
1747             "version to the newest one from Git. If the problem still "
1748             "occurs, it means that your file has a feature which has not "
1749             "been implemented.\n", feature);
1750     if(want_sample)
1751         av_log_ask_for_sample(avc, NULL);
1752 }
1753
1754 void av_log_ask_for_sample(void *avc, const char *msg, ...)
1755 {
1756     va_list argument_list;
1757
1758     va_start(argument_list, msg);
1759
1760     if (msg)
1761         av_vlog(avc, AV_LOG_WARNING, msg, argument_list);
1762     av_log(avc, AV_LOG_WARNING, "If you want to help, upload a sample "
1763             "of this file to ftp://upload.libav.org/incoming/ "
1764             "and contact the libav-devel mailing list.\n");
1765
1766     va_end(argument_list);
1767 }
1768
1769 static AVHWAccel *first_hwaccel = NULL;
1770
1771 void av_register_hwaccel(AVHWAccel *hwaccel)
1772 {
1773     AVHWAccel **p = &first_hwaccel;
1774     while (*p)
1775         p = &(*p)->next;
1776     *p = hwaccel;
1777     hwaccel->next = NULL;
1778 }
1779
1780 AVHWAccel *av_hwaccel_next(AVHWAccel *hwaccel)
1781 {
1782     return hwaccel ? hwaccel->next : first_hwaccel;
1783 }
1784
1785 AVHWAccel *ff_find_hwaccel(enum CodecID codec_id, enum PixelFormat pix_fmt)
1786 {
1787     AVHWAccel *hwaccel=NULL;
1788
1789     while((hwaccel= av_hwaccel_next(hwaccel))){
1790         if (   hwaccel->id      == codec_id
1791             && hwaccel->pix_fmt == pix_fmt)
1792             return hwaccel;
1793     }
1794     return NULL;
1795 }
1796
1797 int av_lockmgr_register(int (*cb)(void **mutex, enum AVLockOp op))
1798 {
1799     if (ff_lockmgr_cb) {
1800         if (ff_lockmgr_cb(&codec_mutex, AV_LOCK_DESTROY))
1801             return -1;
1802         if (ff_lockmgr_cb(&avformat_mutex, AV_LOCK_DESTROY))
1803             return -1;
1804     }
1805
1806     ff_lockmgr_cb = cb;
1807
1808     if (ff_lockmgr_cb) {
1809         if (ff_lockmgr_cb(&codec_mutex, AV_LOCK_CREATE))
1810             return -1;
1811         if (ff_lockmgr_cb(&avformat_mutex, AV_LOCK_CREATE))
1812             return -1;
1813     }
1814     return 0;
1815 }
1816
1817 int avpriv_lock_avformat(void)
1818 {
1819     if (ff_lockmgr_cb) {
1820         if ((*ff_lockmgr_cb)(&avformat_mutex, AV_LOCK_OBTAIN))
1821             return -1;
1822     }
1823     return 0;
1824 }
1825
1826 int avpriv_unlock_avformat(void)
1827 {
1828     if (ff_lockmgr_cb) {
1829         if ((*ff_lockmgr_cb)(&avformat_mutex, AV_LOCK_RELEASE))
1830             return -1;
1831     }
1832     return 0;
1833 }
1834
1835 unsigned int avpriv_toupper4(unsigned int x)
1836 {
1837     return     toupper( x     &0xFF)
1838             + (toupper((x>>8 )&0xFF)<<8 )
1839             + (toupper((x>>16)&0xFF)<<16)
1840             + (toupper((x>>24)&0xFF)<<24);
1841 }
1842
1843 #if !HAVE_THREADS
1844
1845 int ff_thread_get_buffer(AVCodecContext *avctx, AVFrame *f)
1846 {
1847     f->owner = avctx;
1848     return avctx->get_buffer(avctx, f);
1849 }
1850
1851 void ff_thread_release_buffer(AVCodecContext *avctx, AVFrame *f)
1852 {
1853     f->owner->release_buffer(f->owner, f);
1854 }
1855
1856 void ff_thread_finish_setup(AVCodecContext *avctx)
1857 {
1858 }
1859
1860 void ff_thread_report_progress(AVFrame *f, int progress, int field)
1861 {
1862 }
1863
1864 void ff_thread_await_progress(AVFrame *f, int progress, int field)
1865 {
1866 }
1867
1868 #endif
1869
1870 enum AVMediaType avcodec_get_type(enum CodecID codec_id)
1871 {
1872     if (codec_id <= CODEC_ID_NONE)
1873         return AVMEDIA_TYPE_UNKNOWN;
1874     else if (codec_id < CODEC_ID_FIRST_AUDIO)
1875         return AVMEDIA_TYPE_VIDEO;
1876     else if (codec_id < CODEC_ID_FIRST_SUBTITLE)
1877         return AVMEDIA_TYPE_AUDIO;
1878     else if (codec_id < CODEC_ID_FIRST_UNKNOWN)
1879         return AVMEDIA_TYPE_SUBTITLE;
1880
1881     return AVMEDIA_TYPE_UNKNOWN;
1882 }
1883
1884 int avcodec_is_open(AVCodecContext *s)
1885 {
1886     return !!s->internal;
1887 }