summaryrefslogtreecommitdiff
path: root/libs/ardour/luabindings.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2017-05-14 00:16:02 +0200
committerRobin Gareus <robin@gareus.org>2017-05-14 00:17:11 +0200
commit3d26a29e8a2ed1286091fda2dd480bf5bbebe365 (patch)
tree2f5157292d2c39fa668ff5d2acafab477b7cb101 /libs/ardour/luabindings.cc
parent3e2004aa73b4807bd470b3a816b5343a5127d7a7 (diff)
Sanitize "well-known" ctrl API
Diffstat (limited to 'libs/ardour/luabindings.cc')
-rw-r--r--libs/ardour/luabindings.cc6
1 files changed, 4 insertions, 2 deletions
diff --git a/libs/ardour/luabindings.cc b/libs/ardour/luabindings.cc
index bd7f8ada13..cfc5bb82d8 100644
--- a/libs/ardour/luabindings.cc
+++ b/libs/ardour/luabindings.cc
@@ -976,13 +976,15 @@ LuaBindings::common (lua_State* L)
.addFunction ("comp_mode_name", &Stripable::comp_mode_name)
.addFunction ("comp_speed_name", &Stripable::comp_speed_name)
.addFunction ("eq_band_cnt ", &Stripable::eq_band_cnt)
+ .addFunction ("eq_enable_control ", &Stripable::eq_enable_controllable )
.addFunction ("eq_band_name", &Stripable::eq_band_name)
.addFunction ("eq_gain_control", &Stripable::eq_gain_controllable)
.addFunction ("eq_freq_control ", &Stripable::eq_freq_controllable )
.addFunction ("eq_q_control ", &Stripable::eq_q_controllable )
.addFunction ("eq_shape_control ", &Stripable::eq_shape_controllable )
- .addFunction ("eq_enable_control ", &Stripable::eq_enable_controllable )
- .addFunction ("eq_hpf_control ", &Stripable::eq_hpf_controllable )
+ .addFunction ("filter_freq_controllable ", &Stripable::filter_freq_controllable )
+ .addFunction ("filter_slope_controllable ", &Stripable::filter_slope_controllable )
+ .addFunction ("filter_enable_controllable ", &Stripable::filter_enable_controllable )
.addFunction ("set_presentation_order", &Stripable::set_presentation_order)
.addFunction ("presentation_info_ptr", &Stripable::presentation_info_ptr)