diff options
author | Anton Khirnov <anton@khirnov.net> | 2023-12-17 14:42:38 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2023-12-22 11:39:57 +0100 |
commit | 148fac277a173473eed4ea6b03c7575e5696b3fa (patch) | |
tree | 95fdf8bd09e01f15b5cfd277be1eff18deaab9e2 /fftools/cmdutils.h | |
parent | 0ba70a679216a504ed4ea6f50c37283cf099e8ae (diff) | |
download | ffmpeg-148fac277a173473eed4ea6b03c7575e5696b3fa.tar.gz |
fftools/ffmpeg: change the MATCH_PER_TYPE_OPT macro into a function
There is no reason for it to be a macro anymore, this makes the code
using it cleaner and simpler.
Diffstat (limited to 'fftools/cmdutils.h')
-rw-r--r-- | fftools/cmdutils.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/fftools/cmdutils.h b/fftools/cmdutils.h index 8ef9a07e9e..db91b788f8 100644 --- a/fftools/cmdutils.h +++ b/fftools/cmdutils.h @@ -117,6 +117,8 @@ typedef struct SpecifierOpt { typedef struct SpecifierOptList { SpecifierOpt *opt; int nb_opt; + + enum OptionType type; } SpecifierOptList; typedef struct OptionDef { |