fluid_rev.c
上传用户:tjmskj2
上传日期:2020-08-17
资源大小:577k
文件大小:16k
源码类别:

midi

开发平台:

C/C++

  1. /*
  2.   Freeverb
  3.   Written by Jezar at Dreampoint, June 2000
  4.   http://www.dreampoint.co.uk
  5.   This code is public domain
  6.   Translated to C by Peter Hanappe, Mai 2001
  7. */
  8. #include "fluid_rev.h"
  9. /***************************************************************
  10.  *
  11.  *                           REVERB
  12.  */
  13. /* Denormalising:
  14.  *
  15.  * According to music-dsp thread 'Denormalise', Pentium processors
  16.  * have a hardware 'feature', that is of interest here, related to
  17.  * numeric underflow.  We have a recursive filter. The output decays
  18.  * exponentially, if the input stops.  So the numbers get smaller and
  19.  * smaller... At some point, they reach 'denormal' level.  This will
  20.  * lead to drastic spikes in the CPU load.  The effect was reproduced
  21.  * with the reverb - sometimes the average load over 10 s doubles!!.
  22.  *
  23.  * The 'undenormalise' macro fixes the problem: As soon as the number
  24.  * is close enough to denormal level, the macro forces the number to
  25.  * 0.0f.  The original macro is:
  26.  *
  27.  * #define undenormalise(sample) if(((*(unsigned int*)&sample)&0x7f800000)==0) sample=0.0f
  28.  *
  29.  * This will zero out a number when it reaches the denormal level.
  30.  * Advantage: Maximum dynamic range Disadvantage: We'll have to check
  31.  * every sample, expensive.  The alternative macro comes from a later
  32.  * mail from Jon Watte. It will zap a number before it reaches
  33.  * denormal level. Jon suggests to run it once per block instead of
  34.  * every sample.
  35.  */
  36. # if defined(WITH_FLOATX)
  37. # define zap_almost_zero(sample) (((*(unsigned int*)&(sample))&0x7f800000) < 0x08000000)?0.0f:(sample)
  38. # else
  39. /* 1e-20 was chosen as an arbitrary (small) threshold. */
  40. #define zap_almost_zero(sample) fabs(sample)<1e-10 ? 0 : sample;
  41. #endif
  42. /* Denormalising part II:
  43.  *
  44.  * Another method fixes the problem cheaper: Use a small DC-offset in
  45.  * the filter calculations.  Now the signals converge not against 0,
  46.  * but against the offset.  The constant offset is invisible from the
  47.  * outside world (i.e. it does not appear at the output.  There is a
  48.  * very small turn-on transient response, which should not cause
  49.  * problems.
  50.  */
  51. //#define DC_OFFSET 0
  52. #define DC_OFFSET 1e-8
  53. //#define DC_OFFSET 0.001f
  54. typedef struct _fluid_allpass fluid_allpass;
  55. typedef struct _fluid_comb fluid_comb;
  56. struct _fluid_allpass {
  57.   fluid_real_t feedback;
  58.   fluid_real_t *buffer;
  59.   int bufsize;
  60.   int bufidx;
  61. };
  62. void fluid_allpass_setbuffer(fluid_allpass* allpass, fluid_real_t *buf, int size);
  63. void fluid_allpass_init(fluid_allpass* allpass);
  64. void fluid_allpass_setfeedback(fluid_allpass* allpass, fluid_real_t val);
  65. fluid_real_t fluid_allpass_getfeedback(fluid_allpass* allpass);
  66. void
  67. fluid_allpass_setbuffer(fluid_allpass* allpass, fluid_real_t *buf, int size)
  68. {
  69.   allpass->bufidx = 0;
  70.   allpass->buffer = buf;
  71.   allpass->bufsize = size;
  72. }
  73. void
  74. fluid_allpass_init(fluid_allpass* allpass)
  75. {
  76.   int i;
  77.   int len = allpass->bufsize;
  78.   fluid_real_t* buf = allpass->buffer;
  79.   for (i = 0; i < len; i++) {
  80.     buf[i] = DC_OFFSET; /* this is not 100 % correct. */
  81.   }
  82. }
  83. void
  84. fluid_allpass_setfeedback(fluid_allpass* allpass, fluid_real_t val)
  85. {
  86.   allpass->feedback = val;
  87. }
  88. fluid_real_t
  89. fluid_allpass_getfeedback(fluid_allpass* allpass)
  90. {
  91.   return allpass->feedback;
  92. }
  93. #define fluid_allpass_process(_allpass, _input) 
  94.   fluid_real_t output; 
  95.   fluid_real_t bufout; 
  96.   bufout = _allpass.buffer[_allpass.bufidx]; 
  97.   output = bufout-_input; 
  98.   _allpass.buffer[_allpass.bufidx] = _input + (bufout * _allpass.feedback); 
  99.   if (++_allpass.bufidx >= _allpass.bufsize) { 
  100.     _allpass.bufidx = 0; 
  101.   } 
  102.   _input = output; 
  103. }
  104. /*  fluid_real_t fluid_allpass_process(fluid_allpass* allpass, fluid_real_t input) */
  105. /*  { */
  106. /*    fluid_real_t output; */
  107. /*    fluid_real_t bufout; */
  108. /*    bufout = allpass->buffer[allpass->bufidx]; */
  109. /*    undenormalise(bufout); */
  110. /*    output = -input + bufout; */
  111. /*    allpass->buffer[allpass->bufidx] = input + (bufout * allpass->feedback); */
  112. /*    if (++allpass->bufidx >= allpass->bufsize) { */
  113. /*      allpass->bufidx = 0; */
  114. /*    } */
  115. /*    return output; */
  116. /*  } */
  117. struct _fluid_comb {
  118.   fluid_real_t feedback;
  119.   fluid_real_t filterstore;
  120.   fluid_real_t damp1;
  121.   fluid_real_t damp2;
  122.   fluid_real_t *buffer;
  123.   int bufsize;
  124.   int bufidx;
  125. };
  126. void fluid_comb_setbuffer(fluid_comb* comb, fluid_real_t *buf, int size);
  127. void fluid_comb_init(fluid_comb* comb);
  128. void fluid_comb_setdamp(fluid_comb* comb, fluid_real_t val);
  129. fluid_real_t fluid_comb_getdamp(fluid_comb* comb);
  130. void fluid_comb_setfeedback(fluid_comb* comb, fluid_real_t val);
  131. fluid_real_t fluid_comb_getfeedback(fluid_comb* comb);
  132. void
  133. fluid_comb_setbuffer(fluid_comb* comb, fluid_real_t *buf, int size)
  134. {
  135.   comb->filterstore = 0;
  136.   comb->bufidx = 0;
  137.   comb->buffer = buf;
  138.   comb->bufsize = size;
  139. }
  140. void
  141. fluid_comb_init(fluid_comb* comb)
  142. {
  143.   int i;
  144.   fluid_real_t* buf = comb->buffer;
  145.   int len = comb->bufsize;
  146.   for (i = 0; i < len; i++) {
  147.     buf[i] = DC_OFFSET; /* This is not 100 % correct. */
  148.   }
  149. }
  150. void
  151. fluid_comb_setdamp(fluid_comb* comb, fluid_real_t val)
  152. {
  153.   comb->damp1 = val;
  154.   comb->damp2 = 1 - val;
  155. }
  156. fluid_real_t
  157. fluid_comb_getdamp(fluid_comb* comb)
  158. {
  159.   return comb->damp1;
  160. }
  161. void
  162. fluid_comb_setfeedback(fluid_comb* comb, fluid_real_t val)
  163. {
  164.   comb->feedback = val;
  165. }
  166. fluid_real_t
  167. fluid_comb_getfeedback(fluid_comb* comb)
  168. {
  169.   return comb->feedback;
  170. }
  171. #define fluid_comb_process(_comb, _input, _output) 
  172.   fluid_real_t _tmp = _comb.buffer[_comb.bufidx]; 
  173.   _comb.filterstore = (_tmp * _comb.damp2) + (_comb.filterstore * _comb.damp1); 
  174.   _comb.buffer[_comb.bufidx] = _input + (_comb.filterstore * _comb.feedback); 
  175.   if (++_comb.bufidx >= _comb.bufsize) { 
  176.     _comb.bufidx = 0; 
  177.   } 
  178.   _output += _tmp; 
  179. }
  180. /* fluid_real_t fluid_comb_process(fluid_comb* comb, fluid_real_t input) */
  181. /* { */
  182. /*    fluid_real_t output; */
  183. /*    output = comb->buffer[comb->bufidx]; */
  184. /*    undenormalise(output); */
  185. /*    comb->filterstore = (output * comb->damp2) + (comb->filterstore * comb->damp1); */
  186. /*    undenormalise(comb->filterstore); */
  187. /*    comb->buffer[comb->bufidx] = input + (comb->filterstore * comb->feedback); */
  188. /*    if (++comb->bufidx >= comb->bufsize) { */
  189. /*      comb->bufidx = 0; */
  190. /*    } */
  191. /*    return output; */
  192. /* } */
  193. #define numcombs 8
  194. #define numallpasses 4
  195. #define fixedgain 0.015f
  196. #define scalewet 3.0f
  197. #define scaledamp 1.0f
  198. #define scaleroom 0.28f
  199. #define offsetroom 0.7f
  200. #define initialroom 0.5f
  201. #define initialdamp 0.2f
  202. #define initialwet 1
  203. #define initialdry 0
  204. #define initialwidth 1
  205. #define stereospread 23
  206. /*
  207.  These values assume 44.1KHz sample rate
  208.  they will probably be OK for 48KHz sample rate
  209.  but would need scaling for 96KHz (or other) sample rates.
  210.  The values were obtained by listening tests.
  211. */
  212. #define combtuningL1 1116
  213. #define combtuningR1 1116 + stereospread
  214. #define combtuningL2 1188
  215. #define combtuningR2 1188 + stereospread
  216. #define combtuningL3 1277
  217. #define combtuningR3 1277 + stereospread
  218. #define combtuningL4 1356
  219. #define combtuningR4 1356 + stereospread
  220. #define combtuningL5 1422
  221. #define combtuningR5 1422 + stereospread
  222. #define combtuningL6 1491
  223. #define combtuningR6 1491 + stereospread
  224. #define combtuningL7 1557
  225. #define combtuningR7 1557 + stereospread
  226. #define combtuningL8 1617
  227. #define combtuningR8 1617 + stereospread
  228. #define allpasstuningL1 556
  229. #define allpasstuningR1 556 + stereospread
  230. #define allpasstuningL2 441
  231. #define allpasstuningR2 441 + stereospread
  232. #define allpasstuningL3 341
  233. #define allpasstuningR3 341 + stereospread
  234. #define allpasstuningL4 225
  235. #define allpasstuningR4 225 + stereospread
  236. struct _fluid_revmodel_t {
  237.   fluid_real_t roomsize;
  238.   fluid_real_t damp;
  239.   fluid_real_t wet, wet1, wet2;
  240.   fluid_real_t width;
  241.   fluid_real_t gain;
  242.   /*
  243.    The following are all declared inline
  244.    to remove the need for dynamic allocation
  245.    with its subsequent error-checking messiness
  246.   */
  247.   /* Comb filters */
  248.   fluid_comb combL[numcombs];
  249.   fluid_comb combR[numcombs];
  250.   /* Allpass filters */
  251.   fluid_allpass allpassL[numallpasses];
  252.   fluid_allpass allpassR[numallpasses];
  253.   /* Buffers for the combs */
  254.   fluid_real_t bufcombL1[combtuningL1];
  255.   fluid_real_t bufcombR1[combtuningR1];
  256.   fluid_real_t bufcombL2[combtuningL2];
  257.   fluid_real_t bufcombR2[combtuningR2];
  258.   fluid_real_t bufcombL3[combtuningL3];
  259.   fluid_real_t bufcombR3[combtuningR3];
  260.   fluid_real_t bufcombL4[combtuningL4];
  261.   fluid_real_t bufcombR4[combtuningR4];
  262.   fluid_real_t bufcombL5[combtuningL5];
  263.   fluid_real_t bufcombR5[combtuningR5];
  264.   fluid_real_t bufcombL6[combtuningL6];
  265.   fluid_real_t bufcombR6[combtuningR6];
  266.   fluid_real_t bufcombL7[combtuningL7];
  267.   fluid_real_t bufcombR7[combtuningR7];
  268.   fluid_real_t bufcombL8[combtuningL8];
  269.   fluid_real_t bufcombR8[combtuningR8];
  270.   /* Buffers for the allpasses */
  271.   fluid_real_t bufallpassL1[allpasstuningL1];
  272.   fluid_real_t bufallpassR1[allpasstuningR1];
  273.   fluid_real_t bufallpassL2[allpasstuningL2];
  274.   fluid_real_t bufallpassR2[allpasstuningR2];
  275.   fluid_real_t bufallpassL3[allpasstuningL3];
  276.   fluid_real_t bufallpassR3[allpasstuningR3];
  277.   fluid_real_t bufallpassL4[allpasstuningL4];
  278.   fluid_real_t bufallpassR4[allpasstuningR4];
  279. };
  280. static void fluid_revmodel_update(fluid_revmodel_t* rev);
  281. static void fluid_revmodel_init(fluid_revmodel_t* rev);
  282. fluid_revmodel_t*
  283. new_fluid_revmodel()
  284. {
  285.   fluid_revmodel_t* rev;
  286.   rev = FLUID_NEW(fluid_revmodel_t);
  287.   if (rev == NULL) {
  288.     return NULL;
  289.   }
  290.   /* Tie the components to their buffers */
  291.   fluid_comb_setbuffer(&rev->combL[0], rev->bufcombL1, combtuningL1);
  292.   fluid_comb_setbuffer(&rev->combR[0], rev->bufcombR1, combtuningR1);
  293.   fluid_comb_setbuffer(&rev->combL[1], rev->bufcombL2, combtuningL2);
  294.   fluid_comb_setbuffer(&rev->combR[1], rev->bufcombR2, combtuningR2);
  295.   fluid_comb_setbuffer(&rev->combL[2], rev->bufcombL3, combtuningL3);
  296.   fluid_comb_setbuffer(&rev->combR[2], rev->bufcombR3, combtuningR3);
  297.   fluid_comb_setbuffer(&rev->combL[3], rev->bufcombL4, combtuningL4);
  298.   fluid_comb_setbuffer(&rev->combR[3], rev->bufcombR4, combtuningR4);
  299.   fluid_comb_setbuffer(&rev->combL[4], rev->bufcombL5, combtuningL5);
  300.   fluid_comb_setbuffer(&rev->combR[4], rev->bufcombR5, combtuningR5);
  301.   fluid_comb_setbuffer(&rev->combL[5], rev->bufcombL6, combtuningL6);
  302.   fluid_comb_setbuffer(&rev->combR[5], rev->bufcombR6, combtuningR6);
  303.   fluid_comb_setbuffer(&rev->combL[6], rev->bufcombL7, combtuningL7);
  304.   fluid_comb_setbuffer(&rev->combR[6], rev->bufcombR7, combtuningR7);
  305.   fluid_comb_setbuffer(&rev->combL[7], rev->bufcombL8, combtuningL8);
  306.   fluid_comb_setbuffer(&rev->combR[7], rev->bufcombR8, combtuningR8);
  307.   fluid_allpass_setbuffer(&rev->allpassL[0], rev->bufallpassL1, allpasstuningL1);
  308.   fluid_allpass_setbuffer(&rev->allpassR[0], rev->bufallpassR1, allpasstuningR1);
  309.   fluid_allpass_setbuffer(&rev->allpassL[1], rev->bufallpassL2, allpasstuningL2);
  310.   fluid_allpass_setbuffer(&rev->allpassR[1], rev->bufallpassR2, allpasstuningR2);
  311.   fluid_allpass_setbuffer(&rev->allpassL[2], rev->bufallpassL3, allpasstuningL3);
  312.   fluid_allpass_setbuffer(&rev->allpassR[2], rev->bufallpassR3, allpasstuningR3);
  313.   fluid_allpass_setbuffer(&rev->allpassL[3], rev->bufallpassL4, allpasstuningL4);
  314.   fluid_allpass_setbuffer(&rev->allpassR[3], rev->bufallpassR4, allpasstuningR4);
  315.   /* Set default values */
  316.   fluid_allpass_setfeedback(&rev->allpassL[0], 0.5f);
  317.   fluid_allpass_setfeedback(&rev->allpassR[0], 0.5f);
  318.   fluid_allpass_setfeedback(&rev->allpassL[1], 0.5f);
  319.   fluid_allpass_setfeedback(&rev->allpassR[1], 0.5f);
  320.   fluid_allpass_setfeedback(&rev->allpassL[2], 0.5f);
  321.   fluid_allpass_setfeedback(&rev->allpassR[2], 0.5f);
  322.   fluid_allpass_setfeedback(&rev->allpassL[3], 0.5f);
  323.   fluid_allpass_setfeedback(&rev->allpassR[3], 0.5f);
  324.   /* set values manually, since calling set functions causes update
  325.      and all values should be initialized for an update */
  326.   rev->roomsize = initialroom * scaleroom + offsetroom;
  327.   rev->damp = initialdamp * scaledamp;
  328.   rev->wet = initialwet * scalewet;
  329.   rev->width = initialwidth;
  330.   rev->gain = fixedgain;
  331.   /* now its okay to update reverb */
  332.   fluid_revmodel_update(rev);
  333.   /* Clear all buffers */
  334.   fluid_revmodel_init(rev);
  335.   return rev;
  336. }
  337. void
  338. delete_fluid_revmodel(fluid_revmodel_t* rev)
  339. {
  340.   FLUID_FREE(rev);
  341. }
  342. static void
  343. fluid_revmodel_init(fluid_revmodel_t* rev)
  344. {
  345.   int i;
  346.   for (i = 0; i < numcombs;i++) {
  347.     fluid_comb_init(&rev->combL[i]);
  348.     fluid_comb_init(&rev->combR[i]);
  349.   }
  350.   for (i = 0; i < numallpasses; i++) {
  351.     fluid_allpass_init(&rev->allpassL[i]);
  352.     fluid_allpass_init(&rev->allpassR[i]);
  353.   }
  354. }
  355. void
  356. fluid_revmodel_reset(fluid_revmodel_t* rev)
  357. {
  358.   fluid_revmodel_init(rev);
  359. }
  360. void
  361. fluid_revmodel_processreplace(fluid_revmodel_t* rev, fluid_real_t *in,
  362.      fluid_real_t *left_out, fluid_real_t *right_out)
  363. {
  364.   int i, k = 0;
  365.   fluid_real_t outL, outR, input;
  366.   for (k = 0; k < FLUID_BUFSIZE; k++) {
  367.     outL = outR = 0;
  368.     /* The original Freeverb code expects a stereo signal and 'input'
  369.      * is set to the sum of the left and right input sample. Since
  370.      * this code works on a mono signal, 'input' is set to twice the
  371.      * input sample. */
  372.     input = (2 * in[k] + DC_OFFSET) * rev->gain;
  373.     /* Accumulate comb filters in parallel */
  374.     for (i = 0; i < numcombs; i++) {
  375.       fluid_comb_process(rev->combL[i], input, outL);
  376.       fluid_comb_process(rev->combR[i], input, outR);
  377.     }
  378.     /* Feed through allpasses in series */
  379.     for (i = 0; i < numallpasses; i++) {
  380.       fluid_allpass_process(rev->allpassL[i], outL);
  381.       fluid_allpass_process(rev->allpassR[i], outR);
  382.     }
  383.     /* Remove the DC offset */
  384.     outL -= DC_OFFSET;
  385.     outR -= DC_OFFSET;
  386.     /* Calculate output REPLACING anything already there */
  387.     left_out[k] = outL * rev->wet1 + outR * rev->wet2;
  388.     right_out[k] = outR * rev->wet1 + outL * rev->wet2;
  389.   }
  390. }
  391. void
  392. fluid_revmodel_processmix(fluid_revmodel_t* rev, fluid_real_t *in,
  393.  fluid_real_t *left_out, fluid_real_t *right_out)
  394. {
  395.   int i, k = 0;
  396.   fluid_real_t outL, outR, input;
  397.   for (k = 0; k < FLUID_BUFSIZE; k++) {
  398.     outL = outR = 0;
  399.     /* The original Freeverb code expects a stereo signal and 'input'
  400.      * is set to the sum of the left and right input sample. Since
  401.      * this code works on a mono signal, 'input' is set to twice the
  402.      * input sample. */
  403.     input = (2 * in[k] + DC_OFFSET) * rev->gain;
  404.     /* Accumulate comb filters in parallel */
  405.     for (i = 0; i < numcombs; i++) {
  406.     fluid_comb_process(rev->combL[i], input, outL);
  407.     fluid_comb_process(rev->combR[i], input, outR);
  408.     }
  409.     /* Feed through allpasses in series */
  410.     for (i = 0; i < numallpasses; i++) {
  411.       fluid_allpass_process(rev->allpassL[i], outL);
  412.       fluid_allpass_process(rev->allpassR[i], outR);
  413.     }
  414.     /* Remove the DC offset */
  415.     outL -= DC_OFFSET;
  416.     outR -= DC_OFFSET;
  417.     /* Calculate output MIXING with anything already there */
  418.     left_out[k] += outL * rev->wet1 + outR * rev->wet2;
  419.     right_out[k] += outR * rev->wet1 + outL * rev->wet2;
  420.   }
  421. }
  422. static void
  423. fluid_revmodel_update(fluid_revmodel_t* rev)
  424. {
  425.   /* Recalculate internal values after parameter change */
  426.   int i;
  427.   rev->wet1 = rev->wet * (rev->width / 2 + 0.5f);
  428.   rev->wet2 = rev->wet * ((1 - rev->width) / 2);
  429.   for (i = 0; i < numcombs; i++) {
  430.     fluid_comb_setfeedback(&rev->combL[i], rev->roomsize);
  431.     fluid_comb_setfeedback(&rev->combR[i], rev->roomsize);
  432.   }
  433.   for (i = 0; i < numcombs; i++) {
  434.     fluid_comb_setdamp(&rev->combL[i], rev->damp);
  435.     fluid_comb_setdamp(&rev->combR[i], rev->damp);
  436.   }
  437. }
  438. /**
  439.  * Set one or more reverb parameters.
  440.  * @param rev Reverb instance
  441.  * @param set One or more flags from #fluid_revmodel_set_t indicating what
  442.  *   parameters to set (#FLUID_REVMODEL_SET_ALL to set all parameters)
  443.  * @param roomsize Reverb room size
  444.  * @param damping Reverb damping
  445.  * @param width Reverb width
  446.  * @param level Reverb level
  447.  */
  448. void
  449. fluid_revmodel_set(fluid_revmodel_t* rev, int set, float roomsize,
  450.                    float damping, float width, float level)
  451. {
  452.   if (set & FLUID_REVMODEL_SET_ROOMSIZE)
  453.     rev->roomsize = (roomsize * scaleroom) + offsetroom;
  454.   if (set & FLUID_REVMODEL_SET_DAMPING)
  455.     rev->damp = damping * scaledamp;
  456.   if (set & FLUID_REVMODEL_SET_WIDTH)
  457.     rev->width = width;
  458.   if (set & FLUID_REVMODEL_SET_LEVEL)
  459.   {
  460.     fluid_clip(level, 0.0f, 1.0f);
  461.     rev->wet = level * scalewet;
  462.   }
  463.   fluid_revmodel_update (rev);
  464. }