A simple compressor with standard threshold, ratio, attack time and release time controls. More...
#include <juce_Compressor.h>
Public Member Functions | |
Compressor () | |
Constructor. More... | |
void | prepare (const ProcessSpec &spec) |
Initialises the processor. More... | |
template<typename ProcessContext > | |
void | process (const ProcessContext &context) noexcept |
Processes the input and output samples supplied in the processing context. More... | |
SampleType | processSample (int channel, SampleType inputValue) |
Performs the processing operation on a single sample at a time. More... | |
void | reset () |
Resets the internal state variables of the processor. More... | |
void | setAttack (SampleType newAttack) |
Sets the attack time in milliseconds of the compressor. More... | |
void | setRatio (SampleType newRatio) |
Sets the ratio of the compressor (must be higher or equal to 1). More... | |
void | setRelease (SampleType newRelease) |
Sets the release time in milliseconds of the compressor. More... | |
void | setThreshold (SampleType newThreshold) |
Sets the threshold in dB of the compressor. More... | |
Private Member Functions | |
void | update () |
Private Attributes | |
SampleType | attackTime = 1.0 |
BallisticsFilter< SampleType > | envelopeFilter |
SampleType | ratio = 1.0 |
SampleType | ratioInverse |
SampleType | releaseTime = 100.0 |
double | sampleRate = 44100.0 |
SampleType | threshold |
SampleType | thresholddB = 0.0 |
SampleType | thresholdInverse |
A simple compressor with standard threshold, ratio, attack time and release time controls.
@tags{DSP}
juce::dsp::Compressor< SampleType >::Compressor | ( | ) |
Constructor.
void juce::dsp::Compressor< SampleType >::prepare | ( | const ProcessSpec & | spec | ) |
Initialises the processor.
|
inlinenoexcept |
Processes the input and output samples supplied in the processing context.
References jassert, and juce::dsp::Compressor< SampleType >::processSample().
SampleType juce::dsp::Compressor< SampleType >::processSample | ( | int | channel, |
SampleType | inputValue | ||
) |
Performs the processing operation on a single sample at a time.
Referenced by juce::dsp::Compressor< SampleType >::process().
void juce::dsp::Compressor< SampleType >::reset | ( | ) |
Resets the internal state variables of the processor.
void juce::dsp::Compressor< SampleType >::setAttack | ( | SampleType | newAttack | ) |
Sets the attack time in milliseconds of the compressor.
void juce::dsp::Compressor< SampleType >::setRatio | ( | SampleType | newRatio | ) |
Sets the ratio of the compressor (must be higher or equal to 1).
void juce::dsp::Compressor< SampleType >::setRelease | ( | SampleType | newRelease | ) |
Sets the release time in milliseconds of the compressor.
void juce::dsp::Compressor< SampleType >::setThreshold | ( | SampleType | newThreshold | ) |
Sets the threshold in dB of the compressor.
|
private |
|
private |
|
private |
|
private |
|
private |
|
private |
|
private |
|
private |
|
private |
|
private |