aboutsummaryrefslogtreecommitdiffstats
path: root/lv2/lv2plug.in/ns/lv2core/lv2core.ttl
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2013-01-10 06:11:23 +0000
committerDavid Robillard <d@drobilla.net>2013-01-10 06:11:23 +0000
commit413f33c3bbe27c6835592d892be8628ecfa09b24 (patch)
tree6deacface5c4994bc84f9deb748007dbe6db5d53 /lv2/lv2plug.in/ns/lv2core/lv2core.ttl
parentc0e26ec1913951a333e20ce32b2ea4f6209398b2 (diff)
downloadlv2-413f33c3bbe27c6835592d892be8628ecfa09b24.tar.xz
Add lv2:control for designating primary event-based control ports.
Set range of lv2:designation to lv2:Designation. Make lv2:Parameter rdfs:subClassOf rdf:Property.
Diffstat (limited to 'lv2/lv2plug.in/ns/lv2core/lv2core.ttl')
-rw-r--r--lv2/lv2plug.in/ns/lv2core/lv2core.ttl16
1 files changed, 14 insertions, 2 deletions
diff --git a/lv2/lv2plug.in/ns/lv2core/lv2core.ttl b/lv2/lv2plug.in/ns/lv2core/lv2core.ttl
index cefd146..c339343 100644
--- a/lv2/lv2plug.in/ns/lv2core/lv2core.ttl
+++ b/lv2/lv2plug.in/ns/lv2core/lv2core.ttl
@@ -509,13 +509,15 @@ lv2:Channel
rdfs:subClassOf lv2:Designation ;
rdfs:label "Channel" ;
lv2:documentation """
-<p>A specific channel of audio, e.g. <q>left</q> or <q>right</q>.</p>
+<p>A specific channel, e.g. <q>left</q> or <q>right</q>. A channel may be
+audio, or another type such as a MIDI control stream.</p>
""" .
lv2:Parameter
a rdfs:Class ,
owl:Class ;
- rdfs:subClassOf lv2:Designation ;
+ rdfs:subClassOf lv2:Designation ,
+ rdf:Property ;
rdfs:label "Parameter" ;
lv2:documentation """
<p>A parameter, i.e. a recognized property. A parameter is a designation for a
@@ -532,6 +534,7 @@ lv2:designation
a rdf:Property ,
owl:ObjectProperty ,
owl:FunctionalProperty ;
+ rdfs:range lv2:Designation ;
rdfs:label "designation" ;
lv2:documentation """
<p>Indicates a channel or parameter designation.</p>
@@ -567,6 +570,15 @@ wall-clock time and the passage of time in the data being processed (e.g. audio
frames).</p>
""" .
+lv2:control
+ a lv2:Channel ;
+ rdfs:label "control" ;
+ lv2:documentation """
+<p>The primary control channel. This should be used as the lv2:designation of
+ports that are used to send commands and receive responses. Typically this
+will be an event port that supports some protocol, e.g. MIDI or LV2 Atoms.</p>
+""" .
+
lv2:Point
a rdfs:Class ,
owl:Class ;