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.

119 lines
3.6KB

  1. /*
  2. ==============================================================================
  3. This file is part of the JUCE library.
  4. Copyright (c) 2015 - ROLI Ltd.
  5. Permission is granted to use this software under the terms of either:
  6. a) the GPL v2 (or any later version)
  7. b) the Affero GPL v3
  8. Details of these licenses can be found at: www.gnu.org/licenses
  9. JUCE is distributed in the hope that it will be useful, but WITHOUT ANY
  10. WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
  11. A PARTICULAR PURPOSE. See the GNU General Public License for more details.
  12. ------------------------------------------------------------------------------
  13. To release a closed-source product which uses JUCE, commercial licenses are
  14. available: visit www.juce.com for more information.
  15. ==============================================================================
  16. */
  17. #ifdef JUCE_AUDIO_BASICS_H_INCLUDED
  18. /* When you add this cpp file to your project, you mustn't include it in a file where you've
  19. already included any other headers - just put it inside a file on its own, possibly with your config
  20. flags preceding it, but don't include anything else. That also includes avoiding any automatic prefix
  21. header files that the compiler may be using.
  22. */
  23. #error "Incorrect use of JUCE cpp file"
  24. #endif
  25. #include "AppConfig.h"
  26. #include "juce_audio_basics.h"
  27. #if JUCE_MINGW && ! defined (__SSE2__)
  28. #define JUCE_USE_SSE_INTRINSICS 0
  29. #endif
  30. #if JUCE_MINGW && ! defined (alloca)
  31. #define alloca __builtin_alloca
  32. #endif
  33. #ifndef JUCE_USE_SSE_INTRINSICS
  34. #define JUCE_USE_SSE_INTRINSICS 1
  35. #endif
  36. #if ! JUCE_INTEL
  37. #undef JUCE_USE_SSE_INTRINSICS
  38. #endif
  39. #if JUCE_USE_SSE_INTRINSICS
  40. #include <emmintrin.h>
  41. #endif
  42. #ifndef JUCE_USE_VDSP_FRAMEWORK
  43. #define JUCE_USE_VDSP_FRAMEWORK 1
  44. #endif
  45. #if (JUCE_MAC || JUCE_IOS) && JUCE_USE_VDSP_FRAMEWORK
  46. #include <Accelerate/Accelerate.h>
  47. #else
  48. #undef JUCE_USE_VDSP_FRAMEWORK
  49. #endif
  50. #if __ARM_NEON__ && ! (JUCE_USE_VDSP_FRAMEWORK || defined (JUCE_USE_ARM_NEON))
  51. #define JUCE_USE_ARM_NEON 1
  52. #endif
  53. #if TARGET_IPHONE_SIMULATOR
  54. #ifdef JUCE_USE_ARM_NEON
  55. #undef JUCE_USE_ARM_NEON
  56. #endif
  57. #define JUCE_USE_ARM_NEON 0
  58. #endif
  59. #if JUCE_USE_ARM_NEON
  60. #include <arm_neon.h>
  61. #endif
  62. namespace juce
  63. {
  64. #include "buffers/juce_AudioDataConverters.cpp"
  65. #include "buffers/juce_FloatVectorOperations.cpp"
  66. #include "buffers/juce_AudioChannelSet.cpp"
  67. #include "effects/juce_IIRFilter.cpp"
  68. #include "effects/juce_IIRFilterOld.cpp"
  69. #include "effects/juce_LagrangeInterpolator.cpp"
  70. #include "effects/juce_CatmullRomInterpolator.cpp"
  71. #include "effects/juce_FFT.cpp"
  72. #include "midi/juce_MidiBuffer.cpp"
  73. #include "midi/juce_MidiFile.cpp"
  74. #include "midi/juce_MidiKeyboardState.cpp"
  75. #include "midi/juce_MidiMessage.cpp"
  76. #include "midi/juce_MidiMessageSequence.cpp"
  77. #include "midi/juce_MidiRPN.cpp"
  78. #include "mpe/juce_MPEValue.cpp"
  79. #include "mpe/juce_MPENote.cpp"
  80. #include "mpe/juce_MPEZone.cpp"
  81. #include "mpe/juce_MPEZoneLayout.cpp"
  82. #include "mpe/juce_MPEInstrument.cpp"
  83. #include "mpe/juce_MPEMessages.cpp"
  84. #include "mpe/juce_MPESynthesiserBase.cpp"
  85. #include "mpe/juce_MPESynthesiserVoice.cpp"
  86. #include "mpe/juce_MPESynthesiser.cpp"
  87. #include "sources/juce_BufferingAudioSource.cpp"
  88. #include "sources/juce_ChannelRemappingAudioSource.cpp"
  89. #include "sources/juce_IIRFilterAudioSource.cpp"
  90. #include "sources/juce_MixerAudioSource.cpp"
  91. #include "sources/juce_ResamplingAudioSource.cpp"
  92. #include "sources/juce_ReverbAudioSource.cpp"
  93. #include "sources/juce_ToneGeneratorAudioSource.cpp"
  94. #include "synthesisers/juce_Synthesiser.cpp"
  95. }