mirror of
https://github.com/cookiengineer/audacity
synced 2025-07-15 16:17:41 +02:00
Do not multiply the latency of LADSPA effects by two.
This commit is contained in:
parent
54edb67341
commit
40cc5d67b6
@ -896,7 +896,7 @@ sampleCount LadspaEffect::GetLatency()
|
|||||||
if (mUseLatency && mLatencyPort >= 0 && !mLatencyDone)
|
if (mUseLatency && mLatencyPort >= 0 && !mLatencyDone)
|
||||||
{
|
{
|
||||||
mLatencyDone = true;
|
mLatencyDone = true;
|
||||||
return mOutputControls[mLatencyPort] * 2;
|
return mOutputControls[mLatencyPort];
|
||||||
}
|
}
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user