mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-03-01 10:11:01 +00:00
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>
This commit is contained in:
parent
541c635628
commit
f5e867570e
@ -2974,9 +2974,9 @@ static void estimate_timings(AVFormatContext *ic, int64_t old_offset)
|
|||||||
for (i = 0; i < ic->nb_streams; i++) {
|
for (i = 0; i < ic->nb_streams; i++) {
|
||||||
st = ic->streams[i];
|
st = ic->streams[i];
|
||||||
if (st->time_base.den)
|
if (st->time_base.den)
|
||||||
av_log(ic, AV_LOG_TRACE, "stream %d: start_time: %0.3f duration: %0.3f\n", i,
|
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->start_time * av_q2d(st->time_base),
|
||||||
(double) st->duration * av_q2d(st->time_base));
|
(double) st->duration * av_q2d(st->time_base));
|
||||||
}
|
}
|
||||||
av_log(ic, AV_LOG_TRACE,
|
av_log(ic, AV_LOG_TRACE,
|
||||||
"format: start_time: %0.3f duration: %0.3f bitrate=%"PRId64" kb/s\n",
|
"format: start_time: %0.3f duration: %0.3f bitrate=%"PRId64" kb/s\n",
|
||||||
|
Loading…
Reference in New Issue
Block a user