1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-07-15 08:07:41 +02:00

Do not multiply the latency of LADSPA effects by two.

This commit is contained in:
spider-mario 2015-05-17 18:16:08 +02:00
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;