aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2020-10-11 12:16:31 +0200
committerDavid Robillard <d@drobilla.net>2020-10-11 12:16:31 +0200
commit3e5f124c87d96f3cdc9d630ca2233f69eab33345 (patch)
tree172fee20472e67c0c014d2f362f30f1632194f80 /src
parente52653bec17f691468fff012957804f1f2085049 (diff)
downloadjalv-3e5f124c87d96f3cdc9d630ca2233f69eab33345.tar.gz
jalv-3e5f124c87d96f3cdc9d630ca2233f69eab33345.tar.bz2
jalv-3e5f124c87d96f3cdc9d630ca2233f69eab33345.zip
Explicitly support lv2:inPlaceBroken
I believe this is true for both Jack and PortAudio, though neither document it as a guarantee.
Diffstat (limited to 'src')
-rw-r--r--src/jalv.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/jalv.c b/src/jalv.c
index 7905b20..08d9003 100644
--- a/src/jalv.c
+++ b/src/jalv.c
@@ -128,7 +128,8 @@ static const LV2_Feature static_features[] = {
static bool
feature_is_supported(Jalv* jalv, const char* uri)
{
- if (!strcmp(uri, "http://lv2plug.in/ns/lv2core#isLive")) {
+ if (!strcmp(uri, "http://lv2plug.in/ns/lv2core#isLive") ||
+ !strcmp(uri, "http://lv2plug.in/ns/lv2core#inPlaceBroken")) {
return true;
}