JUCE
|
Performs a simple reverb effect on a stream of audio data. More...
Classes | |
struct | Parameters |
Holds the parameters being used by a Reverb object. More... | |
Public Member Functions | |
Reverb () | |
const Parameters & | getParameters () const noexcept |
Returns the reverb's current parameters. More... | |
void | setParameters (const Parameters &newParams) |
Applies a new set of parameters to the reverb. More... | |
void | setSampleRate (const double sampleRate) |
Sets the sample rate that will be used for the reverb. More... | |
void | reset () |
Clears the reverb's buffers. More... | |
void | processStereo (float *const left, float *const right, const int numSamples) noexcept |
Applies the reverb to two stereo channels of audio data. More... | |
void | processMono (float *const samples, const int numSamples) noexcept |
Applies the reverb to a single mono channel of audio data. More... | |
Performs a simple reverb effect on a stream of audio data.
This is a simple stereo reverb, based on the technique and tunings used in FreeVerb. Use setSampleRate() to prepare it, and then call processStereo() or processMono() to apply the reverb to your audio data.
juce::Reverb::Reverb | ( | ) |
References setParameters(), and setSampleRate().
|
noexcept |
Returns the reverb's current parameters.
Referenced by juce::dsp::Reverb::getParameters().
void juce::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.
References juce::Reverb::Parameters::dryLevel, juce::Reverb::Parameters::freezeMode, juce::Reverb::Parameters::wetLevel, and juce::Reverb::Parameters::width.
Referenced by Reverb(), and juce::dsp::Reverb::setParameters().
void juce::Reverb::setSampleRate | ( | const double | sampleRate | ) |
Sets the sample rate that will be used for the reverb.
You must call this before the process methods, in order to tell it the correct sample rate.
References juce::Reverb::Parameters::damping, and jassert.
Referenced by juce::dsp::Reverb::prepare(), and Reverb().
void juce::Reverb::reset | ( | ) |
Clears the reverb's buffers.
Referenced by juce::dsp::Reverb::reset().
|
noexcept |
Applies the reverb to two stereo channels of audio data.
References juce::Reverb::Parameters::damping, and jassert.
Referenced by juce::dsp::Reverb::process().
|
noexcept |
Applies the reverb to a single mono channel of audio data.
References juce::Reverb::Parameters::damping, juce::Reverb::Parameters::freezeMode, jassert, JUCE_DECLARE_NON_COPYABLE, JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR, and JUCE_UNDENORMALISE.
Referenced by juce::dsp::Reverb::process().