From b7c5e24f4a10558942cde30c3cc4eb995846df3d Mon Sep 17 00:00:00 2001 From: David Robillard Date: Wed, 4 Jul 2007 01:29:33 +0000 Subject: Allow setting control values out of range. Move to glade-3 (files hopefully compatible?). git-svn-id: http://svn.drobilla.net/lad/ingen@567 a436a847-0d15-0410-975c-d299462d15a1 --- src/libs/engine/MidiControlNode.cpp | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/libs/engine/MidiControlNode.cpp') diff --git a/src/libs/engine/MidiControlNode.cpp b/src/libs/engine/MidiControlNode.cpp index a90416e2..05454bdb 100644 --- a/src/libs/engine/MidiControlNode.cpp +++ b/src/libs/engine/MidiControlNode.cpp @@ -75,6 +75,11 @@ MidiControlNode::process(SampleCount nframes, FrameTime start, FrameTime end) assert(midi_in->this_nframes() == nframes); while (midi_in->get_event(×tamp, &size, &buffer) < nframes) { + + cerr << "EVENT: "; + for (size_t i=0; i < size; ++i) + cerr << buffer[i] << " "; + cerr << endl; //const FrameTime time = start + (FrameTime)timestamp; -- cgit v1.2.1