From 10b08df3f54a399a9a760f18013ddf54e78c6dc0 Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Mon, 22 Jun 2026 13:04:17 +0200 Subject: [PATCH] filter-graph: avoid warnings for unknown keys Don't warn for the keys that were parsed previously. --- spa/plugins/filter-graph/plugin_builtin.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/spa/plugins/filter-graph/plugin_builtin.c b/spa/plugins/filter-graph/plugin_builtin.c index a08d2622e..1e451854e 100644 --- a/spa/plugins/filter-graph/plugin_builtin.c +++ b/spa/plugins/filter-graph/plugin_builtin.c @@ -1103,6 +1103,10 @@ static int convolver_read_impulse(struct plugin *pl, struct spa_json *obj, goto error; } } + else if (spa_streq(key, "blocksize") || + spa_streq(key, "tailsize") || spa_streq(key, "latency")) { + continue; + } else { spa_log_warn(pl->log, "convolver: ignoring config key: '%s'", key); }