Blender V2.61 - r43446
|
#include <AUD_LowpassFactory.h>
Public Member Functions | |
AUD_LowpassFactory (AUD_Reference< AUD_IFactory > factory, float frequency, float Q=1.0f) | |
virtual void | recalculateCoefficients (AUD_SampleRate rate, std::vector< float > &b, std::vector< float > &a) |
This factory creates a lowpass filter reader.
Definition at line 38 of file AUD_LowpassFactory.h.
AUD_LowpassFactory::AUD_LowpassFactory | ( | AUD_Reference< AUD_IFactory > | factory, |
float | frequency, | ||
float | Q = 1.0f |
||
) |
Creates a new lowpass factory.
factory | The input factory. |
frequency | The cutoff frequency. |
Q | The Q factor. |
Definition at line 39 of file AUD_LowpassFactory.cpp.
void AUD_LowpassFactory::recalculateCoefficients | ( | AUD_SampleRate | rate, |
std::vector< float > & | b, | ||
std::vector< float > & | a | ||
) | [virtual] |
Recalculates the filter coefficients.
rate | The sample rate of the audio data. | |
[out] | b | The input filter coefficients. |
[out] | a | The output filter coefficients. |
Implements AUD_DynamicIIRFilterFactory.
Definition at line 47 of file AUD_LowpassFactory.cpp.