summaryrefslogtreecommitdiff
path: root/libs/ardour/ladspa_plugin.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2019-03-11 02:10:50 +0100
committerRobin Gareus <robin@gareus.org>2019-03-11 02:10:50 +0100
commit484e0d0fb2548396f3e29b93f2ac9ddfae5aaeed (patch)
tree4dd62115cff621ffd0a3676c09e8be0302882299 /libs/ardour/ladspa_plugin.cc
parent4964852f0bd12b7c5dc61f948a535ea7f5862ffc (diff)
Remove generic parameter-printer
This has been superseded by value_as_string() along with meta-data from parameter-descriptor, which is supported by all standards, except VST.
Diffstat (limited to 'libs/ardour/ladspa_plugin.cc')
-rw-r--r--libs/ardour/ladspa_plugin.cc12
1 files changed, 0 insertions, 12 deletions
diff --git a/libs/ardour/ladspa_plugin.cc b/libs/ardour/ladspa_plugin.cc
index 3782200415..30b0bad11d 100644
--- a/libs/ardour/ladspa_plugin.cc
+++ b/libs/ardour/ladspa_plugin.cc
@@ -615,18 +615,6 @@ LadspaPlugin::parameter_is_input (uint32_t param) const
return LADSPA_IS_PORT_INPUT(port_descriptor (param));
}
-void
-LadspaPlugin::print_parameter (uint32_t param, char *buf, uint32_t len) const
-{
- if (buf && len) {
- if (param < parameter_count()) {
- snprintf (buf, len, "%.3f", get_parameter (param));
- } else {
- strcat (buf, "0");
- }
- }
-}
-
boost::shared_ptr<ScalePoints>
LadspaPlugin::get_scale_points(uint32_t port_index) const
{