diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2011-09-23 10:16:36 +0200 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2011-09-23 10:16:36 +0200 |
commit | cab2860c8a49756daccde3111eb27271209495cd (patch) | |
tree | 19015cdf0c1f19ccc585de19b96e4dea3b066f0f | |
parent | 6d789f50d261e4c0c2a8b02edbb86fd77247322c (diff) | |
download | ffmpeg-cab2860c8a49756daccde3111eb27271209495cd.tar.gz |
Use a colon in the stream description, this matches how -map works now.
-rw-r--r-- | libavformat/utils.c | 2 |
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) |