From b9ee86cf97f9ba8f6139c83f57b8d5848e7f90e4 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Thu, 12 Apr 2012 02:40:42 +0000 Subject: Update for latest atom extension. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4172 a436a847-0d15-0410-975c-d299462d15a1 --- src/server/ConnectionImpl.cpp | 3 +-- src/server/ControlBindings.cpp | 3 +-- src/server/JackDriver.cpp | 5 ++--- src/server/ingen_lv2.cpp | 3 +-- src/server/internals/Controller.cpp | 5 ++--- src/server/internals/Note.cpp | 8 +++----- src/server/internals/Trigger.cpp | 5 ++--- 7 files changed, 12 insertions(+), 20 deletions(-) (limited to 'src/server') diff --git a/src/server/ConnectionImpl.cpp b/src/server/ConnectionImpl.cpp index 1350d16c..6c17618e 100644 --- a/src/server/ConnectionImpl.cpp +++ b/src/server/ConnectionImpl.cpp @@ -120,8 +120,7 @@ ConnectionImpl::queue(Context& context) } LV2_Atom_Sequence* seq = (LV2_Atom_Sequence*)src_buf->atom(); - LV2_SEQUENCE_FOREACH(seq, i) { - LV2_Atom_Event* const ev = lv2_sequence_iter_get(i); + LV2_ATOM_SEQUENCE_FOREACH(seq, ev) { _queue->write(sizeof(LV2_Atom) + ev->body.size, &ev->body); context.engine().message_context()->run( _dst_port->parent_node(), context.start() + ev->time.frames); diff --git a/src/server/ControlBindings.cpp b/src/server/ControlBindings.cpp index 96cc669c..0cfd5042 100644 --- a/src/server/ControlBindings.cpp +++ b/src/server/ControlBindings.cpp @@ -355,8 +355,7 @@ ControlBindings::pre_process(ProcessContext& context, Buffer* buffer) } LV2_Atom_Sequence* seq = (LV2_Atom_Sequence*)buffer->atom(); - LV2_SEQUENCE_FOREACH(seq, i) { - LV2_Atom_Event* const ev = lv2_sequence_iter_get(i); + LV2_ATOM_SEQUENCE_FOREACH(seq, ev) { if (ev->body.type == uris.midi_MidiEvent) { const uint8_t* buf = (const uint8_t*)LV2_ATOM_BODY(&ev->body); const Key key = midi_event_key(ev->body.size, buf, value); diff --git a/src/server/JackDriver.cpp b/src/server/JackDriver.cpp index 102bcd17..68a2d683 100644 --- a/src/server/JackDriver.cpp +++ b/src/server/JackDriver.cpp @@ -166,9 +166,8 @@ JackPort::post_process(ProcessContext& context) jack_midi_clear_buffer(jack_buf); LV2_Atom_Sequence* seq = (LV2_Atom_Sequence*)patch_buf->atom(); - LV2_SEQUENCE_FOREACH(seq, i) { - LV2_Atom_Event* const ev = lv2_sequence_iter_get(i); - const uint8_t* buf = (const uint8_t*)LV2_ATOM_BODY(&ev->body); + LV2_ATOM_SEQUENCE_FOREACH(seq, ev) { + const uint8_t* buf = (const uint8_t*)LV2_ATOM_BODY(&ev->body); if (ev->body.type == _patch_port->bufs().uris().midi_MidiEvent) { jack_midi_event_write(jack_buf, ev->time.frames, buf, ev->body.size); } diff --git a/src/server/ingen_lv2.cpp b/src/server/ingen_lv2.cpp index 3129ee36..70a1482f 100644 --- a/src/server/ingen_lv2.cpp +++ b/src/server/ingen_lv2.cpp @@ -105,8 +105,7 @@ public: patch_buf->copy((Sample*)_buffer, 0, context.nframes() - 1); } else { LV2_Atom_Sequence* seq = (LV2_Atom_Sequence*)_buffer; - LV2_SEQUENCE_FOREACH(seq, i) { - LV2_Atom_Event* ev = lv2_sequence_iter_get(i); + LV2_ATOM_SEQUENCE_FOREACH(seq, ev) { // FIXME: Not RT safe, need to send these through a ring handle_message(_driver, &ev->body); } diff --git a/src/server/internals/Controller.cpp b/src/server/internals/Controller.cpp index 607d4d1e..6abdaf64 100644 --- a/src/server/internals/Controller.cpp +++ b/src/server/internals/Controller.cpp @@ -95,9 +95,8 @@ ControllerNode::process(ProcessContext& context) Buffer* const midi_in = _midi_in_port->buffer(0).get(); LV2_Atom_Sequence* seq = (LV2_Atom_Sequence*)midi_in->atom(); - LV2_SEQUENCE_FOREACH(seq, i) { - LV2_Atom_Event* const ev = lv2_sequence_iter_get(i); - const uint8_t* buf = (const uint8_t*)LV2_ATOM_BODY(&ev->body); + LV2_ATOM_SEQUENCE_FOREACH(seq, ev) { + const uint8_t* buf = (const uint8_t*)LV2_ATOM_BODY(&ev->body); if (ev->body.type == _midi_in_port->bufs().uris().midi_MidiEvent && ev->body.size >= 3 && (buf[0] & 0xF0) == MIDI_CMD_CONTROL) { control(context, buf[1], buf[2], ev->time.frames + context.start()); diff --git a/src/server/internals/Note.cpp b/src/server/internals/Note.cpp index 0608972f..c770177f 100644 --- a/src/server/internals/Note.cpp +++ b/src/server/internals/Note.cpp @@ -138,11 +138,9 @@ NoteNode::process(ProcessContext& context) Buffer* const midi_in = _midi_in_port->buffer(0).get(); LV2_Atom_Sequence* seq = (LV2_Atom_Sequence*)midi_in->atom(); - LV2_SEQUENCE_FOREACH(seq, i) { - LV2_Atom_Event* const ev = lv2_sequence_iter_get(i); - const uint8_t* buf = (const uint8_t*)LV2_ATOM_BODY(&ev->body); - const FrameTime time = context.start() + (FrameTime)ev->time.frames; - + LV2_ATOM_SEQUENCE_FOREACH(seq, ev) { + const uint8_t* buf = (const uint8_t*)LV2_ATOM_BODY(&ev->body); + const FrameTime time = context.start() + (FrameTime)ev->time.frames; if (ev->body.type == _midi_in_port->bufs().uris().midi_MidiEvent && ev->body.size >= 3) { switch (buf[0] & 0xF0) { diff --git a/src/server/internals/Trigger.cpp b/src/server/internals/Trigger.cpp index 09766f15..15921ae9 100644 --- a/src/server/internals/Trigger.cpp +++ b/src/server/internals/Trigger.cpp @@ -97,9 +97,8 @@ TriggerNode::process(ProcessContext& context) Buffer* const midi_in = _midi_in_port->buffer(0).get(); LV2_Atom_Sequence* seq = (LV2_Atom_Sequence*)midi_in->atom(); - LV2_SEQUENCE_FOREACH(seq, i) { - LV2_Atom_Event* const ev = lv2_sequence_iter_get(i); - const uint8_t* buf = (const uint8_t*)LV2_ATOM_BODY(&ev->body); + LV2_ATOM_SEQUENCE_FOREACH(seq, ev) { + const uint8_t* buf = (const uint8_t*)LV2_ATOM_BODY(&ev->body); if (ev->body.type == _midi_in_port->bufs().uris().midi_MidiEvent && ev->body.size >= 3) { const FrameTime time = context.start() + ev->time.frames; -- cgit v1.2.1