summaryrefslogtreecommitdiffstats
path: root/src/engine/LV2Node.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/engine/LV2Node.cpp')
-rw-r--r--src/engine/LV2Node.cpp11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/engine/LV2Node.cpp b/src/engine/LV2Node.cpp
index b6109d7f..67f19bf4 100644
--- a/src/engine/LV2Node.cpp
+++ b/src/engine/LV2Node.cpp
@@ -43,7 +43,6 @@ namespace Ingen {
using namespace Shared;
-
/** Partially construct a LV2Node.
*
* Object is not usable until instantiate() is called with success.
@@ -63,13 +62,11 @@ LV2Node::LV2Node(LV2Plugin* plugin,
assert(_lv2_plugin);
}
-
LV2Node::~LV2Node()
{
delete _instances;
}
-
bool
LV2Node::prepare_poly(BufferFactory& bufs, uint32_t poly)
{
@@ -114,7 +111,6 @@ LV2Node::prepare_poly(BufferFactory& bufs, uint32_t poly)
return true;
}
-
bool
LV2Node::apply_poly(Raul::Maid& maid, uint32_t poly)
{
@@ -131,7 +127,6 @@ LV2Node::apply_poly(Raul::Maid& maid, uint32_t poly)
return NodeImpl::apply_poly(maid, poly);
}
-
/** Instantiate self from LV2 plugin descriptor.
*
* Implemented as a seperate function (rather than in the constructor) to
@@ -357,7 +352,6 @@ LV2Node::instantiate(BufferFactory& bufs)
return ret;
}
-
void
LV2Node::activate(BufferFactory& bufs)
{
@@ -367,7 +361,6 @@ LV2Node::activate(BufferFactory& bufs)
slv2_instance_activate(instance(i));
}
-
void
LV2Node::deactivate()
{
@@ -377,7 +370,6 @@ LV2Node::deactivate()
slv2_instance_deactivate(instance(i));
}
-
void
LV2Node::message_run(MessageContext& context)
{
@@ -394,7 +386,6 @@ LV2Node::message_run(MessageContext& context)
(*_message_funcs->run)(instance(0)->lv2_handle, _valid_ports, _valid_ports);
}
-
void
LV2Node::process(ProcessContext& context)
{
@@ -406,7 +397,6 @@ LV2Node::process(ProcessContext& context)
NodeImpl::post_process(context);
}
-
void
LV2Node::set_port_buffer(uint32_t voice, uint32_t port_num,
IntrusivePtr<Buffer> buf, SampleCount offset)
@@ -416,6 +406,5 @@ LV2Node::set_port_buffer(uint32_t voice, uint32_t port_num,
buf ? buf->port_data(_ports->at(port_num)->buffer_type(), offset) : NULL);
}
-
} // namespace Ingen