From a688b70a248f70e3b46f19b6a2ea5793e28419e8 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Tue, 27 Mar 2012 00:18:39 +0000 Subject: Implement end_run hook of worker interface. git-svn-id: http://svn.drobilla.net/lad/trunk/jalv@4110 a436a847-0d15-0410-975c-d299462d15a1 --- src/jalv.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/jalv.c') 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 */ -- cgit v1.2.1