Commit d0f3f159 authored by Wolfram Gloger's avatar Wolfram Gloger Committed by Michael Niedermayer

print start_time patch by (Wolfram Gloger <wmglo at dent dot med dot uni-muenchen dot de>)

Originally committed as revision 3580 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 184582de
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment