OpenShot Audio Library | OpenShotAudio  0.6.0
juce_audio_basics.h
1 /*
2  ==============================================================================
3 
4  This file is part of the JUCE library.
5  Copyright (c) 2022 - Raw Material Software Limited
6 
7  JUCE is an open source library subject to commercial or open-source
8  licensing.
9 
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.
15 
16  JUCE IS PROVIDED "AS IS" WITHOUT ANY WARRANTY, AND ALL WARRANTIES, WHETHER
17  EXPRESSED OR IMPLIED, INCLUDING MERCHANTABILITY AND FITNESS FOR PURPOSE, ARE
18  DISCLAIMED.
19 
20  ==============================================================================
21 */
22 
23 
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.
29 
30 
31  BEGIN_JUCE_MODULE_DECLARATION
32 
33  ID: juce_audio_basics
34  vendor: juce
35  version: 7.0.10
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
39  license: ISC
40  minimumCppStandard: 17
41 
42  dependencies: juce_core
43  OSXFrameworks: Accelerate
44  iOSFrameworks: Accelerate
45 
46  END_JUCE_MODULE_DECLARATION
47 
48 *******************************************************************************/
49 
50 
51 #pragma once
52 #define JUCE_AUDIO_BASICS_H_INCLUDED
53 
54 #include <juce_core/juce_core.h>
55 
56 //==============================================================================
57 #undef Complex // apparently some C libraries actually define these symbols (!)
58 #undef Factor
59 
60 //==============================================================================
61 #if JUCE_MINGW && ! defined (__SSE2__)
62  #define JUCE_USE_SSE_INTRINSICS 0
63 #endif
64 
65 #ifndef JUCE_USE_SSE_INTRINSICS
66  #define JUCE_USE_SSE_INTRINSICS 1
67 #endif
68 
69 #if ! JUCE_INTEL
70  #undef JUCE_USE_SSE_INTRINSICS
71 #endif
72 
73 #if __ARM_NEON__ && ! (JUCE_USE_VDSP_FRAMEWORK || defined (JUCE_USE_ARM_NEON))
74  #define JUCE_USE_ARM_NEON 1
75 #endif
76 
77 #if TARGET_IPHONE_SIMULATOR
78  #ifdef JUCE_USE_ARM_NEON
79  #undef JUCE_USE_ARM_NEON
80  #endif
81  #define JUCE_USE_ARM_NEON 0
82 #endif
83 
84 //==============================================================================
85 #include "buffers/juce_AudioDataConverters.h"
86 JUCE_BEGIN_IGNORE_WARNINGS_MSVC (4661)
87 #include "buffers/juce_FloatVectorOperations.h"
88 JUCE_END_IGNORE_WARNINGS_MSVC
89 #include "buffers/juce_AudioSampleBuffer.h"
90 #include "buffers/juce_AudioChannelSet.h"
91 #include "buffers/juce_AudioProcessLoadMeasurer.h"
92 #include "utilities/juce_Decibels.h"
93 #include "utilities/juce_IIRFilter.h"
94 #include "utilities/juce_GenericInterpolator.h"
95 #include "utilities/juce_Interpolators.h"
96 #include "utilities/juce_SmoothedValue.h"
97 #include "utilities/juce_Reverb.h"
98 #include "utilities/juce_ADSR.h"
99 #include "midi/juce_MidiMessage.h"
100 #include "midi/juce_MidiBuffer.h"
101 #include "midi/juce_MidiMessageSequence.h"
102 #include "midi/juce_MidiFile.h"
103 #include "midi/juce_MidiKeyboardState.h"
104 #include "midi/juce_MidiRPN.h"
105 #include "mpe/juce_MPEValue.h"
106 #include "mpe/juce_MPENote.h"
107 #include "mpe/juce_MPEZoneLayout.h"
108 #include "mpe/juce_MPEInstrument.h"
109 #include "mpe/juce_MPEMessages.h"
110 #include "mpe/juce_MPESynthesiserBase.h"
111 #include "mpe/juce_MPESynthesiserVoice.h"
112 #include "mpe/juce_MPESynthesiser.h"
113 #include "mpe/juce_MPEUtils.h"
114 #include "sources/juce_AudioSource.h"
115 #include "sources/juce_PositionableAudioSource.h"
116 #include "sources/juce_BufferingAudioSource.h"
117 #include "sources/juce_ChannelRemappingAudioSource.h"
118 #include "sources/juce_IIRFilterAudioSource.h"
119 #include "sources/juce_MemoryAudioSource.h"
120 #include "sources/juce_MixerAudioSource.h"
121 #include "sources/juce_ResamplingAudioSource.h"
122 #include "sources/juce_ReverbAudioSource.h"
123 #include "sources/juce_ToneGeneratorAudioSource.h"
124 #include "synthesisers/juce_Synthesiser.h"
125 #include "audio_play_head/juce_AudioPlayHead.h"
126 #include "utilities/juce_AudioWorkgroup.h"
127 #include "midi/ump/juce_UMPBytesOnGroup.h"
128 #include "midi/ump/juce_UMPDeviceInfo.h"
129 
130 namespace juce
131 {
132  namespace ump = universal_midi_packets;
133 }