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