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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2324 - (hide annotations) (download)
Sun Mar 4 09:01:32 2012 UTC (12 years, 3 months 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 persson 1777 @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 persson 2324 lv2:optionalFeature lv2:hardRTCapable ;
10 capela 2295 lv2:extensionData <http://lv2plug.in/ns/ext/state#Interface> ;
11 capela 2291 lv2:optionalFeature <http://lv2plug.in/ns/ext/state#mapPath> ;
12     lv2:optionalFeature <http://lv2plug.in/ns/ext/state#makePath> ;
13 capela 2174 lv2:optionalFeature <http://lv2plug.in/ns/ext/uri-map> ;
14 persson 1777 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