summaryrefslogtreecommitdiffstats
path: root/src/engine/ConnectionImpl.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/engine/ConnectionImpl.cpp')
-rw-r--r--src/engine/ConnectionImpl.cpp7
1 files changed, 1 insertions, 6 deletions
diff --git a/src/engine/ConnectionImpl.cpp b/src/engine/ConnectionImpl.cpp
index f58a8723..13829548 100644
--- a/src/engine/ConnectionImpl.cpp
+++ b/src/engine/ConnectionImpl.cpp
@@ -58,7 +58,6 @@ ConnectionImpl::ConnectionImpl(BufferFactory& bufs, PortImpl* src_port, PortImpl
_queue = new Raul::RingBuffer(src_port->buffer_size() * 2);
}
-
void
ConnectionImpl::dump() const
{
@@ -68,7 +67,6 @@ ConnectionImpl::dump() const
<< "POLY: " << _src_port->poly() << " => " << _dst_port->poly() << endl;
}
-
void
ConnectionImpl::get_sources(Context& context, uint32_t voice,
IntrusivePtr<Buffer>* srcs, uint32_t max_num_srcs, uint32_t& num_srcs)
@@ -95,7 +93,6 @@ ConnectionImpl::get_sources(Context& context, uint32_t voice,
}
}
-
void
ConnectionImpl::queue(Context& context)
{
@@ -122,7 +119,6 @@ ConnectionImpl::queue(Context& context)
}
}
-
bool
ConnectionImpl::can_connect(const OutputPort* src, const InputPort* dst)
{
@@ -143,7 +139,7 @@ ConnectionImpl::can_connect(const OutputPort* src, const InputPort* dst)
// Control => atom:Float32 Value
|| (src->is_a(PortType::CONTROL) && dst->supports(uris.atom_Float32))
- // Audio => atom:Vector Value
+ // Audio => atom:Vector Value
|| (src->is_a(PortType::AUDIO) && dst->supports(uris.atom_Vector))
// atom:Float32 Value => Control
@@ -153,6 +149,5 @@ ConnectionImpl::can_connect(const OutputPort* src, const InputPort* dst)
|| (src->supports(uris.atom_Vector) && dst->is_a(PortType::AUDIO)));
}
-
} // namespace Ingen