home *** CD-ROM | disk | FTP | other *** search
/ PC World 2007 March / PCWorld_2007-03_cd.bin / audio-video / reaper / reaper174-install.exe / Effects / SStillwell / expander < prev    next >
Text File  |  2007-01-24  |  4KB  |  113 lines

  1. // Copyright 2007, 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:downward expander
  27.  
  28. slider1:-120<-120,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{Normal,Sidechain}>Detector input
  32. slider5:0<0,1,1{Peak,RMS}>Detection
  33. slider6:30<0,200,1>Attack (ms)
  34. slider7:2<0,100,1>Release (ms)
  35.  
  36. @init
  37.   denorm = 10^-30;
  38.   log2db = 8.6858896380650365530225783783321; // 20 / ln(10)
  39.   db2log = 0.11512925464970228420089957273422; // ln(10) / 20 
  40.   dcoffset = 0.0000000000000000000000001;
  41.   attime=slider6 * 0.001;
  42.   reltime=slider7 * 0.001;
  43.   maxover=0;
  44.   ratio=0;
  45.   cratio=0;
  46.   rundb=0;
  47.   overdb=0;
  48.   maxover=0;
  49.   atcoef=exp(-1/(attime * srate));
  50.   relcoef=exp(-1/(reltime * srate));
  51.   fbacoef=exp(-1000/(2 * srate)); // 2 msec. opto attack for feedback detection
  52.   fbrcoef=exp(-1000/(200 * srate)); // 200 msec. opto release for feedback detection
  53.   sidechain = 0;
  54.   automakeup = 0;
  55.  
  56. @slider
  57.   thresh = slider1;
  58.   threshv = exp(thresh * db2log);
  59.   ratio = slider2;
  60.   sidechain = slider4;
  61.   makeup = slider3;
  62.   makeupv = exp((makeup) * db2log);
  63.   RMSdet = slider5;
  64.   RMSdet ? (
  65.     rmscoef=exp(-1000/(10 * srate));       // 10 ms RMS window
  66.   ) : (
  67.     rmscoef=exp(-1000/(0.0025 * srate));  // 2.5 us Peak detector
  68.   );
  69.   attime=slider6 * 0.001;
  70.   reltime=slider7 * 0.001;
  71.   atcoef=exp(-1/(attime * srate));
  72.   relcoef=exp(-1/(reltime * srate));
  73.  
  74. @sample
  75.   spl0 += denorm;
  76.   spl1 += denorm;
  77.   sidechain ? (
  78.     aspl0 = abs(spl2);
  79.     aspl1 = abs(spl3);
  80.   ) : (
  81.     aspl0 = abs(spl0);
  82.     aspl1 = abs(spl1);
  83.   );
  84.  
  85.   RMSDet ? (  
  86.     ave = (aspl0 * aspl0) + (aspl1 * aspl1);
  87.     runave = ave + rmscoef * (runave - ave);
  88.     det = sqrt(max(0,runave));
  89.   ) : (
  90.     maxspl = max(aspl0, aspl1);
  91.     maxspl = maxspl * maxspl;
  92.     runave = maxspl + rmscoef * (runave - maxspl);
  93.     det = sqrt(max(0,runave));
  94.   );
  95.   overdb = 2.08136898 * log(det/threshv) * log2db;
  96.   overdb = min(0,overdb);
  97.  
  98.   overdb > rundb ? (
  99.     rundb = overdb + atcoef * (rundb - overdb);
  100.   ) : (
  101.     rundb = overdb + relcoef * (rundb - overdb);
  102.   );
  103.   overdb = rundb;
  104.  
  105.   cratio = (softknee ? (1 + (ratio-1) * min(overdb, 6) / 6) : ratio);
  106.   
  107.   gr = overdb * (cratio-1)/cratio;
  108.   grv = exp(gr * db2log);
  109.  
  110.   spl0 -= denorm;
  111.   spl1 -= denorm;
  112.   spl0 *= grv * makeupv;
  113.   spl1 *= grv * makeupv;