aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/eg06-fifths.lv2/fifths.ttl
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2014-02-08 02:30:06 +0000
committerDavid Robillard <d@drobilla.net>2014-02-08 02:30:06 +0000
commit60eb52f31976763497cd0355cc0d6b46af6c465f (patch)
tree13783ae9948977c809d2907ee7b80aa0ebbdb2d9 /plugins/eg06-fifths.lv2/fifths.ttl
parent6d41effb84c6663704d7f2ed562d7bbf4f5cc441 (diff)
downloadlv2-60eb52f31976763497cd0355cc0d6b46af6c465f.tar.xz
Add lv2_atom_sequence_clear() and lv2_atom_sequence_append_event() helper functions.
Add MIDI fifths example plugin for simple non-forge MIDI reading and writing.
Diffstat (limited to 'plugins/eg06-fifths.lv2/fifths.ttl')
-rw-r--r--plugins/eg06-fifths.lv2/fifths.ttl36
1 files changed, 36 insertions, 0 deletions
diff --git a/plugins/eg06-fifths.lv2/fifths.ttl b/plugins/eg06-fifths.lv2/fifths.ttl
new file mode 100644
index 0000000..2d439c7
--- /dev/null
+++ b/plugins/eg06-fifths.lv2/fifths.ttl
@@ -0,0 +1,36 @@
+@prefix atom: <http://lv2plug.in/ns/ext/atom#> .
+@prefix doap: <http://usefulinc.com/ns/doap#> .
+@prefix lv2: <http://lv2plug.in/ns/lv2core#> .
+@prefix patch: <http://lv2plug.in/ns/ext/patch#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix state: <http://lv2plug.in/ns/ext/state#> .
+@prefix ui: <http://lv2plug.in/ns/extensions/ui#> .
+@prefix urid: <http://lv2plug.in/ns/ext/urid#> .
+@prefix work: <http://lv2plug.in/ns/ext/worker#> .
+@prefix midi: <http://lv2plug.in/ns/ext/midi#> .
+
+<http://lv2plug.in/plugins/eg-fifths>
+ a lv2:Plugin ;
+ doap:name "Example Fifths" ;
+ doap:license <http://opensource.org/licenses/isc> ;
+ lv2:project <http://lv2plug.in/ns/lv2> ;
+ lv2:requiredFeature urid:map ;
+ lv2:optionalFeature lv2:hardRTCapable ;
+ lv2:extensionData work:interface ;
+ lv2:port [
+ a lv2:InputPort ,
+ atom:AtomPort ;
+ atom:bufferType atom:Sequence ;
+ atom:supports midi:MidiEvent ;
+ lv2:index 0 ;
+ lv2:symbol "in" ;
+ lv2:name "In"
+ ] , [
+ a lv2:OutputPort ,
+ atom:AtomPort ;
+ atom:bufferType atom:Sequence ;
+ atom:supports midi:MidiEvent ;
+ lv2:index 1 ;
+ lv2:symbol "out" ;
+ lv2:name "Out"
+ ] .