diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-10-09 01:56:30 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-10-09 02:11:04 +0200 |
commit | 04d8f616fddb581cea03a65950ccbe0b9da55f8e (patch) | |
tree | 8821857f9d97a15c593d9d746214b29719f4dd85 | |
parent | 5f43a7957b70e44c0256cd223f296f32d2eb36da (diff) | |
parent | 167e6f1489368a4693145da61cb022c113a285bc (diff) | |
download | ffmpeg-04d8f616fddb581cea03a65950ccbe0b9da55f8e.tar.gz |
Merge commit '167e6f1489368a4693145da61cb022c113a285bc'
* commit '167e6f1489368a4693145da61cb022c113a285bc':
dump: Update streams and chapters printout format
See: cab2860c8a49756daccde3111eb27271209495cd
Merged-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavformat/dump.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/dump.c b/libavformat/dump.c index 29d4aacc0e..8c49ef9236 100644 --- a/libavformat/dump.c +++ b/libavformat/dump.c @@ -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, |