From 3c21b71e86d50ef0d21b0cfb5e4e74cf168b934d Mon Sep 17 00:00:00 2001 From: David Robillard Date: Mon, 13 Feb 2012 22:16:43 +0000 Subject: Add response port (not yet used). Move message handling to separate function. --- plugins/eg-sampler.lv2/sampler.ttl | 23 ++++++++++++++++------- 1 file changed, 16 insertions(+), 7 deletions(-) (limited to 'plugins/eg-sampler.lv2/sampler.ttl') diff --git a/plugins/eg-sampler.lv2/sampler.ttl b/plugins/eg-sampler.lv2/sampler.ttl index 7f317aa..cf36415 100644 --- a/plugins/eg-sampler.lv2/sampler.ttl +++ b/plugins/eg-sampler.lv2/sampler.ttl @@ -15,11 +15,11 @@ # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. -@prefix atom: . -@prefix doap: . -@prefix foaf: . -@prefix lv2: . -@prefix ui: . +@prefix atom: . +@prefix doap: . +@prefix foaf: . +@prefix lv2: . +@prefix ui: . a lv2:Plugin ; @@ -33,14 +33,23 @@ a lv2:InputPort , atom:MessagePort ; atom:bufferType atom:Sequence ; - atom:supports ; + atom:supports , + ; lv2:index 0 ; lv2:symbol "control" ; lv2:name "Control" + ] , [ + a lv2:OutputPort , + atom:MessagePort ; + atom:bufferType atom:Sequence ; + atom:supports ; + lv2:index 1 ; + lv2:symbol "response" ; + lv2:name "Response" ] , [ a lv2:AudioPort , lv2:OutputPort ; - lv2:index 1 ; + lv2:index 2 ; lv2:symbol "out" ; lv2:name "Out" ] . -- cgit v1.2.1