aboutsummaryrefslogtreecommitdiffstats
path: root/fftools/cmdutils.h
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2023-12-17 14:42:38 +0100
committerAnton Khirnov <anton@khirnov.net>2023-12-22 11:39:57 +0100
commit148fac277a173473eed4ea6b03c7575e5696b3fa (patch)
tree95fdf8bd09e01f15b5cfd277be1eff18deaab9e2 /fftools/cmdutils.h
parent0ba70a679216a504ed4ea6f50c37283cf099e8ae (diff)
downloadffmpeg-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.h2
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 {