diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2007-01-02 20:35:46 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2007-01-02 20:35:46 +0000 |
commit | 69c262d15677caa8b1f788341b553c9f1defd62a (patch) | |
tree | 18d02c453827b68115eca18958c4c88ff7a8ea11 | |
parent | 1694118b9b30f20af188a0b79f74edeb8f202b77 (diff) | |
download | ffmpeg-69c262d15677caa8b1f788341b553c9f1defd62a.tar.gz |
indention
Originally committed as revision 7403 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavformat/utils.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/libavformat/utils.c b/libavformat/utils.c index 5483f4c5b9..6efe885cf5 100644 --- a/libavformat/utils.c +++ b/libavformat/utils.c @@ -1897,12 +1897,12 @@ int av_find_stream_info(AVFormatContext *ic) // av_log(NULL, AV_LOG_ERROR, "%f\n", dur); if(duration_count[index] < 2) memset(duration_error, 0, sizeof(duration_error)); - for(i=1; i<MAX_STD_TIMEBASES; i++){ - int framerate= get_std_framerate(i); - int ticks= lrintf(dur*framerate/(1001*12)); - double error= dur - ticks*1001*12/(double)framerate; - duration_error[index][i] += error*error; - } + for(i=1; i<MAX_STD_TIMEBASES; i++){ + int framerate= get_std_framerate(i); + int ticks= lrintf(dur*framerate/(1001*12)); + double error= dur - ticks*1001*12/(double)framerate; + duration_error[index][i] += error*error; + } duration_count[index]++; if(st->codec_info_nb_frames == 0 && 0) |