]> git.sesse.net Git - ffmpeg/blobdiff - cmdutils.c
Merge commit 'e6fb844f7b736e72da364032d251283bce9e63ad'
[ffmpeg] / cmdutils.c
index e4e3baca36851d7ce6ff2fe8a113d9eb6b06cddb..5a18cd56531cf71fdf43ce7ecbb9df080fa8fd95 100644 (file)
@@ -845,6 +845,7 @@ int opt_loglevel(void *optctx, const char *opt, const char *arg)
         { "info"   , AV_LOG_INFO    },
         { "verbose", AV_LOG_VERBOSE },
         { "debug"  , AV_LOG_DEBUG   },
+        { "trace"  , AV_LOG_TRACE   },
     };
     char *tail;
     int level;
@@ -1535,10 +1536,10 @@ int show_protocols(void *optctx, const char *opt, const char *arg)
     printf("Supported file protocols:\n"
            "Input:\n");
     while ((name = avio_enum_protocols(&opaque, 0)))
-        printf("%s\n", name);
+        printf("  %s\n", name);
     printf("Output:\n");
     while ((name = avio_enum_protocols(&opaque, 1)))
-        printf("%s\n", name);
+        printf("  %s\n", name);
     return 0;
 }