33 #define thisTTClass TTAllpass2c
34 #define thisTTClassName "allpass.2c"
35 #define thisTTClassTags "dspFilterLib, audio, processor, filter, allpass"
37 #ifdef TT_PLATFORM_WIN
53 setAttributeValue(kTTSym_maxNumChannels, initialMaxNumChannels);
58 TTAllpass2c::~TTAllpass2c()
75 TTErr TTAllpass2c::clear()
90 y = -w1 - w2 -
mX2[channel];
94 mX2[channel] =
mX1[channel];
95 mY2[channel] =
mY1[channel];
104 TT_WRAP_CALCULATE_METHOD(calculateValue);
TTSampleVector mY2
previous output sample (n-2) for each channel
#define addAttribute(name, type)
A convenience macro to be used by subclasses for registering attributes with a custom getter...
TTFloat64 mE1
first coefficient
TTChannelCount mMaxNumChannels
This is the maximum number of channels that can be guaranteed to work.
TTFloat64 mE2
second coefficient
#define setProcessMethod(methodName)
A convenience macro to be used by subclasses for setting the process method.
double TTFloat64
64 bit floating point number
TTSampleVector mX1
previous input sample (n-1) for each channel
TTUInt16 TTChannelCount
Data type used when counting the number of channels in multi-channel audio signals and processes...
A simple container for an array of TTAudioSignal pointers.
long TTPtrSizedInt
An integer that is the same size as a pointer.
TTErr
Jamoma Error Codes Enumeration of error codes that might be returned by any of the TTBlue functions a...
TTSampleVector mY1
previous output sample (n-1) for each channel
TTSampleVector mX2
previous input sample (n-2) for each channel
#define addMessage(name)
A convenience macro to be used by subclasses for registering messages.
TTAllpass2c is a second-order building-block allpass filter.
[doxygenAppendixC_copyExample]
#define addUpdates(updateName)
An 'update' is a message sent to a subclass instance from its parent class.