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_6dbSlope < prev    next >
Text File  |  2007-12-03  |  4KB  |  111 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 (6dB slopes)
  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.  
  50. freqLP = min(min(slider7,srate),freqHP);
  51. xLP = exp(-2.0*$pi*freqLP/srate);
  52. a0LP = 1.0-xLP;
  53. b1LP = -xLP;
  54.  
  55. freqHP = max(min(slider8,srate),freqLP);
  56. xHP = exp(-2.0*$pi*freqHP/srate);
  57. a0HP = 1.0-xHP;
  58. b1HP = -xHP;
  59.  
  60.   mixl1 = 1 - mixl;
  61.   mixm1 = 1 - mixm;
  62.   mixh1 = 1 - mixh;
  63.   gainl = exp(slider2 * db2log);
  64.   gainm = exp(slider4 * db2log);
  65.   gainh = exp(slider6 * db2log);
  66.   mixlg = mixl * gainl;
  67.   mixmg = mixm * gainm;
  68.   mixhg = mixh * gainh;
  69.   mixlg1 = mixl1 * gainl;
  70.   mixmg1 = mixm1 * gainm;
  71.   mixhg1 = mixh1 * gainh;
  72.  
  73.  
  74. @sample
  75.  
  76.   dry0 = spl0;
  77.   dry1 = spl1;
  78.  
  79. low_l = (tmplLP = a0LP*dry0 - b1LP*tmplLP + cDenorm);
  80. low_r = (tmprLP = a0LP*dry1 - b1LP*tmprLP + cDenorm);
  81.  
  82. high_l = dry0 - (tmplHP = a0HP*dry0 - b1HP*tmplHP + cDenorm);
  83. high_r = dry1 - (tmprHP = a0HP*dry1 - b1HP*tmprHP + cDenorm);
  84.  
  85.   mid_l = dry0 - low_l - high_l;
  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;
  110.  
  111.