From d0f3f15945f808313ef62b50328d540bd0758368 Mon Sep 17 00:00:00 2001 From: Wolfram Gloger Date: Mon, 11 Oct 2004 17:12:52 +0000 Subject: [PATCH] print start_time patch by (Wolfram Gloger ) Originally committed as revision 3580 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/utils.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/libavformat/utils.c b/libavformat/utils.c index 331f42c..f8a00f2 100644 --- a/libavformat/utils.c +++ b/libavformat/utils.c @@ -2224,6 +2224,14 @@ void dump_format(AVFormatContext *ic, } else { av_log(NULL, AV_LOG_DEBUG, "N/A"); } + if (ic->start_time != AV_NOPTS_VALUE) { + int secs, us; + av_log(NULL, AV_LOG_DEBUG, ", start: "); + secs = ic->start_time / AV_TIME_BASE; + us = ic->start_time % AV_TIME_BASE; + av_log(NULL, AV_LOG_DEBUG, "%d.%06d", + secs, (int)av_rescale(us, 1000000, AV_TIME_BASE)); + } av_log(NULL, AV_LOG_DEBUG, ", bitrate: "); if (ic->bit_rate) { av_log(NULL, AV_LOG_DEBUG,"%d kb/s", ic->bit_rate / 1000); -- 2.7.4