Signed-off-by: softworkz <[email protected]>
---
v2: rearrange code to fix warning
libavformat/dump.c | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/libavformat/dump.c b/libavformat/dump.c
index 4824965ee9..58bb28d06e 100644
--- a/libavformat/dump.c
+++ b/libavformat/dump.c
@@ -566,6 +566,9 @@ static void dump_stream_format(const AVFormatContext *ic,
int i,
int tbr = st->r_frame_rate.den && st->r_frame_rate.num;
int tbn = st->time_base.den && st->time_base.num;
+ if (st->codecpar->level > 0)
+ av_log(NULL, AV_LOG_INFO, ", Level %d", st->codecpar->level);
+
if (fps || tbr || tbn)
av_log(NULL, AV_LOG_INFO, "%s", separator);
@@ -577,6 +580,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
[email protected]
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
To unsubscribe, visit link above, or email
[email protected] with subject "unsubscribe".