swh / lv2

SWH Plugins in LV2 format
http://plugin.org.uk/
GNU General Public License v3.0
93 stars 20 forks source link

sidechain inputs are not properly marked #14

Closed x42 closed 8 years ago

x42 commented 8 years ago

The sidechain inputs should have a lv2:portProperty lv2:isSideChain; port property. Currently they're only in a custom group pg:inGroup swh:sc3-sidechain ; and "swh:sc3-sidechain" is not meaningful to a host.

expected (here sc3-swh.lv2/plugin.ttl).

   :port [
     a :InputPort, :AudioPort ;
     :name "Sidechain" ;
     :index 7 ;
     :symbol "sidechain" ;
     :portProperty :isSideChain;
     pg:inGroup swh:sc3-sidechain ;
     pg:role pg:centerChannel ;
   ] ;