diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2011-06-04 23:54:19 +0200 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2011-06-05 13:21:02 +0200 |
commit | 96f931adf75967dc86fbf3ee21517e539d0a6e50 (patch) | |
tree | 83b2cb96c70525ef2801162e20fac07466ff45a7 /cmdutils.h | |
parent | 0d0fdb0ad59c0533fb91dad00379f762573ce541 (diff) | |
download | ffmpeg-96f931adf75967dc86fbf3ee21517e539d0a6e50.tar.gz |
cmdutils: change the signature of the function argument in parse_options()
This is required for a pending simplification.
Diffstat (limited to 'cmdutils.h')
-rw-r--r-- | cmdutils.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmdutils.h b/cmdutils.h index eca98a3cf4..171ef3cb5b 100644 --- a/cmdutils.h +++ b/cmdutils.h @@ -151,7 +151,7 @@ void show_help_options(const OptionDef *options, const char *msg, int mask, int * not have to be processed. */ void parse_options(int argc, char **argv, const OptionDef *options, - void (* parse_arg_function)(const char*)); + int (* parse_arg_function)(const char *opt, const char *arg)); void set_context_opts(void *ctx, void *opts_ctx, int flags, AVCodec *codec); |