Moves the display of metadata to dump_format()

Originally committed as revision 19632 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Peter Ross 2009-08-12 13:17:39 +00:00
parent 5f71844e78
commit c0b88f1920
2 changed files with 8 additions and 8 deletions

View file

@ -2916,6 +2916,14 @@ void dump_format(AVFormatContext *ic,
} else
for(i=0;i<ic->nb_streams;i++)
dump_stream_format(ic, i, index, is_output);
if (ic->metadata) {
AVMetadataTag *tag=NULL;
av_log(NULL, AV_LOG_INFO, " Metadata\n");
while((tag=av_metadata_get(ic->metadata, "", tag, AV_METADATA_IGNORE_SUFFIX))) {
av_log(NULL, AV_LOG_INFO, " %-16s: %s\n", tag->key, tag->value);
}
}
}
#if LIBAVFORMAT_VERSION_MAJOR < 53