1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-08-04 22:03:09 +02:00

avformat/dump: lowercase 'Start' prefix for start offset

Just applying some UX polish.
This is to match the lowercase trend of attributes in
the dump string (and similar to chapters).

Signed-off-by: Marth64 <marth64@proxyid.net>
This commit is contained in:
Marth64
2025-06-15 01:41:22 -05:00
parent 90424a4475
commit f66ae1ba24

View File

@ -680,7 +680,7 @@ FF_ENABLE_DEPRECATION_WARNINGS
if (st->start_time != AV_NOPTS_VALUE && st->start_time != 0 && st->time_base.den && st->time_base.num) { if (st->start_time != AV_NOPTS_VALUE && st->start_time != 0 && st->time_base.den && st->time_base.num) {
const double stream_start = av_q2d(st->time_base) * st->start_time; const double stream_start = av_q2d(st->time_base) * st->start_time;
av_log(NULL, AV_LOG_INFO, ", Start %.6f", stream_start); av_log(NULL, AV_LOG_INFO, ", start %.6f", stream_start);
} }
dump_disposition(st->disposition, log_level); dump_disposition(st->disposition, log_level);