3 * Copyright (c) 2001 Fabrice Bellard
4 * Copyright (c) 2002-2004 Michael Niedermayer <michaelni@gmx.at>
6 * This file is part of FFmpeg.
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.
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.
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
24 * @file libavcodec/utils.c
28 /* needed for mkstemp() */
29 #define _XOPEN_SOURCE 600
31 #include "libavutil/avstring.h"
32 #include "libavutil/integer.h"
33 #include "libavutil/crc.h"
37 #include "imgconvert.h"
38 #include "audioconvert.h"
48 static int volatile entangled_thread_counter=0;
49 int (*ff_lockmgr_cb)(void **mutex, enum AVLockOp op);
50 static void *codec_mutex;
52 void *av_fast_realloc(void *ptr, unsigned int *size, unsigned int min_size)
57 *size= FFMAX(17*min_size/16 + 32, min_size);
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
66 void av_fast_malloc(void *ptr, unsigned int *size, unsigned int min_size)
71 *size= FFMAX(17*min_size/16 + 32, min_size);
73 *p = av_malloc(*size);
77 /* encoder management */
78 static AVCodec *first_avcodec = NULL;
80 AVCodec *av_codec_next(AVCodec *c){
82 else return first_avcodec;
85 void avcodec_register(AVCodec *codec)
90 while (*p != NULL) p = &(*p)->next;
95 #if LIBAVCODEC_VERSION_MAJOR < 53
96 void register_avcodec(AVCodec *codec)
98 avcodec_register(codec);
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);
109 typedef struct InternalBuffer{
115 enum PixelFormat pix_fmt;
118 #define INTERNAL_BUFFER_SIZE 32
120 void avcodec_align_dimensions(AVCodecContext *s, int *width, int *height){
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:
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
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
144 case PIX_FMT_YUV411P:
145 case PIX_FMT_UYYVYY411:
149 case PIX_FMT_YUV410P:
150 if(s->codec_id == CODEC_ID_SVQ1){
155 if(s->codec_id == CODEC_ID_RPZA){
162 if(s->codec_id == CODEC_ID_SMC){
168 if((s->codec_id == CODEC_ID_MSZH) || (s->codec_id == CODEC_ID_ZLIB)){
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
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)
189 av_log(av_log_ctx, AV_LOG_ERROR, "picture size invalid (%ux%u)\n", w, h);
193 int avcodec_default_get_buffer(AVCodecContext *s, AVFrame *pic){
200 if(pic->data[0]!=NULL) {
201 av_log(s, AV_LOG_ERROR, "pic->data[0]!=NULL in avcodec_default_get_buffer\n");
204 if(s->internal_buffer_count >= INTERNAL_BUFFER_SIZE) {
205 av_log(s, AV_LOG_ERROR, "internal_buffer_count overflow (missing release_buffer?)\n");
209 if(avcodec_check_dimensions(s,w,h))
212 if(s->internal_buffer==NULL){
213 s->internal_buffer= av_mallocz((INTERNAL_BUFFER_SIZE+1)*sizeof(InternalBuffer));
216 s->internal_buffer= av_fast_realloc(
218 &s->internal_buffer_size,
219 sizeof(InternalBuffer)*FFMAX(99, s->internal_buffer_count+1)/*FIXME*/
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
227 if(buf->base[0] && (buf->width != w || buf->height != h || buf->pix_fmt != s->pix_fmt)){
229 av_freep(&buf->base[i]);
235 pic->age= *picture_number - buf->last_pic_num;
236 buf->last_pic_num= *picture_number;
238 int h_chroma_shift, v_chroma_shift;
245 avcodec_get_chroma_sub_sample(s->pix_fmt, &h_chroma_shift, &v_chroma_shift);
247 avcodec_align_dimensions(s, &w, &h);
249 if(!(s->flags&CODEC_FLAG_EMU_EDGE)){
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)
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!
268 if(s->codec_id == CODEC_ID_SVQ1)
272 stride_align[i] = STRIDE_ALIGN;
273 unaligned |= picture.linesize[i] % stride_align[i];
277 tmpsize = ff_fill_pointer(&picture, NULL, s->pix_fmt, h);
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]);
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));
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;
293 buf->linesize[i]= picture.linesize[i];
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]);
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];
303 buf->data[i] = buf->base[i] + FFALIGN((buf->linesize[i]*EDGE_WIDTH>>v_shift) + (EDGE_WIDTH>>h_shift), stride_align[i]);
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;
312 pic->type= FF_BUFFER_TYPE_INTERNAL;
315 pic->base[i]= buf->base[i];
316 pic->data[i]= buf->data[i];
317 pic->linesize[i]= buf->linesize[i];
319 s->internal_buffer_count++;
321 pic->reordered_opaque= s->reordered_opaque;
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);
329 void avcodec_default_release_buffer(AVCodecContext *s, AVFrame *pic){
331 InternalBuffer *buf, *last;
333 assert(pic->type==FF_BUFFER_TYPE_INTERNAL);
334 assert(s->internal_buffer_count);
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])
342 assert(i < s->internal_buffer_count);
343 s->internal_buffer_count--;
344 last = &((InternalBuffer*)s->internal_buffer)[s->internal_buffer_count];
346 FFSWAP(InternalBuffer, *buf, *last);
350 // pic->base[i]=NULL;
352 //printf("R%X\n", pic->opaque);
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);
358 int avcodec_default_reget_buffer(AVCodecContext *s, AVFrame *pic){
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);
369 /* If internal buffer type return the same buffer */
370 if(pic->type == FF_BUFFER_TYPE_INTERNAL) {
371 pic->reordered_opaque= s->reordered_opaque;
376 * Not internal type and reget_buffer not overridden, emulate cr buffer
379 for(i = 0; i < 4; i++)
380 pic->data[i] = pic->base[i] = NULL;
382 /* Allocate new frame */
383 if (s->get_buffer(s, pic))
385 /* Copy image data from old buffer to new buffer */
386 av_picture_copy((AVPicture*)pic, (AVPicture*)&temp_pic, s->pix_fmt, s->width,
388 s->release_buffer(s, &temp_pic); // Release old frame
392 int avcodec_default_execute(AVCodecContext *c, int (*func)(AVCodecContext *c2, void *arg2),void *arg, int *ret, int count, int size){
395 for(i=0; i<count; i++){
396 int r= func(c, (char*)arg + i*size);
402 int avcodec_default_execute2(AVCodecContext *c, int (*func)(AVCodecContext *c2, void *arg2, int jobnr, int threadnr),void *arg, int *ret, int count){
405 for(i=0; i<count; i++){
406 int r= func(c, arg, i, 0);
412 enum PixelFormat avcodec_default_get_format(struct AVCodecContext *s, const enum PixelFormat *fmt){
413 while (*fmt != PIX_FMT_NONE && ff_is_hwaccel_pix_fmt(*fmt))
418 void avcodec_get_frame_defaults(AVFrame *pic){
419 memset(pic, 0, sizeof(AVFrame));
421 pic->pts= AV_NOPTS_VALUE;
425 AVFrame *avcodec_alloc_frame(void){
426 AVFrame *pic= av_malloc(sizeof(AVFrame));
428 if(pic==NULL) return NULL;
430 avcodec_get_frame_defaults(pic);
435 int attribute_align_arg avcodec_open(AVCodecContext *avctx, AVCodec *codec)
439 /* If there is a user-supplied mutex locking routine, call it. */
441 if ((*ff_lockmgr_cb)(&codec_mutex, AV_LOCK_OBTAIN))
445 entangled_thread_counter++;
446 if(entangled_thread_counter != 1){
447 av_log(avctx, AV_LOG_ERROR, "insufficient thread locking around avcodec_open/close()\n");
451 if(avctx->codec || !codec)
454 if (codec->priv_data_size > 0) {
455 avctx->priv_data = av_mallocz(codec->priv_data_size);
456 if (!avctx->priv_data) {
457 ret = AVERROR(ENOMEM);
461 avctx->priv_data = NULL;
464 if(avctx->coded_width && avctx->coded_height)
465 avcodec_set_dimensions(avctx, avctx->coded_width, avctx->coded_height);
466 else if(avctx->width && avctx->height)
467 avcodec_set_dimensions(avctx, avctx->width, avctx->height);
469 #define SANE_NB_CHANNELS 128U
470 if (((avctx->coded_width || avctx->coded_height)
471 && avcodec_check_dimensions(avctx, avctx->coded_width, avctx->coded_height))
472 || avctx->channels > SANE_NB_CHANNELS) {
473 ret = AVERROR(EINVAL);
477 avctx->codec = codec;
478 if ((avctx->codec_type == CODEC_TYPE_UNKNOWN || avctx->codec_type == codec->type) &&
479 avctx->codec_id == CODEC_ID_NONE) {
480 avctx->codec_type = codec->type;
481 avctx->codec_id = codec->id;
483 if(avctx->codec_id != codec->id || avctx->codec_type != codec->type){
484 av_log(avctx, AV_LOG_ERROR, "codec type or id mismatches\n");
487 avctx->frame_number = 0;
488 if(avctx->codec->init){
489 ret = avctx->codec->init(avctx);
496 entangled_thread_counter--;
498 /* Release any user-supplied mutex. */
500 (*ff_lockmgr_cb)(&codec_mutex, AV_LOCK_RELEASE);
504 av_freep(&avctx->priv_data);
509 int attribute_align_arg avcodec_encode_audio(AVCodecContext *avctx, uint8_t *buf, int buf_size,
510 const short *samples)
512 if(buf_size < FF_MIN_BUFFER_SIZE && 0){
513 av_log(avctx, AV_LOG_ERROR, "buffer smaller than minimum size\n");
516 if((avctx->codec->capabilities & CODEC_CAP_DELAY) || samples){
517 int ret = avctx->codec->encode(avctx, buf, buf_size, samples);
518 avctx->frame_number++;
524 int attribute_align_arg avcodec_encode_video(AVCodecContext *avctx, uint8_t *buf, int buf_size,
527 if(buf_size < FF_MIN_BUFFER_SIZE){
528 av_log(avctx, AV_LOG_ERROR, "buffer smaller than minimum size\n");
531 if(avcodec_check_dimensions(avctx,avctx->width,avctx->height))
533 if((avctx->codec->capabilities & CODEC_CAP_DELAY) || pict){
534 int ret = avctx->codec->encode(avctx, buf, buf_size, pict);
535 avctx->frame_number++;
536 emms_c(); //needed to avoid an emms_c() call before every return;
543 int avcodec_encode_subtitle(AVCodecContext *avctx, uint8_t *buf, int buf_size,
544 const AVSubtitle *sub)
547 if(sub->start_display_time) {
548 av_log(avctx, AV_LOG_ERROR, "start_display_time must be 0.\n");
551 if(sub->num_rects == 0 || !sub->rects)
553 ret = avctx->codec->encode(avctx, buf, buf_size, sub);
554 avctx->frame_number++;
558 #if LIBAVCODEC_VERSION_MAJOR < 53
559 int attribute_align_arg avcodec_decode_video(AVCodecContext *avctx, AVFrame *picture,
560 int *got_picture_ptr,
561 const uint8_t *buf, int buf_size)
564 av_init_packet(&avpkt);
566 avpkt.size = buf_size;
567 // HACK for CorePNG to decode as normal PNG by default
568 avpkt.flags = AV_PKT_FLAG_KEY;
570 return avcodec_decode_video2(avctx, picture, got_picture_ptr, &avpkt);
574 int attribute_align_arg avcodec_decode_video2(AVCodecContext *avctx, AVFrame *picture,
575 int *got_picture_ptr,
581 if((avctx->coded_width||avctx->coded_height) && avcodec_check_dimensions(avctx,avctx->coded_width,avctx->coded_height))
583 if((avctx->codec->capabilities & CODEC_CAP_DELAY) || avpkt->size){
584 ret = avctx->codec->decode(avctx, picture, got_picture_ptr,
587 emms_c(); //needed to avoid an emms_c() call before every return;
589 if (*got_picture_ptr)
590 avctx->frame_number++;
597 #if LIBAVCODEC_VERSION_MAJOR < 53
598 int attribute_align_arg avcodec_decode_audio2(AVCodecContext *avctx, int16_t *samples,
600 const uint8_t *buf, int buf_size)
603 av_init_packet(&avpkt);
605 avpkt.size = buf_size;
607 return avcodec_decode_audio3(avctx, samples, frame_size_ptr, &avpkt);
611 int attribute_align_arg avcodec_decode_audio3(AVCodecContext *avctx, int16_t *samples,
617 if((avctx->codec->capabilities & CODEC_CAP_DELAY) || avpkt->size){
618 //FIXME remove the check below _after_ ensuring that all audio check that the available space is enough
619 if(*frame_size_ptr < AVCODEC_MAX_AUDIO_FRAME_SIZE){
620 av_log(avctx, AV_LOG_ERROR, "buffer smaller than AVCODEC_MAX_AUDIO_FRAME_SIZE\n");
623 if(*frame_size_ptr < FF_MIN_BUFFER_SIZE ||
624 *frame_size_ptr < avctx->channels * avctx->frame_size * sizeof(int16_t)){
625 av_log(avctx, AV_LOG_ERROR, "buffer %d too small\n", *frame_size_ptr);
629 ret = avctx->codec->decode(avctx, samples, frame_size_ptr, avpkt);
630 avctx->frame_number++;
638 #if LIBAVCODEC_VERSION_MAJOR < 53
639 int avcodec_decode_subtitle(AVCodecContext *avctx, AVSubtitle *sub,
641 const uint8_t *buf, int buf_size)
644 av_init_packet(&avpkt);
646 avpkt.size = buf_size;
648 return avcodec_decode_subtitle2(avctx, sub, got_sub_ptr, &avpkt);
652 int avcodec_decode_subtitle2(AVCodecContext *avctx, AVSubtitle *sub,
659 ret = avctx->codec->decode(avctx, sub, got_sub_ptr, avpkt);
661 avctx->frame_number++;
665 int avcodec_close(AVCodecContext *avctx)
667 /* If there is a user-supplied mutex locking routine, call it. */
669 if ((*ff_lockmgr_cb)(&codec_mutex, AV_LOCK_OBTAIN))
673 entangled_thread_counter++;
674 if(entangled_thread_counter != 1){
675 av_log(avctx, AV_LOG_ERROR, "insufficient thread locking around avcodec_open/close()\n");
676 entangled_thread_counter--;
680 if (HAVE_THREADS && avctx->thread_opaque)
681 avcodec_thread_free(avctx);
682 if (avctx->codec && avctx->codec->close)
683 avctx->codec->close(avctx);
684 avcodec_default_free_buffers(avctx);
685 av_freep(&avctx->priv_data);
687 entangled_thread_counter--;
689 /* Release any user-supplied mutex. */
691 (*ff_lockmgr_cb)(&codec_mutex, AV_LOCK_RELEASE);
696 AVCodec *avcodec_find_encoder(enum CodecID id)
701 if (p->encode != NULL && p->id == id)
708 AVCodec *avcodec_find_encoder_by_name(const char *name)
715 if (p->encode != NULL && strcmp(name,p->name) == 0)
722 AVCodec *avcodec_find_decoder(enum CodecID id)
727 if (p->decode != NULL && p->id == id)
734 AVCodec *avcodec_find_decoder_by_name(const char *name)
741 if (p->decode != NULL && strcmp(name,p->name) == 0)
748 int av_get_bit_rate(AVCodecContext *ctx)
753 switch(ctx->codec_type) {
754 case CODEC_TYPE_VIDEO:
755 bit_rate = ctx->bit_rate;
757 case CODEC_TYPE_AUDIO:
758 bits_per_sample = av_get_bits_per_sample(ctx->codec_id);
759 bit_rate = bits_per_sample ? ctx->sample_rate * ctx->channels * bits_per_sample : ctx->bit_rate;
761 case CODEC_TYPE_DATA:
762 bit_rate = ctx->bit_rate;
764 case CODEC_TYPE_SUBTITLE:
765 bit_rate = ctx->bit_rate;
767 case CODEC_TYPE_ATTACHMENT:
768 bit_rate = ctx->bit_rate;
777 void avcodec_string(char *buf, int buf_size, AVCodecContext *enc, int encode)
779 const char *codec_name;
783 AVRational display_aspect_ratio;
786 p = avcodec_find_encoder(enc->codec_id);
788 p = avcodec_find_decoder(enc->codec_id);
791 codec_name = p->name;
792 } else if (enc->codec_id == CODEC_ID_MPEG2TS) {
793 /* fake mpeg2 transport stream codec (currently not
795 codec_name = "mpeg2ts";
796 } else if (enc->codec_name[0] != '\0') {
797 codec_name = enc->codec_name;
799 /* output avi tags */
800 if( isprint(enc->codec_tag&0xFF) && isprint((enc->codec_tag>>8)&0xFF)
801 && isprint((enc->codec_tag>>16)&0xFF) && isprint((enc->codec_tag>>24)&0xFF)){
802 snprintf(buf1, sizeof(buf1), "%c%c%c%c / 0x%04X",
803 enc->codec_tag & 0xff,
804 (enc->codec_tag >> 8) & 0xff,
805 (enc->codec_tag >> 16) & 0xff,
806 (enc->codec_tag >> 24) & 0xff,
809 snprintf(buf1, sizeof(buf1), "0x%04x", enc->codec_tag);
814 switch(enc->codec_type) {
815 case CODEC_TYPE_VIDEO:
816 snprintf(buf, buf_size,
818 codec_name, enc->mb_decision ? " (hq)" : "");
819 if (enc->pix_fmt != PIX_FMT_NONE) {
820 snprintf(buf + strlen(buf), buf_size - strlen(buf),
822 avcodec_get_pix_fmt_name(enc->pix_fmt));
825 snprintf(buf + strlen(buf), buf_size - strlen(buf),
827 enc->width, enc->height);
828 if (enc->sample_aspect_ratio.num) {
829 av_reduce(&display_aspect_ratio.num, &display_aspect_ratio.den,
830 enc->width*enc->sample_aspect_ratio.num,
831 enc->height*enc->sample_aspect_ratio.den,
833 snprintf(buf + strlen(buf), buf_size - strlen(buf),
834 " [PAR %d:%d DAR %d:%d]",
835 enc->sample_aspect_ratio.num, enc->sample_aspect_ratio.den,
836 display_aspect_ratio.num, display_aspect_ratio.den);
838 if(av_log_get_level() >= AV_LOG_DEBUG){
839 int g= av_gcd(enc->time_base.num, enc->time_base.den);
840 snprintf(buf + strlen(buf), buf_size - strlen(buf),
842 enc->time_base.num/g, enc->time_base.den/g);
846 snprintf(buf + strlen(buf), buf_size - strlen(buf),
847 ", q=%d-%d", enc->qmin, enc->qmax);
850 case CODEC_TYPE_AUDIO:
851 snprintf(buf, buf_size,
854 if (enc->sample_rate) {
855 snprintf(buf + strlen(buf), buf_size - strlen(buf),
856 ", %d Hz", enc->sample_rate);
858 av_strlcat(buf, ", ", buf_size);
859 avcodec_get_channel_layout_string(buf + strlen(buf), buf_size - strlen(buf), enc->channels, enc->channel_layout);
860 if (enc->sample_fmt != SAMPLE_FMT_NONE) {
861 snprintf(buf + strlen(buf), buf_size - strlen(buf),
862 ", %s", avcodec_get_sample_fmt_name(enc->sample_fmt));
865 case CODEC_TYPE_DATA:
866 snprintf(buf, buf_size, "Data: %s", codec_name);
868 case CODEC_TYPE_SUBTITLE:
869 snprintf(buf, buf_size, "Subtitle: %s", codec_name);
871 case CODEC_TYPE_ATTACHMENT:
872 snprintf(buf, buf_size, "Attachment: %s", codec_name);
875 snprintf(buf, buf_size, "Invalid Codec type %d", enc->codec_type);
879 if (enc->flags & CODEC_FLAG_PASS1)
880 snprintf(buf + strlen(buf), buf_size - strlen(buf),
882 if (enc->flags & CODEC_FLAG_PASS2)
883 snprintf(buf + strlen(buf), buf_size - strlen(buf),
886 bitrate = av_get_bit_rate(enc);
888 snprintf(buf + strlen(buf), buf_size - strlen(buf),
889 ", %d kb/s", bitrate / 1000);
893 unsigned avcodec_version( void )
895 return LIBAVCODEC_VERSION_INT;
898 const char *avcodec_configuration(void)
900 return FFMPEG_CONFIGURATION;
903 const char *avcodec_license(void)
905 #define LICENSE_PREFIX "libavcodec license: "
906 return LICENSE_PREFIX FFMPEG_LICENSE + sizeof(LICENSE_PREFIX) - 1;
909 void avcodec_init(void)
911 static int initialized = 0;
913 if (initialized != 0)
917 dsputil_static_init();
920 void avcodec_flush_buffers(AVCodecContext *avctx)
922 if(avctx->codec->flush)
923 avctx->codec->flush(avctx);
926 void avcodec_default_free_buffers(AVCodecContext *s){
929 if(s->internal_buffer==NULL) return;
931 if (s->internal_buffer_count)
932 av_log(s, AV_LOG_WARNING, "Found %i unreleased buffers!\n", s->internal_buffer_count);
933 for(i=0; i<INTERNAL_BUFFER_SIZE; i++){
934 InternalBuffer *buf= &((InternalBuffer*)s->internal_buffer)[i];
936 av_freep(&buf->base[j]);
940 av_freep(&s->internal_buffer);
942 s->internal_buffer_count=0;
945 char av_get_pict_type_char(int pict_type){
947 case FF_I_TYPE: return 'I';
948 case FF_P_TYPE: return 'P';
949 case FF_B_TYPE: return 'B';
950 case FF_S_TYPE: return 'S';
951 case FF_SI_TYPE:return 'i';
952 case FF_SP_TYPE:return 'p';
953 case FF_BI_TYPE:return 'b';
958 int av_get_bits_per_sample(enum CodecID codec_id){
960 case CODEC_ID_ADPCM_SBPRO_2:
962 case CODEC_ID_ADPCM_SBPRO_3:
964 case CODEC_ID_ADPCM_SBPRO_4:
965 case CODEC_ID_ADPCM_CT:
966 case CODEC_ID_ADPCM_WAV:
967 case CODEC_ID_ADPCM_MS:
968 case CODEC_ID_ADPCM_YAMAHA:
970 case CODEC_ID_PCM_ALAW:
971 case CODEC_ID_PCM_MULAW:
972 case CODEC_ID_PCM_S8:
973 case CODEC_ID_PCM_U8:
974 case CODEC_ID_PCM_ZORK:
976 case CODEC_ID_PCM_S16BE:
977 case CODEC_ID_PCM_S16LE:
978 case CODEC_ID_PCM_S16LE_PLANAR:
979 case CODEC_ID_PCM_U16BE:
980 case CODEC_ID_PCM_U16LE:
982 case CODEC_ID_PCM_S24DAUD:
983 case CODEC_ID_PCM_S24BE:
984 case CODEC_ID_PCM_S24LE:
985 case CODEC_ID_PCM_U24BE:
986 case CODEC_ID_PCM_U24LE:
988 case CODEC_ID_PCM_S32BE:
989 case CODEC_ID_PCM_S32LE:
990 case CODEC_ID_PCM_U32BE:
991 case CODEC_ID_PCM_U32LE:
992 case CODEC_ID_PCM_F32BE:
993 case CODEC_ID_PCM_F32LE:
995 case CODEC_ID_PCM_F64BE:
996 case CODEC_ID_PCM_F64LE:
1003 int av_get_bits_per_sample_format(enum SampleFormat sample_fmt) {
1004 switch (sample_fmt) {
1007 case SAMPLE_FMT_S16:
1009 case SAMPLE_FMT_S32:
1010 case SAMPLE_FMT_FLT:
1012 case SAMPLE_FMT_DBL:
1020 int avcodec_thread_init(AVCodecContext *s, int thread_count){
1021 s->thread_count = thread_count;
1026 unsigned int av_xiphlacing(unsigned char *s, unsigned int v)
1040 /* Wrapper to work around the lack of mkstemp() on mingw/cygin.
1041 * Also, tries to create file in /tmp first, if possible.
1042 * *prefix can be a character constant; *filename will be allocated internally.
1043 * Returns file descriptor of opened file (or -1 on error)
1044 * and opened file name in **filename. */
1045 int av_tempfile(char *prefix, char **filename) {
1048 *filename = tempnam(".", prefix);
1050 size_t len = strlen(prefix) + 12; /* room for "/tmp/" and "XXXXXX\0" */
1051 *filename = av_malloc(len);
1053 /* -----common section-----*/
1054 if (*filename == NULL) {
1055 av_log(NULL, AV_LOG_ERROR, "ff_tempfile: Cannot allocate file name\n");
1059 fd = open(*filename, O_RDWR | O_BINARY | O_CREAT, 0444);
1061 snprintf(*filename, len, "/tmp/%sXXXXXX", prefix);
1062 fd = mkstemp(*filename);
1064 snprintf(*filename, len, "./%sXXXXXX", prefix);
1065 fd = mkstemp(*filename);
1068 /* -----common section-----*/
1070 av_log(NULL, AV_LOG_ERROR, "ff_tempfile: Cannot open temporary file %s\n", *filename);
1073 return fd; /* success */
1079 } VideoFrameSizeAbbr;
1083 int rate_num, rate_den;
1084 } VideoFrameRateAbbr;
1086 static const VideoFrameSizeAbbr video_frame_size_abbrs[] = {
1087 { "ntsc", 720, 480 },
1088 { "pal", 720, 576 },
1089 { "qntsc", 352, 240 }, /* VCD compliant NTSC */
1090 { "qpal", 352, 288 }, /* VCD compliant PAL */
1091 { "sntsc", 640, 480 }, /* square pixel NTSC */
1092 { "spal", 768, 576 }, /* square pixel PAL */
1093 { "film", 352, 240 },
1094 { "ntsc-film", 352, 240 },
1095 { "sqcif", 128, 96 },
1096 { "qcif", 176, 144 },
1097 { "cif", 352, 288 },
1098 { "4cif", 704, 576 },
1099 { "16cif", 1408,1152 },
1100 { "qqvga", 160, 120 },
1101 { "qvga", 320, 240 },
1102 { "vga", 640, 480 },
1103 { "svga", 800, 600 },
1104 { "xga", 1024, 768 },
1105 { "uxga", 1600,1200 },
1106 { "qxga", 2048,1536 },
1107 { "sxga", 1280,1024 },
1108 { "qsxga", 2560,2048 },
1109 { "hsxga", 5120,4096 },
1110 { "wvga", 852, 480 },
1111 { "wxga", 1366, 768 },
1112 { "wsxga", 1600,1024 },
1113 { "wuxga", 1920,1200 },
1114 { "woxga", 2560,1600 },
1115 { "wqsxga", 3200,2048 },
1116 { "wquxga", 3840,2400 },
1117 { "whsxga", 6400,4096 },
1118 { "whuxga", 7680,4800 },
1119 { "cga", 320, 200 },
1120 { "ega", 640, 350 },
1121 { "hd480", 852, 480 },
1122 { "hd720", 1280, 720 },
1123 { "hd1080", 1920,1080 },
1126 static const VideoFrameRateAbbr video_frame_rate_abbrs[]= {
1127 { "ntsc", 30000, 1001 },
1129 { "qntsc", 30000, 1001 }, /* VCD compliant NTSC */
1130 { "qpal", 25, 1 }, /* VCD compliant PAL */
1131 { "sntsc", 30000, 1001 }, /* square pixel NTSC */
1132 { "spal", 25, 1 }, /* square pixel PAL */
1134 { "ntsc-film", 24000, 1001 },
1137 int av_parse_video_frame_size(int *width_ptr, int *height_ptr, const char *str)
1140 int n = FF_ARRAY_ELEMS(video_frame_size_abbrs);
1142 int frame_width = 0, frame_height = 0;
1145 if (!strcmp(video_frame_size_abbrs[i].abbr, str)) {
1146 frame_width = video_frame_size_abbrs[i].width;
1147 frame_height = video_frame_size_abbrs[i].height;
1153 frame_width = strtol(p, &p, 10);
1156 frame_height = strtol(p, &p, 10);
1158 if (frame_width <= 0 || frame_height <= 0)
1160 *width_ptr = frame_width;
1161 *height_ptr = frame_height;
1165 int av_parse_video_frame_rate(AVRational *frame_rate, const char *arg)
1168 int n = FF_ARRAY_ELEMS(video_frame_rate_abbrs);
1171 /* First, we check our abbreviation table */
1172 for (i = 0; i < n; ++i)
1173 if (!strcmp(video_frame_rate_abbrs[i].abbr, arg)) {
1174 frame_rate->num = video_frame_rate_abbrs[i].rate_num;
1175 frame_rate->den = video_frame_rate_abbrs[i].rate_den;
1179 /* Then, we try to parse it as fraction */
1180 cp = strchr(arg, '/');
1182 cp = strchr(arg, ':');
1185 frame_rate->num = strtol(arg, &cpp, 10);
1186 if (cpp != arg || cpp == cp)
1187 frame_rate->den = strtol(cp+1, &cpp, 10);
1189 frame_rate->num = 0;
1192 /* Finally we give up and parse it as double */
1193 AVRational time_base = av_d2q(strtod(arg, 0), 1001000);
1194 frame_rate->den = time_base.den;
1195 frame_rate->num = time_base.num;
1197 if (!frame_rate->num || !frame_rate->den)
1203 void av_log_missing_feature(void *avc, const char *feature, int want_sample)
1205 av_log(avc, AV_LOG_WARNING, "%s not implemented. Update your FFmpeg "
1206 "version to the newest one from SVN. If the problem still "
1207 "occurs, it means that your file has a feature which has not "
1208 "been implemented.", feature);
1210 av_log_ask_for_sample(avc, NULL);
1212 av_log(avc, AV_LOG_WARNING, "\n");
1215 void av_log_ask_for_sample(void *avc, const char *msg)
1218 av_log(avc, AV_LOG_WARNING, "%s ", msg);
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");
1224 static AVHWAccel *first_hwaccel = NULL;
1226 void av_register_hwaccel(AVHWAccel *hwaccel)
1228 AVHWAccel **p = &first_hwaccel;
1232 hwaccel->next = NULL;
1235 AVHWAccel *av_hwaccel_next(AVHWAccel *hwaccel)
1237 return hwaccel ? hwaccel->next : first_hwaccel;
1240 AVHWAccel *ff_find_hwaccel(enum CodecID codec_id, enum PixelFormat pix_fmt)
1242 AVHWAccel *hwaccel=NULL;
1244 while((hwaccel= av_hwaccel_next(hwaccel))){
1245 if ( hwaccel->id == codec_id
1246 && hwaccel->pix_fmt == pix_fmt)
1252 int av_lockmgr_register(int (*cb)(void **mutex, enum AVLockOp op))
1254 if (ff_lockmgr_cb) {
1255 if (ff_lockmgr_cb(&codec_mutex, AV_LOCK_DESTROY))
1261 if (ff_lockmgr_cb) {
1262 if (ff_lockmgr_cb(&codec_mutex, AV_LOCK_CREATE))