diff options
author | Fabrice Bellard <fabrice@bellard.org> | 2003-06-07 18:34:02 +0000 |
---|---|---|
committer | Fabrice Bellard <fabrice@bellard.org> | 2003-06-07 18:34:02 +0000 |
commit | 01310af292fe18ba700f7ba9d97ab8d43427a619 (patch) | |
tree | da38b9ced238132115cdb0746ba400f3662c93e1 /cmdutils.h | |
parent | a86b921c7df406356513b90cf76bd6161059714d (diff) | |
download | ffmpeg-01310af292fe18ba700f7ba9d97ab8d43427a619.tar.gz |
added ffplay utility
Originally committed as revision 1936 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'cmdutils.h')
-rw-r--r-- | cmdutils.h | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/cmdutils.h b/cmdutils.h new file mode 100644 index 0000000000..a6d5e7a3bb --- /dev/null +++ b/cmdutils.h @@ -0,0 +1,25 @@ +#ifndef _CMD_UTILS_H +#define _CMD_UTILS_H + +typedef struct { + const char *name; + int flags; +#define HAS_ARG 0x0001 +#define OPT_BOOL 0x0002 +#define OPT_EXPERT 0x0004 +#define OPT_STRING 0x0008 + union { + void (*func_arg)(const char *); + int *int_arg; + char **str_arg; + } u; + const char *help; + const char *argname; +} OptionDef; + +void show_help_options(const OptionDef *options); +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); + +#endif /* _CMD_UTILS_H */ |