From 846ef9420c4f2d8a071e9cf2506a9b0aa9f66fc3 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Wed, 16 Mar 2011 23:47:19 +0000 Subject: Linkify. --- core.lv2/lv2.ttl | 42 +++++++++++++++++++++++++----------------- 1 file changed, 25 insertions(+), 17 deletions(-) diff --git a/core.lv2/lv2.ttl b/core.lv2/lv2.ttl index 3089ff5..af502ec 100644 --- a/core.lv2/lv2.ttl +++ b/core.lv2/lv2.ttl @@ -133,11 +133,18 @@ the functions provided by a plugin are divided into classes:

Discovery Class
-
lv2_descriptor(), extension_data()
+
lv2_descriptor(), +LV2_Descriptor::extension_data()
+
Instantiation Class
-
instantiate(), cleanup(), activate(), deactivate()
+
LV2_Descriptor::instantiate(), +LV2_Descriptor::cleanup(), +LV2_Descriptor::activate(), +LV2_Descriptor::deactivate()
+
Audio Class
-
run(), connect_port()
+
LV2_Descriptor::run(), +LV2_Descriptor::connect_port()

Plugin functions in any class MUST NOT manipulate any state which might @@ -161,8 +168,9 @@ no other functions for that instance may run.

Any simultaneous calls that are not explicitly forbidden by these rules are -allowed. For example, a host may call run() for two different plugin instances -simultaneously.

""" . +allowed. For example, a host may call run() for two different +plugin instances simultaneously.

+""" . ############################# @@ -582,24 +590,24 @@ lv2:optionalFeature a rdf:Property ; rdfs:domain lv2:Resource ; rdfs:range lv2:Feature ; rdfs:label "Optional feature" ; - rdfs:comment """ -Signifies that a plugin or other resource supports a certain feature. -If the host supports this feature, it MUST pass its URI and any additional -data to the plugin in the instantiate() function. The plugin MUST NOT fail to -instantiate if an optional feature is not supported by the host. + lv2:documentation """ +

Signifies that a plugin or other resource supports a certain feature. If +the host supports this feature, it MUST pass its URI and any additional data to +the plugin in LV2_Descriptor::instantiate(). The plugin MUST NOT fail to +instantiate if an optional feature is not supported by the host.

""" . lv2:requiredFeature a rdf:Property ; rdfs:domain lv2:Resource ; rdfs:range lv2:Feature ; rdfs:label "Required feature" ; - rdfs:comment """ -Signifies that a plugin or other resource requires a certain feature. -If the host supports this feature, it MUST pass its URI and any additional -data to the plugin in the instantiate() function. The plugin MUST fail to -instantiate if a required feature is not present; hosts SHOULD always check -this before attempting to instantiate a plugin (i.e. discovery by attempting -to instantiate is strongly discouraged). + lv2:documentation """ +

Signifies that a plugin or other resource requires a certain feature. If +the host supports this feature, it MUST pass its URI and any additional data to +the plugin in LV2_Descriptor::instantiate(). The plugin MUST fail to +instantiate if a required feature is not present; hosts SHOULD always check +this before attempting to instantiate a plugin (i.e. discovery by attempting to +instantiate is strongly discouraged).

""" . -- cgit v1.2.1