JUCE-7.0.12-0-g4f43011b96
JUCE-7.0.12-0-g4f43011b96
JUCE — C++ application framework with suport for VST, VST3, LV2 audio plug-ins
« « « Anklang Documentation
Loading...
Searching...
No Matches
juce_audio_utils
juce_audio_utils.cpp
Go to the documentation of this file.
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
By using JUCE, you agree to the terms of both the JUCE 7 End-User License
11
Agreement and JUCE Privacy Policy.
12
13
End User License Agreement: www.juce.com/juce-7-licence
14
Privacy Policy: www.juce.com/juce-privacy-policy
15
16
Or: You may also use this code under the terms of the GPL v3 (see
17
www.gnu.org/licenses).
18
19
JUCE IS PROVIDED "AS IS" WITHOUT ANY WARRANTY, AND ALL WARRANTIES, WHETHER
20
EXPRESSED OR IMPLIED, INCLUDING MERCHANTABILITY AND FITNESS FOR PURPOSE, ARE
21
DISCLAIMED.
22
23
==============================================================================
24
*/
25
26
#ifdef JUCE_AUDIO_UTILS_H_INCLUDED
27
/* When you add this cpp file to your project, you mustn't include it in a file where you've
28
already included any other headers - just put it inside a file on its own, possibly with your config
29
flags preceding it, but don't include anything else. That also includes avoiding any automatic prefix
30
header files that the compiler may be using.
31
*/
32
#error "Incorrect use of JUCE cpp file"
33
#endif
34
35
#define JUCE_CORE_INCLUDE_NATIVE_HEADERS 1
36
#define JUCE_CORE_INCLUDE_JNI_HELPERS 1
37
#define JUCE_CORE_INCLUDE_OBJC_HELPERS 1
38
#define JUCE_CORE_INCLUDE_COM_SMART_PTR 1
39
40
#include "
juce_audio_utils.h
"
41
#include <
juce_gui_extra/juce_gui_extra.h
>
42
43
#if JUCE_MAC
44
#import <DiscRecording/DiscRecording.h>
45
#import <CoreAudioKit/CABTLEMIDIWindowController.h>
46
#elif JUCE_IOS
47
#import <CoreAudioKit/CoreAudioKit.h>
48
#elif JUCE_WINDOWS
49
#if JUCE_USE_CDBURNER
50
/* You'll need the Platform SDK for these headers - if you don't have it and don't
51
need to use CD-burning, then you might just want to set the JUCE_USE_CDBURNER flag
52
to 0, to avoid these includes.
53
*/
54
#include <imapi.h>
55
#include <imapierror.h>
56
#endif
57
#endif
58
59
#include "
gui/juce_AudioDeviceSelectorComponent.cpp
"
60
#include "
gui/juce_AudioThumbnail.cpp
"
61
#include "
gui/juce_AudioThumbnailCache.cpp
"
62
#include "
gui/juce_AudioVisualiserComponent.cpp
"
63
#include "
gui/juce_KeyboardComponentBase.cpp
"
64
#include "
gui/juce_MidiKeyboardComponent.cpp
"
65
#include "
gui/juce_MPEKeyboardComponent.cpp
"
66
#include "
gui/juce_AudioAppComponent.cpp
"
67
#include "
players/juce_SoundPlayer.cpp
"
68
#include "
players/juce_AudioProcessorPlayer.cpp
"
69
#include "
audio_cd/juce_AudioCDReader.cpp
"
70
71
#if JUCE_MAC
72
#include "native/juce_BluetoothMidiDevicePairingDialogue_mac.mm"
73
74
#if JUCE_USE_CDREADER
75
#include "native/juce_AudioCDReader_mac.mm"
76
#endif
77
78
#if JUCE_USE_CDBURNER
79
#include "native/juce_AudioCDBurner_mac.mm"
80
#endif
81
82
#elif JUCE_IOS
83
#include "native/juce_BluetoothMidiDevicePairingDialogue_ios.mm"
84
85
#elif JUCE_ANDROID
86
#include "native/juce_BluetoothMidiDevicePairingDialogue_android.cpp"
87
88
#elif JUCE_LINUX || JUCE_BSD
89
#if JUCE_USE_CDREADER
90
#include "native/juce_AudioCDReader_linux.cpp"
91
#endif
92
93
#include "
native/juce_BluetoothMidiDevicePairingDialogue_linux.cpp
"
94
95
#elif JUCE_WINDOWS
96
#include "native/juce_BluetoothMidiDevicePairingDialogue_windows.cpp"
97
98
#if JUCE_USE_CDREADER
99
#include "native/juce_AudioCDReader_windows.cpp"
100
#endif
101
102
#if JUCE_USE_CDBURNER
103
#include "native/juce_AudioCDBurner_windows.cpp"
104
#endif
105
106
#endif
juce_AudioAppComponent.cpp
juce_AudioCDReader.cpp
juce_AudioDeviceSelectorComponent.cpp
juce_AudioProcessorPlayer.cpp
juce_AudioThumbnailCache.cpp
juce_AudioThumbnail.cpp
juce_AudioVisualiserComponent.cpp
juce_BluetoothMidiDevicePairingDialogue_linux.cpp
juce_KeyboardComponentBase.cpp
juce_MPEKeyboardComponent.cpp
juce_MidiKeyboardComponent.cpp
juce_SoundPlayer.cpp
juce_audio_utils.h
juce_gui_extra.h
« « « Anklang Documentation