]> git.sesse.net Git - ffmpeg/commitdiff
lavf/utils: Cosmetics: fix indentation for estimate_timings
authorJun Zhao <barryjzhao@tencent.com>
Sat, 28 Sep 2019 03:01:54 +0000 (11:01 +0800)
committerJun Zhao <barryjzhao@tencent.com>
Mon, 30 Sep 2019 02:08:27 +0000 (10:08 +0800)
fix indentation for estimate_timings when dump start_time/duartion.

Signed-off-by: Jun Zhao <barryjzhao@tencent.com>
libavformat/utils.c

index 9d69e3a833b587ffc9517cc7e1b622fa38b2351b..112d19b86ef8e25578d30c0005a38cce65f64295 100644 (file)
@@ -2974,9 +2974,9 @@ static void estimate_timings(AVFormatContext *ic, int64_t old_offset)
         for (i = 0; i < ic->nb_streams; i++) {
             st = ic->streams[i];
             if (st->time_base.den)
-            av_log(ic, AV_LOG_TRACE, "stream %d: start_time: %0.3f duration: %0.3f\n", i,
-                   (double) st->start_time * av_q2d(st->time_base),
-                   (double) st->duration   * av_q2d(st->time_base));
+                av_log(ic, AV_LOG_TRACE, "stream %d: start_time: %0.3f duration: %0.3f\n", i,
+                       (double) st->start_time * av_q2d(st->time_base),
+                       (double) st->duration   * av_q2d(st->time_base));
         }
         av_log(ic, AV_LOG_TRACE,
                 "format: start_time: %0.3f duration: %0.3f bitrate=%"PRId64" kb/s\n",