Audio plugin host https://kx.studio/carla
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

110 lines
3.7KB

  1. /*
  2. ==============================================================================
  3. This file is part of the JUCE library.
  4. Copyright (c) 2022 - Raw Material Software Limited
  5. JUCE is an open source library subject to commercial or open-source
  6. licensing.
  7. By using JUCE, you agree to the terms of both the JUCE 7 End-User License
  8. Agreement and JUCE Privacy Policy.
  9. End User License Agreement: www.juce.com/juce-7-licence
  10. Privacy Policy: www.juce.com/juce-privacy-policy
  11. Or: You may also use this code under the terms of the GPL v3 (see
  12. www.gnu.org/licenses).
  13. JUCE IS PROVIDED "AS IS" WITHOUT ANY WARRANTY, AND ALL WARRANTIES, WHETHER
  14. EXPRESSED OR IMPLIED, INCLUDING MERCHANTABILITY AND FITNESS FOR PURPOSE, ARE
  15. DISCLAIMED.
  16. ==============================================================================
  17. */
  18. #ifdef JUCE_DSP_H_INCLUDED
  19. /* When you add this cpp file to your project, you mustn't include it in a file where you've
  20. already included any other headers - just put it inside a file on its own, possibly with your config
  21. flags preceding it, but don't include anything else. That also includes avoiding any automatic prefix
  22. header files that the compiler may be using.
  23. */
  24. #error "Incorrect use of JUCE cpp file"
  25. #endif
  26. #include "juce_dsp.h"
  27. #ifndef JUCE_USE_VDSP_FRAMEWORK
  28. #define JUCE_USE_VDSP_FRAMEWORK 1
  29. #endif
  30. #if (JUCE_MAC || JUCE_IOS) && JUCE_USE_VDSP_FRAMEWORK
  31. #include <Accelerate/Accelerate.h>
  32. #else
  33. #undef JUCE_USE_VDSP_FRAMEWORK
  34. #endif
  35. #if JUCE_DSP_USE_INTEL_MKL
  36. #include <mkl_dfti.h>
  37. #endif
  38. #if _IPP_SEQUENTIAL_STATIC || _IPP_SEQUENTIAL_DYNAMIC || _IPP_PARALLEL_STATIC || _IPP_PARALLEL_DYNAMIC
  39. #include <ippcore.h>
  40. #include <ipps.h>
  41. #define JUCE_IPP_AVAILABLE 1
  42. #endif
  43. #include "processors/juce_FIRFilter.cpp"
  44. #include "processors/juce_IIRFilter.cpp"
  45. #include "processors/juce_FirstOrderTPTFilter.cpp"
  46. #include "processors/juce_Panner.cpp"
  47. #include "processors/juce_Oversampling.cpp"
  48. #include "processors/juce_BallisticsFilter.cpp"
  49. #include "processors/juce_LinkwitzRileyFilter.cpp"
  50. #include "processors/juce_DelayLine.cpp"
  51. #include "processors/juce_DryWetMixer.cpp"
  52. #include "processors/juce_StateVariableTPTFilter.cpp"
  53. #include "maths/juce_SpecialFunctions.cpp"
  54. #include "maths/juce_Matrix.cpp"
  55. #include "maths/juce_LookupTable.cpp"
  56. #include "frequency/juce_FFT.cpp"
  57. #include "frequency/juce_Convolution.cpp"
  58. #include "frequency/juce_Windowing.cpp"
  59. #include "filter_design/juce_FilterDesign.cpp"
  60. #include "widgets/juce_LadderFilter.cpp"
  61. #include "widgets/juce_Compressor.cpp"
  62. #include "widgets/juce_NoiseGate.cpp"
  63. #include "widgets/juce_Limiter.cpp"
  64. #include "widgets/juce_Phaser.cpp"
  65. #include "widgets/juce_Chorus.cpp"
  66. #if JUCE_USE_SIMD
  67. #if defined(__i386__) || defined(__amd64__) || defined(_M_X64) || defined(_X86_) || defined(_M_IX86) || defined(__riscv) || defined(__EMSCRIPTEN__)
  68. #ifdef __AVX2__
  69. #include "native/juce_avx_SIMDNativeOps.cpp"
  70. #else
  71. #include "native/juce_sse_SIMDNativeOps.cpp"
  72. #endif
  73. #elif defined(__arm__) || defined(_M_ARM) || defined (__arm64__) || defined (__aarch64__)
  74. #include "native/juce_neon_SIMDNativeOps.cpp"
  75. #else
  76. #error "SIMD register support not implemented for this platform"
  77. #endif
  78. #endif
  79. #if JUCE_UNIT_TESTS
  80. #include "maths/juce_Matrix_test.cpp"
  81. #include "maths/juce_LogRampedValue_test.cpp"
  82. #if JUCE_USE_SIMD
  83. #include "containers/juce_SIMDRegister_test.cpp"
  84. #endif
  85. #include "containers/juce_AudioBlock_test.cpp"
  86. #include "containers/juce_FixedSizeFunction_test.cpp"
  87. #include "frequency/juce_Convolution_test.cpp"
  88. #include "frequency/juce_FFT_test.cpp"
  89. #include "processors/juce_FIRFilter_test.cpp"
  90. #include "processors/juce_ProcessorChain_test.cpp"
  91. #endif