summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJun Zhao <barryjzhao@tencent.com>2019-09-28 11:01:54 +0800
committerJun Zhao <barryjzhao@tencent.com>2019-09-30 10:08:27 +0800
commitf5e867570ef491674694df73776c78105dde7d6e (patch)
tree91f21fb95ec17d2f2a5dae6f4e8614a054fd3a77
parent541c6356289f5a1dd0390e3dd0a275a0578f01f5 (diff)
downloadffmpeg-streaming-f5e867570ef491674694df73776c78105dde7d6e.zip
ffmpeg-streaming-f5e867570ef491674694df73776c78105dde7d6e.tar.gz
lavf/utils: Cosmetics: fix indentation for estimate_timings
fix indentation for estimate_timings when dump start_time/duartion. Signed-off-by: Jun Zhao <barryjzhao@tencent.com>
-rw-r--r--libavformat/utils.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libavformat/utils.c b/libavformat/utils.c
index 9d69e3a..112d19b 100644
--- a/libavformat/utils.c
+++ b/libavformat/utils.c
@@ -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",
OpenPOWER on IntegriCloud