Browse Source

Fixed a bug in the Oversampling class

tags/2021-05-28
Tom Poole 6 years ago
parent
commit
55ebd17dfc
1 changed files with 0 additions and 2 deletions
  1. +0
    -2
      modules/juce_dsp/processors/juce_Oversampling.cpp

+ 0
- 2
modules/juce_dsp/processors/juce_Oversampling.cpp View File

@@ -544,8 +544,6 @@ Oversampling<SampleType>::Oversampling (size_t newNumChannels, size_t newFactor,
{
jassert (isPositiveAndBelow (newFactor, 5) && numChannels > 0);
factorOversampling = static_cast<size_t> (1) << newFactor;
if (newFactor == 0)
{
addDummyOversamplingStage();


Loading…
Cancel
Save