aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2014-05-04 08:17:57 +0000
committerDavid Robillard <d@drobilla.net>2014-05-04 08:17:57 +0000
commitea74eb527d8cb7af2545f960f34e7d3517bd37fa (patch)
tree16ce368840d5ac242616677d7b2874c6844d9714 /src
parent4e70264247f9314f24a2b32189766c96596bd451 (diff)
downloadjalv-ea74eb527d8cb7af2545f960f34e7d3517bd37fa.tar.gz
jalv-ea74eb527d8cb7af2545f960f34e7d3517bd37fa.tar.bz2
jalv-ea74eb527d8cb7af2545f960f34e7d3517bd37fa.zip
'Support' lv2:isLive.
git-svn-id: http://svn.drobilla.net/lad/trunk/jalv@5394 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src')
-rw-r--r--src/jalv.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/jalv.c b/src/jalv.c
index 9fd7288..7ee1073 100644
--- a/src/jalv.c
+++ b/src/jalv.c
@@ -173,6 +173,9 @@ const LV2_Feature* features[13] = {
static bool
feature_is_supported(const char* uri)
{
+ if (!strcmp(uri, "http://lv2plug.in/ns/lv2core#isLive")) {
+ return true;
+ }
for (const LV2_Feature*const* f = features; *f; ++f) {
if (!strcmp(uri, (*f)->URI)) {
return true;