diff options
author | Anton Khirnov <anton@khirnov.net> | 2012-08-14 08:21:42 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2012-08-19 19:23:06 +0200 |
commit | f8b1e665539010d3ca148f09cb1203c20c1ca174 (patch) | |
tree | 676684cefe5ae82ec4c9c83c02152173bafce709 | |
parent | 1136bd362a873156d9eb99f38a3edd09ae553eee (diff) | |
download | ffmpeg-f8b1e665539010d3ca148f09cb1203c20c1ca174.tar.gz |
avconv: print info/capabilities options in a separate help group.
-rw-r--r-- | avconv_opt.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/avconv_opt.c b/avconv_opt.c index ef591a462a..2bcce3bbad 100644 --- a/avconv_opt.c +++ b/avconv_opt.c @@ -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:", |