OpenShot Audio Library | OpenShotAudio 0.3.2
Loading...
Searching...
No Matches
juce_audio_basics.h
1/*
2 ==============================================================================
3
4 This file is part of the JUCE library.
5 Copyright (c) 2017 - ROLI Ltd.
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.txt file.
29
30
31 BEGIN_JUCE_MODULE_DECLARATION
32
33 ID: juce_audio_basics
34 vendor: juce
35 version: 5.4.7
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
41 dependencies: juce_core
42 OSXFrameworks: Accelerate
43 iOSFrameworks: Accelerate
44
45 END_JUCE_MODULE_DECLARATION
46
47*******************************************************************************/
48
49
50#pragma once
51#define JUCE_AUDIO_BASICS_H_INCLUDED
52
53#include <juce_core/juce_core.h>
54
55//==============================================================================
56#undef Complex // apparently some C libraries actually define these symbols (!)
57#undef Factor
58
59//==============================================================================
60#if JUCE_MINGW && ! defined (__SSE2__)
61 #define JUCE_USE_SSE_INTRINSICS 0
62#endif
63
64#ifndef JUCE_USE_SSE_INTRINSICS
65 #define JUCE_USE_SSE_INTRINSICS 1
66#endif
67
68#if ! JUCE_INTEL
69 #undef JUCE_USE_SSE_INTRINSICS
70#endif
71
72#if __ARM_NEON__ && ! (JUCE_USE_VDSP_FRAMEWORK || defined (JUCE_USE_ARM_NEON))
73 #define JUCE_USE_ARM_NEON 1
74#endif
75
76#if TARGET_IPHONE_SIMULATOR
77 #ifdef JUCE_USE_ARM_NEON
78 #undef JUCE_USE_ARM_NEON
79 #endif
80 #define JUCE_USE_ARM_NEON 0
81#endif
82
83//==============================================================================
84#include "buffers/juce_AudioDataConverters.h"
85#include "buffers/juce_FloatVectorOperations.h"
86#include "buffers/juce_AudioSampleBuffer.h"
87#include "buffers/juce_AudioChannelSet.h"
88#include "buffers/juce_AudioProcessLoadMeasurer.h"
89#include "utilities/juce_Decibels.h"
90#include "utilities/juce_IIRFilter.h"
91#include "utilities/juce_LagrangeInterpolator.h"
92#include "utilities/juce_CatmullRomInterpolator.h"
93#include "utilities/juce_SmoothedValue.h"
94#include "utilities/juce_Reverb.h"
95#include "utilities/juce_ADSR.h"
96#include "midi/juce_MidiMessage.h"
97#include "midi/juce_MidiBuffer.h"
98#include "midi/juce_MidiMessageSequence.h"
99#include "midi/juce_MidiFile.h"
100#include "midi/juce_MidiKeyboardState.h"
101#include "midi/juce_MidiRPN.h"
102#include "mpe/juce_MPEValue.h"
103#include "mpe/juce_MPENote.h"
104#include "mpe/juce_MPEZoneLayout.h"
105#include "mpe/juce_MPEInstrument.h"
106#include "mpe/juce_MPEMessages.h"
107#include "mpe/juce_MPESynthesiserBase.h"
108#include "mpe/juce_MPESynthesiserVoice.h"
109#include "mpe/juce_MPESynthesiser.h"
110#include "mpe/juce_MPEUtils.h"
111#include "sources/juce_AudioSource.h"
112#include "sources/juce_PositionableAudioSource.h"
113#include "sources/juce_BufferingAudioSource.h"
114#include "sources/juce_ChannelRemappingAudioSource.h"
115#include "sources/juce_IIRFilterAudioSource.h"
116#include "sources/juce_MemoryAudioSource.h"
117#include "sources/juce_MixerAudioSource.h"
118#include "sources/juce_ResamplingAudioSource.h"
119#include "sources/juce_ReverbAudioSource.h"
120#include "sources/juce_ToneGeneratorAudioSource.h"
121#include "synthesisers/juce_Synthesiser.h"
122#include "audio_play_head/juce_AudioPlayHead.h"