mirror of
https://github.com/cookiengineer/audacity
synced 2025-09-17 16:50:26 +02:00
Merge pull request #45 from spider-mario/ladspa-latency
Do not multiply the latency of LADSPA effects by two
This commit is contained in:
commit
6aa51fe3d9
@ -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