JUCE
|
Processor wrapper around juce::Reverb for easy integration into ProcessorChain. More...
Public Types | |
using | Parameters = juce::Reverb::Parameters |
Public Member Functions | |
Reverb ()=default | |
Creates an uninitialised Reverb processor. | |
const Parameters & | getParameters () const noexcept |
Returns the reverb's current parameters. | |
void | setParameters (const Parameters &newParams) |
Applies a new set of parameters to the reverb. | |
bool | isEnabled () const noexcept |
Returns true if the reverb is enabled. | |
void | setEnabled (bool newValue) noexcept |
Enables/disables the reverb. | |
void | prepare (const ProcessSpec &spec) |
Initialises the reverb. | |
void | reset () noexcept |
Resets the reverb's internal state. | |
template<typename ProcessContext > | |
void | process (const ProcessContext &context) noexcept |
Applies the reverb to a mono or stereo buffer. | |
Processor wrapper around juce::Reverb for easy integration into ProcessorChain.
using juce::dsp::Reverb::Parameters = juce::Reverb::Parameters |
|
default |
|
noexcept |
Returns the reverb's current parameters.
void juce::dsp::Reverb::setParameters | ( | const Parameters & | newParams | ) |
Applies a new set of parameters to the reverb.
Note that this doesn't attempt to lock the reverb, so if you call this in parallel with the process method, you may get artifacts.
|
noexcept |
Returns true if the reverb is enabled.
void juce::dsp::Reverb::prepare | ( | const ProcessSpec & | spec | ) |
Initialises the reverb.
|
noexcept |
Resets the reverb's internal state.
|
noexcept |
Applies the reverb to a mono or stereo buffer.
References jassert, and jassertfalse.