diff options
author | Clément Bœsch <ubitux@gmail.com> | 2011-09-28 17:57:22 +0200 |
---|---|---|
committer | Clément Bœsch <ubitux@gmail.com> | 2011-09-28 17:57:22 +0200 |
commit | f9d8a3423f3f93c054c6d84401b0f7b916fe6166 (patch) | |
tree | 2affcf6063d0753bc18df5c3cfd75b223f494b96 /ffprobe.c | |
parent | f63ec3eee969491de057a9046e45529649a05fa8 (diff) | |
download | ffmpeg-f9d8a3423f3f93c054c6d84401b0f7b916fe6166.tar.gz |
ffprobe: fix trailing '=' in stream id.
Diffstat (limited to 'ffprobe.c')
-rw-r--r-- | ffprobe.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); |