1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

DryWetMixer: Make mixers with maximum delays of 0 slightly more efficient

This commit is contained in:
reuk 2021-07-27 11:39:56 +01:00
parent 8f29b2cb83
commit c27279b356
No known key found for this signature in database
GPG key ID: 9ADCD339CFC98A11
2 changed files with 233 additions and 11 deletions

View file

@ -112,6 +112,8 @@ private:
SampleType mix = 1.0;
MixingRule currentMixingRule = MixingRule::linear;
double sampleRate = 44100.0;
size_t offsetInBuffer = 0, numUsedSamples = 0;
int maximumWetLatencyInSamples = 0;
};
} // namespace dsp