decreased minimal gate from 0.0001f to 0.00001f as it turned out that some effects were cut off with previous value
git-svn-id: https://lmms.svn.sf.net/svnroot/lmms/trunk/lmms@824 0778d3d1-df1d-0410-868b-ea421aaaa00d
This commit is contained in:
@@ -92,7 +92,7 @@ bool FASTCALL bassBoosterEffect::processAudioBuffer( surroundSampleFrame * _buf,
|
||||
}
|
||||
}
|
||||
|
||||
if( out_sum <= getGate()+0.0001f )
|
||||
if( out_sum <= getGate()+0.00001f )
|
||||
{
|
||||
incrementBufferCount();
|
||||
if( getBufferCount() > getTimeout() )
|
||||
|
||||
@@ -439,7 +439,7 @@ bool FASTCALL ladspaEffect::processAudioBuffer( surroundSampleFrame * _buf,
|
||||
|
||||
// Check whether we need to continue processing input. Restart the
|
||||
// counter if the threshold has been exceeded.
|
||||
if( out_sum <= getGate()+0.0001f )
|
||||
if( out_sum <= getGate()+0.00001f )
|
||||
{
|
||||
incrementBufferCount();
|
||||
if( getBufferCount() > getTimeout() )
|
||||
|
||||
Reference in New Issue
Block a user