[FFmpeg-cvslog] r20849 - trunk/libavformat/utils.c

michael subversion
Mon Dec 14 00:34:46 CET 2009


Author: michael
Date: Mon Dec 14 00:34:46 2009
New Revision: 20849

Log:
Move dump_metadata() to where it is in ffmbc, looks better.

Modified:
   trunk/libavformat/utils.c

Modified: trunk/libavformat/utils.c
==============================================================================
--- trunk/libavformat/utils.c	Mon Dec 14 00:31:01 2009	(r20848)
+++ trunk/libavformat/utils.c	Mon Dec 14 00:34:46 2009	(r20849)
@@ -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);
 }
 



More information about the ffmpeg-cvslog mailing list