]> git.sesse.net Git - ffmpeg/blob - libavcodec/utils.c
swscale: extend YUV422p support to 10bits depth
[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/avstring.h"
29 #include "libavutil/integer.h"
30 #include "libavutil/crc.h"
31 #include "libavutil/pixdesc.h"
32 #include "libavutil/audioconvert.h"
33 #include "libavutil/imgutils.h"
34 #include "libavutil/samplefmt.h"
35 #include "avcodec.h"
36 #include "dsputil.h"
37 #include "libavutil/opt.h"
38 #include "imgconvert.h"
39 #include "thread.h"
40 #include "audioconvert.h"
41 #include "internal.h"
42 #include <stdlib.h>
43 #include <stdarg.h>
44 #include <limits.h>
45 #include <float.h>
46
47 static int volatile entangled_thread_counter=0;
48 static int (*ff_lockmgr_cb)(void **mutex, enum AVLockOp op);
49 static void *codec_mutex;
50
51 void *av_fast_realloc(void *ptr, unsigned int *size, size_t min_size)
52 {
53     if(min_size < *size)
54         return ptr;
55
56     min_size= FFMAX(17*min_size/16 + 32, min_size);
57
58     ptr= av_realloc(ptr, min_size);
59     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
60         min_size= 0;
61
62     *size= min_size;
63
64     return ptr;
65 }
66
67 void av_fast_malloc(void *ptr, unsigned int *size, size_t min_size)
68 {
69     void **p = ptr;
70     if (min_size < *size)
71         return;
72     min_size= FFMAX(17*min_size/16 + 32, min_size);
73     av_free(*p);
74     *p = av_malloc(min_size);
75     if (!*p) min_size = 0;
76     *size= min_size;
77 }
78
79 /* encoder management */
80 static AVCodec *first_avcodec = NULL;
81
82 AVCodec *av_codec_next(AVCodec *c){
83     if(c) return c->next;
84     else  return first_avcodec;
85 }
86
87 void avcodec_register(AVCodec *codec)
88 {
89     AVCodec **p;
90     avcodec_init();
91     p = &first_avcodec;
92     while (*p != NULL) p = &(*p)->next;
93     *p = codec;
94     codec->next = NULL;
95 }
96
97 unsigned avcodec_get_edge_width(void)
98 {
99     return EDGE_WIDTH;
100 }
101
102 void avcodec_set_dimensions(AVCodecContext *s, int width, int height){
103     s->coded_width = width;
104     s->coded_height= height;
105     s->width = -((-width )>>s->lowres);
106     s->height= -((-height)>>s->lowres);
107 }
108
109 typedef struct InternalBuffer{
110     int last_pic_num;
111     uint8_t *base[4];
112     uint8_t *data[4];
113     int linesize[4];
114     int width, height;
115     enum PixelFormat pix_fmt;
116 }InternalBuffer;
117
118 #define INTERNAL_BUFFER_SIZE 32
119
120 void avcodec_align_dimensions2(AVCodecContext *s, int *width, int *height, int linesize_align[4]){
121     int w_align= 1;
122     int h_align= 1;
123
124     switch(s->pix_fmt){
125     case PIX_FMT_YUV420P:
126     case PIX_FMT_YUYV422:
127     case PIX_FMT_UYVY422:
128     case PIX_FMT_YUV422P:
129     case PIX_FMT_YUV440P:
130     case PIX_FMT_YUV444P:
131     case PIX_FMT_GRAY8:
132     case PIX_FMT_GRAY16BE:
133     case PIX_FMT_GRAY16LE:
134     case PIX_FMT_YUVJ420P:
135     case PIX_FMT_YUVJ422P:
136     case PIX_FMT_YUVJ440P:
137     case PIX_FMT_YUVJ444P:
138     case PIX_FMT_YUVA420P:
139     case PIX_FMT_YUV420P9LE:
140     case PIX_FMT_YUV420P9BE:
141     case PIX_FMT_YUV420P10LE:
142     case PIX_FMT_YUV420P10BE:
143     case PIX_FMT_YUV422P10LE:
144     case PIX_FMT_YUV422P10BE:
145         w_align= 16; //FIXME check for non mpeg style codecs and use less alignment
146         h_align= 16;
147         if(s->codec_id == CODEC_ID_MPEG2VIDEO || s->codec_id == CODEC_ID_MJPEG || s->codec_id == CODEC_ID_AMV || s->codec_id == CODEC_ID_THP || s->codec_id == CODEC_ID_H264)
148             h_align= 32; // interlaced is rounded up to 2 MBs
149         break;
150     case PIX_FMT_YUV411P:
151     case PIX_FMT_UYYVYY411:
152         w_align=32;
153         h_align=8;
154         break;
155     case PIX_FMT_YUV410P:
156         if(s->codec_id == CODEC_ID_SVQ1){
157             w_align=64;
158             h_align=64;
159         }
160     case PIX_FMT_RGB555:
161         if(s->codec_id == CODEC_ID_RPZA){
162             w_align=4;
163             h_align=4;
164         }
165     case PIX_FMT_PAL8:
166     case PIX_FMT_BGR8:
167     case PIX_FMT_RGB8:
168         if(s->codec_id == CODEC_ID_SMC){
169             w_align=4;
170             h_align=4;
171         }
172         break;
173     case PIX_FMT_BGR24:
174         if((s->codec_id == CODEC_ID_MSZH) || (s->codec_id == CODEC_ID_ZLIB)){
175             w_align=4;
176             h_align=4;
177         }
178         break;
179     default:
180         w_align= 1;
181         h_align= 1;
182         break;
183     }
184
185     *width = FFALIGN(*width , w_align);
186     *height= FFALIGN(*height, h_align);
187     if(s->codec_id == CODEC_ID_H264 || s->lowres)
188         *height+=2; // some of the optimized chroma MC reads one line too much
189                     // which is also done in mpeg decoders with lowres > 0
190
191     linesize_align[0] =
192     linesize_align[1] =
193     linesize_align[2] =
194     linesize_align[3] = STRIDE_ALIGN;
195 //STRIDE_ALIGN is 8 for SSE* but this does not work for SVQ1 chroma planes
196 //we could change STRIDE_ALIGN to 16 for x86/sse but it would increase the
197 //picture size unneccessarily in some cases. The solution here is not
198 //pretty and better ideas are welcome!
199 #if HAVE_MMX
200     if(s->codec_id == CODEC_ID_SVQ1 || s->codec_id == CODEC_ID_VP5 ||
201        s->codec_id == CODEC_ID_VP6 || s->codec_id == CODEC_ID_VP6F ||
202        s->codec_id == CODEC_ID_VP6A) {
203         linesize_align[0] =
204         linesize_align[1] =
205         linesize_align[2] = 16;
206     }
207 #endif
208 }
209
210 void avcodec_align_dimensions(AVCodecContext *s, int *width, int *height){
211     int chroma_shift = av_pix_fmt_descriptors[s->pix_fmt].log2_chroma_w;
212     int linesize_align[4];
213     int align;
214     avcodec_align_dimensions2(s, width, height, linesize_align);
215     align = FFMAX(linesize_align[0], linesize_align[3]);
216     linesize_align[1] <<= chroma_shift;
217     linesize_align[2] <<= chroma_shift;
218     align = FFMAX3(align, linesize_align[1], linesize_align[2]);
219     *width=FFALIGN(*width, align);
220 }
221
222 int avcodec_default_get_buffer(AVCodecContext *s, AVFrame *pic){
223     int i;
224     int w= s->width;
225     int h= s->height;
226     InternalBuffer *buf;
227     int *picture_number;
228
229     if(pic->data[0]!=NULL) {
230         av_log(s, AV_LOG_ERROR, "pic->data[0]!=NULL in avcodec_default_get_buffer\n");
231         return -1;
232     }
233     if(s->internal_buffer_count >= INTERNAL_BUFFER_SIZE) {
234         av_log(s, AV_LOG_ERROR, "internal_buffer_count overflow (missing release_buffer?)\n");
235         return -1;
236     }
237
238     if(av_image_check_size(w, h, 0, s))
239         return -1;
240
241     if(s->internal_buffer==NULL){
242         s->internal_buffer= av_mallocz((INTERNAL_BUFFER_SIZE+1)*sizeof(InternalBuffer));
243     }
244 #if 0
245     s->internal_buffer= av_fast_realloc(
246         s->internal_buffer,
247         &s->internal_buffer_size,
248         sizeof(InternalBuffer)*FFMAX(99,  s->internal_buffer_count+1)/*FIXME*/
249         );
250 #endif
251
252     buf= &((InternalBuffer*)s->internal_buffer)[s->internal_buffer_count];
253     picture_number= &(((InternalBuffer*)s->internal_buffer)[INTERNAL_BUFFER_SIZE]).last_pic_num; //FIXME ugly hack
254     (*picture_number)++;
255
256     if(buf->base[0] && (buf->width != w || buf->height != h || buf->pix_fmt != s->pix_fmt)){
257         if(s->active_thread_type&FF_THREAD_FRAME) {
258             av_log_missing_feature(s, "Width/height changing with frame threads is", 0);
259             return -1;
260         }
261
262         for(i=0; i<4; i++){
263             av_freep(&buf->base[i]);
264             buf->data[i]= NULL;
265         }
266     }
267
268     if(buf->base[0]){
269         pic->age= *picture_number - buf->last_pic_num;
270         buf->last_pic_num= *picture_number;
271     }else{
272         int h_chroma_shift, v_chroma_shift;
273         int size[4] = {0};
274         int tmpsize;
275         int unaligned;
276         AVPicture picture;
277         int stride_align[4];
278         const int pixel_size = av_pix_fmt_descriptors[s->pix_fmt].comp[0].step_minus1+1;
279
280         avcodec_get_chroma_sub_sample(s->pix_fmt, &h_chroma_shift, &v_chroma_shift);
281
282         avcodec_align_dimensions2(s, &w, &h, stride_align);
283
284         if(!(s->flags&CODEC_FLAG_EMU_EDGE)){
285             w+= EDGE_WIDTH*2;
286             h+= EDGE_WIDTH*2;
287         }
288
289         do {
290             // NOTE: do not align linesizes individually, this breaks e.g. assumptions
291             // that linesize[0] == 2*linesize[1] in the MPEG-encoder for 4:2:2
292             av_image_fill_linesizes(picture.linesize, s->pix_fmt, w);
293             // increase alignment of w for next try (rhs gives the lowest bit set in w)
294             w += w & ~(w-1);
295
296             unaligned = 0;
297             for (i=0; i<4; i++){
298                 unaligned |= picture.linesize[i] % stride_align[i];
299             }
300         } while (unaligned);
301
302         tmpsize = av_image_fill_pointers(picture.data, s->pix_fmt, h, NULL, picture.linesize);
303         if (tmpsize < 0)
304             return -1;
305
306         for (i=0; i<3 && picture.data[i+1]; i++)
307             size[i] = picture.data[i+1] - picture.data[i];
308         size[i] = tmpsize - (picture.data[i] - picture.data[0]);
309
310         buf->last_pic_num= -256*256*256*64;
311         memset(buf->base, 0, sizeof(buf->base));
312         memset(buf->data, 0, sizeof(buf->data));
313
314         for(i=0; i<4 && size[i]; i++){
315             const int h_shift= i==0 ? 0 : h_chroma_shift;
316             const int v_shift= i==0 ? 0 : v_chroma_shift;
317
318             buf->linesize[i]= picture.linesize[i];
319
320             buf->base[i]= av_malloc(size[i]+16); //FIXME 16
321             if(buf->base[i]==NULL) return -1;
322             memset(buf->base[i], 128, size[i]);
323
324             // no edge if EDGE EMU or not planar YUV
325             if((s->flags&CODEC_FLAG_EMU_EDGE) || !size[2])
326                 buf->data[i] = buf->base[i];
327             else
328                 buf->data[i] = buf->base[i] + FFALIGN((buf->linesize[i]*EDGE_WIDTH>>v_shift) + (pixel_size*EDGE_WIDTH>>h_shift), stride_align[i]);
329         }
330         if(size[1] && !size[2])
331             ff_set_systematic_pal2((uint32_t*)buf->data[1], s->pix_fmt);
332         buf->width  = s->width;
333         buf->height = s->height;
334         buf->pix_fmt= s->pix_fmt;
335         pic->age= 256*256*256*64;
336     }
337     pic->type= FF_BUFFER_TYPE_INTERNAL;
338
339     for(i=0; i<4; i++){
340         pic->base[i]= buf->base[i];
341         pic->data[i]= buf->data[i];
342         pic->linesize[i]= buf->linesize[i];
343     }
344     s->internal_buffer_count++;
345
346     if(s->pkt) pic->pkt_pts= s->pkt->pts;
347     else       pic->pkt_pts= AV_NOPTS_VALUE;
348     pic->reordered_opaque= s->reordered_opaque;
349
350     if(s->debug&FF_DEBUG_BUFFERS)
351         av_log(s, AV_LOG_DEBUG, "default_get_buffer called on pic %p, %d buffers used\n", pic, s->internal_buffer_count);
352
353     return 0;
354 }
355
356 void avcodec_default_release_buffer(AVCodecContext *s, AVFrame *pic){
357     int i;
358     InternalBuffer *buf, *last;
359
360     assert(pic->type==FF_BUFFER_TYPE_INTERNAL);
361     assert(s->internal_buffer_count);
362
363     buf = NULL; /* avoids warning */
364     for(i=0; i<s->internal_buffer_count; i++){ //just 3-5 checks so is not worth to optimize
365         buf= &((InternalBuffer*)s->internal_buffer)[i];
366         if(buf->data[0] == pic->data[0])
367             break;
368     }
369     assert(i < s->internal_buffer_count);
370     s->internal_buffer_count--;
371     last = &((InternalBuffer*)s->internal_buffer)[s->internal_buffer_count];
372
373     FFSWAP(InternalBuffer, *buf, *last);
374
375     for(i=0; i<4; i++){
376         pic->data[i]=NULL;
377 //        pic->base[i]=NULL;
378     }
379 //printf("R%X\n", pic->opaque);
380
381     if(s->debug&FF_DEBUG_BUFFERS)
382         av_log(s, AV_LOG_DEBUG, "default_release_buffer called on pic %p, %d buffers used\n", pic, s->internal_buffer_count);
383 }
384
385 int avcodec_default_reget_buffer(AVCodecContext *s, AVFrame *pic){
386     AVFrame temp_pic;
387     int i;
388
389     /* If no picture return a new buffer */
390     if(pic->data[0] == NULL) {
391         /* We will copy from buffer, so must be readable */
392         pic->buffer_hints |= FF_BUFFER_HINTS_READABLE;
393         return s->get_buffer(s, pic);
394     }
395
396     /* If internal buffer type return the same buffer */
397     if(pic->type == FF_BUFFER_TYPE_INTERNAL) {
398         if(s->pkt) pic->pkt_pts= s->pkt->pts;
399         else       pic->pkt_pts= AV_NOPTS_VALUE;
400         pic->reordered_opaque= s->reordered_opaque;
401         return 0;
402     }
403
404     /*
405      * Not internal type and reget_buffer not overridden, emulate cr buffer
406      */
407     temp_pic = *pic;
408     for(i = 0; i < 4; i++)
409         pic->data[i] = pic->base[i] = NULL;
410     pic->opaque = NULL;
411     /* Allocate new frame */
412     if (s->get_buffer(s, pic))
413         return -1;
414     /* Copy image data from old buffer to new buffer */
415     av_picture_copy((AVPicture*)pic, (AVPicture*)&temp_pic, s->pix_fmt, s->width,
416              s->height);
417     s->release_buffer(s, &temp_pic); // Release old frame
418     return 0;
419 }
420
421 int avcodec_default_execute(AVCodecContext *c, int (*func)(AVCodecContext *c2, void *arg2),void *arg, int *ret, int count, int size){
422     int i;
423
424     for(i=0; i<count; i++){
425         int r= func(c, (char*)arg + i*size);
426         if(ret) ret[i]= r;
427     }
428     return 0;
429 }
430
431 int avcodec_default_execute2(AVCodecContext *c, int (*func)(AVCodecContext *c2, void *arg2, int jobnr, int threadnr),void *arg, int *ret, int count){
432     int i;
433
434     for(i=0; i<count; i++){
435         int r= func(c, arg, i, 0);
436         if(ret) ret[i]= r;
437     }
438     return 0;
439 }
440
441 enum PixelFormat avcodec_default_get_format(struct AVCodecContext *s, const enum PixelFormat *fmt){
442     while (*fmt != PIX_FMT_NONE && ff_is_hwaccel_pix_fmt(*fmt))
443         ++fmt;
444     return fmt[0];
445 }
446
447 void avcodec_get_frame_defaults(AVFrame *pic){
448     memset(pic, 0, sizeof(AVFrame));
449
450     pic->pts= AV_NOPTS_VALUE;
451     pic->key_frame= 1;
452 }
453
454 AVFrame *avcodec_alloc_frame(void){
455     AVFrame *pic= av_malloc(sizeof(AVFrame));
456
457     if(pic==NULL) return NULL;
458
459     avcodec_get_frame_defaults(pic);
460
461     return pic;
462 }
463
464 int attribute_align_arg avcodec_open(AVCodecContext *avctx, AVCodec *codec)
465 {
466     int ret = 0;
467
468     /* If there is a user-supplied mutex locking routine, call it. */
469     if (ff_lockmgr_cb) {
470         if ((*ff_lockmgr_cb)(&codec_mutex, AV_LOCK_OBTAIN))
471             return -1;
472     }
473
474     entangled_thread_counter++;
475     if(entangled_thread_counter != 1){
476         av_log(avctx, AV_LOG_ERROR, "insufficient thread locking around avcodec_open/close()\n");
477         ret = -1;
478         goto end;
479     }
480
481     if(avctx->codec || !codec) {
482         ret = AVERROR(EINVAL);
483         goto end;
484     }
485
486     if (codec->priv_data_size > 0) {
487       if(!avctx->priv_data){
488         avctx->priv_data = av_mallocz(codec->priv_data_size);
489         if (!avctx->priv_data) {
490             ret = AVERROR(ENOMEM);
491             goto end;
492         }
493         if(codec->priv_class){ //this can be droped once all user apps use   avcodec_get_context_defaults3()
494             *(AVClass**)avctx->priv_data= codec->priv_class;
495             av_opt_set_defaults(avctx->priv_data);
496         }
497       }
498     } else {
499         avctx->priv_data = NULL;
500     }
501
502     if(avctx->coded_width && avctx->coded_height)
503         avcodec_set_dimensions(avctx, avctx->coded_width, avctx->coded_height);
504     else if(avctx->width && avctx->height)
505         avcodec_set_dimensions(avctx, avctx->width, avctx->height);
506
507     if ((avctx->coded_width || avctx->coded_height || avctx->width || avctx->height)
508         && (  av_image_check_size(avctx->coded_width, avctx->coded_height, 0, avctx) < 0
509            || av_image_check_size(avctx->width,       avctx->height,       0, avctx) < 0)) {
510         av_log(avctx, AV_LOG_WARNING, "ignoring invalid width/height values\n");
511         avcodec_set_dimensions(avctx, 0, 0);
512     }
513
514     /* if the decoder init function was already called previously,
515        free the already allocated subtitle_header before overwriting it */
516     if (codec->decode)
517         av_freep(&avctx->subtitle_header);
518
519 #define SANE_NB_CHANNELS 128U
520     if (avctx->channels > SANE_NB_CHANNELS) {
521         ret = AVERROR(EINVAL);
522         goto free_and_end;
523     }
524
525     avctx->codec = codec;
526     if ((avctx->codec_type == AVMEDIA_TYPE_UNKNOWN || avctx->codec_type == codec->type) &&
527         avctx->codec_id == CODEC_ID_NONE) {
528         avctx->codec_type = codec->type;
529         avctx->codec_id   = codec->id;
530     }
531     if (avctx->codec_id != codec->id || (avctx->codec_type != codec->type
532                            && avctx->codec_type != AVMEDIA_TYPE_ATTACHMENT)) {
533         av_log(avctx, AV_LOG_ERROR, "codec type or id mismatches\n");
534         ret = AVERROR(EINVAL);
535         goto free_and_end;
536     }
537     avctx->frame_number = 0;
538
539     if (HAVE_THREADS && !avctx->thread_opaque) {
540         ret = ff_thread_init(avctx);
541         if (ret < 0) {
542             goto free_and_end;
543         }
544     }
545
546     if (avctx->codec->max_lowres < avctx->lowres) {
547         av_log(avctx, AV_LOG_ERROR, "The maximum value for lowres supported by the decoder is %d\n",
548                avctx->codec->max_lowres);
549         ret = AVERROR(EINVAL);
550         goto free_and_end;
551     }
552     if (avctx->codec->encode) {
553         int i;
554         if (avctx->codec->sample_fmts) {
555             for (i = 0; avctx->codec->sample_fmts[i] != AV_SAMPLE_FMT_NONE; i++)
556                 if (avctx->sample_fmt == avctx->codec->sample_fmts[i])
557                     break;
558             if (avctx->codec->sample_fmts[i] == AV_SAMPLE_FMT_NONE) {
559                 av_log(avctx, AV_LOG_ERROR, "Specified sample_fmt is not supported.\n");
560                 ret = AVERROR(EINVAL);
561                 goto free_and_end;
562             }
563         }
564         if (avctx->codec->supported_samplerates) {
565             for (i = 0; avctx->codec->supported_samplerates[i] != 0; i++)
566                 if (avctx->sample_rate == avctx->codec->supported_samplerates[i])
567                     break;
568             if (avctx->codec->supported_samplerates[i] == 0) {
569                 av_log(avctx, AV_LOG_ERROR, "Specified sample_rate is not supported\n");
570                 ret = AVERROR(EINVAL);
571                 goto free_and_end;
572             }
573         }
574         if (avctx->codec->channel_layouts) {
575             if (!avctx->channel_layout) {
576                 av_log(avctx, AV_LOG_WARNING, "channel_layout not specified\n");
577             } else {
578                 for (i = 0; avctx->codec->channel_layouts[i] != 0; i++)
579                     if (avctx->channel_layout == avctx->codec->channel_layouts[i])
580                         break;
581                 if (avctx->codec->channel_layouts[i] == 0) {
582                     av_log(avctx, AV_LOG_ERROR, "Specified channel_layout is not supported\n");
583                     ret = AVERROR(EINVAL);
584                     goto free_and_end;
585                 }
586             }
587         }
588         if (avctx->channel_layout && avctx->channels) {
589             if (av_get_channel_layout_nb_channels(avctx->channel_layout) != avctx->channels) {
590                 av_log(avctx, AV_LOG_ERROR, "channel layout does not match number of channels\n");
591                 ret = AVERROR(EINVAL);
592                 goto free_and_end;
593             }
594         } else if (avctx->channel_layout) {
595             avctx->channels = av_get_channel_layout_nb_channels(avctx->channel_layout);
596         }
597     }
598
599     if(avctx->codec->init && !(avctx->active_thread_type&FF_THREAD_FRAME)){
600         ret = avctx->codec->init(avctx);
601         if (ret < 0) {
602             goto free_and_end;
603         }
604     }
605 end:
606     entangled_thread_counter--;
607
608     /* Release any user-supplied mutex. */
609     if (ff_lockmgr_cb) {
610         (*ff_lockmgr_cb)(&codec_mutex, AV_LOCK_RELEASE);
611     }
612     return ret;
613 free_and_end:
614     av_freep(&avctx->priv_data);
615     avctx->codec= NULL;
616     goto end;
617 }
618
619 int attribute_align_arg avcodec_encode_audio(AVCodecContext *avctx, uint8_t *buf, int buf_size,
620                          const short *samples)
621 {
622     if(buf_size < FF_MIN_BUFFER_SIZE && 0){
623         av_log(avctx, AV_LOG_ERROR, "buffer smaller than minimum size\n");
624         return -1;
625     }
626     if((avctx->codec->capabilities & CODEC_CAP_DELAY) || samples){
627         int ret = avctx->codec->encode(avctx, buf, buf_size, samples);
628         avctx->frame_number++;
629         return ret;
630     }else
631         return 0;
632 }
633
634 int attribute_align_arg avcodec_encode_video(AVCodecContext *avctx, uint8_t *buf, int buf_size,
635                          const AVFrame *pict)
636 {
637     if(buf_size < FF_MIN_BUFFER_SIZE){
638         av_log(avctx, AV_LOG_ERROR, "buffer smaller than minimum size\n");
639         return -1;
640     }
641     if(av_image_check_size(avctx->width, avctx->height, 0, avctx))
642         return -1;
643     if((avctx->codec->capabilities & CODEC_CAP_DELAY) || pict){
644         int ret = avctx->codec->encode(avctx, buf, buf_size, pict);
645         avctx->frame_number++;
646         emms_c(); //needed to avoid an emms_c() call before every return;
647
648         return ret;
649     }else
650         return 0;
651 }
652
653 int avcodec_encode_subtitle(AVCodecContext *avctx, uint8_t *buf, int buf_size,
654                             const AVSubtitle *sub)
655 {
656     int ret;
657     if(sub->start_display_time) {
658         av_log(avctx, AV_LOG_ERROR, "start_display_time must be 0.\n");
659         return -1;
660     }
661     if(sub->num_rects == 0 || !sub->rects)
662         return -1;
663     ret = avctx->codec->encode(avctx, buf, buf_size, sub);
664     avctx->frame_number++;
665     return ret;
666 }
667
668 int attribute_align_arg avcodec_decode_video2(AVCodecContext *avctx, AVFrame *picture,
669                          int *got_picture_ptr,
670                          AVPacket *avpkt)
671 {
672     int ret;
673
674     *got_picture_ptr= 0;
675     if((avctx->coded_width||avctx->coded_height) && av_image_check_size(avctx->coded_width, avctx->coded_height, 0, avctx))
676         return -1;
677
678     avctx->pkt = avpkt;
679
680     if((avctx->codec->capabilities & CODEC_CAP_DELAY) || avpkt->size || (avctx->active_thread_type&FF_THREAD_FRAME)){
681         if (HAVE_PTHREADS && avctx->active_thread_type&FF_THREAD_FRAME)
682              ret = ff_thread_decode_frame(avctx, picture, got_picture_ptr,
683                                           avpkt);
684         else {
685             ret = avctx->codec->decode(avctx, picture, got_picture_ptr,
686                               avpkt);
687             picture->pkt_dts= avpkt->dts;
688         }
689
690         emms_c(); //needed to avoid an emms_c() call before every return;
691
692         if (*got_picture_ptr)
693             avctx->frame_number++;
694     }else
695         ret= 0;
696
697     return ret;
698 }
699
700 int attribute_align_arg avcodec_decode_audio3(AVCodecContext *avctx, int16_t *samples,
701                          int *frame_size_ptr,
702                          AVPacket *avpkt)
703 {
704     int ret;
705
706     avctx->pkt = avpkt;
707
708     if((avctx->codec->capabilities & CODEC_CAP_DELAY) || avpkt->size){
709         //FIXME remove the check below _after_ ensuring that all audio check that the available space is enough
710         if(*frame_size_ptr < AVCODEC_MAX_AUDIO_FRAME_SIZE){
711             av_log(avctx, AV_LOG_ERROR, "buffer smaller than AVCODEC_MAX_AUDIO_FRAME_SIZE\n");
712             return -1;
713         }
714         if(*frame_size_ptr < FF_MIN_BUFFER_SIZE ||
715         *frame_size_ptr < avctx->channels * avctx->frame_size * sizeof(int16_t)){
716             av_log(avctx, AV_LOG_ERROR, "buffer %d too small\n", *frame_size_ptr);
717             return -1;
718         }
719
720         ret = avctx->codec->decode(avctx, samples, frame_size_ptr, avpkt);
721         avctx->frame_number++;
722     }else{
723         ret= 0;
724         *frame_size_ptr=0;
725     }
726     return ret;
727 }
728
729 int avcodec_decode_subtitle2(AVCodecContext *avctx, AVSubtitle *sub,
730                             int *got_sub_ptr,
731                             AVPacket *avpkt)
732 {
733     int ret;
734
735     avctx->pkt = avpkt;
736     *got_sub_ptr = 0;
737     ret = avctx->codec->decode(avctx, sub, got_sub_ptr, avpkt);
738     if (*got_sub_ptr)
739         avctx->frame_number++;
740     return ret;
741 }
742
743 void avsubtitle_free(AVSubtitle *sub)
744 {
745     int i;
746
747     for (i = 0; i < sub->num_rects; i++)
748     {
749         av_freep(&sub->rects[i]->pict.data[0]);
750         av_freep(&sub->rects[i]->pict.data[1]);
751         av_freep(&sub->rects[i]->pict.data[2]);
752         av_freep(&sub->rects[i]->pict.data[3]);
753         av_freep(&sub->rects[i]->text);
754         av_freep(&sub->rects[i]->ass);
755         av_freep(&sub->rects[i]);
756     }
757
758     av_freep(&sub->rects);
759
760     memset(sub, 0, sizeof(AVSubtitle));
761 }
762
763 av_cold int avcodec_close(AVCodecContext *avctx)
764 {
765     /* If there is a user-supplied mutex locking routine, call it. */
766     if (ff_lockmgr_cb) {
767         if ((*ff_lockmgr_cb)(&codec_mutex, AV_LOCK_OBTAIN))
768             return -1;
769     }
770
771     entangled_thread_counter++;
772     if(entangled_thread_counter != 1){
773         av_log(avctx, AV_LOG_ERROR, "insufficient thread locking around avcodec_open/close()\n");
774         entangled_thread_counter--;
775         return -1;
776     }
777
778     if (HAVE_THREADS && avctx->thread_opaque)
779         ff_thread_free(avctx);
780     if (avctx->codec && avctx->codec->close)
781         avctx->codec->close(avctx);
782     avcodec_default_free_buffers(avctx);
783     avctx->coded_frame = NULL;
784     av_freep(&avctx->priv_data);
785     if(avctx->codec && avctx->codec->encode)
786         av_freep(&avctx->extradata);
787     avctx->codec = NULL;
788     avctx->active_thread_type = 0;
789     entangled_thread_counter--;
790
791     /* Release any user-supplied mutex. */
792     if (ff_lockmgr_cb) {
793         (*ff_lockmgr_cb)(&codec_mutex, AV_LOCK_RELEASE);
794     }
795     return 0;
796 }
797
798 AVCodec *avcodec_find_encoder(enum CodecID id)
799 {
800     AVCodec *p, *experimental=NULL;
801     p = first_avcodec;
802     while (p) {
803         if (p->encode != NULL && p->id == id) {
804             if (p->capabilities & CODEC_CAP_EXPERIMENTAL && !experimental) {
805                 experimental = p;
806             } else
807                 return p;
808         }
809         p = p->next;
810     }
811     return experimental;
812 }
813
814 AVCodec *avcodec_find_encoder_by_name(const char *name)
815 {
816     AVCodec *p;
817     if (!name)
818         return NULL;
819     p = first_avcodec;
820     while (p) {
821         if (p->encode != NULL && strcmp(name,p->name) == 0)
822             return p;
823         p = p->next;
824     }
825     return NULL;
826 }
827
828 AVCodec *avcodec_find_decoder(enum CodecID id)
829 {
830     AVCodec *p;
831     p = first_avcodec;
832     while (p) {
833         if (p->decode != NULL && p->id == id)
834             return p;
835         p = p->next;
836     }
837     return NULL;
838 }
839
840 AVCodec *avcodec_find_decoder_by_name(const char *name)
841 {
842     AVCodec *p;
843     if (!name)
844         return NULL;
845     p = first_avcodec;
846     while (p) {
847         if (p->decode != NULL && strcmp(name,p->name) == 0)
848             return p;
849         p = p->next;
850     }
851     return NULL;
852 }
853
854 static int get_bit_rate(AVCodecContext *ctx)
855 {
856     int bit_rate;
857     int bits_per_sample;
858
859     switch(ctx->codec_type) {
860     case AVMEDIA_TYPE_VIDEO:
861     case AVMEDIA_TYPE_DATA:
862     case AVMEDIA_TYPE_SUBTITLE:
863     case AVMEDIA_TYPE_ATTACHMENT:
864         bit_rate = ctx->bit_rate;
865         break;
866     case AVMEDIA_TYPE_AUDIO:
867         bits_per_sample = av_get_bits_per_sample(ctx->codec_id);
868         bit_rate = bits_per_sample ? ctx->sample_rate * ctx->channels * bits_per_sample : ctx->bit_rate;
869         break;
870     default:
871         bit_rate = 0;
872         break;
873     }
874     return bit_rate;
875 }
876
877 size_t av_get_codec_tag_string(char *buf, size_t buf_size, unsigned int codec_tag)
878 {
879     int i, len, ret = 0;
880
881     for (i = 0; i < 4; i++) {
882         len = snprintf(buf, buf_size,
883                        isprint(codec_tag&0xFF) ? "%c" : "[%d]", codec_tag&0xFF);
884         buf      += len;
885         buf_size  = buf_size > len ? buf_size - len : 0;
886         ret      += len;
887         codec_tag>>=8;
888     }
889     return ret;
890 }
891
892 void avcodec_string(char *buf, int buf_size, AVCodecContext *enc, int encode)
893 {
894     const char *codec_name;
895     const char *profile = NULL;
896     AVCodec *p;
897     char buf1[32];
898     int bitrate;
899     AVRational display_aspect_ratio;
900
901     if (encode)
902         p = avcodec_find_encoder(enc->codec_id);
903     else
904         p = avcodec_find_decoder(enc->codec_id);
905
906     if (p) {
907         codec_name = p->name;
908         profile = av_get_profile_name(p, enc->profile);
909     } else if (enc->codec_id == CODEC_ID_MPEG2TS) {
910         /* fake mpeg2 transport stream codec (currently not
911            registered) */
912         codec_name = "mpeg2ts";
913     } else if (enc->codec_name[0] != '\0') {
914         codec_name = enc->codec_name;
915     } else {
916         /* output avi tags */
917         char tag_buf[32];
918         av_get_codec_tag_string(tag_buf, sizeof(tag_buf), enc->codec_tag);
919         snprintf(buf1, sizeof(buf1), "%s / 0x%04X", tag_buf, enc->codec_tag);
920         codec_name = buf1;
921     }
922
923     switch(enc->codec_type) {
924     case AVMEDIA_TYPE_VIDEO:
925         snprintf(buf, buf_size,
926                  "Video: %s%s",
927                  codec_name, enc->mb_decision ? " (hq)" : "");
928         if (profile)
929             snprintf(buf + strlen(buf), buf_size - strlen(buf),
930                      " (%s)", profile);
931         if (enc->pix_fmt != PIX_FMT_NONE) {
932             snprintf(buf + strlen(buf), buf_size - strlen(buf),
933                      ", %s",
934                      avcodec_get_pix_fmt_name(enc->pix_fmt));
935         }
936         if (enc->width) {
937             snprintf(buf + strlen(buf), buf_size - strlen(buf),
938                      ", %dx%d",
939                      enc->width, enc->height);
940             if (enc->sample_aspect_ratio.num) {
941                 av_reduce(&display_aspect_ratio.num, &display_aspect_ratio.den,
942                           enc->width*enc->sample_aspect_ratio.num,
943                           enc->height*enc->sample_aspect_ratio.den,
944                           1024*1024);
945                 snprintf(buf + strlen(buf), buf_size - strlen(buf),
946                          " [PAR %d:%d DAR %d:%d]",
947                          enc->sample_aspect_ratio.num, enc->sample_aspect_ratio.den,
948                          display_aspect_ratio.num, display_aspect_ratio.den);
949             }
950             if(av_log_get_level() >= AV_LOG_DEBUG){
951                 int g= av_gcd(enc->time_base.num, enc->time_base.den);
952                 snprintf(buf + strlen(buf), buf_size - strlen(buf),
953                      ", %d/%d",
954                      enc->time_base.num/g, enc->time_base.den/g);
955             }
956         }
957         if (encode) {
958             snprintf(buf + strlen(buf), buf_size - strlen(buf),
959                      ", q=%d-%d", enc->qmin, enc->qmax);
960         }
961         break;
962     case AVMEDIA_TYPE_AUDIO:
963         snprintf(buf, buf_size,
964                  "Audio: %s",
965                  codec_name);
966         if (profile)
967             snprintf(buf + strlen(buf), buf_size - strlen(buf),
968                      " (%s)", profile);
969         if (enc->sample_rate) {
970             snprintf(buf + strlen(buf), buf_size - strlen(buf),
971                      ", %d Hz", enc->sample_rate);
972         }
973         av_strlcat(buf, ", ", buf_size);
974         av_get_channel_layout_string(buf + strlen(buf), buf_size - strlen(buf), enc->channels, enc->channel_layout);
975         if (enc->sample_fmt != AV_SAMPLE_FMT_NONE) {
976             snprintf(buf + strlen(buf), buf_size - strlen(buf),
977                      ", %s", av_get_sample_fmt_name(enc->sample_fmt));
978         }
979         break;
980     case AVMEDIA_TYPE_DATA:
981         snprintf(buf, buf_size, "Data: %s", codec_name);
982         break;
983     case AVMEDIA_TYPE_SUBTITLE:
984         snprintf(buf, buf_size, "Subtitle: %s", codec_name);
985         break;
986     case AVMEDIA_TYPE_ATTACHMENT:
987         snprintf(buf, buf_size, "Attachment: %s", codec_name);
988         break;
989     default:
990         snprintf(buf, buf_size, "Invalid Codec type %d", enc->codec_type);
991         return;
992     }
993     if (encode) {
994         if (enc->flags & CODEC_FLAG_PASS1)
995             snprintf(buf + strlen(buf), buf_size - strlen(buf),
996                      ", pass 1");
997         if (enc->flags & CODEC_FLAG_PASS2)
998             snprintf(buf + strlen(buf), buf_size - strlen(buf),
999                      ", pass 2");
1000     }
1001     bitrate = get_bit_rate(enc);
1002     if (bitrate != 0) {
1003         snprintf(buf + strlen(buf), buf_size - strlen(buf),
1004                  ", %d kb/s", bitrate / 1000);
1005     }
1006 }
1007
1008 const char *av_get_profile_name(const AVCodec *codec, int profile)
1009 {
1010     const AVProfile *p;
1011     if (profile == FF_PROFILE_UNKNOWN || !codec->profiles)
1012         return NULL;
1013
1014     for (p = codec->profiles; p->profile != FF_PROFILE_UNKNOWN; p++)
1015         if (p->profile == profile)
1016             return p->name;
1017
1018     return NULL;
1019 }
1020
1021 unsigned avcodec_version( void )
1022 {
1023   return LIBAVCODEC_VERSION_INT;
1024 }
1025
1026 const char *avcodec_configuration(void)
1027 {
1028     return LIBAV_CONFIGURATION;
1029 }
1030
1031 const char *avcodec_license(void)
1032 {
1033 #define LICENSE_PREFIX "libavcodec license: "
1034     return LICENSE_PREFIX LIBAV_LICENSE + sizeof(LICENSE_PREFIX) - 1;
1035 }
1036
1037 void avcodec_init(void)
1038 {
1039     static int initialized = 0;
1040
1041     if (initialized != 0)
1042         return;
1043     initialized = 1;
1044
1045     dsputil_static_init();
1046 }
1047
1048 void avcodec_flush_buffers(AVCodecContext *avctx)
1049 {
1050     if(HAVE_PTHREADS && avctx->active_thread_type&FF_THREAD_FRAME)
1051         ff_thread_flush(avctx);
1052     if(avctx->codec->flush)
1053         avctx->codec->flush(avctx);
1054 }
1055
1056 void avcodec_default_free_buffers(AVCodecContext *s){
1057     int i, j;
1058
1059     if(s->internal_buffer==NULL) return;
1060
1061     if (s->internal_buffer_count)
1062         av_log(s, AV_LOG_WARNING, "Found %i unreleased buffers!\n", s->internal_buffer_count);
1063     for(i=0; i<INTERNAL_BUFFER_SIZE; i++){
1064         InternalBuffer *buf= &((InternalBuffer*)s->internal_buffer)[i];
1065         for(j=0; j<4; j++){
1066             av_freep(&buf->base[j]);
1067             buf->data[j]= NULL;
1068         }
1069     }
1070     av_freep(&s->internal_buffer);
1071
1072     s->internal_buffer_count=0;
1073 }
1074
1075 #if FF_API_OLD_FF_PICT_TYPES
1076 char av_get_pict_type_char(int pict_type){
1077     return av_get_picture_type_char(pict_type);
1078 }
1079 #endif
1080
1081 int av_get_bits_per_sample(enum CodecID codec_id){
1082     switch(codec_id){
1083     case CODEC_ID_ADPCM_SBPRO_2:
1084         return 2;
1085     case CODEC_ID_ADPCM_SBPRO_3:
1086         return 3;
1087     case CODEC_ID_ADPCM_SBPRO_4:
1088     case CODEC_ID_ADPCM_CT:
1089     case CODEC_ID_ADPCM_IMA_WAV:
1090     case CODEC_ID_ADPCM_MS:
1091     case CODEC_ID_ADPCM_YAMAHA:
1092         return 4;
1093     case CODEC_ID_ADPCM_G722:
1094     case CODEC_ID_PCM_ALAW:
1095     case CODEC_ID_PCM_MULAW:
1096     case CODEC_ID_PCM_S8:
1097     case CODEC_ID_PCM_U8:
1098     case CODEC_ID_PCM_ZORK:
1099         return 8;
1100     case CODEC_ID_PCM_S16BE:
1101     case CODEC_ID_PCM_S16LE:
1102     case CODEC_ID_PCM_S16LE_PLANAR:
1103     case CODEC_ID_PCM_U16BE:
1104     case CODEC_ID_PCM_U16LE:
1105         return 16;
1106     case CODEC_ID_PCM_S24DAUD:
1107     case CODEC_ID_PCM_S24BE:
1108     case CODEC_ID_PCM_S24LE:
1109     case CODEC_ID_PCM_U24BE:
1110     case CODEC_ID_PCM_U24LE:
1111         return 24;
1112     case CODEC_ID_PCM_S32BE:
1113     case CODEC_ID_PCM_S32LE:
1114     case CODEC_ID_PCM_U32BE:
1115     case CODEC_ID_PCM_U32LE:
1116     case CODEC_ID_PCM_F32BE:
1117     case CODEC_ID_PCM_F32LE:
1118         return 32;
1119     case CODEC_ID_PCM_F64BE:
1120     case CODEC_ID_PCM_F64LE:
1121         return 64;
1122     default:
1123         return 0;
1124     }
1125 }
1126
1127 #if FF_API_OLD_SAMPLE_FMT
1128 int av_get_bits_per_sample_format(enum AVSampleFormat sample_fmt) {
1129     return av_get_bits_per_sample_fmt(sample_fmt);
1130 }
1131 #endif
1132
1133 #if !HAVE_THREADS
1134 int ff_thread_init(AVCodecContext *s){
1135     return -1;
1136 }
1137 #endif
1138
1139 unsigned int av_xiphlacing(unsigned char *s, unsigned int v)
1140 {
1141     unsigned int n = 0;
1142
1143     while(v >= 0xff) {
1144         *s++ = 0xff;
1145         v -= 0xff;
1146         n++;
1147     }
1148     *s = v;
1149     n++;
1150     return n;
1151 }
1152
1153 int ff_match_2uint16(const uint16_t (*tab)[2], int size, int a, int b){
1154     int i;
1155     for(i=0; i<size && !(tab[i][0]==a && tab[i][1]==b); i++);
1156     return i;
1157 }
1158
1159 void av_log_missing_feature(void *avc, const char *feature, int want_sample)
1160 {
1161     av_log(avc, AV_LOG_WARNING, "%s not implemented. Update your Libav "
1162             "version to the newest one from Git. If the problem still "
1163             "occurs, it means that your file has a feature which has not "
1164             "been implemented.\n", feature);
1165     if(want_sample)
1166         av_log_ask_for_sample(avc, NULL);
1167 }
1168
1169 void av_log_ask_for_sample(void *avc, const char *msg, ...)
1170 {
1171     va_list argument_list;
1172
1173     va_start(argument_list, msg);
1174
1175     if (msg)
1176         av_vlog(avc, AV_LOG_WARNING, msg, argument_list);
1177     av_log(avc, AV_LOG_WARNING, "If you want to help, upload a sample "
1178             "of this file to ftp://upload.libav.org/incoming/ "
1179             "and contact the libav-devel mailing list.\n");
1180
1181     va_end(argument_list);
1182 }
1183
1184 static AVHWAccel *first_hwaccel = NULL;
1185
1186 void av_register_hwaccel(AVHWAccel *hwaccel)
1187 {
1188     AVHWAccel **p = &first_hwaccel;
1189     while (*p)
1190         p = &(*p)->next;
1191     *p = hwaccel;
1192     hwaccel->next = NULL;
1193 }
1194
1195 AVHWAccel *av_hwaccel_next(AVHWAccel *hwaccel)
1196 {
1197     return hwaccel ? hwaccel->next : first_hwaccel;
1198 }
1199
1200 AVHWAccel *ff_find_hwaccel(enum CodecID codec_id, enum PixelFormat pix_fmt)
1201 {
1202     AVHWAccel *hwaccel=NULL;
1203
1204     while((hwaccel= av_hwaccel_next(hwaccel))){
1205         if (   hwaccel->id      == codec_id
1206             && hwaccel->pix_fmt == pix_fmt)
1207             return hwaccel;
1208     }
1209     return NULL;
1210 }
1211
1212 int av_lockmgr_register(int (*cb)(void **mutex, enum AVLockOp op))
1213 {
1214     if (ff_lockmgr_cb) {
1215         if (ff_lockmgr_cb(&codec_mutex, AV_LOCK_DESTROY))
1216             return -1;
1217     }
1218
1219     ff_lockmgr_cb = cb;
1220
1221     if (ff_lockmgr_cb) {
1222         if (ff_lockmgr_cb(&codec_mutex, AV_LOCK_CREATE))
1223             return -1;
1224     }
1225     return 0;
1226 }
1227
1228 unsigned int ff_toupper4(unsigned int x)
1229 {
1230     return     toupper( x     &0xFF)
1231             + (toupper((x>>8 )&0xFF)<<8 )
1232             + (toupper((x>>16)&0xFF)<<16)
1233             + (toupper((x>>24)&0xFF)<<24);
1234 }
1235
1236 #if !HAVE_PTHREADS
1237
1238 int ff_thread_get_buffer(AVCodecContext *avctx, AVFrame *f)
1239 {
1240     f->owner = avctx;
1241     return avctx->get_buffer(avctx, f);
1242 }
1243
1244 void ff_thread_release_buffer(AVCodecContext *avctx, AVFrame *f)
1245 {
1246     f->owner->release_buffer(f->owner, f);
1247 }
1248
1249 void ff_thread_finish_setup(AVCodecContext *avctx)
1250 {
1251 }
1252
1253 void ff_thread_report_progress(AVFrame *f, int progress, int field)
1254 {
1255 }
1256
1257 void ff_thread_await_progress(AVFrame *f, int progress, int field)
1258 {
1259 }
1260
1261 #endif
1262
1263 #if FF_API_THREAD_INIT
1264 int avcodec_thread_init(AVCodecContext *s, int thread_count)
1265 {
1266     s->thread_count = thread_count;
1267     return ff_thread_init(s);
1268 }
1269 #endif