# LV2 Plugin # Copyright 2016 Bent Bisballe Nyeng # # Permission to use, copy, modify, and/or distribute this software for any # purpose with or without fee is hereby granted, provided that the above # copyright notice and this permission notice appear in all copies. # # THIS SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES # WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF # MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR # ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES # WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. @prefix doap: . @prefix foaf: . @prefix lv2: . @prefix atom: . @prefix ui: . @prefix state: . @prefix pprops: . @prefix idpy: . @prefix lv2: . @prefix rdfs: . a ui:X11UI ; lv2:requiredFeature ui:resize ; lv2:extensionData ui:resize ; lv2:requiredFeature ui:idleInterface ; lv2:extensionData ui:idleInterface ; ui:binary . a lv2:Plugin ; lv2:optionalFeature idpy:queue_draw ; lv2:binary ; a lv2:InstrumentPlugin ; doap:name "LV2Test" ; ui:ui ; doap:maintainer [ foaf:name "LV2Test" ; foaf:homepage ; ] ; doap:license ; doap:license ; lv2:optionalFeature ; lv2:optionalFeature ; lv2:extensionData state:interface ; lv2:port [ a lv2:InputPort, lv2:ControlPort ; lv2:index 0 ; lv2:symbol "lv2_freewheel" ; lv2:name "Freewheel" ; lv2:default 0.0 ; lv2:minimum 0.0 ; lv2:maximum 1.0 ; lv2:designation ; lv2:portProperty lv2:toggled ; lv2:portProperty pprops:hasStrictBounds; ] , [ a lv2:OutputPort, lv2:ControlPort ; lv2:designation ; lv2:index 1; lv2:symbol "latency"; lv2:name "Latency"; lv2:minimum 0; lv2:maximum 192000; lv2:portProperty lv2:reportsLatency, lv2:integer; ] , [ a atom:AtomPort , lv2:InputPort; atom:bufferType atom:Sequence ; atom:supports ; lv2:index 2 ; lv2:symbol "control" ; lv2:name "Control" ] , [ a atom:AtomPort , lv2:OutputPort; atom:bufferType atom:Sequence ; atom:supports ; lv2:index 3 ; lv2:symbol "control" ; lv2:name "Control" ] , [ a lv2:AudioPort , lv2:InputPort ; lv2:index 4 ; lv2:symbol "in1" ; lv2:name "In1" ] , [ a lv2:AudioPort , lv2:InputPort ; lv2:index 5 ; lv2:symbol "in2" ; lv2:name "In2" ] , [ a lv2:AudioPort , lv2:OutputPort ; lv2:index 6 ; lv2:symbol "out1" ; lv2:name "Out1" ], [ a lv2:AudioPort , lv2:OutputPort ; lv2:index 7 ; lv2:symbol "out2" ; lv2:name "Out2" ] .