aboutsummaryrefslogtreecommitdiffstats
path: root/lv2/lv2plug.in/ns/lv2core/lv2core.ttl
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-04-14 03:00:42 +0000
committerDavid Robillard <d@drobilla.net>2012-04-14 03:00:42 +0000
commit20303bec6d9f1d0e1d8cd3dc240bbe545d9ffd74 (patch)
tree8dab43052834410a21018ed9a289406b9b3313a6 /lv2/lv2plug.in/ns/lv2core/lv2core.ttl
parent12db1c1fe016e77065398fe497f31b9cf7a7dd4b (diff)
downloadlv2-20303bec6d9f1d0e1d8cd3dc240bbe545d9ffd74.tar.xz
Move CVPort to core.
Diffstat (limited to 'lv2/lv2plug.in/ns/lv2core/lv2core.ttl')
-rw-r--r--lv2/lv2plug.in/ns/lv2core/lv2core.ttl17
1 files changed, 17 insertions, 0 deletions
diff --git a/lv2/lv2plug.in/ns/lv2core/lv2core.ttl b/lv2/lv2plug.in/ns/lv2core/lv2core.ttl
index 3429c41..cc3b9e9 100644
--- a/lv2/lv2plug.in/ns/lv2core/lv2core.ttl
+++ b/lv2/lv2plug.in/ns/lv2core/lv2core.ttl
@@ -263,6 +263,23 @@ lv2:AudioPort
with elements of C type <code>float</code>.</p>
""" .
+lv2:CVPort
+ a rdfs:Class ,
+ owl:Class ;
+ rdfs:subClassOf lv2:Port ;
+ rdfs:label "CV Port" ;
+ lv2:documentation """
+<p>Ports of this type have the same buffer format as an lv2:AudioPort, except
+the buffer represents audio-rate control data rather than audio. Like an
+lv2:ControlPort, a CVPort SHOULD have properties describing its value
+(e.g. lv2:minimum, lv2:maximum, and lv2:default), and may be presented to the
+user as a control.</p>
+
+<p>It is generally safe to connect an audio output to a CV input, but not vice
+versa. Hosts SHOULD take care to prevent data from a CVPort port from being
+used as audio.</p>
+""" .
+
lv2:port
a rdf:Property ,
owl:ObjectProperty ;