summaryrefslogtreecommitdiff
path: root/ffprobe.c
diff options
context:
space:
mode:
authorStefano Sabatini <stefano.sabatini-lala@poste.it>2010-02-25 00:16:43 +0000
committerStefano Sabatini <stefano.sabatini-lala@poste.it>2010-02-25 00:16:43 +0000
commitb6a4185367faa7785fa5d3fc93caa82b1e659386 (patch)
tree1a0419f01f2c287be7fd9c5269ec6ffa15739594 /ffprobe.c
parent912dd63ecb4f56772b36bbf676dd4ddc3b6dc64b (diff)
10l: add prefix "TAG:" to the metadata tags key showed for each stream.
This is consistent with the metadata displaying in show_format() and with the documentation. Originally committed as revision 22046 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'ffprobe.c')
-rw-r--r--ffprobe.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ffprobe.c b/ffprobe.c
index 7ac20eb470..4a8ca88261 100644
--- a/ffprobe.c
+++ b/ffprobe.c
@@ -184,7 +184,7 @@ static void show_stream(AVFormatContext *fmt_ctx, int stream_idx)
&stream->time_base));
while ((tag = av_metadata_get(stream->metadata, "", tag, AV_METADATA_IGNORE_SUFFIX)))
- printf("%s=%s\n", tag->key, tag->value);
+ printf("TAG:%s=%s\n", tag->key, tag->value);
printf("[/STREAM]\n");
}