mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-06 13:30:01 -05:00
filter-chain: disable lilv code when not available
This commit is contained in:
parent
597b332666
commit
bcd867f8eb
2 changed files with 5 additions and 0 deletions
|
|
@ -754,9 +754,11 @@ static struct plugin *plugin_load(struct impl *impl, const char *type, const cha
|
|||
else if (spa_streq(type, "ladspa")) {
|
||||
pl = load_ladspa_plugin(path, NULL);
|
||||
}
|
||||
#ifdef HAVE_LILV
|
||||
else if (spa_streq(type, "lv2")) {
|
||||
pl = load_lv2_plugin(path, NULL);
|
||||
}
|
||||
#endif
|
||||
if (pl == NULL)
|
||||
goto exit;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue