summaryrefslogtreecommitdiffstats
path: root/src/libs/engine/MidiControlNode.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2007-07-04 02:37:09 +0000
committerDavid Robillard <d@drobilla.net>2007-07-04 02:37:09 +0000
commitbdce4a436529b55cfd57e669e42541c32f7037fc (patch)
tree7ba14a9a17fb81885c56dc16a3f730c973d83439 /src/libs/engine/MidiControlNode.cpp
parent7c7e747f79d5073890ce37b761c3945ae97b8f18 (diff)
downloadingen-bdce4a436529b55cfd57e669e42541c32f7037fc.tar.gz
ingen-bdce4a436529b55cfd57e669e42541c32f7037fc.tar.bz2
ingen-bdce4a436529b55cfd57e669e42541c32f7037fc.zip
Remove MIDI event debug messages (from MIDI control node).
Properly maintain View->Patch Controls sensitivity state (by monitoring NodeModel signals). git-svn-id: http://svn.drobilla.net/lad/ingen@569 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/libs/engine/MidiControlNode.cpp')
-rw-r--r--src/libs/engine/MidiControlNode.cpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/libs/engine/MidiControlNode.cpp b/src/libs/engine/MidiControlNode.cpp
index cca43549..6b83e335 100644
--- a/src/libs/engine/MidiControlNode.cpp
+++ b/src/libs/engine/MidiControlNode.cpp
@@ -76,13 +76,6 @@ MidiControlNode::process(SampleCount nframes, FrameTime start, FrameTime end)
while (midi_in->get_event(&timestamp, &size, &buffer) < nframes) {
- printf("EVENT: ");
- for (size_t i=0; i < size; ++i)
- printf("%X ", (int)buffer[i]);
- printf("\n");
-
- //const FrameTime time = start + (FrameTime)timestamp;
-
if (size >= 3 && (buffer[0] & 0xF0) == MIDI_CMD_CONTROL)
control(buffer[1], buffer[2], (SampleCount)timestamp);