indent
authorMichael Niedermayer <michaelni@gmx.at>
Tue, 12 Dec 2006 14:08:19 +0000 (14:08 +0000)
committerMichael Niedermayer <michaelni@gmx.at>
Tue, 12 Dec 2006 14:08:19 +0000 (14:08 +0000)
Originally committed as revision 7290 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavformat/utils.c

index 45719e0..c5bca5c 100644 (file)
@@ -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]++;