Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoerg Mueller <nexyon@gmail.com>2012-12-10 20:58:47 +0400
committerJoerg Mueller <nexyon@gmail.com>2012-12-10 20:58:47 +0400
commit245345fba5f44b5c8562c826ca0053fa5bbd2ff3 (patch)
treefb7c6b8eaac7916b387e929f972da150f8ac6d39 /intern/audaspace/FX/AUD_LowpassFactory.h
parente1100cb65565d2218272222fba708da14bc48d94 (diff)
Audaspace:
Implemented forgotten Calculator classes from boost migration.
Diffstat (limited to 'intern/audaspace/FX/AUD_LowpassFactory.h')
-rw-r--r--intern/audaspace/FX/AUD_LowpassFactory.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/intern/audaspace/FX/AUD_LowpassFactory.h b/intern/audaspace/FX/AUD_LowpassFactory.h
index fdbc6e5d91d..dfd8ab35521 100644
--- a/intern/audaspace/FX/AUD_LowpassFactory.h
+++ b/intern/audaspace/FX/AUD_LowpassFactory.h
@@ -38,16 +38,6 @@
class AUD_LowpassFactory : public AUD_DynamicIIRFilterFactory
{
private:
- /**
- * The cutoff frequency.
- */
- const float m_frequency;
-
- /**
- * The Q factor.
- */
- const float m_Q;
-
// hide copy constructor and operator=
AUD_LowpassFactory(const AUD_LowpassFactory&);
AUD_LowpassFactory& operator=(const AUD_LowpassFactory&);
@@ -60,8 +50,6 @@ public:
* \param Q The Q factor.
*/
AUD_LowpassFactory(boost::shared_ptr<AUD_IFactory> factory, float frequency, float Q = 1.0f);
-
- virtual void recalculateCoefficients(AUD_SampleRate rate, std::vector<float> &b, std::vector<float> &a);
};
#endif //__AUD_LOWPASSFACTORY_H__