From b298daea1af8175e0215efbfe18ab8d363703e21 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Sun, 13 Dec 2009 23:34:46 +0000 Subject: [PATCH] Move dump_metadata() to where it is in ffmbc, looks better. Originally committed as revision 20849 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/utils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/utils.c b/libavformat/utils.c index 9a1bd45303e..1c68b3dadea 100644 --- a/libavformat/utils.c +++ b/libavformat/utils.c @@ -2923,6 +2923,7 @@ void dump_format(AVFormatContext *ic, index, is_output ? ic->oformat->name : ic->iformat->name, is_output ? "to" : "from", url); + dump_metadata(NULL, ic->metadata, " "); if (!is_output) { av_log(NULL, AV_LOG_INFO, " Duration: "); if (ic->duration != AV_NOPTS_VALUE) { @@ -2975,7 +2976,6 @@ void dump_format(AVFormatContext *ic, if (!printed[i]) dump_stream_format(ic, i, index, is_output); - dump_metadata(NULL, ic->metadata, " "); av_free(printed); } -- 2.39.2