mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Fix for the dsp::Convolution class
This commit is contained in:
parent
7297f62182
commit
326aa13023
1 changed files with 2 additions and 0 deletions
|
|
@ -283,6 +283,8 @@ struct ConvolutionEngine
|
|||
|
||||
FloatVectorOperations::addWithMultiply (&(output[FFTSizeDiv2]), input, &(impulse[FFTSizeDiv2]), static_cast<int> (FFTSizeDiv2));
|
||||
FloatVectorOperations::addWithMultiply (&(output[FFTSizeDiv2]), &(input[FFTSizeDiv2]), impulse, static_cast<int> (FFTSizeDiv2));
|
||||
|
||||
output[FFTSize] += input[FFTSize] * impulse[FFTSize];
|
||||
}
|
||||
|
||||
/** Undo the re-organization of samples from the function prepareForConvolution.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue