Browse Source

avconv: print info/capabilities options in a separate help group.

tags/n1.0
Anton Khirnov 12 years ago
parent
commit
f8b1e66553
1 changed files with 4 additions and 1 deletions
  1. +4
    -1
      avconv_opt.c

+ 4
- 1
avconv_opt.c View File

@@ -1794,8 +1794,11 @@ void show_help_default(const char *opt, const char *arg)
int flags = AV_OPT_FLAG_DECODING_PARAM | AV_OPT_FLAG_ENCODING_PARAM;

show_usage();
show_help_options(options, "Print help / information / capabilities:",
OPT_EXIT, 0);
show_help_options(options, "Main options:",
0, OPT_EXPERT | OPT_AUDIO | OPT_VIDEO | OPT_SUBTITLE);
0, OPT_EXPERT | OPT_AUDIO | OPT_VIDEO | OPT_SUBTITLE |
OPT_EXIT);
show_help_options(options, "Advanced options:",
OPT_EXPERT, OPT_AUDIO | OPT_VIDEO | OPT_SUBTITLE);
show_help_options(options, "Video options:",


Loading…
Cancel
Save