summaryrefslogtreecommitdiffstats
path: root/src/server/InputPort.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2014-08-28 18:14:02 +0000
committerDavid Robillard <d@drobilla.net>2014-08-28 18:14:02 +0000
commit704605973d7775fb3c80136490e316921947900f (patch)
tree9f0d5dd5136063ed428d87bf5ccce6567cafd9c1 /src/server/InputPort.cpp
parentb5195d8cf6a8ed5c446284f904e5704748915450 (diff)
downloadingen-704605973d7775fb3c80136490e316921947900f.tar.gz
ingen-704605973d7775fb3c80136490e316921947900f.tar.bz2
ingen-704605973d7775fb3c80136490e316921947900f.zip
Clean up code documentation.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5454 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/server/InputPort.cpp')
-rw-r--r--src/server/InputPort.cpp18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/server/InputPort.cpp b/src/server/InputPort.cpp
index e8bb05cb..e0406f05 100644
--- a/src/server/InputPort.cpp
+++ b/src/server/InputPort.cpp
@@ -67,9 +67,6 @@ InputPort::apply_poly(ProcessContext& context, Raul::Maid& maid, uint32_t poly)
return true;
}
-/** Set the buffers of `voices` to the buffers to be used for this port.
- * @return true iff buffers are locally owned by the port
- */
bool
InputPort::get_buffers(BufferFactory& bufs,
Raul::Array<Voice>* voices,
@@ -106,25 +103,12 @@ InputPort::get_buffers(BufferFactory& bufs,
return true;
}
-/** Add an arc. Realtime safe.
- *
- * The buffer of this port will be set directly to the arc's buffer
- * if there is only one arc, since no copying/mixing needs to take place.
- *
- * Note that setup_buffers must be called after this before the change
- * will audibly take effect.
- */
void
InputPort::add_arc(ProcessContext& context, ArcImpl* c)
{
_arcs.push_front(*c);
}
-/** Remove a arc. Realtime safe.
- *
- * Note that setup_buffers must be called after this before the change
- * will audibly take effect.
- */
ArcImpl*
InputPort::remove_arc(ProcessContext& context, const OutputPort* tail)
{
@@ -173,8 +157,6 @@ get_sources(const Context& context,
}
}
-/** Prepare buffer for access, mixing if necessary. Realtime safe.
- */
void
InputPort::pre_process(Context& context)
{