From df8ee18c0139f889bf7c697713a2205364845464 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Fri, 25 Jan 2008 06:55:57 +0000 Subject: Overhaul SLV2 API to return/take SLV2Value (instead of strings or primitives) wherever possible. Make 'index' a fundemental property of ingen ports. git-svn-id: http://svn.drobilla.net/lad/ingen@1113 a436a847-0d15-0410-975c-d299462d15a1 --- src/libs/client/NodeModel.cpp | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'src/libs/client/NodeModel.cpp') diff --git a/src/libs/client/NodeModel.cpp b/src/libs/client/NodeModel.cpp index b429d356..2f8af584 100644 --- a/src/libs/client/NodeModel.cpp +++ b/src/libs/client/NodeModel.cpp @@ -156,16 +156,16 @@ NodeModel::port_value_range(SharedPtr port, float& min, float& max) // Plugin value first if (_plugin && _plugin->type() == PluginModel::LV2) { Glib::Mutex::Lock(PluginModel::rdf_world()->mutex()); - - min = slv2_port_get_minimum_value( - _plugin->slv2_plugin(), - slv2_plugin_get_port_by_symbol(_plugin->slv2_plugin(), - port->path().name().c_str())); - - max = slv2_port_get_maximum_value( - _plugin->slv2_plugin(), - slv2_plugin_get_port_by_symbol(_plugin->slv2_plugin(), - port->path().name().c_str())); + + SLV2Value min_val, max_val; + slv2_port_get_range(_plugin->slv2_plugin(), + _plugin->slv2_port(port->index()), + NULL, &min_val, &max_val); + + if (min_val) + min = slv2_value_as_float(min_val); + if (max_val) + max = slv2_value_as_float(max_val); } #endif -- cgit v1.2.1