[FFmpeg-cvslog] avformat/dump: lowercase 'Start' prefix for start offset

Marth64 git at videolan.org
Sun Jun 15 20:24:20 EEST 2025


ffmpeg | branch: master | Marth64 <marth64 at proxyid.net> | Sun Jun 15 01:41:22 2025 -0500| [f66ae1ba24fd633962c195303f617e4165d2fe33] | committer: Marth64

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 at proxyid.net>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=f66ae1ba24fd633962c195303f617e4165d2fe33
---

 libavformat/dump.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavformat/dump.c b/libavformat/dump.c
index c263921b99..f22b70b660 100644
--- a/libavformat/dump.c
+++ b/libavformat/dump.c
@@ -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) {
         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);



More information about the ffmpeg-cvslog mailing list