diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2011-06-05 00:03:59 +0200 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2011-06-05 13:21:06 +0200 |
commit | b4af3cf3470a14626e5d2f40ce3c88bfdd0c8561 (patch) | |
tree | d79d182f147ac404b96d57cb1629a3cb71c6f363 /cmdutils.h | |
parent | 96f931adf75967dc86fbf3ee21517e539d0a6e50 (diff) | |
download | ffmpeg-b4af3cf3470a14626e5d2f40ce3c88bfdd0c8561.tar.gz |
cmdutils: remove unnecessary OPT_DUMMY implementation
The -i INPUT option can be implemented more cleanly by using a
function option, which can easily be done now that the
parse_arg_function passed to parse_options has a standard signature.
Diffstat (limited to 'cmdutils.h')
-rw-r--r-- | cmdutils.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/cmdutils.h b/cmdutils.h index 171ef3cb5b..5fd398d054 100644 --- a/cmdutils.h +++ b/cmdutils.h @@ -128,7 +128,6 @@ typedef struct { #define OPT_INT64 0x0400 #define OPT_EXIT 0x0800 #define OPT_DATA 0x1000 -#define OPT_DUMMY 0x2000 union { int *int_arg; char **str_arg; |