diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2006-12-12 14:08:19 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2006-12-12 14:08:19 +0000 |
commit | e07d8929eb95c275cd946ef749adc862f9a73695 (patch) | |
tree | 83a2682a5c547d05cd4b83a4c2073654c6a86e9c | |
parent | fd97f6a2ea77b8e8c89ac1d27bf6605de29bdd36 (diff) | |
download | ffmpeg-e07d8929eb95c275cd946ef749adc862f9a73695.tar.gz |
indent
Originally committed as revision 7290 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 45719e04be..c5bca5c6d5 100644 --- a/libavformat/utils.c +++ b/libavformat/utils.c @@ -1895,12 +1895,12 @@ 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){ - 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]++; |