From eb26c2a95ec45f316b1227f4c8ca528725ae8d0c Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Tue, 21 Jun 2022 12:53:11 +0200 Subject: [PATCH] filter-chain: ladspa properties are different from flags Don't use the ladspa properties as the plugin flags, they don't match. --- src/modules/module-filter-chain/ladspa_plugin.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/module-filter-chain/ladspa_plugin.c b/src/modules/module-filter-chain/ladspa_plugin.c index 76d80dc84..591002bea 100644 --- a/src/modules/module-filter-chain/ladspa_plugin.c +++ b/src/modules/module-filter-chain/ladspa_plugin.c @@ -167,7 +167,7 @@ static const struct fc_descriptor *ladspa_make_desc(struct fc_plugin *plugin, co desc->desc.free = ladspa_free; desc->desc.name = d->Label; - desc->desc.flags = d->Properties; + desc->desc.flags = 0; desc->desc.n_ports = d->PortCount; desc->desc.ports = calloc(desc->desc.n_ports, sizeof(struct fc_port));