filter-chain: add biquads to filter-chain

Add some biquad filters to the builtin filters.
Add an example 6 band equalizer sink filter chain.
This commit is contained in:
Wim Taymans 2021-05-10 18:09:55 +02:00
parent 8911e22793
commit bfbd6d74ef
7 changed files with 798 additions and 2 deletions

View file

@ -534,7 +534,7 @@ int pipewire__module_init(struct pw_impl_module *module, const char *args)
copy_props(impl, props, PW_KEY_NODE_VIRTUAL);
copy_props(impl, props, PW_KEY_NODE_LATENCY);
if ((str = pw_properties_get(props, "aec,method")) == NULL)
if ((str = pw_properties_get(props, "aec.method")) == NULL)
str = "null";
if (strcmp(str, "webrtc") == 0)
impl->aec_info = echo_cancel_webrtc;