]> git.sesse.net Git - ffmpeg/blob - libavcodec/utils.c
Merge remote-tracking branch 'qatar/master'
[ffmpeg] / libavcodec / utils.c
1 /*
2  * utils for libavcodec
3  * Copyright (c) 2001 Fabrice Bellard
4  * Copyright (c) 2002-2004 Michael Niedermayer <michaelni@gmx.at>
5  *
6  * This file is part of 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+1)
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 || avctx->lowres < 0) {
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     if (avctx->codec && avctx->codec->priv_class)
862         av_opt_free(avctx->priv_data);
863     av_opt_free(avctx);
864     av_freep(&avctx->priv_data);
865     if(avctx->codec && avctx->codec->encode)
866         av_freep(&avctx->extradata);
867     avctx->codec = NULL;
868     avctx->active_thread_type = 0;
869     entangled_thread_counter--;
870
871     /* Release any user-supplied mutex. */
872     if (ff_lockmgr_cb) {
873         (*ff_lockmgr_cb)(&codec_mutex, AV_LOCK_RELEASE);
874     }
875     return 0;
876 }
877
878 AVCodec *avcodec_find_encoder(enum CodecID id)
879 {
880     AVCodec *p, *experimental=NULL;
881     p = first_avcodec;
882     while (p) {
883         if (p->encode != NULL && p->id == id) {
884             if (p->capabilities & CODEC_CAP_EXPERIMENTAL && !experimental) {
885                 experimental = p;
886             } else
887                 return p;
888         }
889         p = p->next;
890     }
891     return experimental;
892 }
893
894 AVCodec *avcodec_find_encoder_by_name(const char *name)
895 {
896     AVCodec *p;
897     if (!name)
898         return NULL;
899     p = first_avcodec;
900     while (p) {
901         if (p->encode != NULL && strcmp(name,p->name) == 0)
902             return p;
903         p = p->next;
904     }
905     return NULL;
906 }
907
908 AVCodec *avcodec_find_decoder(enum CodecID id)
909 {
910     AVCodec *p, *experimental=NULL;
911     p = first_avcodec;
912     while (p) {
913         if (p->decode != NULL && p->id == id) {
914             if (p->capabilities & CODEC_CAP_EXPERIMENTAL && !experimental) {
915                 experimental = p;
916             } else
917                 return p;
918         }
919         p = p->next;
920     }
921     return experimental;
922 }
923
924 AVCodec *avcodec_find_decoder_by_name(const char *name)
925 {
926     AVCodec *p;
927     if (!name)
928         return NULL;
929     p = first_avcodec;
930     while (p) {
931         if (p->decode != NULL && strcmp(name,p->name) == 0)
932             return p;
933         p = p->next;
934     }
935     return NULL;
936 }
937
938 static int get_bit_rate(AVCodecContext *ctx)
939 {
940     int bit_rate;
941     int bits_per_sample;
942
943     switch(ctx->codec_type) {
944     case AVMEDIA_TYPE_VIDEO:
945     case AVMEDIA_TYPE_DATA:
946     case AVMEDIA_TYPE_SUBTITLE:
947     case AVMEDIA_TYPE_ATTACHMENT:
948         bit_rate = ctx->bit_rate;
949         break;
950     case AVMEDIA_TYPE_AUDIO:
951         bits_per_sample = av_get_bits_per_sample(ctx->codec_id);
952         bit_rate = bits_per_sample ? ctx->sample_rate * ctx->channels * bits_per_sample : ctx->bit_rate;
953         break;
954     default:
955         bit_rate = 0;
956         break;
957     }
958     return bit_rate;
959 }
960
961 size_t av_get_codec_tag_string(char *buf, size_t buf_size, unsigned int codec_tag)
962 {
963     int i, len, ret = 0;
964
965     for (i = 0; i < 4; i++) {
966         len = snprintf(buf, buf_size,
967                        isprint(codec_tag&0xFF) ? "%c" : "[%d]", codec_tag&0xFF);
968         buf      += len;
969         buf_size  = buf_size > len ? buf_size - len : 0;
970         ret      += len;
971         codec_tag>>=8;
972     }
973     return ret;
974 }
975
976 void avcodec_string(char *buf, int buf_size, AVCodecContext *enc, int encode)
977 {
978     const char *codec_name;
979     const char *profile = NULL;
980     AVCodec *p;
981     char buf1[32];
982     int bitrate;
983     AVRational display_aspect_ratio;
984
985     if (encode)
986         p = avcodec_find_encoder(enc->codec_id);
987     else
988         p = avcodec_find_decoder(enc->codec_id);
989
990     if (p) {
991         codec_name = p->name;
992         profile = av_get_profile_name(p, enc->profile);
993     } else if (enc->codec_id == CODEC_ID_MPEG2TS) {
994         /* fake mpeg2 transport stream codec (currently not
995            registered) */
996         codec_name = "mpeg2ts";
997     } else if (enc->codec_name[0] != '\0') {
998         codec_name = enc->codec_name;
999     } else {
1000         /* output avi tags */
1001         char tag_buf[32];
1002         av_get_codec_tag_string(tag_buf, sizeof(tag_buf), enc->codec_tag);
1003         snprintf(buf1, sizeof(buf1), "%s / 0x%04X", tag_buf, enc->codec_tag);
1004         codec_name = buf1;
1005     }
1006
1007     switch(enc->codec_type) {
1008     case AVMEDIA_TYPE_VIDEO:
1009         snprintf(buf, buf_size,
1010                  "Video: %s%s",
1011                  codec_name, enc->mb_decision ? " (hq)" : "");
1012         if (profile)
1013             snprintf(buf + strlen(buf), buf_size - strlen(buf),
1014                      " (%s)", profile);
1015         if (enc->pix_fmt != PIX_FMT_NONE) {
1016             snprintf(buf + strlen(buf), buf_size - strlen(buf),
1017                      ", %s",
1018                      av_get_pix_fmt_name(enc->pix_fmt));
1019         }
1020         if (enc->width) {
1021             snprintf(buf + strlen(buf), buf_size - strlen(buf),
1022                      ", %dx%d",
1023                      enc->width, enc->height);
1024             if (enc->sample_aspect_ratio.num) {
1025                 av_reduce(&display_aspect_ratio.num, &display_aspect_ratio.den,
1026                           enc->width*enc->sample_aspect_ratio.num,
1027                           enc->height*enc->sample_aspect_ratio.den,
1028                           1024*1024);
1029                 snprintf(buf + strlen(buf), buf_size - strlen(buf),
1030                          " [PAR %d:%d DAR %d:%d]",
1031                          enc->sample_aspect_ratio.num, enc->sample_aspect_ratio.den,
1032                          display_aspect_ratio.num, display_aspect_ratio.den);
1033             }
1034             if(av_log_get_level() >= AV_LOG_DEBUG){
1035                 int g= av_gcd(enc->time_base.num, enc->time_base.den);
1036                 snprintf(buf + strlen(buf), buf_size - strlen(buf),
1037                      ", %d/%d",
1038                      enc->time_base.num/g, enc->time_base.den/g);
1039             }
1040         }
1041         if (encode) {
1042             snprintf(buf + strlen(buf), buf_size - strlen(buf),
1043                      ", q=%d-%d", enc->qmin, enc->qmax);
1044         }
1045         break;
1046     case AVMEDIA_TYPE_AUDIO:
1047         snprintf(buf, buf_size,
1048                  "Audio: %s",
1049                  codec_name);
1050         if (profile)
1051             snprintf(buf + strlen(buf), buf_size - strlen(buf),
1052                      " (%s)", profile);
1053         if (enc->sample_rate) {
1054             snprintf(buf + strlen(buf), buf_size - strlen(buf),
1055                      ", %d Hz", enc->sample_rate);
1056         }
1057         av_strlcat(buf, ", ", buf_size);
1058         av_get_channel_layout_string(buf + strlen(buf), buf_size - strlen(buf), enc->channels, enc->channel_layout);
1059         if (enc->sample_fmt != AV_SAMPLE_FMT_NONE) {
1060             snprintf(buf + strlen(buf), buf_size - strlen(buf),
1061                      ", %s", av_get_sample_fmt_name(enc->sample_fmt));
1062         }
1063         break;
1064     case AVMEDIA_TYPE_DATA:
1065         snprintf(buf, buf_size, "Data: %s", codec_name);
1066         break;
1067     case AVMEDIA_TYPE_SUBTITLE:
1068         snprintf(buf, buf_size, "Subtitle: %s", codec_name);
1069         break;
1070     case AVMEDIA_TYPE_ATTACHMENT:
1071         snprintf(buf, buf_size, "Attachment: %s", codec_name);
1072         break;
1073     default:
1074         snprintf(buf, buf_size, "Invalid Codec type %d", enc->codec_type);
1075         return;
1076     }
1077     if (encode) {
1078         if (enc->flags & CODEC_FLAG_PASS1)
1079             snprintf(buf + strlen(buf), buf_size - strlen(buf),
1080                      ", pass 1");
1081         if (enc->flags & CODEC_FLAG_PASS2)
1082             snprintf(buf + strlen(buf), buf_size - strlen(buf),
1083                      ", pass 2");
1084     }
1085     bitrate = get_bit_rate(enc);
1086     if (bitrate != 0) {
1087         snprintf(buf + strlen(buf), buf_size - strlen(buf),
1088                  ", %d kb/s", bitrate / 1000);
1089     }
1090 }
1091
1092 const char *av_get_profile_name(const AVCodec *codec, int profile)
1093 {
1094     const AVProfile *p;
1095     if (profile == FF_PROFILE_UNKNOWN || !codec->profiles)
1096         return NULL;
1097
1098     for (p = codec->profiles; p->profile != FF_PROFILE_UNKNOWN; p++)
1099         if (p->profile == profile)
1100             return p->name;
1101
1102     return NULL;
1103 }
1104
1105 unsigned avcodec_version( void )
1106 {
1107   return LIBAVCODEC_VERSION_INT;
1108 }
1109
1110 const char *avcodec_configuration(void)
1111 {
1112     return FFMPEG_CONFIGURATION;
1113 }
1114
1115 const char *avcodec_license(void)
1116 {
1117 #define LICENSE_PREFIX "libavcodec license: "
1118     return LICENSE_PREFIX FFMPEG_LICENSE + sizeof(LICENSE_PREFIX) - 1;
1119 }
1120
1121 void avcodec_init(void)
1122 {
1123     static int initialized = 0;
1124
1125     if (initialized != 0)
1126         return;
1127     initialized = 1;
1128
1129     dsputil_static_init();
1130 }
1131
1132 void avcodec_flush_buffers(AVCodecContext *avctx)
1133 {
1134     if(HAVE_PTHREADS && avctx->active_thread_type&FF_THREAD_FRAME)
1135         ff_thread_flush(avctx);
1136     if(avctx->codec->flush)
1137         avctx->codec->flush(avctx);
1138 }
1139
1140 void avcodec_default_free_buffers(AVCodecContext *s){
1141     int i, j;
1142
1143     if(s->internal_buffer==NULL) return;
1144
1145     if (s->internal_buffer_count)
1146         av_log(s, AV_LOG_WARNING, "Found %i unreleased buffers!\n", s->internal_buffer_count);
1147     for(i=0; i<INTERNAL_BUFFER_SIZE; i++){
1148         InternalBuffer *buf= &((InternalBuffer*)s->internal_buffer)[i];
1149         for(j=0; j<4; j++){
1150             av_freep(&buf->base[j]);
1151             buf->data[j]= NULL;
1152         }
1153     }
1154     av_freep(&s->internal_buffer);
1155
1156     s->internal_buffer_count=0;
1157 }
1158
1159 #if FF_API_OLD_FF_PICT_TYPES
1160 char av_get_pict_type_char(int pict_type){
1161     return av_get_picture_type_char(pict_type);
1162 }
1163 #endif
1164
1165 int av_get_bits_per_sample(enum CodecID codec_id){
1166     switch(codec_id){
1167     case CODEC_ID_ADPCM_SBPRO_2:
1168         return 2;
1169     case CODEC_ID_ADPCM_SBPRO_3:
1170         return 3;
1171     case CODEC_ID_ADPCM_SBPRO_4:
1172     case CODEC_ID_ADPCM_CT:
1173     case CODEC_ID_ADPCM_IMA_WAV:
1174     case CODEC_ID_ADPCM_MS:
1175     case CODEC_ID_ADPCM_YAMAHA:
1176         return 4;
1177     case CODEC_ID_ADPCM_G722:
1178     case CODEC_ID_PCM_ALAW:
1179     case CODEC_ID_PCM_MULAW:
1180     case CODEC_ID_PCM_S8:
1181     case CODEC_ID_PCM_U8:
1182     case CODEC_ID_PCM_ZORK:
1183         return 8;
1184     case CODEC_ID_PCM_S16BE:
1185     case CODEC_ID_PCM_S16LE:
1186     case CODEC_ID_PCM_S16LE_PLANAR:
1187     case CODEC_ID_PCM_U16BE:
1188     case CODEC_ID_PCM_U16LE:
1189         return 16;
1190     case CODEC_ID_PCM_S24DAUD:
1191     case CODEC_ID_PCM_S24BE:
1192     case CODEC_ID_PCM_S24LE:
1193     case CODEC_ID_PCM_U24BE:
1194     case CODEC_ID_PCM_U24LE:
1195         return 24;
1196     case CODEC_ID_PCM_S32BE:
1197     case CODEC_ID_PCM_S32LE:
1198     case CODEC_ID_PCM_U32BE:
1199     case CODEC_ID_PCM_U32LE:
1200     case CODEC_ID_PCM_F32BE:
1201     case CODEC_ID_PCM_F32LE:
1202         return 32;
1203     case CODEC_ID_PCM_F64BE:
1204     case CODEC_ID_PCM_F64LE:
1205         return 64;
1206     default:
1207         return 0;
1208     }
1209 }
1210
1211 #if FF_API_OLD_SAMPLE_FMT
1212 int av_get_bits_per_sample_format(enum AVSampleFormat sample_fmt) {
1213     return av_get_bits_per_sample_fmt(sample_fmt);
1214 }
1215 #endif
1216
1217 #if !HAVE_THREADS
1218 int ff_thread_init(AVCodecContext *s){
1219     return -1;
1220 }
1221 #endif
1222
1223 unsigned int av_xiphlacing(unsigned char *s, unsigned int v)
1224 {
1225     unsigned int n = 0;
1226
1227     while(v >= 0xff) {
1228         *s++ = 0xff;
1229         v -= 0xff;
1230         n++;
1231     }
1232     *s = v;
1233     n++;
1234     return n;
1235 }
1236
1237 int ff_match_2uint16(const uint16_t (*tab)[2], int size, int a, int b){
1238     int i;
1239     for(i=0; i<size && !(tab[i][0]==a && tab[i][1]==b); i++);
1240     return i;
1241 }
1242
1243 void av_log_missing_feature(void *avc, const char *feature, int want_sample)
1244 {
1245     av_log(avc, AV_LOG_WARNING, "%s not implemented. Update your FFmpeg "
1246             "version to the newest one from Git. If the problem still "
1247             "occurs, it means that your file has a feature which has not "
1248             "been implemented.\n", feature);
1249     if(want_sample)
1250         av_log_ask_for_sample(avc, NULL);
1251 }
1252
1253 void av_log_ask_for_sample(void *avc, const char *msg, ...)
1254 {
1255     va_list argument_list;
1256
1257     va_start(argument_list, msg);
1258
1259     if (msg)
1260         av_vlog(avc, AV_LOG_WARNING, msg, argument_list);
1261     av_log(avc, AV_LOG_WARNING, "If you want to help, upload a sample "
1262             "of this file to ftp://upload.ffmpeg.org/MPlayer/incoming/ "
1263             "and contact the ffmpeg-devel mailing list.\n");
1264
1265     va_end(argument_list);
1266 }
1267
1268 static AVHWAccel *first_hwaccel = NULL;
1269
1270 void av_register_hwaccel(AVHWAccel *hwaccel)
1271 {
1272     AVHWAccel **p = &first_hwaccel;
1273     while (*p)
1274         p = &(*p)->next;
1275     *p = hwaccel;
1276     hwaccel->next = NULL;
1277 }
1278
1279 AVHWAccel *av_hwaccel_next(AVHWAccel *hwaccel)
1280 {
1281     return hwaccel ? hwaccel->next : first_hwaccel;
1282 }
1283
1284 AVHWAccel *ff_find_hwaccel(enum CodecID codec_id, enum PixelFormat pix_fmt)
1285 {
1286     AVHWAccel *hwaccel=NULL;
1287
1288     while((hwaccel= av_hwaccel_next(hwaccel))){
1289         if (   hwaccel->id      == codec_id
1290             && hwaccel->pix_fmt == pix_fmt)
1291             return hwaccel;
1292     }
1293     return NULL;
1294 }
1295
1296 int av_lockmgr_register(int (*cb)(void **mutex, enum AVLockOp op))
1297 {
1298     if (ff_lockmgr_cb) {
1299         if (ff_lockmgr_cb(&codec_mutex, AV_LOCK_DESTROY))
1300             return -1;
1301     }
1302
1303     ff_lockmgr_cb = cb;
1304
1305     if (ff_lockmgr_cb) {
1306         if (ff_lockmgr_cb(&codec_mutex, AV_LOCK_CREATE))
1307             return -1;
1308     }
1309     return 0;
1310 }
1311
1312 unsigned int ff_toupper4(unsigned int x)
1313 {
1314     return     toupper( x     &0xFF)
1315             + (toupper((x>>8 )&0xFF)<<8 )
1316             + (toupper((x>>16)&0xFF)<<16)
1317             + (toupper((x>>24)&0xFF)<<24);
1318 }
1319
1320 #if !HAVE_PTHREADS
1321
1322 int ff_thread_get_buffer(AVCodecContext *avctx, AVFrame *f)
1323 {
1324     f->owner = avctx;
1325     return avctx->get_buffer(avctx, f);
1326 }
1327
1328 void ff_thread_release_buffer(AVCodecContext *avctx, AVFrame *f)
1329 {
1330     f->owner->release_buffer(f->owner, f);
1331 }
1332
1333 void ff_thread_finish_setup(AVCodecContext *avctx)
1334 {
1335 }
1336
1337 void ff_thread_report_progress(AVFrame *f, int progress, int field)
1338 {
1339 }
1340
1341 void ff_thread_await_progress(AVFrame *f, int progress, int field)
1342 {
1343 }
1344
1345 #endif
1346
1347 #if FF_API_THREAD_INIT
1348 int avcodec_thread_init(AVCodecContext *s, int thread_count)
1349 {
1350     s->thread_count = thread_count;
1351     return ff_thread_init(s);
1352 }
1353 #endif