Commit fe4f5ab2 authored by stefano's avatar stefano

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.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@22046 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 161c2779
......@@ -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");
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment