summaryrefslogtreecommitdiffstats
path: root/src/libs/engine/InputPort.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/libs/engine/InputPort.cpp')
-rw-r--r--src/libs/engine/InputPort.cpp13
1 files changed, 8 insertions, 5 deletions
diff --git a/src/libs/engine/InputPort.cpp b/src/libs/engine/InputPort.cpp
index 6e216384..7a90bc21 100644
--- a/src/libs/engine/InputPort.cpp
+++ b/src/libs/engine/InputPort.cpp
@@ -20,6 +20,7 @@
#include <cstdlib>
#include <cassert>
#include "AudioBuffer.hpp"
+#include "EventBuffer.hpp"
#include "ConnectionImpl.hpp"
#include "OutputPort.hpp"
#include "NodeImpl.hpp"
@@ -184,17 +185,19 @@ InputPort::pre_process(ProcessContext& context)
/*cerr << path() << " poly = " << _poly << ", mixdown: " << do_mixdown
<< ", fixed buffers: " << _fixed_buffers << ", joined: " << _buffers->at(0)->is_joined()
- << " to " << _buffers->at(0)->joined_buffer() << endl;
+ << " to " << _buffers->at(0)->joined_buffer() << endl;*/
- if (type() == DataType::MIDI)
+ /*if (type() == DataType::EVENT)
for (uint32_t i=0; i < _poly; ++i)
- cerr << path() << " (" << buffer(i) << ") # events: " << ((MidiBuffer*)buffer(i))->event_count() << ", joined: " << _buffers->at(i)->is_joined() << endl;*/
+ cerr << path() << " (" << buffer(i) << ") # events: "
+ << ((EventBuffer*)buffer(i))->event_count()
+ << ", joined: " << _buffers->at(i)->is_joined() << endl;*/
if (!do_mixdown) {
-/*#ifndef NDEBUG
+ /*#ifndef NDEBUG
for (uint32_t i=0; i < _poly; ++i)
assert(buffer(i) == (*_connections.begin())->buffer(i));
-#endif*/
+ #endif*/
return;
}