[FFmpeg-cvslog] ffprobe: fix trailing '=' in stream id.

Clément Bœsch git at videolan.org
Wed Sep 28 17:57:28 CEST 2011


ffmpeg | branch: master | Clément Bœsch <ubitux at gmail.com> | Wed Sep 28 17:57:22 2011 +0200| [f9d8a3423f3f93c054c6d84401b0f7b916fe6166] | committer: Clément Bœsch

ffprobe: fix trailing '=' in stream id.

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

 ffprobe.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/ffprobe.c b/ffprobe.c
index 31eec8a..2c354ad 100644
--- a/ffprobe.c
+++ b/ffprobe.c
@@ -430,7 +430,7 @@ static void show_stream(struct writer *w, AVFormatContext *fmt_ctx, int stream_i
     }
 
     if (fmt_ctx->iformat->flags & AVFMT_SHOW_IDS)
-        print_fmt("id=", "0x%x", stream->id);
+        print_fmt("id", "0x%x", stream->id);
     print_fmt("r_frame_rate",   "%d/%d", stream->r_frame_rate.num,   stream->r_frame_rate.den);
     print_fmt("avg_frame_rate", "%d/%d", stream->avg_frame_rate.num, stream->avg_frame_rate.den);
     print_fmt("time_base",      "%d/%d", stream->time_base.num,      stream->time_base.den);



More information about the ffmpeg-cvslog mailing list