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.

123 lines
4.3KB

  1. /*
  2. ==============================================================================
  3. This file is part of the JUCE library.
  4. Copyright (c) 2020 - 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.txt file.
  22. BEGIN_JUCE_MODULE_DECLARATION
  23. ID: juce_audio_basics
  24. vendor: juce
  25. version: 6.0.0
  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. dependencies: juce_core
  31. OSXFrameworks: Accelerate
  32. iOSFrameworks: Accelerate
  33. END_JUCE_MODULE_DECLARATION
  34. *******************************************************************************/
  35. #pragma once
  36. #define JUCE_AUDIO_BASICS_H_INCLUDED
  37. #include <juce_core/juce_core.h>
  38. //==============================================================================
  39. #undef Complex // apparently some C libraries actually define these symbols (!)
  40. #undef Factor
  41. //==============================================================================
  42. #if JUCE_MINGW && ! defined (__SSE2__)
  43. #define JUCE_USE_SSE_INTRINSICS 0
  44. #endif
  45. #ifndef JUCE_USE_SSE_INTRINSICS
  46. #define JUCE_USE_SSE_INTRINSICS 1
  47. #endif
  48. #if ! JUCE_INTEL
  49. #undef JUCE_USE_SSE_INTRINSICS
  50. #endif
  51. #if __ARM_NEON__ && ! (JUCE_USE_VDSP_FRAMEWORK || defined (JUCE_USE_ARM_NEON))
  52. #define JUCE_USE_ARM_NEON 1
  53. #endif
  54. #if TARGET_IPHONE_SIMULATOR
  55. #ifdef JUCE_USE_ARM_NEON
  56. #undef JUCE_USE_ARM_NEON
  57. #endif
  58. #define JUCE_USE_ARM_NEON 0
  59. #endif
  60. //==============================================================================
  61. #include "buffers/juce_AudioDataConverters.h"
  62. #include "buffers/juce_FloatVectorOperations.h"
  63. #include "buffers/juce_AudioSampleBuffer.h"
  64. #include "buffers/juce_AudioChannelSet.h"
  65. #include "buffers/juce_AudioProcessLoadMeasurer.h"
  66. #include "utilities/juce_Decibels.h"
  67. #include "utilities/juce_IIRFilter.h"
  68. #include "utilities/juce_GenericInterpolator.h"
  69. #include "utilities/juce_Interpolators.h"
  70. #include "utilities/juce_SmoothedValue.h"
  71. #include "utilities/juce_Reverb.h"
  72. #include "utilities/juce_ADSR.h"
  73. #include "midi/juce_MidiMessage.h"
  74. #include "midi/juce_MidiBuffer.h"
  75. #include "midi/juce_MidiMessageSequence.h"
  76. #include "midi/juce_MidiFile.h"
  77. #include "midi/juce_MidiKeyboardState.h"
  78. #include "midi/juce_MidiRPN.h"
  79. #include "mpe/juce_MPEValue.h"
  80. #include "mpe/juce_MPENote.h"
  81. #include "mpe/juce_MPEZoneLayout.h"
  82. #include "mpe/juce_MPEInstrument.h"
  83. #include "mpe/juce_MPEMessages.h"
  84. #include "mpe/juce_MPESynthesiserBase.h"
  85. #include "mpe/juce_MPESynthesiserVoice.h"
  86. #include "mpe/juce_MPESynthesiser.h"
  87. #include "mpe/juce_MPEUtils.h"
  88. #include "sources/juce_AudioSource.h"
  89. #include "sources/juce_PositionableAudioSource.h"
  90. #include "sources/juce_BufferingAudioSource.h"
  91. #include "sources/juce_ChannelRemappingAudioSource.h"
  92. #include "sources/juce_IIRFilterAudioSource.h"
  93. #include "sources/juce_MemoryAudioSource.h"
  94. #include "sources/juce_MixerAudioSource.h"
  95. #include "sources/juce_ResamplingAudioSource.h"
  96. #include "sources/juce_ReverbAudioSource.h"
  97. #include "sources/juce_ToneGeneratorAudioSource.h"
  98. #include "synthesisers/juce_Synthesiser.h"
  99. #include "audio_play_head/juce_AudioPlayHead.h"