mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
DSP: Fixed a bug when oversampling multiple channels
This commit is contained in:
parent
262357f091
commit
1ff97d3688
1 changed files with 1 additions and 1 deletions
|
|
@ -282,7 +282,7 @@ public:
|
|||
SampleType normalizedTransitionWidthUp,
|
||||
SampleType stopbandAttenuationdBUp,
|
||||
SampleType normalizedTransitionWidthDown,
|
||||
SampleType stopbandAttenuationdBDown) : OversamplingEngine<SampleType> (2, numChannels)
|
||||
SampleType stopbandAttenuationdBDown) : OversamplingEngine<SampleType> (numChannels, 2)
|
||||
{
|
||||
auto structureUp = dsp::FilterDesign<SampleType>::designIIRLowpassHalfBandPolyphaseAllpassMethod (normalizedTransitionWidthUp, stopbandAttenuationdBUp);
|
||||
dsp::IIR::Coefficients<SampleType> coeffsUp = getCoefficients (structureUp);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue