home *** CD-ROM | disk | FTP | other *** search
/ PC World 2008 February / PCWorld_2008-02_cd.bin / audio-video / reaper / reaper2028-install.exe / Effects / SStillwell / 3x3 < prev    next >
Text File  |  2007-12-03  |  4KB  |  109 lines

  1. // Copyright 2006, Thomas Scott Stillwell
  2. // All rights reserved.
  3. //
  4. //Redistribution and use in source and binary forms, with or without modification, are permitted 
  5. //provided that the following conditions are met:
  6. //
  7. //Redistributions of source code must retain the above copyright notice, this list of conditions 
  8. //and the following disclaimer. 
  9. //
  10. //Redistributions in binary form must reproduce the above copyright notice, this list of conditions 
  11. //and the following disclaimer in the documentation and/or other materials provided with the distribution. 
  12. //
  13. //The name of Thomas Scott Stillwell may not be used to endorse or 
  14. //promote products derived from this software without specific prior written permission. 
  15. //
  16. //THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR 
  17. //IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND 
  18. //FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS 
  19. //BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 
  20. //(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR 
  21. //PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, 
  22. //STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 
  23. //THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  24. desc:3x3 3 band EQ with harmonic enhancement
  25.  
  26. slider1:0<0,100,0.1>lo drive%
  27. slider2:0<-12,12,0.1>lo gain
  28. slider3:0<0,100,0.1>mid drive%
  29. slider4:0<-12,12,0.1>mid gain
  30. slider5:0<0,100,0.1>hi drive%
  31. slider6:0<-12,12,0.1>hi gain
  32. slider7:240<60,680,1>low-mid freq
  33. slider8:2400<720,12000,10>mid-high freq
  34.  
  35. @init
  36.   log2db = 8.6858896380650365530225783783321; // 20 / ln(10)
  37.   db2log = 0.11512925464970228420089957273422; // ln(10) / 20 
  38.   pi = 3.1415926535;
  39.   halfpi = pi / 2;
  40.   halfpiscaled = halfpi * 1.41254;
  41.  
  42. @slider
  43.  
  44.   mixl=slider1 / 100;
  45.   mixm=slider3 / 100;
  46.   mixh=slider5 / 100;
  47.   al = min(slider7,srate) / srate;
  48.   ah = max( min(slider8,srate) / srate , al );
  49.   mixl1 = 1 - mixl;
  50.   mixm1 = 1 - mixm;
  51.   mixh1 = 1 - mixh;
  52.   gainl = exp(slider2 * db2log);
  53.   gainm = exp(slider4 * db2log);
  54.   gainh = exp(slider6 * db2log);
  55.   mixlg = mixl * gainl;
  56.   mixmg = mixm * gainm;
  57.   mixhg = mixh * gainh;
  58.   mixlg1 = mixl1 * gainl;
  59.   mixmg1 = mixm1 * gainm;
  60.   mixhg1 = mixh1 * gainh;
  61.  
  62.  
  63. @sample
  64.  
  65.   dry0 = spl0;
  66.   dry1 = spl1;
  67.  
  68.   lf1h=lfh; 
  69.   lfh=dry0 + lfh - ah*lf1h;
  70.   high_l=dry0-lfh*ah;
  71.  
  72.   lf1l=lfl;
  73.   lfl=dry0 + lfl - al*lf1l; 
  74.   low_l=lfl*al;
  75.  
  76.   mid_l = dry0 - low_l - high_l;
  77.  
  78.   rf1h=rfh; 
  79.   rfh=dry1 + rfh - ah*rf1h;
  80.   high_r=dry1-rfh*ah;
  81.  
  82.   rf1l=rfl;
  83.   rfl=dry1 + rfl - al*rf1l; 
  84.   low_r=rfl*al;
  85.  
  86.   mid_r = dry1 - low_r - high_r;
  87.  
  88.   wet0_l = mixlg * sin(low_l * halfpiscaled);
  89.   wet0_m = mixmg * sin(mid_l * halfpiscaled);
  90.   wet0_h = mixhg * sin(high_l * halfpiscaled);
  91.   wet0 = (wet0_l + wet0_m + wet0_h);
  92.  
  93.   dry0_l = low_l * mixlg1;
  94.   dry0_m = mid_l * mixmg1;
  95.   dry0_h = high_l * mixhg1;
  96.   dry0 = (dry0_l + dry0_m + dry0_h);
  97.  
  98.   wet1_l = mixlg * sin(low_r * halfpiscaled);
  99.   wet1_m = mixmg * sin(mid_r * halfpiscaled);
  100.   wet1_h = mixhg * sin(high_r * halfpiscaled);
  101.   wet1 = (wet1_l + wet1_m + wet1_h);
  102.  
  103.   dry1_l = low_r * mixlg1;
  104.   dry1_m = mid_r * mixmg1;
  105.   dry1_h = high_r * mixhg1;
  106.   dry1 = (dry1_l + dry1_m + dry1_h);
  107.  
  108.   spl0 = dry0 + wet0;
  109.   spl1 = dry1 + wet1;