/[svn]/linuxsampler/trunk/src/hostplugins/lv2/linuxsampler.ttl
ViewVC logotype

Contents of /linuxsampler/trunk/src/hostplugins/lv2/linuxsampler.ttl

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2324 - (show annotations) (download)
Sun Mar 4 09:01:32 2012 UTC (12 years, 1 month ago) by persson
File size: 1063 byte(s)
* plugin bugfix: instrument loading hang when the plugin was loaded a
  second time (this time it's for Linux and Mac, previous similar fix
  was for Windows)
* thread safety fixes for the instrument loading thread
* MME driver: removed compiler warning
* LV2: fixed invalid realtime statement in plugin metadata

1 @prefix lv2: <http://lv2plug.in/ns/lv2core#> .
2 @prefix doap: <http://usefulinc.com/ns/doap#> .
3 @prefix ev: <http://lv2plug.in/ns/ext/event#> .
4
5 <http://linuxsampler.org/plugins/linuxsampler>
6 a lv2:InstrumentPlugin ;
7 doap:name "LinuxSampler" ;
8 doap:license <http://linuxsampler.org/downloads.html#exception> ;
9 lv2:optionalFeature lv2:hardRTCapable ;
10 lv2:extensionData <http://lv2plug.in/ns/ext/state#Interface> ;
11 lv2:optionalFeature <http://lv2plug.in/ns/ext/state#mapPath> ;
12 lv2:optionalFeature <http://lv2plug.in/ns/ext/state#makePath> ;
13 lv2:optionalFeature <http://lv2plug.in/ns/ext/uri-map> ;
14 lv2:port [
15 a lv2:AudioPort , lv2:OutputPort ;
16 lv2:index 0 ;
17 lv2:symbol "out_left" ;
18 lv2:name "Output Left"
19 ] , [
20 a lv2:AudioPort , lv2:OutputPort ;
21 lv2:index 1 ;
22 lv2:symbol "out_right" ;
23 lv2:name "Output Right"
24 ] , [
25 a ev:EventPort , lv2:InputPort ;
26 lv2:index 2 ;
27 ev:supportsEvent <http://lv2plug.in/ns/ext/midi#MidiEvent> ;
28 lv2:symbol "midi" ;
29 lv2:name "MIDI Input"
30 ] .

  ViewVC Help
Powered by ViewVC