[FFmpeg-devel] [PATCH V1 4/5] lavf/utils: Cosmetics: fix indentation for estimate_timings
Jun Zhao
mypopydev at gmail.com
Sat Sep 28 15:23:56 EEST 2019
From: Jun Zhao <barryjzhao at tencent.com>
fix indentation for estimate_timings when dump start_time/duartion.
Signed-off-by: Jun Zhao <barryjzhao at tencent.com>
---
libavformat/utils.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/libavformat/utils.c b/libavformat/utils.c
index f62a5cb..c0ccd8c 100644
--- a/libavformat/utils.c
+++ b/libavformat/utils.c
@@ -2980,9 +2980,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",
--
1.7.1
More information about the ffmpeg-devel
mailing list