aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCarl Eugen Hoyos <cehoyos@ag.or.at>2011-09-23 10:16:36 +0200
committerCarl Eugen Hoyos <cehoyos@ag.or.at>2011-09-23 10:16:36 +0200
commitcab2860c8a49756daccde3111eb27271209495cd (patch)
tree19015cdf0c1f19ccc585de19b96e4dea3b066f0f
parent6d789f50d261e4c0c2a8b02edbb86fd77247322c (diff)
downloadffmpeg-cab2860c8a49756daccde3111eb27271209495cd.tar.gz
Use a colon in the stream description, this matches how -map works now.
-rw-r--r--libavformat/utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/utils.c b/libavformat/utils.c
index 0f367b7065..4dcf0ac2df 100644
--- a/libavformat/utils.c
+++ b/libavformat/utils.c
@@ -3462,7 +3462,7 @@ static void dump_stream_format(AVFormatContext *ic, int i, int index, int is_out
int g = av_gcd(st->time_base.num, st->time_base.den);
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 */
if (flags & AVFMT_SHOW_IDS)