BEAST/BSE - Better Audio System and Sound Engine
0.8.2
|
00001 // Licensed GNU LGPL v2.1 or later: http://www.gnu.org/licenses/lgpl.html 00002 include "bse/bsecxxmodule.idl"; 00003 namespace Bse { 00004 namespace Dav { 00005 interface Chorus : Effect { 00006 Info icon = "icons/chorus.png"; 00007 Info authors = "David A. Bartold"; 00008 Info license = _("GNU Lesser General Public License"); 00009 Info category = _("/Enhance/Chorus"); 00010 Info blurb = _("DavChorus adds more depth to sounds"); 00011 IStream audio_in = Stream (_("Audio In"), _("Audio input")); 00012 OStream audio_out = Stream (_("Audio Out"), _("Chorus audio output")); 00013 group _("Parameters") { 00014 Real wet_out = Perc (_("Wet out [%]"), _("Set the amount of modified data to mix"), 50.0, STANDARD); 00015 }; 00016 }; 00017 00018 } // Dav 00019 } // Bse