summaryrefslogtreecommitdiffstats
path: root/src/server/LV2Node.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-03-23 13:56:39 +0000
committerDavid Robillard <d@drobilla.net>2012-03-23 13:56:39 +0000
commit94f372e95ecd718b7d2ed4f2aa1f0437e7968efb (patch)
tree98177dbce2673191181dd12b031ebe555866e846 /src/server/LV2Node.hpp
parentefd0ddb79fbf4b792a9b865afb24a05441ed2bb2 (diff)
downloadingen-94f372e95ecd718b7d2ed4f2aa1f0437e7968efb.tar.gz
ingen-94f372e95ecd718b7d2ed4f2aa1f0437e7968efb.tar.bz2
ingen-94f372e95ecd718b7d2ed4f2aa1f0437e7968efb.zip
Fix compilation with latest LV2.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4102 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/server/LV2Node.hpp')
-rw-r--r--src/server/LV2Node.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/server/LV2Node.hpp b/src/server/LV2Node.hpp
index d668072f..3c593e4c 100644
--- a/src/server/LV2Node.hpp
+++ b/src/server/LV2Node.hpp
@@ -23,7 +23,7 @@
#include <boost/intrusive_ptr.hpp>
#include "lilv/lilv.h"
-#include "lv2/lv2plug.in/ns/ext/contexts/contexts.h"
+#include "lv2/lv2plug.in/ns/ext/worker/worker.h"
#include "NodeImpl.hpp"
#include "ingen/shared/LV2Features.hpp"
@@ -57,7 +57,7 @@ public:
void activate(BufferFactory& bufs);
void deactivate();
- void message_run(MessageContext& context);
+ void work(MessageContext& context, uint32_t size, const void* data);
void process(ProcessContext& context);
@@ -74,7 +74,7 @@ protected:
LV2Plugin* _lv2_plugin;
Instances* _instances;
Instances* _prepared_instances;
- LV2_Contexts_MessageContext* _message_funcs;
+ LV2_Worker_Interface* _worker_iface;
SharedPtr<Shared::LV2Features::FeatureArray> _features;
};