From 2e720e11bce00515616ce2dc45a95df1ee160413 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Sun, 13 Dec 2009 23:27:43 +0000 Subject: dump metadata for AVStreams & AVPrograms too. Originally committed as revision 20846 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/utils.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'libavformat') diff --git a/libavformat/utils.c b/libavformat/utils.c index 34e771b766..7552863de3 100644 --- a/libavformat/utils.c +++ b/libavformat/utils.c @@ -2904,6 +2904,7 @@ static void dump_stream_format(AVFormatContext *ic, int i, int index, int is_out print_fps(1/av_q2d(st->codec->time_base), "tbc"); } av_log(NULL, AV_LOG_INFO, "\n"); + dump_metadata(NULL, st->metadata, " "); } void dump_format(AVFormatContext *ic, @@ -2959,6 +2960,7 @@ void dump_format(AVFormatContext *ic, "name", NULL, 0); av_log(NULL, AV_LOG_INFO, " Program %d %s\n", ic->programs[j]->id, name ? name->value : ""); + dump_metadata(NULL, ic->programs[j]->metadata, " "); for(k=0; kprograms[j]->nb_stream_indexes; k++) { dump_stream_format(ic, ic->programs[j]->stream_index[k], index, is_output); printed[ic->programs[j]->stream_index[k]] = 1; -- cgit v1.2.3