aboutsummaryrefslogtreecommitdiffstats
path: root/core.lv2/lv2.ttl
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-03-16 23:21:15 +0000
committerDavid Robillard <d@drobilla.net>2011-03-16 23:21:15 +0000
commitadc2105bfc53254c4c6d7fe1bee88b74d48738d3 (patch)
tree337698e52af5860f0b4782b1401e226fed3c4161 /core.lv2/lv2.ttl
parent6c180e2fbf4e4406d8ceceea0aab6dd7de7bc4b1 (diff)
downloadlv2-adc2105bfc53254c4c6d7fe1bee88b74d48738d3.tar.xz
SampleCount => sample_count.
Diffstat (limited to 'core.lv2/lv2.ttl')
-rw-r--r--core.lv2/lv2.ttl7
1 files changed, 3 insertions, 4 deletions
diff --git a/core.lv2/lv2.ttl b/core.lv2/lv2.ttl
index 5cf4276..3089ff5 100644
--- a/core.lv2/lv2.ttl
+++ b/core.lv2/lv2.ttl
@@ -298,7 +298,6 @@ lv2:ControlPort a rdfs:Class ;
rdfs:subClassOf lv2:Port ;
rdfs:label "Control port" ;
lv2:documentation """
-
<p>Ports of this type will be connected to a pointer to a single value of C
type <code>float</code>.</p>
@@ -308,8 +307,8 @@ lv2:AudioPort a rdfs:Class ;
rdfs:subClassOf lv2:Port ;
rdfs:label "Audio port" ;
lv2:documentation """
-<p>Ports of this type will be connected to an array of length SampleCount with
-elements of C type <code>float</code>.</p>
+<p>Ports of this type will be connected to an array of length sample_count
+with elements of C type <code>float</code>.</p>
""" .
@@ -671,7 +670,7 @@ MUST satisfy all of the following:</p>
class functions.</li>
<li>The plugin will take an amount of time to execute a run() call
- approximately of form <code>A + B * SampleCount</code> where <code>A</code>
+ approximately of form <code>A + B * sample_count</code> where <code>A</code>
and <code>B</code> depend on the machine and host in use. This amount of
time MUST NOT depend on input signals or plugin state.</li>
</ol>