Tom Poole
6bf9bb9a2e
Add final specifiers in implementation files
2 years ago
Oliver James
7d9cdd3016
Audio: Add AudioWorkgroup support
This allows real-time threads to join an audio workgroup on Apple platforms.
2 years ago
attila
2ab1b462b4
AudioProcessorPlayer: Fix crash when number or active outs is less than hardware outs
2 years ago
reuk
a9a4fae783
AudioProcessorPlayer: Avoid unconditionally replacing playhead
3 years ago
attila
c97864d7f3
Remove AudioIODeviceCallback::audioDeviceIOCallback
3 years ago
attila
f075de78fa
AudioIODeviceCallback, AudioBuffer, AudioFormatReader: Use const T* const* for multi-channel data
3 years ago
reuk
752c913cd2
AudioPlayHead: Move HostTimeNs out of AudioProcessor, to consolidate timing information
3 years ago
reuk
8fbd99c424
AudioPlayHead: Improve granularity of position info
3 years ago
Tom Poole
2ec861d99e
Update licensing banners to JUCE 7
3 years ago
reuk
cfa289d943
AudioProcessor: Allow querying of the host timestamp in processBlock
3 years ago
Tom Poole
dea3fe60e4
Update copyright banners
3 years ago
ed
107a2cfe27
AudioProcessorPlayer: Support MIDI effect processors
4 years ago
reuk
32690e6273
AudioProcessorPlayer: Resolve TSAN warnings
4 years ago
reuk
df06a471c0
AudioProcessorPlayer: Support a greater variety of IO configurations
Previously, the AudioProcessorPlayer would always match the
AudioProcessor's bus configuration to the requested bus configuration,
even if the processor did not explicitly support the requested
configuration.
Now, if the requested configuration has one or fewer input channels, the
AudioProcessorPlayer will attempt to find a multi-input channel layout
for which `checkBusesLayoutSupported` returns true, and will use such a
layout if it exists. Otherwise, as a last resort, it will fall back to
using the channel layout requested by the AudioProcessorPlayer.
If the AudioProcessorPlayer has no input channels, but the wrapped
processor is initialised with multiple input channels, each of these
inputs will be fed with silence.
If the AudioProcessorPlayer has a single input channel, but the wrapped
processor is initialised with multiple input channels, each input
channel will be fed with a copy of the AudioProcessorPlayer's mono
input.
4 years ago
ed
009d685179
Updated all license headers
5 years ago
ed
68e0e0e329
Use MidiOutput::sendBlockOfMessages() in AudioProcessorPlayer to send timestamped MIDI messages
5 years ago
Tom Poole
894e7d2bd2
Updated all license headers
5 years ago
Tom Poole
2d16374b14
Updated all license headers
5 years ago
reuk
327f817b9b
Copyrights: Update commercial/gpl headers to be gpl-only
5 years ago
reuk
5af01b9b16
Demos: Convey proper ownership semantics
5 years ago
Tom Poole
16dd26649a
Fixed some GCC compiler warnings and removed deprecated functions
6 years ago
jules
cdb55f70c2
Changes to avoid some clang warnings
6 years ago
ed
92141bf279
Added an AudioProcessorPlayer::setMidiOutput() method for forwarding MIDI messages from the AudioProcessor and updated the standalone plugin holder to use this
7 years ago
Tom Poole
102ed4a9f2
Fixed some compiler warnings
7 years ago
Tom Poole
ab863a6dc2
Replaced all usage of ScopedPointer with std::unique_ptr
7 years ago
ed
cdbc28c18b
Add documentation tags
7 years ago
Tom Poole
f876b9f5df
Minor formatting fixes
7 years ago
jules
d0111a4f96
Began phasing out double_Pi and float_Pi in favour of MathConstants::pi. Also added MathConstants::twoPi
8 years ago
jules
6a49d6efdc
Minor tidying up
8 years ago
jules
aecb819985
Replaced all our internal use of the old AudioSampleBuffer name with AudioBuffer<float> (for which AudioSampleBuffer is just a typedef)
8 years ago
jules
369d59f656
Added a template to allow the HeapBlock class to be given signed ints or other types that are not size_t for its size parameters
8 years ago
jules
eda613c6db
Moved all "namespace juce" declarations from module headers to the individual .h and .cpp source files. This makes life a lot easier for Intellisense and other IDE autocompletion tools
8 years ago
hogliux
38f9e951bb
SoundPlayer: Added support for automatic sample rate conversion when playing audio from AudioFormatReaders
8 years ago
tpoole
98cb1011bb
JUCE Demo: Increased the compiler warning level
8 years ago
jules
93f07cc177
Code cleanup
8 years ago
hogliux
b5afccc37c
Updated file headers and the README with the JUCE 5 license
8 years ago
jules
8ed41ed14b
Fixed some whitespace style and cleaned up some code using C++11
8 years ago
hogliux
2da1bc5f41
Replace include guards with "#pragma once"
8 years ago
ed
9a130f2810
Set avoidReallocating argument of AudioBuffer::makeCopyOf() to true in some audio class methods to avoid unnecessary reallocations in double-float buffer conversion
9 years ago
hogliux
a347689d96
Moved simple sound player to audio_utils module
9 years ago
hogliux
4fa0516f40
Revised multibus API and added support for multibus hosting
9 years ago
Timur Doumler
70949aa0c6
Added several new features: support for AudioUnit v3, new simplified JUCE module format, deleted the Introjucer and replaced it by the Projucer, various improvements for exporting of iOS and Android projects.
9 years ago
jules
c562cfc3cc
Converted AudioSampleBuffer into a templated class that can use either float or double types. Used this to implement 64-bit audio plugin support in VST and AU
10 years ago
hogliux
c7b8e77031
Update copyright notice
10 years ago
jules
a0c18acb1e
Relaxed the requirement for AudioSampleBuffer to have more than zero channels, and gave it a default constructor.
11 years ago
jules
fa21d2ac02
Replaced AudioSampleBuffer::getSampleData with getReadPointer/getWritePointer methods (the old method is still available but deprecated). Apart from making code more explanatory and improving constness, these work with a new flag that keeps track of whether the buffer is clear, so that some operations can be elided when the data is known to be empty.
11 years ago
jules
d505edc012
Fix for AudioProcessorPlayer when its source is null.
12 years ago
jules
508e25afbb
Cleared-out the last batch of unnecessary includes.
12 years ago
jules
2786eadaf9
Removed a few pedantic warnings.
12 years ago
jules
5a1112ab94
Updated the format of the header include guard macros.
12 years ago