changeset 5459:83b4309c8516 libavformat

Move dump_metadata() to where it is in ffmbc, looks better.
author michael
date Sun, 13 Dec 2009 23:34:46 +0000
parents 761cc819fee5
children 8919f5110dbf
files utils.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/utils.c	Sun Dec 13 23:31:01 2009 +0000
+++ b/utils.c	Sun Dec 13 23:34:46 2009 +0000
@@ -2923,6 +2923,7 @@
             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 @@
         if (!printed[i])
             dump_stream_format(ic, i, index, is_output);
 
-    dump_metadata(NULL, ic->metadata, "  ");
     av_free(printed);
 }