JUCE  v5.1.1-3-g1a0b28c73
JUCE API
IIRFilter Class Reference

An IIR filter that can perform low, high, or band-pass filtering on an audio signal. More...

#include <juce_IIRFilter.h>

Collaboration diagram for IIRFilter:

Public Member Functions

 IIRFilter () noexcept
 Creates a filter. More...
 
 IIRFilter (const IIRFilter &) noexcept
 Creates a copy of another filter. More...
 
 ~IIRFilter () noexcept
 Destructor. More...
 
IIRCoefficients getCoefficients () const noexcept
 Returns the coefficients that this filter is using. More...
 
void makeInactive () noexcept
 Clears the filter so that any incoming data passes through unchanged. More...
 
void processSamples (float *samples, int numSamples) noexcept
 Performs the filter operation on the given set of samples. More...
 
float processSingleSampleRaw (float sample) noexcept
 Processes a single sample, without any locking or checking. More...
 
void reset () noexcept
 Resets the filter's processing pipeline, ready to start a new stream of data. More...
 
void setCoefficients (const IIRCoefficients &newCoefficients) noexcept
 Applies a set of coefficients to this filter. More...
 

Protected Member Functions

IIRFilteroperator= (const IIRFilter &)
 

Protected Attributes

bool active
 
IIRCoefficients coefficients
 
SpinLock processLock
 
float v1
 
float v2
 

Detailed Description

An IIR filter that can perform low, high, or band-pass filtering on an audio signal.

See also
IIRCoefficient, IIRFilterAudioSource

Constructor & Destructor Documentation

◆ IIRFilter() [1/2]

IIRFilter::IIRFilter ( )
noexcept

Creates a filter.

Initially the filter is inactive, so will have no effect on samples that you process with it. Use the setCoefficients() method to turn it into the type of filter needed.

◆ IIRFilter() [2/2]

IIRFilter::IIRFilter ( const IIRFilter )
noexcept

Creates a copy of another filter.

◆ ~IIRFilter()

IIRFilter::~IIRFilter ( )
noexcept

Destructor.

Member Function Documentation

◆ getCoefficients()

IIRCoefficients IIRFilter::getCoefficients ( ) const
inlinenoexcept

Returns the coefficients that this filter is using.

◆ makeInactive()

void IIRFilter::makeInactive ( )
noexcept

Clears the filter so that any incoming data passes through unchanged.

◆ operator=()

IIRFilter& IIRFilter::operator= ( const IIRFilter )
protected

◆ processSamples()

void IIRFilter::processSamples ( float *  samples,
int  numSamples 
)
noexcept

Performs the filter operation on the given set of samples.

◆ processSingleSampleRaw()

float IIRFilter::processSingleSampleRaw ( float  sample)
noexcept

Processes a single sample, without any locking or checking.

Use this if you need fast processing of a single value, but be aware that this isn't thread-safe in the way that processSamples() is.

◆ reset()

void IIRFilter::reset ( )
noexcept

Resets the filter's processing pipeline, ready to start a new stream of data.

Note that this clears the processing state, but the type of filter and its coefficients aren't changed. To put a filter into an inactive state, use the makeInactive() method.

◆ setCoefficients()

void IIRFilter::setCoefficients ( const IIRCoefficients newCoefficients)
noexcept

Applies a set of coefficients to this filter.

Member Data Documentation

◆ active

bool IIRFilter::active
protected

◆ coefficients

IIRCoefficients IIRFilter::coefficients
protected

◆ processLock

SpinLock IIRFilter::processLock
protected

◆ v1

float IIRFilter::v1
protected

◆ v2

float IIRFilter::v2
protected

The documentation for this class was generated from the following file: