mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
DelayLine: Fix early wrapping in Lagrange interpolation
Co-authored-by: LeonPS <leonps531@gmail.com>
This commit is contained in:
parent
f0aacca62c
commit
0037e44a23
2 changed files with 2 additions and 2 deletions
|
|
@ -125,7 +125,7 @@ public:
|
|||
For very short delay times, the result of getMaximumDelayInSamples() may
|
||||
differ from the last value passed to setMaximumDelayInSamples().
|
||||
*/
|
||||
int getMaximumDelayInSamples() const noexcept { return totalSize - 1; }
|
||||
int getMaximumDelayInSamples() const noexcept { return totalSize - 2; }
|
||||
|
||||
/** Resets the internal state variables of the processor. */
|
||||
void reset();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue