[FFmpeg-cvslog] Use a colon in the stream description, this matches how -map works now.

Carl Eugen Hoyos git at videolan.org
Fri Sep 23 10:17:15 CEST 2011


ffmpeg | branch: master | Carl Eugen Hoyos <cehoyos at ag.or.at> | Fri Sep 23 10:16:36 2011 +0200| [cab2860c8a49756daccde3111eb27271209495cd] | committer: Carl Eugen Hoyos

Use a colon in the stream description, this matches how -map works now.

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=cab2860c8a49756daccde3111eb27271209495cd
---

 libavformat/utils.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/libavformat/utils.c b/libavformat/utils.c
index 0f367b7..4dcf0ac 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)



More information about the ffmpeg-cvslog mailing list