summaryrefslogtreecommitdiff
path: root/libavformat/dump.c
diff options
context:
space:
mode:
authorSylvain Rabot <sylvain@abstraction.fr>2014-09-30 11:26:06 +0200
committerVittorio Giovara <vittorio.giovara@gmail.com>2014-10-08 18:17:49 +0100
commit167e6f1489368a4693145da61cb022c113a285bc (patch)
tree908ab96f63216e06478178c2dc0d4e74879c89e1 /libavformat/dump.c
parent9f3a70c44224ed92d91df65bb9470a2649e7d019 (diff)
dump: Update streams and chapters printout format
This matches the -map option which requires '%d:%d' format.
Diffstat (limited to 'libavformat/dump.c')
-rw-r--r--libavformat/dump.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/dump.c b/libavformat/dump.c
index 649678cd4a..99188f0a51 100644
--- a/libavformat/dump.c
+++ b/libavformat/dump.c
@@ -332,7 +332,7 @@ static void dump_stream_format(AVFormatContext *ic, int i,
AVDictionaryEntry *lang = av_dict_get(st->metadata, "language", NULL, 0);
avcodec_string(buf, sizeof(buf), st->codec, is_output);
- av_log(NULL, AV_LOG_INFO, " Stream #%d.%d", index, i);
+ av_log(NULL, AV_LOG_INFO, " Stream #%d:%d", index, i);
/* the pid is an important information, so we display it */
/* XXX: add a generic system */
@@ -446,7 +446,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,