diff options
-rw-r--r-- | NEWS | 1 | ||||
-rw-r--r-- | utils/lv2apply.c | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -1,6 +1,7 @@ lilv (0.24.3) unstable; * Don't attempt to load remote or non-Turtle files + * lv2apply: Use default values when they are not nan * lv2bench: Improve support for plugins with sequence ports * lv2bench: Support running a single plugin given on the command line * Gracefully handle plugins with missing binary URIs diff --git a/utils/lv2apply.c b/utils/lv2apply.c index 7dfbb2e..c664d05 100644 --- a/utils/lv2apply.c +++ b/utils/lv2apply.c @@ -157,7 +157,7 @@ create_ports(LV2Apply* self) port->lilv_port = lport; port->index = i; - port->value = isnan(values[i]) ? values[i] : 0.0f; + port->value = isnan(values[i]) ? 0.0f : values[i]; port->optional = lilv_port_has_property( self->plugin, lport, lv2_connectionOptional); |