<br><div class="gmail_quote"><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;"><div class="gmail_quote"><div>LADSPA vocoder in JACK Rack has the same problem. Being already pretty experienced in this regard (hehehe) I can say that this is because of an effect which I forgot how is called when the plugin stops receiving the signal but continues to try to process data and starts going into calculations of really small numbers and it triggers a software part of your CPU and it uses a lot of resources, these calculations. The developer should find a way to fix this somehow.<br>
</div></div></blockquote><div><br>Your thinking of "Denormal" numbers. <a href="http://en.wikipedia.org/wiki/Denormal_number">http://en.wikipedia.org/wiki/Denormal_number</a><br><br>A nice "quick" fix for these is:<br>
if ( number < 0.000000001)<br>      number = 0.0;<br><br>;-) <br><br>-Harry<br> <br></div></div>