filter-chain: ladspa properties are different from flags

Don't use the ladspa properties as the plugin flags, they don't
match.
This commit is contained in:
Wim Taymans 2022-06-21 12:53:11 +02:00
parent 05064bd558
commit eb26c2a95e

View file

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