home *** CD-ROM | disk | FTP | other *** search
/ PC World 2007 March / PCWorld_2007-03_cd.bin / audio-video / reaper / reaper174-install.exe / Effects / SStillwell / mastertom < prev    next >
Text File  |  2007-01-25  |  5KB  |  159 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.  
  17.  
  18. //THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR 
  19. //IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND 
  20. //FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS 
  21. //BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 
  22. //(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR 
  23. //PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, 
  24. //STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 
  25. //THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  26. desc:program dependent compressor
  27.  
  28. slider1:0<-60,0,0.1>Threshold (dB)
  29. slider2:1<1,20,0.1>Ratio
  30. slider3:0<-20,20,0.1>Gain
  31. slider4:0<0,1,1{No,Yes}>Soft knee?
  32. slider5:0<0,1,1{Normal,Sidechain}>Detector input
  33. slider6:0<0,1,1{No,Yes}>Auto-makeup?
  34. slider7:0<0,1,1{Peak,RMS}>Detection
  35. slider8:0<0,1,1{Feedforward,Feedback}>Detection source
  36.  
  37. @init
  38.   denorm = 10^-30;
  39.   log2db = 8.6858896380650365530225783783321; // 20 / ln(10)
  40.   db2log = 0.11512925464970228420089957273422; // ln(10) / 20 
  41.   dcoffset = 0.0000000000000000000000001;
  42.   i=0;
  43.   loop(
  44.     120,
  45.     attimes[i] = ((0.08924 / i) + (0.60755 / (i ^ 2)) - 0.00006)+dcoffset;
  46.     i+=1;
  47.   );
  48.   attime=0.010;
  49.   //reltime=0.100;
  50.   reltime=5;
  51.   maxover=0;
  52.   ratio=0;
  53.   cratio=0;
  54.   rundb=0;
  55.   overdb=0;
  56.   maxover=0;
  57.   atcoef=exp(-1/(attime * srate));
  58.   relcoef=exp(-1/(reltime * srate));
  59.   fbacoef=exp(-1000/(2 * srate)); // 2 msec. opto attack for feedback detection
  60.   fbrcoef=exp(-1000/(200 * srate)); // 200 msec. opto release for feedback detection
  61.   sidechain = 0;
  62.   automakeup = 0;
  63.  
  64. @slider
  65.   thresh = slider1;
  66.   threshv = exp(thresh * db2log);
  67.   ratio = slider2;
  68.   softknee = slider4;
  69.   cthresh = (softknee ? (thresh -3) : thresh);
  70.   cthreshv = exp(cthresh * db2log);
  71.   sidechain = slider5;
  72.   automakeup = slider6;
  73.   automakeup ? (
  74.     autogain = (abs(thresh) - (abs(thresh)/max(1,ratio-1)))/2;
  75.   ) : (
  76.     autogain = 0;
  77.   );
  78.   makeup = slider3;
  79.   makeupv = exp((makeup+autogain) * db2log);
  80.   RMSdet = slider7;
  81.   RMSdet ? (
  82.     rmscoef=exp(-1000/(10 * srate));       // 10 ms RMS window
  83.   ) : (
  84.     rmscoef=exp(-1000/(0.0025 * srate));  // 2.5 us Peak detector
  85.   );
  86.   opto = slider8;
  87.  
  88. @sample
  89.   spl0 += denorm;
  90.   spl1 += denorm;
  91.   sidechain ? (
  92.     spl2 += denorm;
  93.     spl3 += denorm;
  94.     aspl0 = abs(spl2);
  95.     aspl1 = abs(spl3);
  96.   ) : (
  97.     opto ? (
  98.       ospl = ospl0 * ospl0 + ospl1 * ospl1;
  99.       ospl > runospl ? (
  100.         runospl = ospl + atcoef * (runospl - ospl);
  101.       ) : (
  102.         runospl = ospl + relcoef * (runospl - ospl);
  103.       );
  104.       ospl = sqrt(max(0,runospl));
  105.  
  106.       ospl *= 0.5;
  107.  
  108.       aspl0 = abs(ospl);
  109.       aspl1 = abs(ospl);
  110.     ) : (
  111.       aspl0 = abs(spl0);
  112.       aspl1 = abs(spl1);
  113.     );
  114.   );
  115.  
  116.   RMSDet ? (  
  117.     ave = (aspl0 * aspl0) + (aspl1 * aspl1);
  118.     runave = ave + rmscoef * (runave - ave);
  119.     det = sqrt(max(0,runave));
  120.   ) : (
  121.     maxspl = max(aspl0, aspl1);
  122.     maxspl = maxspl * maxspl;
  123.     runave = maxspl + rmscoef * (runave - maxspl);
  124.     det = sqrt(max(0,runave));
  125.   );
  126.   overdb = 2.08136898 * log(det/cthreshv) * log2db;
  127.   overdb > maxover ? (
  128.     maxover = overdb;
  129.     attime = attimes[max(0,floor(abs(overdb)))];   // attack time per formula
  130.     atcoef = exp(-1/(attime * srate));
  131.     //reltime = overdb / 65;                        // release at constant 65 dB/sec.
  132.     //relcoef = exp(-1/(reltime * srate));
  133.   );
  134.   overdb = max(0,overdb);
  135.  
  136.   overdb > rundb ? (
  137.     rundb = overdb + atcoef * (rundb - overdb);
  138.   ) : (
  139.     rundb = overdb + relcoef * (rundb - overdb);
  140.   );
  141.   overdb = rundb;
  142.  
  143.   cratio = (softknee ? (1 + (ratio-1) * min(overdb, 6) / 6) : ratio);
  144.   
  145.   gr = -overdb * (cratio-1)/cratio;
  146.   grv = exp(gr * db2log);
  147.   
  148.   runmax = maxover + relcoef * (runmax - maxover);  // highest peak for setting att/rel decays in reltime
  149.   maxover = runmax;
  150.  
  151.   spl0 -= denorm;
  152.   spl1 -= denorm;
  153.  
  154.   spl0 *= grv * makeupv;
  155.   spl1 *= grv * makeupv;  
  156.  
  157.   ospl0 = spl0;
  158.   ospl1 = spl1;
  159.