X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=cmdutils.c;h=5a18cd56531cf71fdf43ce7ecbb9df080fa8fd95;hb=699341d647f7af785fb8ceed67604467b0b9ab12;hp=e4e3baca36851d7ce6ff2fe8a113d9eb6b06cddb;hpb=0842df2619a005ae8b02a2759a955e2e1248cd55;p=ffmpeg diff --git a/cmdutils.c b/cmdutils.c index e4e3baca368..5a18cd56531 100644 --- a/cmdutils.c +++ b/cmdutils.c @@ -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; }