home *** CD-ROM | disk | FTP | other *** search
/ PC World 2008 February / PCWorld_2008-02_cd.bin / audio-video / reaper / reaper2028-install.exe / Effects / SStillwell / expander < prev    next >
Text File  |  2007-12-03  |  4KB  |  105 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. //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:downward expander
  25.  
  26. slider1:-120<-120,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{Normal,Sidechain}>Detector input
  30. slider5:0<0,1,1{Peak,RMS}>Detection
  31. slider6:30<0,200,1>Attack (ms)
  32. slider7:2<0,100,1>Release (ms)
  33.  
  34. @init
  35.   log2db = 8.6858896380650365530225783783321; // 20 / ln(10)
  36.   db2log = 0.11512925464970228420089957273422; // ln(10) / 20 
  37.   attime=slider6 * 0.001;
  38.   reltime=slider7 * 0.001;
  39.   maxover=0;
  40.   ratio=0;
  41.   cratio=0;
  42.   rundb=0;
  43.   overdb=0;
  44.   maxover=0;
  45.   atcoef=exp(-1/(attime * srate));
  46.   relcoef=exp(-1/(reltime * srate));
  47.   fbacoef=exp(-1000/(2 * srate)); // 2 msec. opto attack for feedback detection
  48.   fbrcoef=exp(-1000/(200 * srate)); // 200 msec. opto release for feedback detection
  49.   sidechain = 0;
  50.   automakeup = 0;
  51.  
  52. @slider
  53.   thresh = slider1;
  54.   threshv = exp(thresh * db2log);
  55.   ratio = slider2;
  56.   sidechain = slider4;
  57.   makeup = slider3;
  58.   makeupv = exp((makeup) * db2log);
  59.   RMSdet = slider5;
  60.   RMSdet ? (
  61.     rmscoef=exp(-1000/(10 * srate));       // 10 ms RMS window
  62.   ) : (
  63.     rmscoef=exp(-1000/(0.0025 * srate));  // 2.5 us Peak detector
  64.   );
  65.   attime=slider6 * 0.001;
  66.   reltime=slider7 * 0.001;
  67.   atcoef=exp(-1/(attime * srate));
  68.   relcoef=exp(-1/(reltime * srate));
  69.  
  70. @sample
  71.   sidechain ? (
  72.     aspl0 = abs(spl2);
  73.     aspl1 = abs(spl3);
  74.   ) : (
  75.     aspl0 = abs(spl0);
  76.     aspl1 = abs(spl1);
  77.   );
  78.  
  79.   RMSDet ? (  
  80.     ave = (aspl0 * aspl0) + (aspl1 * aspl1);
  81.     runave = ave + rmscoef * (runave - ave);
  82.     det = sqrt(max(0,runave));
  83.   ) : (
  84.     maxspl = max(aspl0, aspl1);
  85.     maxspl = maxspl * maxspl;
  86.     runave = maxspl + rmscoef * (runave - maxspl);
  87.     det = sqrt(max(0,runave));
  88.   );
  89.   overdb = 2.08136898 * log(det/threshv) * log2db;
  90.   overdb = min(0,overdb);
  91.  
  92.   overdb > rundb ? (
  93.     rundb = overdb + atcoef * (rundb - overdb);
  94.   ) : (
  95.     rundb = overdb + relcoef * (rundb - overdb);
  96.   );
  97.   overdb = rundb;
  98.  
  99.   cratio = (softknee ? (1 + (ratio-1) * min(overdb, 6) / 6) : ratio);
  100.   
  101.   gr = overdb * (cratio-1)/cratio;
  102.   grv = exp(gr * db2log);
  103.  
  104.   spl0 *= grv * makeupv;
  105.   spl1 *= grv * makeupv;