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