mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2026-07-04 00:06:43 -04:00
filter-graph: avoid warnings for unknown keys
Don't warn for the keys that were parsed previously.
This commit is contained in:
parent
541d627482
commit
10b08df3f5
1 changed files with 4 additions and 0 deletions
|
|
@ -1103,6 +1103,10 @@ static int convolver_read_impulse(struct plugin *pl, struct spa_json *obj,
|
||||||
goto error;
|
goto error;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
else if (spa_streq(key, "blocksize") ||
|
||||||
|
spa_streq(key, "tailsize") || spa_streq(key, "latency")) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
else {
|
else {
|
||||||
spa_log_warn(pl->log, "convolver: ignoring config key: '%s'", key);
|
spa_log_warn(pl->log, "convolver: ignoring config key: '%s'", key);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue