2 ==============================================================================
4 This file is part of the JUCE library.
5 Copyright (c) 2022 - Raw Material Software Limited
7 JUCE is an open source library subject to commercial or open-source
10 The code included in this file is provided under the terms of the ISC license
11 http://www.isc.org/downloads/software-support-policy/isc-license. Permission
12 To use, copy, modify, and/or distribute this software for any purpose with or
13 without fee is hereby granted provided that the above copyright notice and
14 this permission notice appear in all copies.
16 JUCE IS PROVIDED "AS IS" WITHOUT ANY WARRANTY, AND ALL WARRANTIES, WHETHER
17 EXPRESSED OR IMPLIED, INCLUDING MERCHANTABILITY AND FITNESS FOR PURPOSE, ARE
20 ==============================================================================
24 /*******************************************************************************
25 The block below describes the properties of this module, and is read by
26 the Projucer to automatically generate project code that uses it.
27 For details about the syntax and how to create or use a module, see the
28 JUCE Module Format.md file.
31 BEGIN_JUCE_MODULE_DECLARATION
36 name: JUCE audio and MIDI data classes
37 description: Classes for audio buffer manipulation, midi message handling, synthesis, etc.
38 website: http://www.juce.com/juce
40 minimumCppStandard: 14
42 dependencies: juce_core
43 OSXFrameworks: Accelerate
44 iOSFrameworks: Accelerate
46 END_JUCE_MODULE_DECLARATION
48 *******************************************************************************/
52 #define JUCE_AUDIO_BASICS_H_INCLUDED
54 #include <juce_core/juce_core.h>
56 //==============================================================================
57 #undef Complex // apparently some C libraries actually define these symbols (!)
60 //==============================================================================
61 #if JUCE_MINGW && ! defined (__SSE2__)
62 #define JUCE_USE_SSE_INTRINSICS 0
65 #ifndef JUCE_USE_SSE_INTRINSICS
66 #define JUCE_USE_SSE_INTRINSICS 1
70 #undef JUCE_USE_SSE_INTRINSICS
73 #if __ARM_NEON__ && ! (JUCE_USE_VDSP_FRAMEWORK || defined (JUCE_USE_ARM_NEON))
74 #define JUCE_USE_ARM_NEON 1
77 #if TARGET_IPHONE_SIMULATOR
78 #ifdef JUCE_USE_ARM_NEON
79 #undef JUCE_USE_ARM_NEON
81 #define JUCE_USE_ARM_NEON 0
84 //==============================================================================
85 #include "buffers/juce_AudioDataConverters.h"
86 #include "buffers/juce_FloatVectorOperations.h"
87 #include "buffers/juce_AudioSampleBuffer.h"
88 #include "buffers/juce_AudioChannelSet.h"
89 #include "buffers/juce_AudioProcessLoadMeasurer.h"
90 #include "utilities/juce_Decibels.h"
91 #include "utilities/juce_IIRFilter.h"
92 #include "utilities/juce_GenericInterpolator.h"
93 #include "utilities/juce_Interpolators.h"
94 #include "utilities/juce_SmoothedValue.h"
95 #include "utilities/juce_Reverb.h"
96 #include "utilities/juce_ADSR.h"
97 #include "midi/juce_MidiMessage.h"
98 #include "midi/juce_MidiBuffer.h"
99 #include "midi/juce_MidiMessageSequence.h"
100 #include "midi/juce_MidiFile.h"
101 #include "midi/juce_MidiKeyboardState.h"
102 #include "midi/juce_MidiRPN.h"
103 #include "mpe/juce_MPEValue.h"
104 #include "mpe/juce_MPENote.h"
105 #include "mpe/juce_MPEZoneLayout.h"
106 #include "mpe/juce_MPEInstrument.h"
107 #include "mpe/juce_MPEMessages.h"
108 #include "mpe/juce_MPESynthesiserBase.h"
109 #include "mpe/juce_MPESynthesiserVoice.h"
110 #include "mpe/juce_MPESynthesiser.h"
111 #include "mpe/juce_MPEUtils.h"
112 #include "sources/juce_AudioSource.h"
113 #include "sources/juce_PositionableAudioSource.h"
114 #include "sources/juce_BufferingAudioSource.h"
115 #include "sources/juce_ChannelRemappingAudioSource.h"
116 #include "sources/juce_IIRFilterAudioSource.h"
117 #include "sources/juce_MemoryAudioSource.h"
118 #include "sources/juce_MixerAudioSource.h"
119 #include "sources/juce_ResamplingAudioSource.h"
120 #include "sources/juce_ReverbAudioSource.h"
121 #include "sources/juce_ToneGeneratorAudioSource.h"
122 #include "synthesisers/juce_Synthesiser.h"
123 #include "audio_play_head/juce_AudioPlayHead.h"