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>2011-06-22 00:12:39 +0400
committerJoerg Mueller <nexyon@gmail.com>2011-06-22 00:12:39 +0400
commitf2ceca4eb05675f4058fc6666805de58cb10916f (patch)
tree09540730b9793edee2003ec7f864066387bce437 /intern/audaspace/FX/AUD_AccumulatorFactory.h
parent24ca3eb4c42f3dfb4e2b775f53b35e4c4dcd8367 (diff)
3D Audio GSoC:
Code cleanup: rewriting some functions to static methods.
Diffstat (limited to 'intern/audaspace/FX/AUD_AccumulatorFactory.h')
-rw-r--r--intern/audaspace/FX/AUD_AccumulatorFactory.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/intern/audaspace/FX/AUD_AccumulatorFactory.h b/intern/audaspace/FX/AUD_AccumulatorFactory.h
index c147d1226e5..5838ccee7f0 100644
--- a/intern/audaspace/FX/AUD_AccumulatorFactory.h
+++ b/intern/audaspace/FX/AUD_AccumulatorFactory.h
@@ -33,6 +33,7 @@
#define AUD_ACCUMULATORFACTORY
#include "AUD_EffectFactory.h"
+class AUD_CallbackIIRFilterReader;
/**
* This factory creates an accumulator reader.
@@ -58,6 +59,9 @@ public:
AUD_AccumulatorFactory(AUD_Reference<AUD_IFactory> factory, bool additive = false);
virtual AUD_Reference<AUD_IReader> createReader();
+
+ static sample_t accumulatorFilterAdditive(AUD_CallbackIIRFilterReader* reader, void* useless);
+ static sample_t accumulatorFilter(AUD_CallbackIIRFilterReader* reader, void* useless);
};
#endif //AUD_ACCUMULATORFACTORY