diff options
author | Anton Khirnov <anton@khirnov.net> | 2012-08-15 10:31:46 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2012-08-19 19:23:43 +0200 |
commit | f9fada2704df7994e8e4451ac78d8d5569faa8a2 (patch) | |
tree | eaa4086e74cffcde48ee94a04b165755de9bb836 /avplay.c | |
parent | 6e3857fa8cd620d528fb73fe5f7f692db780c4df (diff) | |
download | ffmpeg-f9fada2704df7994e8e4451ac78d8d5569faa8a2.tar.gz |
avconv: split printing "main options" into global and per-file.
Diffstat (limited to 'avplay.c')
-rw-r--r-- | avplay.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -2924,8 +2924,8 @@ 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, OPT_EXPERT); - show_help_options(options, "Advanced options:", OPT_EXPERT, 0); + show_help_options(options, "Main options:", 0, OPT_EXPERT, 0); + show_help_options(options, "Advanced options:", OPT_EXPERT, 0, 0); printf("\n"); show_help_children(avcodec_get_class(), AV_OPT_FLAG_DECODING_PARAM); show_help_children(avformat_get_class(), AV_OPT_FLAG_DECODING_PARAM); |