summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libs/ardour/lua_api.cc5
1 files changed, 1 insertions, 4 deletions
diff --git a/libs/ardour/lua_api.cc b/libs/ardour/lua_api.cc
index 2f6c995851..a96263b482 100644
--- a/libs/ardour/lua_api.cc
+++ b/libs/ardour/lua_api.cc
@@ -615,10 +615,7 @@ LuaAPI::Vamp::analyze (boost::shared_ptr<ARDOUR::Readable> r, uint32_t channel,
features = _plugin->process (bufs, ::Vamp::RealTime::fromSeconds ((double) pos / _sample_rate));
if (cb.type () == LUA_TFUNCTION) {
- /* TODO existing "features" binding fails here
- * std::map<int, std::vector<_VampHost::Vamp::Plugin::Feature> >
- */
- // cb (features, pos); // XXX
+ cb (features, pos);
}
pos += to_read;