diff options
author | David Robillard <d@drobilla.net> | 2012-03-27 00:18:39 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2012-03-27 00:18:39 +0000 |
commit | a688b70a248f70e3b46f19b6a2ea5793e28419e8 (patch) | |
tree | 5e9104c26a4498b936b01879bf081b21e5d8e39f | |
parent | 130be7a33f533ce163b69bbf1c277c2174d764b8 (diff) | |
download | jalv-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
-rw-r--r-- | src/jalv.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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 */ |