home *** CD-ROM | disk | FTP | other *** search
/ PC World 2007 March / PCWorld_2007-03_cd.bin / audio-video / reaper / reaper174-install.exe / Effects / SStillwell / 3x3 < prev    next >
Text File  |  2007-01-15  |  4KB  |  113 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. cDenorm = 10^-30;
  43.  
  44. @slider
  45.  
  46.   mixl=slider1 / 100;
  47.   mixm=slider3 / 100;
  48.   mixh=slider5 / 100;
  49.   al = min(slider7,srate) / srate;
  50.   ah = max( min(slider8,srate) / srate , al );
  51.   mixl1 = 1 - mixl;
  52.   mixm1 = 1 - mixm;
  53.   mixh1 = 1 - mixh;
  54.   gainl = exp(slider2 * db2log);
  55.   gainm = exp(slider4 * db2log);
  56.   gainh = exp(slider6 * db2log);
  57.   mixlg = mixl * gainl;
  58.   mixmg = mixm * gainm;
  59.   mixhg = mixh * gainh;
  60.   mixlg1 = mixl1 * gainl;
  61.   mixmg1 = mixm1 * gainm;
  62.   mixhg1 = mixh1 * gainh;
  63.  
  64.  
  65. @sample
  66.  
  67.   dry0 = spl0 + cDenorm;
  68.   dry1 = spl1 + cDenorm;
  69.  
  70.   lf1h=lfh; 
  71.   lfh=dry0 + lfh - ah*lf1h;
  72.   high_l=dry0-lfh*ah;
  73.  
  74.   lf1l=lfl;
  75.   lfl=dry0 + lfl - al*lf1l; 
  76.   low_l=lfl*al;
  77.  
  78.   mid_l = dry0 - low_l - high_l;
  79.  
  80.   rf1h=rfh; 
  81.   rfh=dry1 + rfh - ah*rf1h;
  82.   high_r=dry1-rfh*ah;
  83.  
  84.   rf1l=rfl;
  85.   rfl=dry1 + rfl - al*rf1l; 
  86.   low_r=rfl*al;
  87.  
  88.   mid_r = dry1 - low_r - high_r;
  89.  
  90.   wet0_l = mixlg * sin(low_l * halfpiscaled);
  91.   wet0_m = mixmg * sin(mid_l * halfpiscaled);
  92.   wet0_h = mixhg * sin(high_l * halfpiscaled);
  93.   wet0 = (wet0_l + wet0_m + wet0_h);
  94.  
  95.   dry0_l = low_l * mixlg1;
  96.   dry0_m = mid_l * mixmg1;
  97.   dry0_h = high_l * mixhg1;
  98.   dry0 = (dry0_l + dry0_m + dry0_h);
  99.  
  100.   wet1_l = mixlg * sin(low_r * halfpiscaled);
  101.   wet1_m = mixmg * sin(mid_r * halfpiscaled);
  102.   wet1_h = mixhg * sin(high_r * halfpiscaled);
  103.   wet1 = (wet1_l + wet1_m + wet1_h);
  104.  
  105.   dry1_l = low_r * mixlg1;
  106.   dry1_m = mid_r * mixmg1;
  107.   dry1_h = high_r * mixhg1;
  108.   dry1 = (dry1_l + dry1_m + dry1_h);
  109.  
  110.   spl0 = dry0 + wet0;
  111.   spl1 = dry1 + wet1;
  112.  
  113.