aboutsummaryrefslogtreecommitdiffstats
path: root/src/jalv.c
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-03-27 00:18:39 +0000
committerDavid Robillard <d@drobilla.net>2012-03-27 00:18:39 +0000
commita688b70a248f70e3b46f19b6a2ea5793e28419e8 (patch)
tree5e9104c26a4498b936b01879bf081b21e5d8e39f /src/jalv.c
parent130be7a33f533ce163b69bbf1c277c2174d764b8 (diff)
downloadjalv-a688b70a248f70e3b46f19b6a2ea5793e28419e8.tar.gz
jalv-a688b70a248f70e3b46f19b6a2ea5793e28419e8.tar.bz2
jalv-a688b70a248f70e3b46f19b6a2ea5793e28419e8.zip
Implement end_run hook of worker interface.
git-svn-id: http://svn.drobilla.net/lad/trunk/jalv@4110 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/jalv.c')
-rw-r--r--src/jalv.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/jalv.c b/src/jalv.c
index 9ae23e4..3b93efe 100644
--- a/src/jalv.c
+++ b/src/jalv.c
@@ -443,6 +443,10 @@ jack_process_cb(jack_nframes_t nframes, void* data)
read_space -= sizeof(size) + size;
}
+
+ if (host->worker.iface->end_run) {
+ host->worker.iface->end_run(host->instance->lv2_handle);
+ }
}
/* Check if it's time to send updates to the UI */