home *** CD-ROM | disk | FTP | other *** search
/ PC World 2008 February / PCWorld_2008-02_cd.bin / audio-video / reaper / reaper2028-install.exe / Effects / SStillwell / 1175 next >
Text File  |  2007-12-06  |  5KB  |  149 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:FAST attack compressor with prog-dependent release
  25.  
  26. slider1:0<-60,0,0.1>Threshold (dB)
  27. slider2:1<0,3,1{4,8,12,20,All}>Ratio
  28. slider3:0<-20,20,0.1>Gain
  29. slider4:20<20,2000,10>Attack time (usec.)
  30. slider5:250<20,1000,1>Release time (msec.)
  31. slider6:100<0,100,0.1>Mix%
  32.  
  33. @init
  34.   log2db = 8.6858896380650365530225783783321; // 20 / ln(10)
  35.   db2log = 0.11512925464970228420089957273422; // ln(10) / 20 
  36.   attime=0.010;
  37.   reltime=0.100;
  38.   ratio=0;
  39.   cratio=0;
  40.   rundb=0;
  41.   overdb=0;
  42.   ratatcoef = exp(-1/(0.00001 * srate));
  43.   ratrelcoef = exp(-1/(0.5 * srate));
  44.   atcoef=exp(-1/(attime * srate));
  45.   relcoef=exp(-1/(reltime * srate));
  46.   mix=1;
  47.   gr_meter=1;
  48.   gr_meter_decay = exp(1/(1*srate));
  49.  
  50. @slider
  51.   thresh = slider1;
  52.   threshv = exp(thresh * db2log);
  53.   ratio = (slider2==0 ? 4 : (slider2==1 ? 8 : (slider2 == 2 ? 12 : (slider2 == 3 ? 20 : 20 ))));
  54.   slider2 == 4 ? (allin=1; cratio=20;) : (allin=0; cratio = ratio;);
  55.   cthresh = (softknee ? (thresh -3) : thresh);
  56.   cthreshv = exp(cthresh * db2log);
  57.   makeup = slider3;
  58.   makeupv = exp((makeup+autogain) * db2log);
  59.   attime = slider4 / 1000000;
  60.   reltime = slider5 / 1000;
  61.   atcoef=exp(-1/(attime * srate));
  62.   relcoef=exp(-1/(reltime * srate));
  63.   mix=slider6/100;
  64.  
  65. @sample
  66.   ospl0 = spl0;
  67.   ospl1 = spl1;
  68.   aspl0 = abs(spl0);
  69.   aspl1 = abs(spl1);
  70.   maxspl = max(aspl0, aspl1);
  71.   maxspl = maxspl * maxspl;
  72.   runave = maxspl + rmscoef * (runave - maxspl);
  73.   det = sqrt(max(0,runave));
  74.  
  75.   overdb = 2.08136898 * log(det/cthreshv) * log2db;
  76.   overdb = max(0,overdb);
  77.  
  78.   overdb - rundb > 5 ? (averatio = 4;);
  79.  
  80.   overdb > rundb ? (
  81.     rundb = overdb + atcoef * (rundb - overdb);
  82.     runratio = averatio + ratatcoef * (runratio - averatio);
  83.   ) : (
  84.     rundb = overdb + relcoef * (rundb - overdb);
  85.     runratio = averatio + ratrelcoef * (runratio - averatio);
  86.   );
  87.   overdb = rundb;
  88.   averatio = runratio;
  89.  
  90.   allin ? (
  91.     cratio = 12 + averatio;
  92.   ) : (
  93.     cratio = ratio;
  94.   );
  95.   
  96.   gr = -overdb * (cratio-1)/cratio;
  97.   grv = exp(gr * db2log);
  98.   
  99.   runmax = maxover + relcoef * (runmax - maxover);  // highest peak for setting att/rel decays in reltime
  100.   maxover = runmax;
  101.  
  102.   grv < gr_meter ? gr_meter=grv : ( gr_meter*=gr_meter_decay; gr_meter>1?gr_meter=1; );
  103.  
  104.   spl0 *= grv * makeupv * mix;
  105.   spl1 *= grv * makeupv * mix;  
  106.   
  107.   spl0 += ospl0 * (1-mix);
  108.   spl1 += ospl1 * (1-mix);
  109.  
  110.  
  111. @gfx 0 24 // request horizontal/vertical heights (0 means dont care)
  112.  
  113.   gr_meter *= exp(1/30); gr_meter>1?gr_meter=1; // decay meter here so if the audio processing stops it doesnt "stick"
  114.   gfx_r=1; gfx_g=gfx_b=0; gfx_a=0.8;
  115.   
  116.   meter_bot=20;
  117.   meter_h=min(gfx_h,32);
  118.   xscale=gfx_w*20/meter_bot;
  119.  
  120.   gfx_y=0;
  121.   gfx_x=gfx_w + log10(gr_meter)*xscale;
  122.   gfx_rectto(gfx_w,meter_h);
  123.  
  124.   gfx_r=gfx_g=gfx_b=1.0; gfx_a=0.6;
  125.  
  126.   s2=sqrt(2)/2;
  127.   g = s2;
  128.   while(
  129.     gfx_x=gfx_w + log10(g)*xscale;
  130.     gfx_x >= 0 ? 
  131.     (
  132.       gfx_y=0;
  133.       gfx_lineto(gfx_x,meter_h,0);
  134.       gfx_y=meter_h-gfx_texth;
  135.       gfx_x+=2;
  136.       gfx_drawnumber(log10(g)*20,0);
  137.       gfx_drawchar($'d');
  138.       gfx_drawchar($'B');
  139.     );
  140.     g*=s2;
  141.     gfx_x >=0;
  142.   );
  143.   gfx_a=1;
  144.  
  145.   gfx_x=0; gfx_y=meter_h/2 - gfx_texth/2;
  146.   gfx_drawnumber(log10(gr_meter)*20,1);
  147.   gfx_drawchar($'d');
  148.   gfx_drawchar($'B');
  149.