diff options
-rw-r--r-- | src/server/ingen_lv2.cpp | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/src/server/ingen_lv2.cpp b/src/server/ingen_lv2.cpp index dc274a32..fcada858 100644 --- a/src/server/ingen_lv2.cpp +++ b/src/server/ingen_lv2.cpp @@ -249,7 +249,19 @@ public: virtual void append_time_events(ProcessContext& context, Buffer& buffer) - {} + { + const URIs& uris = _engine.world()->uris(); + LV2_Atom_Sequence* seq = (LV2_Atom_Sequence*)_ports[0]->buffer(); + LV2_ATOM_SEQUENCE_FOREACH(seq, ev) { + if (ev->body.type == uris.atom_Blank && + ((LV2_Atom_Object*)&ev)->body.otype == uris.time_Position) { + buffer.append_event(ev->time.frames, + ev->body.size, + ev->body.type, + (const uint8_t*)(&ev->body + 1)); + } + } + } /** Called in run thread for events received at control input port. */ void enqueue_message(const LV2_Atom* atom) { |