93 lines
2.9 KiB
C++
93 lines
2.9 KiB
C++
/*
|
|
==============================================================================
|
|
|
|
This file is part of the JUCE library.
|
|
Copyright (c) 2017 - ROLI Ltd.
|
|
|
|
JUCE is an open source library subject to commercial or open-source
|
|
licensing.
|
|
|
|
By using JUCE, you agree to the terms of both the JUCE 5 End-User License
|
|
Agreement and JUCE 5 Privacy Policy (both updated and effective as of the
|
|
27th April 2017).
|
|
|
|
End User License Agreement: www.juce.com/juce-5-licence
|
|
Privacy Policy: www.juce.com/juce-5-privacy-policy
|
|
|
|
Or: You may also use this code under the terms of the GPL v3 (see
|
|
www.gnu.org/licenses).
|
|
|
|
JUCE IS PROVIDED "AS IS" WITHOUT ANY WARRANTY, AND ALL WARRANTIES, WHETHER
|
|
EXPRESSED OR IMPLIED, INCLUDING MERCHANTABILITY AND FITNESS FOR PURPOSE, ARE
|
|
DISCLAIMED.
|
|
|
|
==============================================================================
|
|
*/
|
|
|
|
#ifdef JUCE_DSP_H_INCLUDED
|
|
/* When you add this cpp file to your project, you mustn't include it in a file where you've
|
|
already included any other headers - just put it inside a file on its own, possibly with your config
|
|
flags preceding it, but don't include anything else. That also includes avoiding any automatic prefix
|
|
header files that the compiler may be using.
|
|
*/
|
|
#error "Incorrect use of JUCE cpp file"
|
|
#endif
|
|
|
|
#include "juce_dsp.h"
|
|
|
|
#if ! JUCE_HAS_CONSTEXPR
|
|
#ifndef JUCE_DEMO_RUNNER
|
|
#error "The juce_dsp module requires a compiler that supports constexpr"
|
|
#endif
|
|
#else
|
|
|
|
#ifndef JUCE_USE_VDSP_FRAMEWORK
|
|
#define JUCE_USE_VDSP_FRAMEWORK 1
|
|
#endif
|
|
|
|
#if (JUCE_MAC || JUCE_IOS) && JUCE_USE_VDSP_FRAMEWORK
|
|
#include <Accelerate/Accelerate.h>
|
|
#else
|
|
#undef JUCE_USE_VDSP_FRAMEWORK
|
|
#endif
|
|
|
|
#if JUCE_DSP_USE_INTEL_MKL
|
|
#include <mkl_dfti.h>
|
|
#endif
|
|
|
|
#include "processors/juce_FIRFilter.cpp"
|
|
#include "processors/juce_IIRFilter.cpp"
|
|
#include "processors/juce_LadderFilter.cpp"
|
|
#include "processors/juce_Oversampling.cpp"
|
|
#include "maths/juce_SpecialFunctions.cpp"
|
|
#include "maths/juce_Matrix.cpp"
|
|
#include "maths/juce_LookupTable.cpp"
|
|
#include "frequency/juce_FFT.cpp"
|
|
#include "frequency/juce_Convolution.cpp"
|
|
#include "frequency/juce_Windowing.cpp"
|
|
#include "filter_design/juce_FilterDesign.cpp"
|
|
|
|
#if JUCE_USE_SIMD
|
|
#if defined(__i386__) || defined(__amd64__) || defined(_M_X64) || defined(_X86_) || defined(_M_IX86)
|
|
#ifdef __AVX2__
|
|
#include "native/juce_avx_SIMDNativeOps.cpp"
|
|
#else
|
|
#include "native/juce_sse_SIMDNativeOps.cpp"
|
|
#endif
|
|
#elif defined(__arm__) || defined(_M_ARM) || defined (__arm64__) || defined (__aarch64__)
|
|
#include "native/juce_neon_SIMDNativeOps.cpp"
|
|
#else
|
|
#error "SIMD register support not implemented for this platform"
|
|
#endif
|
|
#endif
|
|
|
|
#if JUCE_UNIT_TESTS
|
|
#include "maths/juce_Matrix_test.cpp"
|
|
#if JUCE_USE_SIMD
|
|
#include "containers/juce_SIMDRegister_test.cpp"
|
|
#endif
|
|
#include "frequency/juce_FFT_test.cpp"
|
|
#include "processors/juce_FIRFilter_test.cpp"
|
|
#endif
|
|
#endif
|