summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2016-10-21 19:09:15 +0200
committerwm4 <wm4@nowhere>2016-10-21 19:09:15 +0200
commit082340b467703d7734e185f0c4c2334d06f853a3 (patch)
tree9033b8b519c681d08ad54574e57c505c4945d943
parent5f544c1081b9fe70739555e77fe8c70afb9ae4b8 (diff)
downloadmpv-082340b467703d7734e185f0c4c2334d06f853a3.tar.bz2
mpv-082340b467703d7734e185f0c4c2334d06f853a3.tar.xz
options: handle legacy no-* sub-options
These accidentally did nothing. They must be handled explicitly. Example: --vo=vdpau:no-composite-detect (Can't wait to get rid of this crap.)
-rw-r--r--options/m_config.c29
1 files changed, 21 insertions, 8 deletions
diff --git a/options/m_config.c b/options/m_config.c
index 576527c0c5..9733dac3cd 100644
--- a/options/m_config.c
+++ b/options/m_config.c
@@ -269,16 +269,27 @@ struct m_config *m_config_from_obj_desc_noalloc(void *talloc_ctx,
return m_config_new(talloc_ctx, log, 0, desc->priv_defaults, desc->options);
}
+static struct m_config_option *m_config_find_negation_opt(struct m_config *config,
+ struct bstr *name);
+
static int m_config_set_obj_params(struct m_config *config, struct mp_log *log,
struct mpv_global *global,
struct m_obj_desc *desc, char **args)
{
for (int n = 0; args && args[n * 2 + 0]; n++) {
- const char *opt = args[n * 2 + 0];
+ bstr opt = bstr0(args[n * 2 + 0]);
const char *val = args[n * 2 + 1];
- struct m_config_option *co = m_config_get_co(config, bstr0(opt));
- if (!co)
- continue;
+ struct m_config_option *co = m_config_get_co(config, opt);
+ if (!co) {
+ co = m_config_find_negation_opt(config, &opt);
+ if (!co)
+ continue;
+
+ if (val && val[0])
+ return -1; // no parameter allowed
+
+ val = "no";
+ }
struct m_config *target = config;
bool is_legacy = co->opt->type == &m_option_type_subopt_legacy;
bool force_legacy = !!desc->legacy_prefix;
@@ -289,16 +300,18 @@ static int m_config_set_obj_params(struct m_config *config, struct mp_log *log,
if (is_legacy) {
newopt = co->opt->priv;
} else {
- snprintf(tmp, sizeof(tmp), "%s-%s", desc->legacy_prefix, opt);
+ snprintf(tmp, sizeof(tmp), "%s-%.*s", desc->legacy_prefix,
+ BSTR_P(opt));
newopt = tmp;
}
assert(global);
target = mp_get_root_config(global);
mp_warn(log, "Using suboptions is deprecated. Use the global '--%s' "
- "option instead of '%s' suboption.\n", newopt, opt);
- opt = newopt;
+ "option instead of '%.*s' suboption.\n", newopt,
+ BSTR_P(opt));
+ opt = bstr0(newopt);
}
- if (m_config_set_option(target, bstr0(opt), bstr0(val)) < 0)
+ if (m_config_set_option(target, opt, bstr0(val)) < 0)
return -1;
}