filter-graph: avoid warnings for unknown keys

Don't warn for the keys that were parsed previously.
This commit is contained in:
Wim Taymans 2026-06-22 13:04:17 +02:00
parent 541d627482
commit 10b08df3f5

View file

@ -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);
}