]> git.sesse.net Git - ffmpeg/blob - libavcodec/utils.c
Add av_shrink_packet function for use in av_get_packet that reduces pkt->size
[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 const uint8_t ff_reverse[256]={
49 0x00,0x80,0x40,0xC0,0x20,0xA0,0x60,0xE0,0x10,0x90,0x50,0xD0,0x30,0xB0,0x70,0xF0,
50 0x08,0x88,0x48,0xC8,0x28,0xA8,0x68,0xE8,0x18,0x98,0x58,0xD8,0x38,0xB8,0x78,0xF8,
51 0x04,0x84,0x44,0xC4,0x24,0xA4,0x64,0xE4,0x14,0x94,0x54,0xD4,0x34,0xB4,0x74,0xF4,
52 0x0C,0x8C,0x4C,0xCC,0x2C,0xAC,0x6C,0xEC,0x1C,0x9C,0x5C,0xDC,0x3C,0xBC,0x7C,0xFC,
53 0x02,0x82,0x42,0xC2,0x22,0xA2,0x62,0xE2,0x12,0x92,0x52,0xD2,0x32,0xB2,0x72,0xF2,
54 0x0A,0x8A,0x4A,0xCA,0x2A,0xAA,0x6A,0xEA,0x1A,0x9A,0x5A,0xDA,0x3A,0xBA,0x7A,0xFA,
55 0x06,0x86,0x46,0xC6,0x26,0xA6,0x66,0xE6,0x16,0x96,0x56,0xD6,0x36,0xB6,0x76,0xF6,
56 0x0E,0x8E,0x4E,0xCE,0x2E,0xAE,0x6E,0xEE,0x1E,0x9E,0x5E,0xDE,0x3E,0xBE,0x7E,0xFE,
57 0x01,0x81,0x41,0xC1,0x21,0xA1,0x61,0xE1,0x11,0x91,0x51,0xD1,0x31,0xB1,0x71,0xF1,
58 0x09,0x89,0x49,0xC9,0x29,0xA9,0x69,0xE9,0x19,0x99,0x59,0xD9,0x39,0xB9,0x79,0xF9,
59 0x05,0x85,0x45,0xC5,0x25,0xA5,0x65,0xE5,0x15,0x95,0x55,0xD5,0x35,0xB5,0x75,0xF5,
60 0x0D,0x8D,0x4D,0xCD,0x2D,0xAD,0x6D,0xED,0x1D,0x9D,0x5D,0xDD,0x3D,0xBD,0x7D,0xFD,
61 0x03,0x83,0x43,0xC3,0x23,0xA3,0x63,0xE3,0x13,0x93,0x53,0xD3,0x33,0xB3,0x73,0xF3,
62 0x0B,0x8B,0x4B,0xCB,0x2B,0xAB,0x6B,0xEB,0x1B,0x9B,0x5B,0xDB,0x3B,0xBB,0x7B,0xFB,
63 0x07,0x87,0x47,0xC7,0x27,0xA7,0x67,0xE7,0x17,0x97,0x57,0xD7,0x37,0xB7,0x77,0xF7,
64 0x0F,0x8F,0x4F,0xCF,0x2F,0xAF,0x6F,0xEF,0x1F,0x9F,0x5F,0xDF,0x3F,0xBF,0x7F,0xFF,
65 };
66
67 static int volatile entangled_thread_counter=0;
68
69 void *av_fast_realloc(void *ptr, unsigned int *size, unsigned int min_size)
70 {
71     if(min_size < *size)
72         return ptr;
73
74     *size= FFMAX(17*min_size/16 + 32, min_size);
75
76     ptr= av_realloc(ptr, *size);
77     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
78         *size= 0;
79
80     return ptr;
81 }
82
83 /* encoder management */
84 static AVCodec *first_avcodec = NULL;
85
86 AVCodec *av_codec_next(AVCodec *c){
87     if(c) return c->next;
88     else  return first_avcodec;
89 }
90
91 void avcodec_register(AVCodec *codec)
92 {
93     AVCodec **p;
94     avcodec_init();
95     p = &first_avcodec;
96     while (*p != NULL) p = &(*p)->next;
97     *p = codec;
98     codec->next = NULL;
99 }
100
101 #if LIBAVCODEC_VERSION_MAJOR < 53
102 void register_avcodec(AVCodec *codec)
103 {
104     avcodec_register(codec);
105 }
106 #endif
107
108 void avcodec_set_dimensions(AVCodecContext *s, int width, int height){
109     s->coded_width = width;
110     s->coded_height= height;
111     s->width = -((-width )>>s->lowres);
112     s->height= -((-height)>>s->lowres);
113 }
114
115 typedef struct InternalBuffer{
116     int last_pic_num;
117     uint8_t *base[4];
118     uint8_t *data[4];
119     int linesize[4];
120     int width, height;
121     enum PixelFormat pix_fmt;
122 }InternalBuffer;
123
124 #define INTERNAL_BUFFER_SIZE 32
125
126 #define ALIGN(x, a) (((x)+(a)-1)&~((a)-1))
127
128 void avcodec_align_dimensions(AVCodecContext *s, int *width, int *height){
129     int w_align= 1;
130     int h_align= 1;
131
132     switch(s->pix_fmt){
133     case PIX_FMT_YUV420P:
134     case PIX_FMT_YUYV422:
135     case PIX_FMT_UYVY422:
136     case PIX_FMT_YUV422P:
137     case PIX_FMT_YUV444P:
138     case PIX_FMT_GRAY8:
139     case PIX_FMT_GRAY16BE:
140     case PIX_FMT_GRAY16LE:
141     case PIX_FMT_YUVJ420P:
142     case PIX_FMT_YUVJ422P:
143     case PIX_FMT_YUVJ444P:
144     case PIX_FMT_YUVA420P:
145         w_align= 16; //FIXME check for non mpeg style codecs and use less alignment
146         h_align= 16;
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 = ALIGN(*width , w_align);
184     *height= ALIGN(*height, h_align);
185     if(s->codec_id == CODEC_ID_H264)
186         *height+=2; // some of the optimized chroma MC reads one line too much
187 }
188
189 int avcodec_check_dimensions(void *av_log_ctx, unsigned int w, unsigned int h){
190     if((int)w>0 && (int)h>0 && (w+128)*(uint64_t)(h+128) < INT_MAX/4)
191         return 0;
192
193     av_log(av_log_ctx, AV_LOG_ERROR, "picture size invalid (%ux%u)\n", w, h);
194     return -1;
195 }
196
197 int avcodec_default_get_buffer(AVCodecContext *s, AVFrame *pic){
198     int i;
199     int w= s->width;
200     int h= s->height;
201     InternalBuffer *buf;
202     int *picture_number;
203
204     if(pic->data[0]!=NULL) {
205         av_log(s, AV_LOG_ERROR, "pic->data[0]!=NULL in avcodec_default_get_buffer\n");
206         return -1;
207     }
208     if(s->internal_buffer_count >= INTERNAL_BUFFER_SIZE) {
209         av_log(s, AV_LOG_ERROR, "internal_buffer_count overflow (missing release_buffer?)\n");
210         return -1;
211     }
212
213     if(avcodec_check_dimensions(s,w,h))
214         return -1;
215
216     if(s->internal_buffer==NULL){
217         s->internal_buffer= av_mallocz((INTERNAL_BUFFER_SIZE+1)*sizeof(InternalBuffer));
218     }
219 #if 0
220     s->internal_buffer= av_fast_realloc(
221         s->internal_buffer,
222         &s->internal_buffer_size,
223         sizeof(InternalBuffer)*FFMAX(99,  s->internal_buffer_count+1)/*FIXME*/
224         );
225 #endif
226
227     buf= &((InternalBuffer*)s->internal_buffer)[s->internal_buffer_count];
228     picture_number= &(((InternalBuffer*)s->internal_buffer)[INTERNAL_BUFFER_SIZE]).last_pic_num; //FIXME ugly hack
229     (*picture_number)++;
230
231     if(buf->base[0] && (buf->width != w || buf->height != h || buf->pix_fmt != s->pix_fmt)){
232         for(i=0; i<4; i++){
233             av_freep(&buf->base[i]);
234             buf->data[i]= NULL;
235         }
236     }
237
238     if(buf->base[0]){
239         pic->age= *picture_number - buf->last_pic_num;
240         buf->last_pic_num= *picture_number;
241     }else{
242         int h_chroma_shift, v_chroma_shift;
243         int size[4] = {0};
244         int tmpsize;
245         int unaligned;
246         AVPicture picture;
247         int stride_align[4];
248
249         avcodec_get_chroma_sub_sample(s->pix_fmt, &h_chroma_shift, &v_chroma_shift);
250
251         avcodec_align_dimensions(s, &w, &h);
252
253         if(!(s->flags&CODEC_FLAG_EMU_EDGE)){
254             w+= EDGE_WIDTH*2;
255             h+= EDGE_WIDTH*2;
256         }
257
258         do {
259             // NOTE: do not align linesizes individually, this breaks e.g. assumptions
260             // that linesize[0] == 2*linesize[1] in the MPEG-encoder for 4:2:2
261             ff_fill_linesize(&picture, s->pix_fmt, w);
262             // increase alignment of w for next try (rhs gives the lowest bit set in w)
263             w += w & ~(w-1);
264
265             unaligned = 0;
266             for (i=0; i<4; i++){
267 //STRIDE_ALIGN is 8 for SSE* but this does not work for SVQ1 chroma planes
268 //we could change STRIDE_ALIGN to 16 for x86/sse but it would increase the
269 //picture size unneccessarily in some cases. The solution here is not
270 //pretty and better ideas are welcome!
271 #if HAVE_MMX
272                 if(s->codec_id == CODEC_ID_SVQ1)
273                     stride_align[i]= 16;
274                 else
275 #endif
276                 stride_align[i] = STRIDE_ALIGN;
277                 unaligned |= picture.linesize[i] % stride_align[i];
278             }
279         } while (unaligned);
280
281         tmpsize = ff_fill_pointer(&picture, NULL, s->pix_fmt, h);
282         if (tmpsize < 0)
283             return -1;
284
285         for (i=0; i<3 && picture.data[i+1]; i++)
286             size[i] = picture.data[i+1] - picture.data[i];
287         size[i] = tmpsize - (picture.data[i] - picture.data[0]);
288
289         buf->last_pic_num= -256*256*256*64;
290         memset(buf->base, 0, sizeof(buf->base));
291         memset(buf->data, 0, sizeof(buf->data));
292
293         for(i=0; i<4 && size[i]; i++){
294             const int h_shift= i==0 ? 0 : h_chroma_shift;
295             const int v_shift= i==0 ? 0 : v_chroma_shift;
296
297             buf->linesize[i]= picture.linesize[i];
298
299             buf->base[i]= av_malloc(size[i]+16); //FIXME 16
300             if(buf->base[i]==NULL) return -1;
301             memset(buf->base[i], 128, size[i]);
302
303             // no edge if EDEG EMU or not planar YUV
304             if((s->flags&CODEC_FLAG_EMU_EDGE) || !size[2])
305                 buf->data[i] = buf->base[i];
306             else
307                 buf->data[i] = buf->base[i] + ALIGN((buf->linesize[i]*EDGE_WIDTH>>v_shift) + (EDGE_WIDTH>>h_shift), stride_align[i]);
308         }
309         if(size[1] && !size[2])
310             ff_set_systematic_pal((uint32_t*)buf->data[1], s->pix_fmt);
311         buf->width  = s->width;
312         buf->height = s->height;
313         buf->pix_fmt= s->pix_fmt;
314         pic->age= 256*256*256*64;
315     }
316     pic->type= FF_BUFFER_TYPE_INTERNAL;
317
318     for(i=0; i<4; i++){
319         pic->base[i]= buf->base[i];
320         pic->data[i]= buf->data[i];
321         pic->linesize[i]= buf->linesize[i];
322     }
323     s->internal_buffer_count++;
324
325     pic->reordered_opaque= s->reordered_opaque;
326
327     if(s->debug&FF_DEBUG_BUFFERS)
328         av_log(s, AV_LOG_DEBUG, "default_get_buffer called on pic %p, %d buffers used\n", pic, s->internal_buffer_count);
329
330     return 0;
331 }
332
333 void avcodec_default_release_buffer(AVCodecContext *s, AVFrame *pic){
334     int i;
335     InternalBuffer *buf, *last;
336
337     assert(pic->type==FF_BUFFER_TYPE_INTERNAL);
338     assert(s->internal_buffer_count);
339
340     buf = NULL; /* avoids warning */
341     for(i=0; i<s->internal_buffer_count; i++){ //just 3-5 checks so is not worth to optimize
342         buf= &((InternalBuffer*)s->internal_buffer)[i];
343         if(buf->data[0] == pic->data[0])
344             break;
345     }
346     assert(i < s->internal_buffer_count);
347     s->internal_buffer_count--;
348     last = &((InternalBuffer*)s->internal_buffer)[s->internal_buffer_count];
349
350     FFSWAP(InternalBuffer, *buf, *last);
351
352     for(i=0; i<4; i++){
353         pic->data[i]=NULL;
354 //        pic->base[i]=NULL;
355     }
356 //printf("R%X\n", pic->opaque);
357
358     if(s->debug&FF_DEBUG_BUFFERS)
359         av_log(s, AV_LOG_DEBUG, "default_release_buffer called on pic %p, %d buffers used\n", pic, s->internal_buffer_count);
360 }
361
362 int avcodec_default_reget_buffer(AVCodecContext *s, AVFrame *pic){
363     AVFrame temp_pic;
364     int i;
365
366     /* If no picture return a new buffer */
367     if(pic->data[0] == NULL) {
368         /* We will copy from buffer, so must be readable */
369         pic->buffer_hints |= FF_BUFFER_HINTS_READABLE;
370         return s->get_buffer(s, pic);
371     }
372
373     /* If internal buffer type return the same buffer */
374     if(pic->type == FF_BUFFER_TYPE_INTERNAL)
375         return 0;
376
377     /*
378      * Not internal type and reget_buffer not overridden, emulate cr buffer
379      */
380     temp_pic = *pic;
381     for(i = 0; i < 4; i++)
382         pic->data[i] = pic->base[i] = NULL;
383     pic->opaque = NULL;
384     /* Allocate new frame */
385     if (s->get_buffer(s, pic))
386         return -1;
387     /* Copy image data from old buffer to new buffer */
388     av_picture_copy((AVPicture*)pic, (AVPicture*)&temp_pic, s->pix_fmt, s->width,
389              s->height);
390     s->release_buffer(s, &temp_pic); // Release old frame
391     return 0;
392 }
393
394 int avcodec_default_execute(AVCodecContext *c, int (*func)(AVCodecContext *c2, void *arg2),void *arg, int *ret, int count, int size){
395     int i;
396
397     for(i=0; i<count; i++){
398         int r= func(c, (char*)arg + i*size);
399         if(ret) ret[i]= r;
400     }
401     return 0;
402 }
403
404 enum PixelFormat avcodec_default_get_format(struct AVCodecContext *s, const enum PixelFormat *fmt){
405     while (*fmt != PIX_FMT_NONE && ff_is_hwaccel_pix_fmt(*fmt))
406         ++fmt;
407     return fmt[0];
408 }
409
410 void avcodec_get_frame_defaults(AVFrame *pic){
411     memset(pic, 0, sizeof(AVFrame));
412
413     pic->pts= AV_NOPTS_VALUE;
414     pic->key_frame= 1;
415 }
416
417 AVFrame *avcodec_alloc_frame(void){
418     AVFrame *pic= av_malloc(sizeof(AVFrame));
419
420     if(pic==NULL) return NULL;
421
422     avcodec_get_frame_defaults(pic);
423
424     return pic;
425 }
426
427 int attribute_align_arg avcodec_open(AVCodecContext *avctx, AVCodec *codec)
428 {
429     int ret= -1;
430
431     entangled_thread_counter++;
432     if(entangled_thread_counter != 1){
433         av_log(avctx, AV_LOG_ERROR, "insufficient thread locking around avcodec_open/close()\n");
434         goto end;
435     }
436
437     if(avctx->codec || !codec)
438         goto end;
439
440     if (codec->priv_data_size > 0) {
441         avctx->priv_data = av_mallocz(codec->priv_data_size);
442         if (!avctx->priv_data) {
443             ret = AVERROR(ENOMEM);
444             goto end;
445         }
446     } else {
447         avctx->priv_data = NULL;
448     }
449
450     if(avctx->coded_width && avctx->coded_height)
451         avcodec_set_dimensions(avctx, avctx->coded_width, avctx->coded_height);
452     else if(avctx->width && avctx->height)
453         avcodec_set_dimensions(avctx, avctx->width, avctx->height);
454
455     if((avctx->coded_width||avctx->coded_height) && avcodec_check_dimensions(avctx,avctx->coded_width,avctx->coded_height)){
456         av_freep(&avctx->priv_data);
457         ret = AVERROR(EINVAL);
458         goto end;
459     }
460
461     avctx->codec = codec;
462     avctx->codec_id = codec->id;
463     avctx->frame_number = 0;
464     if(avctx->codec->init){
465         ret = avctx->codec->init(avctx);
466         if (ret < 0) {
467             av_freep(&avctx->priv_data);
468             avctx->codec= NULL;
469             goto end;
470         }
471     }
472     ret=0;
473 end:
474     entangled_thread_counter--;
475     return ret;
476 }
477
478 int attribute_align_arg avcodec_encode_audio(AVCodecContext *avctx, uint8_t *buf, int buf_size,
479                          const short *samples)
480 {
481     if(buf_size < FF_MIN_BUFFER_SIZE && 0){
482         av_log(avctx, AV_LOG_ERROR, "buffer smaller than minimum size\n");
483         return -1;
484     }
485     if((avctx->codec->capabilities & CODEC_CAP_DELAY) || samples){
486         int ret = avctx->codec->encode(avctx, buf, buf_size, samples);
487         avctx->frame_number++;
488         return ret;
489     }else
490         return 0;
491 }
492
493 int attribute_align_arg avcodec_encode_video(AVCodecContext *avctx, uint8_t *buf, int buf_size,
494                          const AVFrame *pict)
495 {
496     if(buf_size < FF_MIN_BUFFER_SIZE){
497         av_log(avctx, AV_LOG_ERROR, "buffer smaller than minimum size\n");
498         return -1;
499     }
500     if(avcodec_check_dimensions(avctx,avctx->width,avctx->height))
501         return -1;
502     if((avctx->codec->capabilities & CODEC_CAP_DELAY) || pict){
503         int ret = avctx->codec->encode(avctx, buf, buf_size, pict);
504         avctx->frame_number++;
505         emms_c(); //needed to avoid an emms_c() call before every return;
506
507         return ret;
508     }else
509         return 0;
510 }
511
512 int avcodec_encode_subtitle(AVCodecContext *avctx, uint8_t *buf, int buf_size,
513                             const AVSubtitle *sub)
514 {
515     int ret;
516     if(sub->start_display_time) {
517         av_log(avctx, AV_LOG_ERROR, "start_display_time must be 0.\n");
518         return -1;
519     }
520     if(sub->num_rects == 0 || !sub->rects)
521         return -1;
522     ret = avctx->codec->encode(avctx, buf, buf_size, sub);
523     avctx->frame_number++;
524     return ret;
525 }
526
527 #if LIBAVCODEC_VERSION_MAJOR < 53
528 int attribute_align_arg avcodec_decode_video(AVCodecContext *avctx, AVFrame *picture,
529                          int *got_picture_ptr,
530                          const uint8_t *buf, int buf_size)
531 {
532     AVPacket avpkt;
533     av_init_packet(&avpkt);
534     avpkt.data = buf;
535     avpkt.size = buf_size;
536
537     return avcodec_decode_video2(avctx, picture, got_picture_ptr, &avpkt);
538 }
539 #endif
540
541 int attribute_align_arg avcodec_decode_video2(AVCodecContext *avctx, AVFrame *picture,
542                          int *got_picture_ptr,
543                          AVPacket *avpkt)
544 {
545     int ret;
546
547     *got_picture_ptr= 0;
548     if((avctx->coded_width||avctx->coded_height) && avcodec_check_dimensions(avctx,avctx->coded_width,avctx->coded_height))
549         return -1;
550     if((avctx->codec->capabilities & CODEC_CAP_DELAY) || avpkt->size){
551         ret = avctx->codec->decode(avctx, picture, got_picture_ptr,
552                                 avpkt);
553
554         emms_c(); //needed to avoid an emms_c() call before every return;
555
556         if (*got_picture_ptr)
557             avctx->frame_number++;
558     }else
559         ret= 0;
560
561     return ret;
562 }
563
564 #if LIBAVCODEC_VERSION_MAJOR < 53
565 int attribute_align_arg avcodec_decode_audio2(AVCodecContext *avctx, int16_t *samples,
566                          int *frame_size_ptr,
567                          const uint8_t *buf, int buf_size)
568 {
569     AVPacket avpkt;
570     av_init_packet(&avpkt);
571     avpkt.data = buf;
572     avpkt.size = buf_size;
573
574     return avcodec_decode_audio3(avctx, samples, frame_size_ptr, &avpkt);
575 }
576 #endif
577
578 int attribute_align_arg avcodec_decode_audio3(AVCodecContext *avctx, int16_t *samples,
579                          int *frame_size_ptr,
580                          AVPacket *avpkt)
581 {
582     int ret;
583
584     if((avctx->codec->capabilities & CODEC_CAP_DELAY) || avpkt->size){
585         //FIXME remove the check below _after_ ensuring that all audio check that the available space is enough
586         if(*frame_size_ptr < AVCODEC_MAX_AUDIO_FRAME_SIZE){
587             av_log(avctx, AV_LOG_ERROR, "buffer smaller than AVCODEC_MAX_AUDIO_FRAME_SIZE\n");
588             return -1;
589         }
590         if(*frame_size_ptr < FF_MIN_BUFFER_SIZE ||
591         *frame_size_ptr < avctx->channels * avctx->frame_size * sizeof(int16_t)){
592             av_log(avctx, AV_LOG_ERROR, "buffer %d too small\n", *frame_size_ptr);
593             return -1;
594         }
595
596         ret = avctx->codec->decode(avctx, samples, frame_size_ptr, avpkt);
597         avctx->frame_number++;
598     }else{
599         ret= 0;
600         *frame_size_ptr=0;
601     }
602     return ret;
603 }
604
605 #if LIBAVCODEC_VERSION_MAJOR < 53
606 int avcodec_decode_subtitle(AVCodecContext *avctx, AVSubtitle *sub,
607                             int *got_sub_ptr,
608                             const uint8_t *buf, int buf_size)
609 {
610     AVPacket avpkt;
611     av_init_packet(&avpkt);
612     avpkt.data = buf;
613     avpkt.size = buf_size;
614
615     return avcodec_decode_subtitle2(avctx, sub, got_sub_ptr, &avpkt);
616 }
617 #endif
618
619 int avcodec_decode_subtitle2(AVCodecContext *avctx, AVSubtitle *sub,
620                             int *got_sub_ptr,
621                             AVPacket *avpkt)
622 {
623     int ret;
624
625     *got_sub_ptr = 0;
626     ret = avctx->codec->decode(avctx, sub, got_sub_ptr, avpkt);
627     if (*got_sub_ptr)
628         avctx->frame_number++;
629     return ret;
630 }
631
632 int avcodec_close(AVCodecContext *avctx)
633 {
634     entangled_thread_counter++;
635     if(entangled_thread_counter != 1){
636         av_log(avctx, AV_LOG_ERROR, "insufficient thread locking around avcodec_open/close()\n");
637         entangled_thread_counter--;
638         return -1;
639     }
640
641     if (HAVE_THREADS && avctx->thread_opaque)
642         avcodec_thread_free(avctx);
643     if (avctx->codec->close)
644         avctx->codec->close(avctx);
645     avcodec_default_free_buffers(avctx);
646     av_freep(&avctx->priv_data);
647     avctx->codec = NULL;
648     entangled_thread_counter--;
649     return 0;
650 }
651
652 AVCodec *avcodec_find_encoder(enum CodecID id)
653 {
654     AVCodec *p;
655     p = first_avcodec;
656     while (p) {
657         if (p->encode != NULL && p->id == id)
658             return p;
659         p = p->next;
660     }
661     return NULL;
662 }
663
664 AVCodec *avcodec_find_encoder_by_name(const char *name)
665 {
666     AVCodec *p;
667     if (!name)
668         return NULL;
669     p = first_avcodec;
670     while (p) {
671         if (p->encode != NULL && strcmp(name,p->name) == 0)
672             return p;
673         p = p->next;
674     }
675     return NULL;
676 }
677
678 AVCodec *avcodec_find_decoder(enum CodecID id)
679 {
680     AVCodec *p;
681     p = first_avcodec;
682     while (p) {
683         if (p->decode != NULL && p->id == id)
684             return p;
685         p = p->next;
686     }
687     return NULL;
688 }
689
690 AVCodec *avcodec_find_decoder_by_name(const char *name)
691 {
692     AVCodec *p;
693     if (!name)
694         return NULL;
695     p = first_avcodec;
696     while (p) {
697         if (p->decode != NULL && strcmp(name,p->name) == 0)
698             return p;
699         p = p->next;
700     }
701     return NULL;
702 }
703
704 void avcodec_string(char *buf, int buf_size, AVCodecContext *enc, int encode)
705 {
706     const char *codec_name;
707     AVCodec *p;
708     char buf1[32];
709     int bitrate;
710     AVRational display_aspect_ratio;
711
712     if (encode)
713         p = avcodec_find_encoder(enc->codec_id);
714     else
715         p = avcodec_find_decoder(enc->codec_id);
716
717     if (p) {
718         codec_name = p->name;
719     } else if (enc->codec_id == CODEC_ID_MPEG2TS) {
720         /* fake mpeg2 transport stream codec (currently not
721            registered) */
722         codec_name = "mpeg2ts";
723     } else if (enc->codec_name[0] != '\0') {
724         codec_name = enc->codec_name;
725     } else {
726         /* output avi tags */
727         if(   isprint(enc->codec_tag&0xFF) && isprint((enc->codec_tag>>8)&0xFF)
728            && isprint((enc->codec_tag>>16)&0xFF) && isprint((enc->codec_tag>>24)&0xFF)){
729             snprintf(buf1, sizeof(buf1), "%c%c%c%c / 0x%04X",
730                      enc->codec_tag & 0xff,
731                      (enc->codec_tag >> 8) & 0xff,
732                      (enc->codec_tag >> 16) & 0xff,
733                      (enc->codec_tag >> 24) & 0xff,
734                       enc->codec_tag);
735         } else {
736             snprintf(buf1, sizeof(buf1), "0x%04x", enc->codec_tag);
737         }
738         codec_name = buf1;
739     }
740
741     switch(enc->codec_type) {
742     case CODEC_TYPE_VIDEO:
743         snprintf(buf, buf_size,
744                  "Video: %s%s",
745                  codec_name, enc->mb_decision ? " (hq)" : "");
746         if (enc->pix_fmt != PIX_FMT_NONE) {
747             snprintf(buf + strlen(buf), buf_size - strlen(buf),
748                      ", %s",
749                      avcodec_get_pix_fmt_name(enc->pix_fmt));
750         }
751         if (enc->width) {
752             snprintf(buf + strlen(buf), buf_size - strlen(buf),
753                      ", %dx%d",
754                      enc->width, enc->height);
755             if (enc->sample_aspect_ratio.num) {
756                 av_reduce(&display_aspect_ratio.num, &display_aspect_ratio.den,
757                           enc->width*enc->sample_aspect_ratio.num,
758                           enc->height*enc->sample_aspect_ratio.den,
759                           1024*1024);
760                 snprintf(buf + strlen(buf), buf_size - strlen(buf),
761                          " [PAR %d:%d DAR %d:%d]",
762                          enc->sample_aspect_ratio.num, enc->sample_aspect_ratio.den,
763                          display_aspect_ratio.num, display_aspect_ratio.den);
764             }
765             if(av_log_get_level() >= AV_LOG_DEBUG){
766                 int g= av_gcd(enc->time_base.num, enc->time_base.den);
767                 snprintf(buf + strlen(buf), buf_size - strlen(buf),
768                      ", %d/%d",
769                      enc->time_base.num/g, enc->time_base.den/g);
770             }
771         }
772         if (encode) {
773             snprintf(buf + strlen(buf), buf_size - strlen(buf),
774                      ", q=%d-%d", enc->qmin, enc->qmax);
775         }
776         bitrate = enc->bit_rate;
777         break;
778     case CODEC_TYPE_AUDIO:
779         snprintf(buf, buf_size,
780                  "Audio: %s",
781                  codec_name);
782         if (enc->sample_rate) {
783             snprintf(buf + strlen(buf), buf_size - strlen(buf),
784                      ", %d Hz", enc->sample_rate);
785         }
786         av_strlcat(buf, ", ", buf_size);
787         avcodec_get_channel_layout_string(buf + strlen(buf), buf_size - strlen(buf), enc->channels, enc->channel_layout);
788         if (enc->sample_fmt != SAMPLE_FMT_NONE) {
789             snprintf(buf + strlen(buf), buf_size - strlen(buf),
790                      ", %s", avcodec_get_sample_fmt_name(enc->sample_fmt));
791         }
792
793         /* for PCM codecs, compute bitrate directly */
794         switch(enc->codec_id) {
795         case CODEC_ID_PCM_F64BE:
796         case CODEC_ID_PCM_F64LE:
797             bitrate = enc->sample_rate * enc->channels * 64;
798             break;
799         case CODEC_ID_PCM_S32LE:
800         case CODEC_ID_PCM_S32BE:
801         case CODEC_ID_PCM_U32LE:
802         case CODEC_ID_PCM_U32BE:
803         case CODEC_ID_PCM_F32BE:
804         case CODEC_ID_PCM_F32LE:
805             bitrate = enc->sample_rate * enc->channels * 32;
806             break;
807         case CODEC_ID_PCM_S24LE:
808         case CODEC_ID_PCM_S24BE:
809         case CODEC_ID_PCM_U24LE:
810         case CODEC_ID_PCM_U24BE:
811         case CODEC_ID_PCM_S24DAUD:
812             bitrate = enc->sample_rate * enc->channels * 24;
813             break;
814         case CODEC_ID_PCM_S16LE:
815         case CODEC_ID_PCM_S16BE:
816         case CODEC_ID_PCM_S16LE_PLANAR:
817         case CODEC_ID_PCM_U16LE:
818         case CODEC_ID_PCM_U16BE:
819             bitrate = enc->sample_rate * enc->channels * 16;
820             break;
821         case CODEC_ID_PCM_S8:
822         case CODEC_ID_PCM_U8:
823         case CODEC_ID_PCM_ALAW:
824         case CODEC_ID_PCM_MULAW:
825         case CODEC_ID_PCM_ZORK:
826             bitrate = enc->sample_rate * enc->channels * 8;
827             break;
828         default:
829             bitrate = enc->bit_rate;
830             break;
831         }
832         break;
833     case CODEC_TYPE_DATA:
834         snprintf(buf, buf_size, "Data: %s", codec_name);
835         bitrate = enc->bit_rate;
836         break;
837     case CODEC_TYPE_SUBTITLE:
838         snprintf(buf, buf_size, "Subtitle: %s", codec_name);
839         bitrate = enc->bit_rate;
840         break;
841     case CODEC_TYPE_ATTACHMENT:
842         snprintf(buf, buf_size, "Attachment: %s", codec_name);
843         bitrate = enc->bit_rate;
844         break;
845     default:
846         snprintf(buf, buf_size, "Invalid Codec type %d", enc->codec_type);
847         return;
848     }
849     if (encode) {
850         if (enc->flags & CODEC_FLAG_PASS1)
851             snprintf(buf + strlen(buf), buf_size - strlen(buf),
852                      ", pass 1");
853         if (enc->flags & CODEC_FLAG_PASS2)
854             snprintf(buf + strlen(buf), buf_size - strlen(buf),
855                      ", pass 2");
856     }
857     if (bitrate != 0) {
858         snprintf(buf + strlen(buf), buf_size - strlen(buf),
859                  ", %d kb/s", bitrate / 1000);
860     }
861 }
862
863 unsigned avcodec_version( void )
864 {
865   return LIBAVCODEC_VERSION_INT;
866 }
867
868 void avcodec_init(void)
869 {
870     static int initialized = 0;
871
872     if (initialized != 0)
873         return;
874     initialized = 1;
875
876     dsputil_static_init();
877 }
878
879 void avcodec_flush_buffers(AVCodecContext *avctx)
880 {
881     if(avctx->codec->flush)
882         avctx->codec->flush(avctx);
883 }
884
885 void avcodec_default_free_buffers(AVCodecContext *s){
886     int i, j;
887
888     if(s->internal_buffer==NULL) return;
889
890     for(i=0; i<INTERNAL_BUFFER_SIZE; i++){
891         InternalBuffer *buf= &((InternalBuffer*)s->internal_buffer)[i];
892         for(j=0; j<4; j++){
893             av_freep(&buf->base[j]);
894             buf->data[j]= NULL;
895         }
896     }
897     av_freep(&s->internal_buffer);
898
899     s->internal_buffer_count=0;
900 }
901
902 char av_get_pict_type_char(int pict_type){
903     switch(pict_type){
904     case FF_I_TYPE: return 'I';
905     case FF_P_TYPE: return 'P';
906     case FF_B_TYPE: return 'B';
907     case FF_S_TYPE: return 'S';
908     case FF_SI_TYPE:return 'i';
909     case FF_SP_TYPE:return 'p';
910     case FF_BI_TYPE:return 'b';
911     default:        return '?';
912     }
913 }
914
915 int av_get_bits_per_sample(enum CodecID codec_id){
916     switch(codec_id){
917     case CODEC_ID_ADPCM_SBPRO_2:
918         return 2;
919     case CODEC_ID_ADPCM_SBPRO_3:
920         return 3;
921     case CODEC_ID_ADPCM_SBPRO_4:
922     case CODEC_ID_ADPCM_CT:
923         return 4;
924     case CODEC_ID_PCM_ALAW:
925     case CODEC_ID_PCM_MULAW:
926     case CODEC_ID_PCM_S8:
927     case CODEC_ID_PCM_U8:
928     case CODEC_ID_PCM_ZORK:
929         return 8;
930     case CODEC_ID_PCM_S16BE:
931     case CODEC_ID_PCM_S16LE:
932     case CODEC_ID_PCM_S16LE_PLANAR:
933     case CODEC_ID_PCM_U16BE:
934     case CODEC_ID_PCM_U16LE:
935         return 16;
936     case CODEC_ID_PCM_S24DAUD:
937     case CODEC_ID_PCM_S24BE:
938     case CODEC_ID_PCM_S24LE:
939     case CODEC_ID_PCM_U24BE:
940     case CODEC_ID_PCM_U24LE:
941         return 24;
942     case CODEC_ID_PCM_S32BE:
943     case CODEC_ID_PCM_S32LE:
944     case CODEC_ID_PCM_U32BE:
945     case CODEC_ID_PCM_U32LE:
946     case CODEC_ID_PCM_F32BE:
947     case CODEC_ID_PCM_F32LE:
948         return 32;
949     case CODEC_ID_PCM_F64BE:
950     case CODEC_ID_PCM_F64LE:
951         return 64;
952     default:
953         return 0;
954     }
955 }
956
957 int av_get_bits_per_sample_format(enum SampleFormat sample_fmt) {
958     switch (sample_fmt) {
959     case SAMPLE_FMT_U8:
960         return 8;
961     case SAMPLE_FMT_S16:
962         return 16;
963     case SAMPLE_FMT_S32:
964     case SAMPLE_FMT_FLT:
965         return 32;
966     case SAMPLE_FMT_DBL:
967         return 64;
968     default:
969         return 0;
970     }
971 }
972
973 #if !HAVE_THREADS
974 int avcodec_thread_init(AVCodecContext *s, int thread_count){
975     return -1;
976 }
977 #endif
978
979 unsigned int av_xiphlacing(unsigned char *s, unsigned int v)
980 {
981     unsigned int n = 0;
982
983     while(v >= 0xff) {
984         *s++ = 0xff;
985         v -= 0xff;
986         n++;
987     }
988     *s = v;
989     n++;
990     return n;
991 }
992
993 /* Wrapper to work around the lack of mkstemp() on mingw/cygin.
994  * Also, tries to create file in /tmp first, if possible.
995  * *prefix can be a character constant; *filename will be allocated internally.
996  * Returns file descriptor of opened file (or -1 on error)
997  * and opened file name in **filename. */
998 int av_tempfile(char *prefix, char **filename) {
999     int fd=-1;
1000 #if !HAVE_MKSTEMP
1001     *filename = tempnam(".", prefix);
1002 #else
1003     size_t len = strlen(prefix) + 12; /* room for "/tmp/" and "XXXXXX\0" */
1004     *filename = av_malloc(len);
1005 #endif
1006     /* -----common section-----*/
1007     if (*filename == NULL) {
1008         av_log(NULL, AV_LOG_ERROR, "ff_tempfile: Cannot allocate file name\n");
1009         return -1;
1010     }
1011 #if !HAVE_MKSTEMP
1012     fd = open(*filename, O_RDWR | O_BINARY | O_CREAT, 0444);
1013 #else
1014     snprintf(*filename, len, "/tmp/%sXXXXXX", prefix);
1015     fd = mkstemp(*filename);
1016     if (fd < 0) {
1017         snprintf(*filename, len, "./%sXXXXXX", prefix);
1018         fd = mkstemp(*filename);
1019     }
1020 #endif
1021     /* -----common section-----*/
1022     if (fd < 0) {
1023         av_log(NULL, AV_LOG_ERROR, "ff_tempfile: Cannot open temporary file %s\n", *filename);
1024         return -1;
1025     }
1026     return fd; /* success */
1027 }
1028
1029 typedef struct {
1030     const char *abbr;
1031     int width, height;
1032 } VideoFrameSizeAbbr;
1033
1034 typedef struct {
1035     const char *abbr;
1036     int rate_num, rate_den;
1037 } VideoFrameRateAbbr;
1038
1039 static const VideoFrameSizeAbbr video_frame_size_abbrs[] = {
1040     { "ntsc",      720, 480 },
1041     { "pal",       720, 576 },
1042     { "qntsc",     352, 240 }, /* VCD compliant NTSC */
1043     { "qpal",      352, 288 }, /* VCD compliant PAL */
1044     { "sntsc",     640, 480 }, /* square pixel NTSC */
1045     { "spal",      768, 576 }, /* square pixel PAL */
1046     { "film",      352, 240 },
1047     { "ntsc-film", 352, 240 },
1048     { "sqcif",     128,  96 },
1049     { "qcif",      176, 144 },
1050     { "cif",       352, 288 },
1051     { "4cif",      704, 576 },
1052     { "16cif",    1408,1152 },
1053     { "qqvga",     160, 120 },
1054     { "qvga",      320, 240 },
1055     { "vga",       640, 480 },
1056     { "svga",      800, 600 },
1057     { "xga",      1024, 768 },
1058     { "uxga",     1600,1200 },
1059     { "qxga",     2048,1536 },
1060     { "sxga",     1280,1024 },
1061     { "qsxga",    2560,2048 },
1062     { "hsxga",    5120,4096 },
1063     { "wvga",      852, 480 },
1064     { "wxga",     1366, 768 },
1065     { "wsxga",    1600,1024 },
1066     { "wuxga",    1920,1200 },
1067     { "woxga",    2560,1600 },
1068     { "wqsxga",   3200,2048 },
1069     { "wquxga",   3840,2400 },
1070     { "whsxga",   6400,4096 },
1071     { "whuxga",   7680,4800 },
1072     { "cga",       320, 200 },
1073     { "ega",       640, 350 },
1074     { "hd480",     852, 480 },
1075     { "hd720",    1280, 720 },
1076     { "hd1080",   1920,1080 },
1077 };
1078
1079 static const VideoFrameRateAbbr video_frame_rate_abbrs[]= {
1080     { "ntsc",      30000, 1001 },
1081     { "pal",          25,    1 },
1082     { "qntsc",     30000, 1001 }, /* VCD compliant NTSC */
1083     { "qpal",         25,    1 }, /* VCD compliant PAL */
1084     { "sntsc",     30000, 1001 }, /* square pixel NTSC */
1085     { "spal",         25,    1 }, /* square pixel PAL */
1086     { "film",         24,    1 },
1087     { "ntsc-film", 24000, 1001 },
1088 };
1089
1090 int av_parse_video_frame_size(int *width_ptr, int *height_ptr, const char *str)
1091 {
1092     int i;
1093     int n = FF_ARRAY_ELEMS(video_frame_size_abbrs);
1094     char *p;
1095     int frame_width = 0, frame_height = 0;
1096
1097     for(i=0;i<n;i++) {
1098         if (!strcmp(video_frame_size_abbrs[i].abbr, str)) {
1099             frame_width = video_frame_size_abbrs[i].width;
1100             frame_height = video_frame_size_abbrs[i].height;
1101             break;
1102         }
1103     }
1104     if (i == n) {
1105         p = str;
1106         frame_width = strtol(p, &p, 10);
1107         if (*p)
1108             p++;
1109         frame_height = strtol(p, &p, 10);
1110     }
1111     if (frame_width <= 0 || frame_height <= 0)
1112         return -1;
1113     *width_ptr = frame_width;
1114     *height_ptr = frame_height;
1115     return 0;
1116 }
1117
1118 int av_parse_video_frame_rate(AVRational *frame_rate, const char *arg)
1119 {
1120     int i;
1121     int n = FF_ARRAY_ELEMS(video_frame_rate_abbrs);
1122     char* cp;
1123
1124     /* First, we check our abbreviation table */
1125     for (i = 0; i < n; ++i)
1126          if (!strcmp(video_frame_rate_abbrs[i].abbr, arg)) {
1127              frame_rate->num = video_frame_rate_abbrs[i].rate_num;
1128              frame_rate->den = video_frame_rate_abbrs[i].rate_den;
1129              return 0;
1130          }
1131
1132     /* Then, we try to parse it as fraction */
1133     cp = strchr(arg, '/');
1134     if (!cp)
1135         cp = strchr(arg, ':');
1136     if (cp) {
1137         char* cpp;
1138         frame_rate->num = strtol(arg, &cpp, 10);
1139         if (cpp != arg || cpp == cp)
1140             frame_rate->den = strtol(cp+1, &cpp, 10);
1141         else
1142            frame_rate->num = 0;
1143     }
1144     else {
1145         /* Finally we give up and parse it as double */
1146         AVRational time_base = av_d2q(strtod(arg, 0), 1001000);
1147         frame_rate->den = time_base.den;
1148         frame_rate->num = time_base.num;
1149     }
1150     if (!frame_rate->num || !frame_rate->den)
1151         return -1;
1152     else
1153         return 0;
1154 }
1155
1156 void ff_log_missing_feature(void *avc, const char *feature, int want_sample)
1157 {
1158     av_log(avc, AV_LOG_WARNING, "%s not implemented. Update your FFmpeg "
1159             "version to the newest one from SVN. If the problem still "
1160             "occurs, it means that your file has a feature which has not "
1161             "been implemented.", feature);
1162     if(want_sample)
1163         ff_log_ask_for_sample(avc, NULL);
1164     else
1165         av_log(avc, AV_LOG_WARNING, "\n");
1166 }
1167
1168 void ff_log_ask_for_sample(void *avc, const char *msg)
1169 {
1170     if (msg)
1171         av_log(avc, AV_LOG_WARNING, "%s ", msg);
1172     av_log(avc, AV_LOG_WARNING, "If you want to help, upload a sample "
1173             "of this file to ftp://upload.ffmpeg.org/MPlayer/incoming/ "
1174             "and contact the ffmpeg-devel mailing list.\n");
1175 }
1176
1177 static AVHWAccel *first_hwaccel = NULL;
1178
1179 void av_register_hwaccel(AVHWAccel *hwaccel)
1180 {
1181     AVHWAccel **p = &first_hwaccel;
1182     while (*p)
1183         p = &(*p)->next;
1184     *p = hwaccel;
1185     hwaccel->next = NULL;
1186 }
1187
1188 AVHWAccel *av_hwaccel_next(AVHWAccel *hwaccel)
1189 {
1190     return hwaccel ? hwaccel->next : first_hwaccel;
1191 }
1192
1193 AVHWAccel *ff_find_hwaccel(enum CodecID codec_id, enum PixelFormat pix_fmt)
1194 {
1195     AVHWAccel *hwaccel=NULL;
1196
1197     while((hwaccel= av_hwaccel_next(hwaccel))){
1198         if (   hwaccel->id      == codec_id
1199             && hwaccel->pix_fmt == pix_fmt)
1200             return hwaccel;
1201     }
1202     return NULL;
1203 }