home *** CD-ROM | disk | FTP | other *** search
/ PC World 2008 February / PCWorld_2008-02_cd.bin / audio-video / reaper / reaper2028-install.exe / Effects / SStillwell / mastertom < prev    next >
Text File  |  2007-12-03  |  5KB  |  148 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:program dependent compressor
  25.  
  26. slider1:0<-60,0,0.1>Threshold (dB)
  27. slider2:1<1,20,0.1>Ratio
  28. slider3:0<-20,20,0.1>Gain
  29. slider4:0<0,1,1{No,Yes}>Soft knee?
  30. slider5:0<0,1,1{Normal,Sidechain}>Detector input
  31. slider6:0<0,1,1{No,Yes}>Auto-makeup?
  32. slider7:0<0,1,1{Peak,RMS}>Detection
  33. slider8:0<0,1,1{Feedforward,Feedback}>Detection source
  34.  
  35. @init
  36.   log2db = 8.6858896380650365530225783783321; // 20 / ln(10)
  37.   db2log = 0.11512925464970228420089957273422; // ln(10) / 20 
  38.   i=0;
  39.   loop(
  40.     120,
  41.     attimes[i] = ((0.08924 / i) + (0.60755 / (i ^ 2)) - 0.00006);
  42.     i+=1;
  43.   );
  44.   attime=0.010;
  45.   //reltime=0.100;
  46.   reltime=5;
  47.   maxover=0;
  48.   ratio=0;
  49.   cratio=0;
  50.   rundb=0;
  51.   overdb=0;
  52.   maxover=0;
  53.   atcoef=exp(-1/(attime * srate));
  54.   relcoef=exp(-1/(reltime * srate));
  55.   fbacoef=exp(-1000/(2 * srate)); // 2 msec. opto attack for feedback detection
  56.   fbrcoef=exp(-1000/(200 * srate)); // 200 msec. opto release for feedback detection
  57.   sidechain = 0;
  58.   automakeup = 0;
  59.  
  60. @slider
  61.   thresh = slider1;
  62.   threshv = exp(thresh * db2log);
  63.   ratio = slider2;
  64.   softknee = slider4;
  65.   cthresh = (softknee ? (thresh -3) : thresh);
  66.   cthreshv = exp(cthresh * db2log);
  67.   sidechain = slider5;
  68.   automakeup = slider6;
  69.   automakeup ? (
  70.     autogain = (abs(thresh) - (abs(thresh)/max(1,ratio-1)))/2;
  71.   ) : (
  72.     autogain = 0;
  73.   );
  74.   makeup = slider3;
  75.   makeupv = exp((makeup+autogain) * db2log);
  76.   RMSdet = slider7;
  77.   RMSdet ? (
  78.     rmscoef=exp(-1000/(10 * srate));       // 10 ms RMS window
  79.   ) : (
  80.     rmscoef=exp(-1000/(0.0025 * srate));  // 2.5 us Peak detector
  81.   );
  82.   opto = slider8;
  83.  
  84. @sample
  85.   sidechain ? (
  86.     aspl0 = abs(spl2);
  87.     aspl1 = abs(spl3);
  88.   ) : (
  89.     opto ? (
  90.       ospl = ospl0 * ospl0 + ospl1 * ospl1;
  91.       ospl > runospl ? (
  92.         runospl = ospl + atcoef * (runospl - ospl);
  93.       ) : (
  94.         runospl = ospl + relcoef * (runospl - ospl);
  95.       );
  96.       ospl = sqrt(max(0,runospl));
  97.  
  98.       ospl *= 0.5;
  99.  
  100.       aspl0 = abs(ospl);
  101.       aspl1 = abs(ospl);
  102.     ) : (
  103.       aspl0 = abs(spl0);
  104.       aspl1 = abs(spl1);
  105.     );
  106.   );
  107.  
  108.   RMSDet ? (  
  109.     ave = (aspl0 * aspl0) + (aspl1 * aspl1);
  110.     runave = ave + rmscoef * (runave - ave);
  111.     det = sqrt(max(0,runave));
  112.   ) : (
  113.     maxspl = max(aspl0, aspl1);
  114.     maxspl = maxspl * maxspl;
  115.     runave = maxspl + rmscoef * (runave - maxspl);
  116.     det = sqrt(max(0,runave));
  117.   );
  118.   overdb = 2.08136898 * log(det/cthreshv) * log2db;
  119.   overdb > maxover ? (
  120.     maxover = overdb;
  121.     attime = attimes[max(0,floor(abs(overdb)))];   // attack time per formula
  122.     atcoef = exp(-1/(attime * srate));
  123.     //reltime = overdb / 65;                        // release at constant 65 dB/sec.
  124.     //relcoef = exp(-1/(reltime * srate));
  125.   );
  126.   overdb = max(0,overdb);
  127.  
  128.   overdb > rundb ? (
  129.     rundb = overdb + atcoef * (rundb - overdb);
  130.   ) : (
  131.     rundb = overdb + relcoef * (rundb - overdb);
  132.   );
  133.   overdb = rundb;
  134.  
  135.   cratio = (softknee ? (1 + (ratio-1) * min(overdb, 6) / 6) : ratio);
  136.   
  137.   gr = -overdb * (cratio-1)/cratio;
  138.   grv = exp(gr * db2log);
  139.   
  140.   runmax = maxover + relcoef * (runmax - maxover);  // highest peak for setting att/rel decays in reltime
  141.   maxover = runmax;
  142.  
  143.   spl0 *= grv * makeupv;
  144.   spl1 *= grv * makeupv;  
  145.  
  146.   ospl0 = spl0;
  147.   ospl1 = spl1;
  148.