summaryrefslogtreecommitdiffstats
path: root/src/engine/PatchImpl.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/engine/PatchImpl.cpp')
-rw-r--r--src/engine/PatchImpl.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/engine/PatchImpl.cpp b/src/engine/PatchImpl.cpp
index 2e02355f..6388f648 100644
--- a/src/engine/PatchImpl.cpp
+++ b/src/engine/PatchImpl.cpp
@@ -146,7 +146,7 @@ PatchImpl::process(ProcessContext& context)
/*if (_ports)
for (size_t i=0; i < _ports->size(); ++i)
- if (_ports->at(i)->is_input() && _ports->at(i)->type() == DataType::MIDI)
+ if (_ports->at(i)->is_input() && _ports->at(i)->type() == PortType::MIDI)
cerr << _ports->at(i)->path() << " "
<< _ports->at(i)->buffer(0) << " # events: "
<< ((MidiBuffer*)_ports->at(i)->buffer(0))->event_count() << endl;*/
@@ -342,14 +342,14 @@ PatchImpl::num_ports() const
/** Create a port. Not realtime safe.
*/
PortImpl*
-PatchImpl::create_port(BufferFactory& bufs, const string& name, DataType type, size_t buffer_size, bool is_output)
+PatchImpl::create_port(BufferFactory& bufs, const string& name, PortType type, size_t buffer_size, bool is_output)
{
- if (type == DataType::UNKNOWN) {
+ if (type == PortType::UNKNOWN) {
cerr << "[PatchImpl::create_port] Unknown port type " << type.uri() << endl;
return NULL;
}
- assert( !(type == DataType::UNKNOWN) );
+ assert( !(type == PortType::UNKNOWN) );
return new DuplexPort(bufs, this, name, num_ports(), _polyphony, type, Raul::Atom(), buffer_size, is_output);
}