From 6c180e2fbf4e4406d8ceceea0aab6dd7de7bc4b1 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Wed, 16 Mar 2011 23:20:37 +0000 Subject: Define ControlPort and AudioPort data types as C float instead of IEEE float (matches reality of the API). --- core.lv2/lv2.ttl | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/core.lv2/lv2.ttl b/core.lv2/lv2.ttl index ea020d1..5cf4276 100644 --- a/core.lv2/lv2.ttl +++ b/core.lv2/lv2.ttl @@ -297,17 +297,19 @@ be written to by the plugin during their run method. lv2:ControlPort a rdfs:Class ; rdfs:subClassOf lv2:Port ; rdfs:label "Control port" ; - rdfs:comment """ -Ports of this type will be connected to a pointer to a single value conforming -to the 32bit IEEE-754 floating point specification. + lv2:documentation """ + +

Ports of this type will be connected to a pointer to a single value of C +type float.

+ """ . lv2:AudioPort a rdfs:Class ; rdfs:subClassOf lv2:Port ; rdfs:label "Audio port" ; - rdfs:comment """ -Ports of this type will be connected to an array of length SampleCount -conforming to the 32bit IEEE-754 floating point specification. + lv2:documentation """ +

Ports of this type will be connected to an array of length SampleCount with +elements of C type float.

""" . -- cgit v1.2.1