mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-09 23:34:20 +00:00
117 lines
4.4 KiB
C++
117 lines
4.4 KiB
C++
/*
|
|
==============================================================================
|
|
|
|
This file is part of the JUCE framework.
|
|
Copyright (c) Raw Material Software Limited
|
|
|
|
JUCE is an open source framework subject to commercial or open source
|
|
licensing.
|
|
|
|
By downloading, installing, or using the JUCE framework, or combining the
|
|
JUCE framework with any other source code, object code, content or any other
|
|
copyrightable work, you agree to the terms of the JUCE End User Licence
|
|
Agreement, and all incorporated terms including the JUCE Privacy Policy and
|
|
the JUCE Website Terms of Service, as applicable, which will bind you. If you
|
|
do not agree to the terms of these agreements, we will not license the JUCE
|
|
framework to you, and you must discontinue the installation or download
|
|
process and cease use of the JUCE framework.
|
|
|
|
JUCE End User Licence Agreement: https://juce.com/legal/juce-8-licence/
|
|
JUCE Privacy Policy: https://juce.com/juce-privacy-policy
|
|
JUCE Website Terms of Service: https://juce.com/juce-website-terms-of-service/
|
|
|
|
Or:
|
|
|
|
You may also use this code under the terms of the AGPLv3:
|
|
https://www.gnu.org/licenses/agpl-3.0.en.html
|
|
|
|
THE JUCE FRAMEWORK IS PROVIDED "AS IS" WITHOUT ANY WARRANTY, AND ALL
|
|
WARRANTIES, WHETHER EXPRESSED OR IMPLIED, INCLUDING WARRANTY OF
|
|
MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, ARE DISCLAIMED.
|
|
|
|
==============================================================================
|
|
*/
|
|
|
|
#ifdef JUCE_AUDIO_BASICS_H_INCLUDED
|
|
/* When you add this cpp file to your project, you mustn't include it in a file where you've
|
|
already included any other headers - just put it inside a file on its own, possibly with your config
|
|
flags preceding it, but don't include anything else. That also includes avoiding any automatic prefix
|
|
header files that the compiler may be using.
|
|
*/
|
|
#error "Incorrect use of JUCE cpp file"
|
|
#endif
|
|
|
|
#include "juce_audio_basics.h"
|
|
|
|
#if JUCE_USE_SSE_INTRINSICS
|
|
#include <emmintrin.h>
|
|
#endif
|
|
|
|
#if JUCE_MAC || JUCE_IOS
|
|
#ifndef JUCE_USE_VDSP_FRAMEWORK
|
|
#define JUCE_USE_VDSP_FRAMEWORK 1
|
|
#endif
|
|
|
|
#if JUCE_USE_VDSP_FRAMEWORK
|
|
#include <Accelerate/Accelerate.h>
|
|
#endif
|
|
|
|
#include "native/juce_AudioWorkgroup_mac.h"
|
|
|
|
#elif JUCE_USE_VDSP_FRAMEWORK
|
|
#undef JUCE_USE_VDSP_FRAMEWORK
|
|
#endif
|
|
|
|
#if JUCE_USE_ARM_NEON
|
|
#include <arm_neon.h>
|
|
#endif
|
|
|
|
#include "buffers/juce_AudioDataConverters.cpp"
|
|
#include "buffers/juce_FloatVectorOperations.cpp"
|
|
#include "buffers/juce_AudioChannelSet.cpp"
|
|
#include "buffers/juce_AudioProcessLoadMeasurer.cpp"
|
|
#include "utilities/juce_IIRFilter.cpp"
|
|
#include "utilities/juce_LagrangeInterpolator.cpp"
|
|
#include "utilities/juce_WindowedSincInterpolator.cpp"
|
|
#include "utilities/juce_Interpolators.cpp"
|
|
#include "utilities/juce_SmoothedValue.cpp"
|
|
#include "midi/juce_MidiBuffer.cpp"
|
|
#include "midi/juce_MidiFile.cpp"
|
|
#include "midi/juce_MidiKeyboardState.cpp"
|
|
#include "midi/juce_MidiMessage.cpp"
|
|
#include "midi/juce_MidiMessageSequence.cpp"
|
|
#include "midi/juce_MidiRPN.cpp"
|
|
#include "mpe/juce_MPEValue.cpp"
|
|
#include "mpe/juce_MPENote.cpp"
|
|
#include "mpe/juce_MPEZoneLayout.cpp"
|
|
#include "mpe/juce_MPEInstrument.cpp"
|
|
#include "mpe/juce_MPEMessages.cpp"
|
|
#include "mpe/juce_MPESynthesiserBase.cpp"
|
|
#include "mpe/juce_MPESynthesiserVoice.cpp"
|
|
#include "mpe/juce_MPESynthesiser.cpp"
|
|
#include "mpe/juce_MPEUtils.cpp"
|
|
#include "sources/juce_BufferingAudioSource.cpp"
|
|
#include "sources/juce_ChannelRemappingAudioSource.cpp"
|
|
#include "sources/juce_IIRFilterAudioSource.cpp"
|
|
#include "sources/juce_MemoryAudioSource.cpp"
|
|
#include "sources/juce_MixerAudioSource.cpp"
|
|
#include "sources/juce_ResamplingAudioSource.cpp"
|
|
#include "sources/juce_ReverbAudioSource.cpp"
|
|
#include "sources/juce_ToneGeneratorAudioSource.cpp"
|
|
#include "sources/juce_PositionableAudioSource.cpp"
|
|
#include "synthesisers/juce_Synthesiser.cpp"
|
|
#include "audio_play_head/juce_AudioPlayHead.cpp"
|
|
#include "utilities/juce_AudioWorkgroup.cpp"
|
|
|
|
#include "midi/ump/juce_UMPUtils.cpp"
|
|
#include "midi/ump/juce_UMPView.cpp"
|
|
#include "midi/ump/juce_UMPSysEx7.cpp"
|
|
#include "midi/ump/juce_UMPMidi1ToMidi2DefaultTranslator.cpp"
|
|
#include "midi/ump/juce_UMPIterator.cpp"
|
|
#include "midi/ump/juce_UMPStringUtils.cpp"
|
|
|
|
#if JUCE_UNIT_TESTS
|
|
#include "utilities/juce_ADSR_test.cpp"
|
|
#include "midi/juce_MidiDataConcatenator_test.cpp"
|
|
#include "midi/ump/juce_UMP_test.cpp"
|
|
#endif
|