]> git.sesse.net Git - ffmpeg/blobdiff - cmdutils.h
find_start_code() optimization (about 2x faster now) this may improve decoding speed...
[ffmpeg] / cmdutils.h
index a6d5e7a3bb5bef53338f3b72f5c5f1153e625bd0..a8913f385daf59f0f8e8a39edf6445ca75c12ac0 100644 (file)
@@ -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);