From 3e5f124c87d96f3cdc9d630ca2233f69eab33345 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 11 Oct 2020 12:16:31 +0200 Subject: Explicitly support lv2:inPlaceBroken I believe this is true for both Jack and PortAudio, though neither document it as a guarantee. --- NEWS | 5 +++-- src/jalv.c | 3 ++- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/NEWS b/NEWS index d22aa6a..eec1c30 100644 --- a/NEWS +++ b/NEWS @@ -1,9 +1,10 @@ jalv (1.6.5) unstable; - * Support port events for ui:showInterface UIs * Add a command line argument to select a specific UI + * Explicitly support lv2:inPlaceBroken + * Support port events for ui:showInterface UIs - -- David Robillard Sun, 05 Apr 2020 11:14:53 +0000 + -- David Robillard Sun, 11 Oct 2020 10:16:00 +0000 jalv (1.6.4) stable; 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; } -- cgit v1.2.1