summaryrefslogtreecommitdiff
path: root/cmdutils.h
diff options
context:
space:
mode:
authorFabrice Bellard <fabrice@bellard.org>2003-08-24 15:29:48 +0000
committerFabrice Bellard <fabrice@bellard.org>2003-08-24 15:29:48 +0000
commit02d504a7d3f0546374cc02ecff45390a0d4faa6b (patch)
tree2828dfbc4e4779424e5d105b981fdc23a707375e /cmdutils.h
parent18bff7520e2fb844411b1d206d519ed695f63d2d (diff)
more sections in help - copyright fixes
Originally committed as revision 2143 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'cmdutils.h')
-rw-r--r--cmdutils.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/cmdutils.h b/cmdutils.h
index a6d5e7a3bb..a8913f385d 100644
--- a/cmdutils.h
+++ b/cmdutils.h
@@ -8,6 +8,9 @@ typedef struct {
#define OPT_BOOL 0x0002
#define OPT_EXPERT 0x0004
#define OPT_STRING 0x0008
+#define OPT_VIDEO 0x0010
+#define OPT_AUDIO 0x0020
+#define OPT_GRAB 0x0040
union {
void (*func_arg)(const char *);
int *int_arg;
@@ -17,7 +20,7 @@ typedef struct {
const char *argname;
} OptionDef;
-void show_help_options(const OptionDef *options);
+void show_help_options(const OptionDef *options, const char *msg, int mask, int value);
void parse_options(int argc, char **argv, const OptionDef *options);
void parse_arg_file(const char *filename);
void print_error(const char *filename, int err);