|
Audaspace 1.7.0
A high level audio library.
|
This class is for dynamic infinite impulse response filters with simple coefficients that change depending on the sample rate. More...
#include <DynamicIIRFilterReader.h>

Public Member Functions | |
| DynamicIIRFilterReader (std::shared_ptr< IReader > reader, std::shared_ptr< IDynamicIIRFilterCalculator > calculator) | |
| Creates a new DynamicIIRFilterReader. | |
| virtual void | sampleRateChanged (SampleRate rate) |
| The function sampleRateChanged is called whenever the sample rate of the underlying reader changes and thus updates the filter coefficients. | |
| Public Member Functions inherited from IIRFilterReader | |
| IIRFilterReader (std::shared_ptr< IReader > reader, const std::vector< float > &b, const std::vector< float > &a) | |
| Creates a new IIR filter reader. | |
| virtual sample_t | filter () |
| Runs the filtering function. | |
| void | setCoefficients (const std::vector< float > &b, const std::vector< float > &a) |
| Sets new filter coefficients. | |
| Public Member Functions inherited from BaseIIRFilterReader | |
| sample_t | x (int pos) |
| Retrieves the last input samples. | |
| sample_t | y (int pos) |
| Retrieves the last output samples. | |
| virtual void | read (int &length, bool &eos, sample_t *buffer) |
| Request to read the next length samples out of the source. | |
| Public Member Functions inherited from EffectReader | |
| EffectReader (std::shared_ptr< IReader > reader) | |
| Creates a new effect reader. | |
| virtual | ~EffectReader () |
| Destroys the reader. | |
| virtual bool | isSeekable () const |
| Tells whether the source provides seeking functionality or not. | |
| virtual void | seek (int position) |
| Seeks to a specific position in the source. | |
| virtual int | getLength () const |
| Returns an approximated length of the source in samples. | |
| virtual int | getPosition () const |
| Returns the position of the source as a sample count value. | |
| virtual Specs | getSpecs () const |
| Returns the specification of the reader. | |
| Public Member Functions inherited from IReader | |
| virtual | ~IReader () |
| Destroys the reader. | |
Additional Inherited Members | |
| Protected Member Functions inherited from BaseIIRFilterReader | |
| BaseIIRFilterReader (std::shared_ptr< IReader > reader, int in, int out) | |
| Creates a new base IIR filter reader. | |
| void | setLengths (int in, int out) |
| Sets the length for the required input and output samples of the IIR filter. | |
| Protected Attributes inherited from EffectReader | |
| std::shared_ptr< IReader > | m_reader |
| The reader to read from. | |
This class is for dynamic infinite impulse response filters with simple coefficients that change depending on the sample rate.
| DynamicIIRFilterReader::DynamicIIRFilterReader | ( | std::shared_ptr< IReader > | reader, |
| std::shared_ptr< IDynamicIIRFilterCalculator > | calculator ) |
Creates a new DynamicIIRFilterReader.
| reader | The reader the filter is applied on. |
| calculator | The IDynamicIIRFilterCalculator that recalculates the filter coefficients. |
|
virtual |
The function sampleRateChanged is called whenever the sample rate of the underlying reader changes and thus updates the filter coefficients.
| rate | The new sample rate. |
Reimplemented from BaseIIRFilterReader.