OSDN Git Service

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