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.

124 lines
4.3KB

  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. The code included in this file is provided under the terms of the ISC license
  8. http://www.isc.org/downloads/software-support-policy/isc-license. Permission
  9. To use, copy, modify, and/or distribute this software for any purpose with or
  10. without fee is hereby granted provided that the above copyright notice and
  11. this permission notice appear in all copies.
  12. JUCE IS PROVIDED "AS IS" WITHOUT ANY WARRANTY, AND ALL WARRANTIES, WHETHER
  13. EXPRESSED OR IMPLIED, INCLUDING MERCHANTABILITY AND FITNESS FOR PURPOSE, ARE
  14. DISCLAIMED.
  15. ==============================================================================
  16. */
  17. /*******************************************************************************
  18. The block below describes the properties of this module, and is read by
  19. the Projucer to automatically generate project code that uses it.
  20. For details about the syntax and how to create or use a module, see the
  21. JUCE Module Format.md file.
  22. BEGIN_JUCE_MODULE_DECLARATION
  23. ID: juce_audio_basics
  24. vendor: juce
  25. version: 7.0.1
  26. name: JUCE audio and MIDI data classes
  27. description: Classes for audio buffer manipulation, midi message handling, synthesis, etc.
  28. website: http://www.juce.com/juce
  29. license: ISC
  30. minimumCppStandard: 14
  31. dependencies: juce_core
  32. OSXFrameworks: Accelerate
  33. iOSFrameworks: Accelerate
  34. END_JUCE_MODULE_DECLARATION
  35. *******************************************************************************/
  36. #pragma once
  37. #define JUCE_AUDIO_BASICS_H_INCLUDED
  38. #include <juce_core/juce_core.h>
  39. //==============================================================================
  40. #undef Complex // apparently some C libraries actually define these symbols (!)
  41. #undef Factor
  42. //==============================================================================
  43. #if JUCE_MINGW && ! defined (__SSE2__)
  44. #define JUCE_USE_SSE_INTRINSICS 0
  45. #endif
  46. #ifndef JUCE_USE_SSE_INTRINSICS
  47. #define JUCE_USE_SSE_INTRINSICS 1
  48. #endif
  49. #if ! JUCE_INTEL
  50. #undef JUCE_USE_SSE_INTRINSICS
  51. #endif
  52. #if __ARM_NEON__ && ! (JUCE_USE_VDSP_FRAMEWORK || defined (JUCE_USE_ARM_NEON))
  53. #define JUCE_USE_ARM_NEON 1
  54. #endif
  55. #if TARGET_IPHONE_SIMULATOR
  56. #ifdef JUCE_USE_ARM_NEON
  57. #undef JUCE_USE_ARM_NEON
  58. #endif
  59. #define JUCE_USE_ARM_NEON 0
  60. #endif
  61. //==============================================================================
  62. #include "buffers/juce_AudioDataConverters.h"
  63. #include "buffers/juce_FloatVectorOperations.h"
  64. #include "buffers/juce_AudioSampleBuffer.h"
  65. #include "buffers/juce_AudioChannelSet.h"
  66. #include "buffers/juce_AudioProcessLoadMeasurer.h"
  67. #include "utilities/juce_Decibels.h"
  68. #include "utilities/juce_IIRFilter.h"
  69. #include "utilities/juce_GenericInterpolator.h"
  70. #include "utilities/juce_Interpolators.h"
  71. #include "utilities/juce_SmoothedValue.h"
  72. #include "utilities/juce_Reverb.h"
  73. #include "utilities/juce_ADSR.h"
  74. #include "midi/juce_MidiMessage.h"
  75. #include "midi/juce_MidiBuffer.h"
  76. #include "midi/juce_MidiMessageSequence.h"
  77. #include "midi/juce_MidiFile.h"
  78. #include "midi/juce_MidiKeyboardState.h"
  79. #include "midi/juce_MidiRPN.h"
  80. #include "mpe/juce_MPEValue.h"
  81. #include "mpe/juce_MPENote.h"
  82. #include "mpe/juce_MPEZoneLayout.h"
  83. #include "mpe/juce_MPEInstrument.h"
  84. #include "mpe/juce_MPEMessages.h"
  85. #include "mpe/juce_MPESynthesiserBase.h"
  86. #include "mpe/juce_MPESynthesiserVoice.h"
  87. #include "mpe/juce_MPESynthesiser.h"
  88. #include "mpe/juce_MPEUtils.h"
  89. #include "sources/juce_AudioSource.h"
  90. #include "sources/juce_PositionableAudioSource.h"
  91. #include "sources/juce_BufferingAudioSource.h"
  92. #include "sources/juce_ChannelRemappingAudioSource.h"
  93. #include "sources/juce_IIRFilterAudioSource.h"
  94. #include "sources/juce_MemoryAudioSource.h"
  95. #include "sources/juce_MixerAudioSource.h"
  96. #include "sources/juce_ResamplingAudioSource.h"
  97. #include "sources/juce_ReverbAudioSource.h"
  98. #include "sources/juce_ToneGeneratorAudioSource.h"
  99. #include "synthesisers/juce_Synthesiser.h"
  100. #include "audio_play_head/juce_AudioPlayHead.h"