summaryrefslogtreecommitdiffstats
path: root/src/server/LV2ResizeFeature.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/server/LV2ResizeFeature.hpp')
-rw-r--r--src/server/LV2ResizeFeature.hpp7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/server/LV2ResizeFeature.hpp b/src/server/LV2ResizeFeature.hpp
index 47a65dcc..3325c904 100644
--- a/src/server/LV2ResizeFeature.hpp
+++ b/src/server/LV2ResizeFeature.hpp
@@ -36,15 +36,12 @@ struct ResizeFeature : public Ingen::Shared::LV2Features::Feature {
size_t size) {
NodeImpl* node = (NodeImpl*)data;
PortImpl* port = node->port_impl(index);
- switch (port->context()) {
- case Context::MESSAGE:
+ if (node->context() == Context::MESSAGE) {
port->buffer(0)->resize(size);
port->connect_buffers();
return true;
- default:
- // TODO: Implement realtime allocator and support this in audio thread
- return false;
}
+ return false;
}
static void delete_feature(LV2_Feature* feature) {