From: Michael Niedermayer Date: Tue, 2 Jan 2007 20:32:01 +0000 (+0000) Subject: nth try of getting the frame rate detecton working X-Git-Tag: v0.5~10665 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1694118b9b30f20af188a0b79f74edeb8f202b77;p=platform%2Fupstream%2Flibav.git nth try of getting the frame rate detecton working Originally committed as revision 7402 to svn://svn.ffmpeg.org/ffmpeg/trunk --- diff --git a/libavformat/utils.c b/libavformat/utils.c index 9aa9748..5483f4c 100644 --- a/libavformat/utils.c +++ b/libavformat/utils.c @@ -1895,14 +1895,14 @@ int av_find_stream_info(AVFormatContext *ic) // if(st->codec->codec_type == CODEC_TYPE_VIDEO) // av_log(NULL, AV_LOG_ERROR, "%f\n", dur); - if(duration_count[index] > 0){ + if(duration_count[index] < 2) + memset(duration_error, 0, sizeof(duration_error)); for(i=1; icodec_info_nb_frames == 0 && 0) @@ -1960,7 +1960,7 @@ int av_find_stream_info(AVFormatContext *ic) if(st->codec->codec_id == CODEC_ID_RAWVIDEO && !st->codec->codec_tag && !st->codec->bits_per_sample) st->codec->codec_tag= avcodec_pix_fmt_to_codec_tag(st->codec->pix_fmt); - if(1 + if(duration_count[i] && (st->codec->time_base.num*101LL <= st->codec->time_base.den || st->codec->codec_id == CODEC_ID_MPEG2VIDEO) /*&& //FIXME we should not special case mpeg2, but this needs testing with non mpeg2 ... st->time_base.num*duration_sum[i]/duration_count[i]*101LL > st->time_base.den*/){