Browse Source

FFT: Remove unnecessary check in IPP FFT wrapper

v6.1.6
reuk 4 years ago
parent
commit
84cd6152be
No known key found for this signature in database GPG Key ID: 9ADCD339CFC98A11
1 changed files with 0 additions and 3 deletions
  1. +0
    -3
      modules/juce_dsp/frequency/juce_FFT.cpp

+ 0
- 3
modules/juce_dsp/frequency/juce_FFT.cpp View File

@@ -904,9 +904,6 @@ private:
if (Traits::init (&specPtr, order, flag, hint, specBuf.get(), initBuf.get()) != ippStsNoErr)
return {};
if (reinterpret_cast<const Ipp8u*> (specPtr) != specBuf.get())
return {};
return { std::move (specBuf), IppPtr (ippsMalloc_8u (workSize)), specPtr };
}


Loading…
Cancel
Save