Signed-off-by: softworkz <softwo...@hotmail.com>
---
v2: Removed the level output as there doesn't appear to exist a convenient 
way for getting a string representation for a level id (for arbitrary codecs).
The stream offsets are the more interesting part of this anyway.

 libavformat/dump.c | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/libavformat/dump.c b/libavformat/dump.c
index 4824965ee9..427478426f 100644
--- a/libavformat/dump.c
+++ b/libavformat/dump.c
@@ -577,6 +577,11 @@ static void dump_stream_format(const AVFormatContext *ic, 
int i,
             print_fps(1 / av_q2d(st->time_base), "tbn");
     }
 
+    if (st->start_time != AV_NOPTS_VALUE && st->start_time != 0 && 
st->time_base.den && st->time_base.num) {
+        const double stream_start = st->start_time * av_q2d(st->time_base);
+        av_log(NULL, AV_LOG_INFO, ", Start-Time %.3fs", stream_start);
+    }
+
     if (st->disposition & AV_DISPOSITION_DEFAULT)
         av_log(NULL, AV_LOG_INFO, " (default)");
     if (st->disposition & AV_DISPOSITION_DUB)
-- 
2.30.2.windows.1

_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel

To unsubscribe, visit link above, or email
ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".

Reply via email to