Commit 04d8f616 authored by Michael Niedermayer's avatar Michael Niedermayer

Merge commit '167e6f14'

* commit '167e6f14':
  dump: Update streams and chapters printout format

See: cab2860cMerged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents 5f43a795 167e6f14
......@@ -468,7 +468,7 @@ void av_dump_format(AVFormatContext *ic, int index,
for (i = 0; i < ic->nb_chapters; i++) {
AVChapter *ch = ic->chapters[i];
av_log(NULL, AV_LOG_INFO, " Chapter #%d.%d: ", index, i);
av_log(NULL, AV_LOG_INFO, " Chapter #%d:%d: ", index, i);
av_log(NULL, AV_LOG_INFO,
"start %f, ", ch->start * av_q2d(ch->time_base));
av_log(NULL, AV_LOG_INFO,
......
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