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 /cmdutils.h | |
parent | 6e3857fa8cd620d528fb73fe5f7f692db780c4df (diff) | |
download | ffmpeg-f9fada2704df7994e8e4451ac78d8d5569faa8a2.tar.gz |
avconv: split printing "main options" into global and per-file.
Diffstat (limited to 'cmdutils.h')
-rw-r--r-- | cmdutils.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cmdutils.h b/cmdutils.h index 39125ce4ba..212aa71fc6 100644 --- a/cmdutils.h +++ b/cmdutils.h @@ -160,9 +160,10 @@ typedef struct { * @param msg title of this group. Only printed if at least one option matches. * @param req_flags print only options which have all those flags set. * @param rej_flags don't print options which have any of those flags set. + * @param alt_flags print only options that have at least one of those flags set */ void show_help_options(const OptionDef *options, const char *msg, int req_flags, - int rej_flags); + int rej_flags, int alt_flags); /** * Show help for all options with given flags in class and all its |