OSDN Git Service

Merge remote-tracking branch 'qatar/master'
[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/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) {
347         pic->pkt_pts = s->pkt->pts;
348         pic->pkt_pos = s->pkt->pos;
349     } else {
350         pic->pkt_pts = AV_NOPTS_VALUE;
351         pic->pkt_pos = -1;
352     }
353     pic->reordered_opaque= s->reordered_opaque;
354     pic->sample_aspect_ratio = s->sample_aspect_ratio;
355     pic->width               = s->width;
356     pic->height              = s->height;
357     pic->format              = s->pix_fmt;
358
359     if(s->debug&FF_DEBUG_BUFFERS)
360         av_log(s, AV_LOG_DEBUG, "default_get_buffer called on pic %p, %d buffers used\n", pic, s->internal_buffer_count);
361
362     return 0;
363 }
364
365 void avcodec_default_release_buffer(AVCodecContext *s, AVFrame *pic){
366     int i;
367     InternalBuffer *buf, *last;
368
369     assert(pic->type==FF_BUFFER_TYPE_INTERNAL);
370     assert(s->internal_buffer_count);
371
372     if(s->internal_buffer){
373     buf = NULL; /* avoids warning */
374     for(i=0; i<s->internal_buffer_count; i++){ //just 3-5 checks so is not worth to optimize
375         buf= &((InternalBuffer*)s->internal_buffer)[i];
376         if(buf->data[0] == pic->data[0])
377             break;
378     }
379     assert(i < s->internal_buffer_count);
380     s->internal_buffer_count--;
381     last = &((InternalBuffer*)s->internal_buffer)[s->internal_buffer_count];
382
383     FFSWAP(InternalBuffer, *buf, *last);
384     }
385
386     for(i=0; i<4; i++){
387         pic->data[i]=NULL;
388 //        pic->base[i]=NULL;
389     }
390 //printf("R%X\n", pic->opaque);
391
392     if(s->debug&FF_DEBUG_BUFFERS)
393         av_log(s, AV_LOG_DEBUG, "default_release_buffer called on pic %p, %d buffers used\n", pic, s->internal_buffer_count);
394 }
395
396 int avcodec_default_reget_buffer(AVCodecContext *s, AVFrame *pic){
397     AVFrame temp_pic;
398     int i;
399
400     /* If no picture return a new buffer */
401     if(pic->data[0] == NULL) {
402         /* We will copy from buffer, so must be readable */
403         pic->buffer_hints |= FF_BUFFER_HINTS_READABLE;
404         return s->get_buffer(s, pic);
405     }
406
407     /* If internal buffer type return the same buffer */
408     if(pic->type == FF_BUFFER_TYPE_INTERNAL) {
409         if(s->pkt) pic->pkt_pts= s->pkt->pts;
410         else       pic->pkt_pts= AV_NOPTS_VALUE;
411         pic->reordered_opaque= s->reordered_opaque;
412         return 0;
413     }
414
415     /*
416      * Not internal type and reget_buffer not overridden, emulate cr buffer
417      */
418     temp_pic = *pic;
419     for(i = 0; i < 4; i++)
420         pic->data[i] = pic->base[i] = NULL;
421     pic->opaque = NULL;
422     /* Allocate new frame */
423     if (s->get_buffer(s, pic))
424         return -1;
425     /* Copy image data from old buffer to new buffer */
426     av_picture_copy((AVPicture*)pic, (AVPicture*)&temp_pic, s->pix_fmt, s->width,
427              s->height);
428     s->release_buffer(s, &temp_pic); // Release old frame
429     return 0;
430 }
431
432 int avcodec_default_execute(AVCodecContext *c, int (*func)(AVCodecContext *c2, void *arg2),void *arg, int *ret, int count, int size){
433     int i;
434
435     for(i=0; i<count; i++){
436         int r= func(c, (char*)arg + i*size);
437         if(ret) ret[i]= r;
438     }
439     return 0;
440 }
441
442 int avcodec_default_execute2(AVCodecContext *c, int (*func)(AVCodecContext *c2, void *arg2, int jobnr, int threadnr),void *arg, int *ret, int count){
443     int i;
444
445     for(i=0; i<count; i++){
446         int r= func(c, arg, i, 0);
447         if(ret) ret[i]= r;
448     }
449     return 0;
450 }
451
452 enum PixelFormat avcodec_default_get_format(struct AVCodecContext *s, const enum PixelFormat *fmt){
453     while (*fmt != PIX_FMT_NONE && ff_is_hwaccel_pix_fmt(*fmt))
454         ++fmt;
455     return fmt[0];
456 }
457
458 void avcodec_get_frame_defaults(AVFrame *pic){
459     memset(pic, 0, sizeof(AVFrame));
460
461     pic->pts = pic->best_effort_timestamp = AV_NOPTS_VALUE;
462     pic->pkt_pos = -1;
463     pic->key_frame= 1;
464     pic->sample_aspect_ratio = (AVRational){0, 1};
465     pic->format = -1;           /* unknown */
466 }
467
468 AVFrame *avcodec_alloc_frame(void){
469     AVFrame *pic= av_malloc(sizeof(AVFrame));
470
471     if(pic==NULL) return NULL;
472
473     avcodec_get_frame_defaults(pic);
474
475     return pic;
476 }
477
478 static void avcodec_get_subtitle_defaults(AVSubtitle *sub)
479 {
480     memset(sub, 0, sizeof(*sub));
481     sub->pts = AV_NOPTS_VALUE;
482 }
483
484 int attribute_align_arg avcodec_open(AVCodecContext *avctx, AVCodec *codec)
485 {
486     int ret = 0;
487
488     /* If there is a user-supplied mutex locking routine, call it. */
489     if (ff_lockmgr_cb) {
490         if ((*ff_lockmgr_cb)(&codec_mutex, AV_LOCK_OBTAIN))
491             return -1;
492     }
493
494     entangled_thread_counter++;
495     if(entangled_thread_counter != 1){
496         av_log(avctx, AV_LOG_ERROR, "insufficient thread locking around avcodec_open/close()\n");
497         ret = -1;
498         goto end;
499     }
500
501     if(avctx->codec || !codec) {
502         ret = AVERROR(EINVAL);
503         goto end;
504     }
505
506     if (codec->priv_data_size > 0) {
507       if(!avctx->priv_data){
508         avctx->priv_data = av_mallocz(codec->priv_data_size);
509         if (!avctx->priv_data) {
510             ret = AVERROR(ENOMEM);
511             goto end;
512         }
513         if(codec->priv_class){ //this can be droped once all user apps use   avcodec_get_context_defaults3()
514             *(AVClass**)avctx->priv_data= codec->priv_class;
515             av_opt_set_defaults(avctx->priv_data);
516         }
517       }
518     } else {
519         avctx->priv_data = NULL;
520     }
521
522     if(avctx->coded_width && avctx->coded_height)
523         avcodec_set_dimensions(avctx, avctx->coded_width, avctx->coded_height);
524     else if(avctx->width && avctx->height)
525         avcodec_set_dimensions(avctx, avctx->width, avctx->height);
526
527     if ((avctx->coded_width || avctx->coded_height || avctx->width || avctx->height)
528         && (  av_image_check_size(avctx->coded_width, avctx->coded_height, 0, avctx) < 0
529            || av_image_check_size(avctx->width,       avctx->height,       0, avctx) < 0)) {
530         av_log(avctx, AV_LOG_WARNING, "ignoring invalid width/height values\n");
531         avcodec_set_dimensions(avctx, 0, 0);
532     }
533
534     /* if the decoder init function was already called previously,
535        free the already allocated subtitle_header before overwriting it */
536     if (codec->decode)
537         av_freep(&avctx->subtitle_header);
538
539 #define SANE_NB_CHANNELS 128U
540     if (avctx->channels > SANE_NB_CHANNELS) {
541         ret = AVERROR(EINVAL);
542         goto free_and_end;
543     }
544
545     avctx->codec = codec;
546     if ((avctx->codec_type == AVMEDIA_TYPE_UNKNOWN || avctx->codec_type == codec->type) &&
547         avctx->codec_id == CODEC_ID_NONE) {
548         avctx->codec_type = codec->type;
549         avctx->codec_id   = codec->id;
550     }
551     if (avctx->codec_id != codec->id || (avctx->codec_type != codec->type
552                            && avctx->codec_type != AVMEDIA_TYPE_ATTACHMENT)) {
553         av_log(avctx, AV_LOG_ERROR, "codec type or id mismatches\n");
554         ret = AVERROR(EINVAL);
555         goto free_and_end;
556     }
557     avctx->frame_number = 0;
558
559     if (HAVE_THREADS && !avctx->thread_opaque) {
560         ret = ff_thread_init(avctx);
561         if (ret < 0) {
562             goto free_and_end;
563         }
564     }
565
566     if (avctx->codec->max_lowres < avctx->lowres) {
567         av_log(avctx, AV_LOG_ERROR, "The maximum value for lowres supported by the decoder is %d\n",
568                avctx->codec->max_lowres);
569         ret = AVERROR(EINVAL);
570         goto free_and_end;
571     }
572     if (avctx->codec->encode) {
573         int i;
574         if (avctx->codec->sample_fmts) {
575             for (i = 0; avctx->codec->sample_fmts[i] != AV_SAMPLE_FMT_NONE; i++)
576                 if (avctx->sample_fmt == avctx->codec->sample_fmts[i])
577                     break;
578             if (avctx->codec->sample_fmts[i] == AV_SAMPLE_FMT_NONE) {
579                 av_log(avctx, AV_LOG_ERROR, "Specified sample_fmt is not supported.\n");
580                 ret = AVERROR(EINVAL);
581                 goto free_and_end;
582             }
583         }
584         if (avctx->codec->supported_samplerates) {
585             for (i = 0; avctx->codec->supported_samplerates[i] != 0; i++)
586                 if (avctx->sample_rate == avctx->codec->supported_samplerates[i])
587                     break;
588             if (avctx->codec->supported_samplerates[i] == 0) {
589                 av_log(avctx, AV_LOG_ERROR, "Specified sample_rate is not supported\n");
590                 ret = AVERROR(EINVAL);
591                 goto free_and_end;
592             }
593         }
594         if (avctx->codec->channel_layouts) {
595             if (!avctx->channel_layout) {
596                 av_log(avctx, AV_LOG_WARNING, "channel_layout not specified\n");
597             } else {
598                 for (i = 0; avctx->codec->channel_layouts[i] != 0; i++)
599                     if (avctx->channel_layout == avctx->codec->channel_layouts[i])
600                         break;
601                 if (avctx->codec->channel_layouts[i] == 0) {
602                     av_log(avctx, AV_LOG_ERROR, "Specified channel_layout is not supported\n");
603                     ret = AVERROR(EINVAL);
604                     goto free_and_end;
605                 }
606             }
607         }
608         if (avctx->channel_layout && avctx->channels) {
609             if (av_get_channel_layout_nb_channels(avctx->channel_layout) != avctx->channels) {
610                 av_log(avctx, AV_LOG_ERROR, "channel layout does not match number of channels\n");
611                 ret = AVERROR(EINVAL);
612                 goto free_and_end;
613             }
614         } else if (avctx->channel_layout) {
615             avctx->channels = av_get_channel_layout_nb_channels(avctx->channel_layout);
616         }
617     }
618
619     avctx->pts_correction_num_faulty_pts =
620     avctx->pts_correction_num_faulty_dts = 0;
621     avctx->pts_correction_last_pts =
622     avctx->pts_correction_last_dts = INT64_MIN;
623
624     if(avctx->codec->init && !(avctx->active_thread_type&FF_THREAD_FRAME)){
625         ret = avctx->codec->init(avctx);
626         if (ret < 0) {
627             goto free_and_end;
628         }
629     }
630
631     ret=0;
632 end:
633     entangled_thread_counter--;
634
635     /* Release any user-supplied mutex. */
636     if (ff_lockmgr_cb) {
637         (*ff_lockmgr_cb)(&codec_mutex, AV_LOCK_RELEASE);
638     }
639     return ret;
640 free_and_end:
641     av_freep(&avctx->priv_data);
642     avctx->codec= NULL;
643     goto end;
644 }
645
646 int attribute_align_arg avcodec_encode_audio(AVCodecContext *avctx, uint8_t *buf, int buf_size,
647                          const short *samples)
648 {
649     if(buf_size < FF_MIN_BUFFER_SIZE && 0){
650         av_log(avctx, AV_LOG_ERROR, "buffer smaller than minimum size\n");
651         return -1;
652     }
653     if((avctx->codec->capabilities & CODEC_CAP_DELAY) || samples){
654         int ret = avctx->codec->encode(avctx, buf, buf_size, samples);
655         avctx->frame_number++;
656         return ret;
657     }else
658         return 0;
659 }
660
661 int attribute_align_arg avcodec_encode_video(AVCodecContext *avctx, uint8_t *buf, int buf_size,
662                          const AVFrame *pict)
663 {
664     if(buf_size < FF_MIN_BUFFER_SIZE){
665         av_log(avctx, AV_LOG_ERROR, "buffer smaller than minimum size\n");
666         return -1;
667     }
668     if(av_image_check_size(avctx->width, avctx->height, 0, avctx))
669         return -1;
670     if((avctx->codec->capabilities & CODEC_CAP_DELAY) || pict){
671         int ret = avctx->codec->encode(avctx, buf, buf_size, pict);
672         avctx->frame_number++;
673         emms_c(); //needed to avoid an emms_c() call before every return;
674
675         return ret;
676     }else
677         return 0;
678 }
679
680 int avcodec_encode_subtitle(AVCodecContext *avctx, uint8_t *buf, int buf_size,
681                             const AVSubtitle *sub)
682 {
683     int ret;
684     if(sub->start_display_time) {
685         av_log(avctx, AV_LOG_ERROR, "start_display_time must be 0.\n");
686         return -1;
687     }
688
689     ret = avctx->codec->encode(avctx, buf, buf_size, sub);
690     avctx->frame_number++;
691     return ret;
692 }
693
694 /**
695  * Attempt to guess proper monotonic timestamps for decoded video frames
696  * which might have incorrect times. Input timestamps may wrap around, in
697  * which case the output will as well.
698  *
699  * @param pts the pts field of the decoded AVPacket, as passed through
700  * AVFrame.pkt_pts
701  * @param dts the dts field of the decoded AVPacket
702  * @return one of the input values, may be AV_NOPTS_VALUE
703  */
704 static int64_t guess_correct_pts(AVCodecContext *ctx,
705                                  int64_t reordered_pts, int64_t dts)
706 {
707     int64_t pts = AV_NOPTS_VALUE;
708
709     if (dts != AV_NOPTS_VALUE) {
710         ctx->pts_correction_num_faulty_dts += dts <= ctx->pts_correction_last_dts;
711         ctx->pts_correction_last_dts = dts;
712     }
713     if (reordered_pts != AV_NOPTS_VALUE) {
714         ctx->pts_correction_num_faulty_pts += reordered_pts <= ctx->pts_correction_last_pts;
715         ctx->pts_correction_last_pts = reordered_pts;
716     }
717     if ((ctx->pts_correction_num_faulty_pts<=ctx->pts_correction_num_faulty_dts || dts == AV_NOPTS_VALUE)
718        && reordered_pts != AV_NOPTS_VALUE)
719         pts = reordered_pts;
720     else
721         pts = dts;
722
723     return pts;
724 }
725
726 int attribute_align_arg avcodec_decode_video2(AVCodecContext *avctx, AVFrame *picture,
727                          int *got_picture_ptr,
728                          AVPacket *avpkt)
729 {
730     int ret;
731
732     *got_picture_ptr= 0;
733     if((avctx->coded_width||avctx->coded_height) && av_image_check_size(avctx->coded_width, avctx->coded_height, 0, avctx))
734         return -1;
735
736     if((avctx->codec->capabilities & CODEC_CAP_DELAY) || avpkt->size || (avctx->active_thread_type&FF_THREAD_FRAME)){
737         av_packet_split_side_data(avpkt);
738         avctx->pkt = avpkt;
739         if (HAVE_PTHREADS && avctx->active_thread_type&FF_THREAD_FRAME)
740              ret = ff_thread_decode_frame(avctx, picture, got_picture_ptr,
741                                           avpkt);
742         else {
743             ret = avctx->codec->decode(avctx, picture, got_picture_ptr,
744                               avpkt);
745             picture->pkt_dts= avpkt->dts;
746
747             if(!avctx->has_b_frames){
748             picture->pkt_pos= avpkt->pos;
749             }
750             //FIXME these should be under if(!avctx->has_b_frames)
751             if (!picture->sample_aspect_ratio.num)
752                 picture->sample_aspect_ratio = avctx->sample_aspect_ratio;
753             if (!picture->width)
754                 picture->width = avctx->width;
755             if (!picture->height)
756                 picture->height = avctx->height;
757             if (picture->format == PIX_FMT_NONE)
758                 picture->format = avctx->pix_fmt;
759         }
760
761         emms_c(); //needed to avoid an emms_c() call before every return;
762
763
764         if (*got_picture_ptr){
765             avctx->frame_number++;
766             picture->best_effort_timestamp = guess_correct_pts(avctx,
767                                                             picture->pkt_pts,
768                                                             picture->pkt_dts);
769         }
770     }else
771         ret= 0;
772
773     return ret;
774 }
775
776 int attribute_align_arg avcodec_decode_audio3(AVCodecContext *avctx, int16_t *samples,
777                          int *frame_size_ptr,
778                          AVPacket *avpkt)
779 {
780     int ret;
781
782     avctx->pkt = avpkt;
783
784     if((avctx->codec->capabilities & CODEC_CAP_DELAY) || avpkt->size){
785         //FIXME remove the check below _after_ ensuring that all audio check that the available space is enough
786         if(*frame_size_ptr < AVCODEC_MAX_AUDIO_FRAME_SIZE){
787             av_log(avctx, AV_LOG_ERROR, "buffer smaller than AVCODEC_MAX_AUDIO_FRAME_SIZE\n");
788             return -1;
789         }
790         if(*frame_size_ptr < FF_MIN_BUFFER_SIZE ||
791         *frame_size_ptr < avctx->channels * avctx->frame_size * sizeof(int16_t)){
792             av_log(avctx, AV_LOG_ERROR, "buffer %d too small\n", *frame_size_ptr);
793             return -1;
794         }
795
796         ret = avctx->codec->decode(avctx, samples, frame_size_ptr, avpkt);
797         avctx->frame_number++;
798     }else{
799         ret= 0;
800         *frame_size_ptr=0;
801     }
802     return ret;
803 }
804
805 int avcodec_decode_subtitle2(AVCodecContext *avctx, AVSubtitle *sub,
806                             int *got_sub_ptr,
807                             AVPacket *avpkt)
808 {
809     int ret;
810
811     avctx->pkt = avpkt;
812     *got_sub_ptr = 0;
813     avcodec_get_subtitle_defaults(sub);
814     ret = avctx->codec->decode(avctx, sub, got_sub_ptr, avpkt);
815     if (*got_sub_ptr)
816         avctx->frame_number++;
817     return ret;
818 }
819
820 void avsubtitle_free(AVSubtitle *sub)
821 {
822     int i;
823
824     for (i = 0; i < sub->num_rects; i++)
825     {
826         av_freep(&sub->rects[i]->pict.data[0]);
827         av_freep(&sub->rects[i]->pict.data[1]);
828         av_freep(&sub->rects[i]->pict.data[2]);
829         av_freep(&sub->rects[i]->pict.data[3]);
830         av_freep(&sub->rects[i]->text);
831         av_freep(&sub->rects[i]->ass);
832         av_freep(&sub->rects[i]);
833     }
834
835     av_freep(&sub->rects);
836
837     memset(sub, 0, sizeof(AVSubtitle));
838 }
839
840 av_cold int avcodec_close(AVCodecContext *avctx)
841 {
842     /* If there is a user-supplied mutex locking routine, call it. */
843     if (ff_lockmgr_cb) {
844         if ((*ff_lockmgr_cb)(&codec_mutex, AV_LOCK_OBTAIN))
845             return -1;
846     }
847
848     entangled_thread_counter++;
849     if(entangled_thread_counter != 1){
850         av_log(avctx, AV_LOG_ERROR, "insufficient thread locking around avcodec_open/close()\n");
851         entangled_thread_counter--;
852         return -1;
853     }
854
855     if (HAVE_THREADS && avctx->thread_opaque)
856         ff_thread_free(avctx);
857     if (avctx->codec && avctx->codec->close)
858         avctx->codec->close(avctx);
859     avcodec_default_free_buffers(avctx);
860     avctx->coded_frame = NULL;
861     av_freep(&avctx->priv_data);
862     if(avctx->codec && avctx->codec->encode)
863         av_freep(&avctx->extradata);
864     avctx->codec = NULL;
865     avctx->active_thread_type = 0;
866     entangled_thread_counter--;
867
868     /* Release any user-supplied mutex. */
869     if (ff_lockmgr_cb) {
870         (*ff_lockmgr_cb)(&codec_mutex, AV_LOCK_RELEASE);
871     }
872     return 0;
873 }
874
875 AVCodec *avcodec_find_encoder(enum CodecID id)
876 {
877     AVCodec *p, *experimental=NULL;
878     p = first_avcodec;
879     while (p) {
880         if (p->encode != NULL && p->id == id) {
881             if (p->capabilities & CODEC_CAP_EXPERIMENTAL && !experimental) {
882                 experimental = p;
883             } else
884                 return p;
885         }
886         p = p->next;
887     }
888     return experimental;
889 }
890
891 AVCodec *avcodec_find_encoder_by_name(const char *name)
892 {
893     AVCodec *p;
894     if (!name)
895         return NULL;
896     p = first_avcodec;
897     while (p) {
898         if (p->encode != NULL && strcmp(name,p->name) == 0)
899             return p;
900         p = p->next;
901     }
902     return NULL;
903 }
904
905 AVCodec *avcodec_find_decoder(enum CodecID id)
906 {
907     AVCodec *p, *experimental=NULL;
908     p = first_avcodec;
909     while (p) {
910         if (p->decode != NULL && p->id == id) {
911             if (p->capabilities & CODEC_CAP_EXPERIMENTAL && !experimental) {
912                 experimental = p;
913             } else
914                 return p;
915         }
916         p = p->next;
917     }
918     return experimental;
919 }
920
921 AVCodec *avcodec_find_decoder_by_name(const char *name)
922 {
923     AVCodec *p;
924     if (!name)
925         return NULL;
926     p = first_avcodec;
927     while (p) {
928         if (p->decode != NULL && strcmp(name,p->name) == 0)
929             return p;
930         p = p->next;
931     }
932     return NULL;
933 }
934
935 static int get_bit_rate(AVCodecContext *ctx)
936 {
937     int bit_rate;
938     int bits_per_sample;
939
940     switch(ctx->codec_type) {
941     case AVMEDIA_TYPE_VIDEO:
942     case AVMEDIA_TYPE_DATA:
943     case AVMEDIA_TYPE_SUBTITLE:
944     case AVMEDIA_TYPE_ATTACHMENT:
945         bit_rate = ctx->bit_rate;
946         break;
947     case AVMEDIA_TYPE_AUDIO:
948         bits_per_sample = av_get_bits_per_sample(ctx->codec_id);
949         bit_rate = bits_per_sample ? ctx->sample_rate * ctx->channels * bits_per_sample : ctx->bit_rate;
950         break;
951     default:
952         bit_rate = 0;
953         break;
954     }
955     return bit_rate;
956 }
957
958 size_t av_get_codec_tag_string(char *buf, size_t buf_size, unsigned int codec_tag)
959 {
960     int i, len, ret = 0;
961
962     for (i = 0; i < 4; i++) {
963         len = snprintf(buf, buf_size,
964                        isprint(codec_tag&0xFF) ? "%c" : "[%d]", codec_tag&0xFF);
965         buf      += len;
966         buf_size  = buf_size > len ? buf_size - len : 0;
967         ret      += len;
968         codec_tag>>=8;
969     }
970     return ret;
971 }
972
973 void avcodec_string(char *buf, int buf_size, AVCodecContext *enc, int encode)
974 {
975     const char *codec_name;
976     const char *profile = NULL;
977     AVCodec *p;
978     char buf1[32];
979     int bitrate;
980     AVRational display_aspect_ratio;
981
982     if (encode)
983         p = avcodec_find_encoder(enc->codec_id);
984     else
985         p = avcodec_find_decoder(enc->codec_id);
986
987     if (p) {
988         codec_name = p->name;
989         profile = av_get_profile_name(p, enc->profile);
990     } else if (enc->codec_id == CODEC_ID_MPEG2TS) {
991         /* fake mpeg2 transport stream codec (currently not
992            registered) */
993         codec_name = "mpeg2ts";
994     } else if (enc->codec_name[0] != '\0') {
995         codec_name = enc->codec_name;
996     } else {
997         /* output avi tags */
998         char tag_buf[32];
999         av_get_codec_tag_string(tag_buf, sizeof(tag_buf), enc->codec_tag);
1000         snprintf(buf1, sizeof(buf1), "%s / 0x%04X", tag_buf, enc->codec_tag);
1001         codec_name = buf1;
1002     }
1003
1004     switch(enc->codec_type) {
1005     case AVMEDIA_TYPE_VIDEO:
1006         snprintf(buf, buf_size,
1007                  "Video: %s%s",
1008                  codec_name, enc->mb_decision ? " (hq)" : "");
1009         if (profile)
1010             snprintf(buf + strlen(buf), buf_size - strlen(buf),
1011                      " (%s)", profile);
1012         if (enc->pix_fmt != PIX_FMT_NONE) {
1013             snprintf(buf + strlen(buf), buf_size - strlen(buf),
1014                      ", %s",
1015                      avcodec_get_pix_fmt_name(enc->pix_fmt));
1016         }
1017         if (enc->width) {
1018             snprintf(buf + strlen(buf), buf_size - strlen(buf),
1019                      ", %dx%d",
1020                      enc->width, enc->height);
1021             if (enc->sample_aspect_ratio.num) {
1022                 av_reduce(&display_aspect_ratio.num, &display_aspect_ratio.den,
1023                           enc->width*enc->sample_aspect_ratio.num,
1024                           enc->height*enc->sample_aspect_ratio.den,
1025                           1024*1024);
1026                 snprintf(buf + strlen(buf), buf_size - strlen(buf),
1027                          " [PAR %d:%d DAR %d:%d]",
1028                          enc->sample_aspect_ratio.num, enc->sample_aspect_ratio.den,
1029                          display_aspect_ratio.num, display_aspect_ratio.den);
1030             }
1031             if(av_log_get_level() >= AV_LOG_DEBUG){
1032                 int g= av_gcd(enc->time_base.num, enc->time_base.den);
1033                 snprintf(buf + strlen(buf), buf_size - strlen(buf),
1034                      ", %d/%d",
1035                      enc->time_base.num/g, enc->time_base.den/g);
1036             }
1037         }
1038         if (encode) {
1039             snprintf(buf + strlen(buf), buf_size - strlen(buf),
1040                      ", q=%d-%d", enc->qmin, enc->qmax);
1041         }
1042         break;
1043     case AVMEDIA_TYPE_AUDIO:
1044         snprintf(buf, buf_size,
1045                  "Audio: %s",
1046                  codec_name);
1047         if (profile)
1048             snprintf(buf + strlen(buf), buf_size - strlen(buf),
1049                      " (%s)", profile);
1050         if (enc->sample_rate) {
1051             snprintf(buf + strlen(buf), buf_size - strlen(buf),
1052                      ", %d Hz", enc->sample_rate);
1053         }
1054         av_strlcat(buf, ", ", buf_size);
1055         av_get_channel_layout_string(buf + strlen(buf), buf_size - strlen(buf), enc->channels, enc->channel_layout);
1056         if (enc->sample_fmt != AV_SAMPLE_FMT_NONE) {
1057             snprintf(buf + strlen(buf), buf_size - strlen(buf),
1058                      ", %s", av_get_sample_fmt_name(enc->sample_fmt));
1059         }
1060         break;
1061     case AVMEDIA_TYPE_DATA:
1062         snprintf(buf, buf_size, "Data: %s", codec_name);
1063         break;
1064     case AVMEDIA_TYPE_SUBTITLE:
1065         snprintf(buf, buf_size, "Subtitle: %s", codec_name);
1066         break;
1067     case AVMEDIA_TYPE_ATTACHMENT:
1068         snprintf(buf, buf_size, "Attachment: %s", codec_name);
1069         break;
1070     default:
1071         snprintf(buf, buf_size, "Invalid Codec type %d", enc->codec_type);
1072         return;
1073     }
1074     if (encode) {
1075         if (enc->flags & CODEC_FLAG_PASS1)
1076             snprintf(buf + strlen(buf), buf_size - strlen(buf),
1077                      ", pass 1");
1078         if (enc->flags & CODEC_FLAG_PASS2)
1079             snprintf(buf + strlen(buf), buf_size - strlen(buf),
1080                      ", pass 2");
1081     }
1082     bitrate = get_bit_rate(enc);
1083     if (bitrate != 0) {
1084         snprintf(buf + strlen(buf), buf_size - strlen(buf),
1085                  ", %d kb/s", bitrate / 1000);
1086     }
1087 }
1088
1089 const char *av_get_profile_name(const AVCodec *codec, int profile)
1090 {
1091     const AVProfile *p;
1092     if (profile == FF_PROFILE_UNKNOWN || !codec->profiles)
1093         return NULL;
1094
1095     for (p = codec->profiles; p->profile != FF_PROFILE_UNKNOWN; p++)
1096         if (p->profile == profile)
1097             return p->name;
1098
1099     return NULL;
1100 }
1101
1102 unsigned avcodec_version( void )
1103 {
1104   return LIBAVCODEC_VERSION_INT;
1105 }
1106
1107 const char *avcodec_configuration(void)
1108 {
1109     return FFMPEG_CONFIGURATION;
1110 }
1111
1112 const char *avcodec_license(void)
1113 {
1114 #define LICENSE_PREFIX "libavcodec license: "
1115     return LICENSE_PREFIX FFMPEG_LICENSE + sizeof(LICENSE_PREFIX) - 1;
1116 }
1117
1118 void avcodec_init(void)
1119 {
1120     static int initialized = 0;
1121
1122     if (initialized != 0)
1123         return;
1124     initialized = 1;
1125
1126     dsputil_static_init();
1127 }
1128
1129 void avcodec_flush_buffers(AVCodecContext *avctx)
1130 {
1131     if(HAVE_PTHREADS && avctx->active_thread_type&FF_THREAD_FRAME)
1132         ff_thread_flush(avctx);
1133     if(avctx->codec->flush)
1134         avctx->codec->flush(avctx);
1135 }
1136
1137 void avcodec_default_free_buffers(AVCodecContext *s){
1138     int i, j;
1139
1140     if(s->internal_buffer==NULL) return;
1141
1142     if (s->internal_buffer_count)
1143         av_log(s, AV_LOG_WARNING, "Found %i unreleased buffers!\n", s->internal_buffer_count);
1144     for(i=0; i<INTERNAL_BUFFER_SIZE; i++){
1145         InternalBuffer *buf= &((InternalBuffer*)s->internal_buffer)[i];
1146         for(j=0; j<4; j++){
1147             av_freep(&buf->base[j]);
1148             buf->data[j]= NULL;
1149         }
1150     }
1151     av_freep(&s->internal_buffer);
1152
1153     s->internal_buffer_count=0;
1154 }
1155
1156 #if FF_API_OLD_FF_PICT_TYPES
1157 char av_get_pict_type_char(int pict_type){
1158     return av_get_picture_type_char(pict_type);
1159 }
1160 #endif
1161
1162 int av_get_bits_per_sample(enum CodecID codec_id){
1163     switch(codec_id){
1164     case CODEC_ID_ADPCM_SBPRO_2:
1165         return 2;
1166     case CODEC_ID_ADPCM_SBPRO_3:
1167         return 3;
1168     case CODEC_ID_ADPCM_SBPRO_4:
1169     case CODEC_ID_ADPCM_CT:
1170     case CODEC_ID_ADPCM_IMA_WAV:
1171     case CODEC_ID_ADPCM_MS:
1172     case CODEC_ID_ADPCM_YAMAHA:
1173         return 4;
1174     case CODEC_ID_ADPCM_G722:
1175     case CODEC_ID_PCM_ALAW:
1176     case CODEC_ID_PCM_MULAW:
1177     case CODEC_ID_PCM_S8:
1178     case CODEC_ID_PCM_U8:
1179     case CODEC_ID_PCM_ZORK:
1180         return 8;
1181     case CODEC_ID_PCM_S16BE:
1182     case CODEC_ID_PCM_S16LE:
1183     case CODEC_ID_PCM_S16LE_PLANAR:
1184     case CODEC_ID_PCM_U16BE:
1185     case CODEC_ID_PCM_U16LE:
1186         return 16;
1187     case CODEC_ID_PCM_S24DAUD:
1188     case CODEC_ID_PCM_S24BE:
1189     case CODEC_ID_PCM_S24LE:
1190     case CODEC_ID_PCM_U24BE:
1191     case CODEC_ID_PCM_U24LE:
1192         return 24;
1193     case CODEC_ID_PCM_S32BE:
1194     case CODEC_ID_PCM_S32LE:
1195     case CODEC_ID_PCM_U32BE:
1196     case CODEC_ID_PCM_U32LE:
1197     case CODEC_ID_PCM_F32BE:
1198     case CODEC_ID_PCM_F32LE:
1199         return 32;
1200     case CODEC_ID_PCM_F64BE:
1201     case CODEC_ID_PCM_F64LE:
1202         return 64;
1203     default:
1204         return 0;
1205     }
1206 }
1207
1208 #if FF_API_OLD_SAMPLE_FMT
1209 int av_get_bits_per_sample_format(enum AVSampleFormat sample_fmt) {
1210     return av_get_bits_per_sample_fmt(sample_fmt);
1211 }
1212 #endif
1213
1214 #if !HAVE_THREADS
1215 int ff_thread_init(AVCodecContext *s){
1216     return -1;
1217 }
1218 #endif
1219
1220 unsigned int av_xiphlacing(unsigned char *s, unsigned int v)
1221 {
1222     unsigned int n = 0;
1223
1224     while(v >= 0xff) {
1225         *s++ = 0xff;
1226         v -= 0xff;
1227         n++;
1228     }
1229     *s = v;
1230     n++;
1231     return n;
1232 }
1233
1234 int ff_match_2uint16(const uint16_t (*tab)[2], int size, int a, int b){
1235     int i;
1236     for(i=0; i<size && !(tab[i][0]==a && tab[i][1]==b); i++);
1237     return i;
1238 }
1239
1240 void av_log_missing_feature(void *avc, const char *feature, int want_sample)
1241 {
1242     av_log(avc, AV_LOG_WARNING, "%s not implemented. Update your FFmpeg "
1243             "version to the newest one from Git. If the problem still "
1244             "occurs, it means that your file has a feature which has not "
1245             "been implemented.\n", feature);
1246     if(want_sample)
1247         av_log_ask_for_sample(avc, NULL);
1248 }
1249
1250 void av_log_ask_for_sample(void *avc, const char *msg, ...)
1251 {
1252     va_list argument_list;
1253
1254     va_start(argument_list, msg);
1255
1256     if (msg)
1257         av_vlog(avc, AV_LOG_WARNING, msg, argument_list);
1258     av_log(avc, AV_LOG_WARNING, "If you want to help, upload a sample "
1259             "of this file to ftp://upload.ffmpeg.org/MPlayer/incoming/ "
1260             "and contact the ffmpeg-devel mailing list.\n");
1261
1262     va_end(argument_list);
1263 }
1264
1265 static AVHWAccel *first_hwaccel = NULL;
1266
1267 void av_register_hwaccel(AVHWAccel *hwaccel)
1268 {
1269     AVHWAccel **p = &first_hwaccel;
1270     while (*p)
1271         p = &(*p)->next;
1272     *p = hwaccel;
1273     hwaccel->next = NULL;
1274 }
1275
1276 AVHWAccel *av_hwaccel_next(AVHWAccel *hwaccel)
1277 {
1278     return hwaccel ? hwaccel->next : first_hwaccel;
1279 }
1280
1281 AVHWAccel *ff_find_hwaccel(enum CodecID codec_id, enum PixelFormat pix_fmt)
1282 {
1283     AVHWAccel *hwaccel=NULL;
1284
1285     while((hwaccel= av_hwaccel_next(hwaccel))){
1286         if (   hwaccel->id      == codec_id
1287             && hwaccel->pix_fmt == pix_fmt)
1288             return hwaccel;
1289     }
1290     return NULL;
1291 }
1292
1293 int av_lockmgr_register(int (*cb)(void **mutex, enum AVLockOp op))
1294 {
1295     if (ff_lockmgr_cb) {
1296         if (ff_lockmgr_cb(&codec_mutex, AV_LOCK_DESTROY))
1297             return -1;
1298     }
1299
1300     ff_lockmgr_cb = cb;
1301
1302     if (ff_lockmgr_cb) {
1303         if (ff_lockmgr_cb(&codec_mutex, AV_LOCK_CREATE))
1304             return -1;
1305     }
1306     return 0;
1307 }
1308
1309 unsigned int ff_toupper4(unsigned int x)
1310 {
1311     return     toupper( x     &0xFF)
1312             + (toupper((x>>8 )&0xFF)<<8 )
1313             + (toupper((x>>16)&0xFF)<<16)
1314             + (toupper((x>>24)&0xFF)<<24);
1315 }
1316
1317 #if !HAVE_PTHREADS
1318
1319 int ff_thread_get_buffer(AVCodecContext *avctx, AVFrame *f)
1320 {
1321     f->owner = avctx;
1322     return avctx->get_buffer(avctx, f);
1323 }
1324
1325 void ff_thread_release_buffer(AVCodecContext *avctx, AVFrame *f)
1326 {
1327     f->owner->release_buffer(f->owner, f);
1328 }
1329
1330 void ff_thread_finish_setup(AVCodecContext *avctx)
1331 {
1332 }
1333
1334 void ff_thread_report_progress(AVFrame *f, int progress, int field)
1335 {
1336 }
1337
1338 void ff_thread_await_progress(AVFrame *f, int progress, int field)
1339 {
1340 }
1341
1342 #endif
1343
1344 #if FF_API_THREAD_INIT
1345 int avcodec_thread_init(AVCodecContext *s, int thread_count)
1346 {
1347     s->thread_count = thread_count;
1348     return ff_thread_init(s);
1349 }
1350 #endif