diff options
author | Anton Khirnov <anton@khirnov.net> | 2012-03-04 16:46:45 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2012-03-06 15:03:22 +0100 |
commit | 4138cd29077de2fbca9c49e96f70d21a78e24e33 (patch) | |
tree | 9fc69383bf4a293852c236a2c70ff7bf1f1ae271 /cmdutils.c | |
parent | 4d851f8dcf951d380e935ef14ae01db813adfc2d (diff) | |
download | ffmpeg-4138cd29077de2fbca9c49e96f70d21a78e24e33.tar.gz |
avconv: add -cpuflags option for setting supported cpuflags.
Useful for testing.
Diffstat (limited to 'cmdutils.c')
-rw-r--r-- | cmdutils.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/cmdutils.c b/cmdutils.c index ed0813f986..336f50bfd8 100644 --- a/cmdutils.c +++ b/cmdutils.c @@ -320,11 +320,8 @@ void parse_options(void *optctx, int argc, char **argv, const OptionDef *options } } -/* - * Return index of option opt in argv or 0 if not found. - */ -static int locate_option(int argc, char **argv, const OptionDef *options, - const char *optname) +int locate_option(int argc, char **argv, const OptionDef *options, + const char *optname) { const OptionDef *po; int i; |