Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2012-08-13 22:06:25 +0400
committerAnton Khirnov <anton@khirnov.net>2012-08-19 21:22:08 +0400
commita3ad68d36c0bff87c525035b3f745bb274b00d41 (patch)
tree7006e5f920a7e3ee891180ee142f0038739c668d /avprobe.c
parent7c5012127fb7e18f0616011257bb4248f6a8b608 (diff)
cmdutils: extend -h to allow printing codec details.
Diffstat (limited to 'avprobe.c')
-rw-r--r--avprobe.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/avprobe.c b/avprobe.c
index 0116acb005..b708cb6683 100644
--- a/avprobe.c
+++ b/avprobe.c
@@ -868,14 +868,13 @@ static void opt_input_file(void *optctx, const char *arg)
input_filename = arg;
}
-static int show_help(const char *opt, const char *arg)
+void show_help_default(const char *opt, const char *arg)
{
av_log_set_callback(log_callback_help);
show_usage();
show_help_options(options, "Main options:", 0, 0);
printf("\n");
show_help_children(avformat_get_class(), AV_OPT_FLAG_DECODING_PARAM);
- return 0;
}
static void opt_pretty(void)