SFX_OpMode_tOpMode;/* Operating mode. This effect can only be TRANSIENT or OFF. */
int16_tTurningOffEffect;/* Flag showing if the effect is being turned off. */
int16_tTurningOnEffect;/* Flag showing if the effect is being turned on. */
int16_tInitializeParams;/* Flag showing if parameters should be initialized the next SetParam call. */
int16_tFirstUpdate;/* Flag showing if it SetParams has only been called once (TRUE) or more (FALSE). */
int32_tTotNoOfOutputSamples;/* The total number of output samples produced since last SetParam call. */
int32_tMaxTargetTime;/* The maximum allowed target time. Also used for turning the effect on or off. */
int32_tMaxBlockLength;/* The maximum block length */
int16_tTargetTime;/* Time left until the parameters should have reached the new parameters values. */
floatItdIncrForResampling;/* Resampling factor for adjusting the ITD. */
float*LeftOldBuffer;/* Buffer with old samples for the Resampling function */
int16_tNoOfLeftOldBufferSamples;/* Number of samples in LeftOldBuffer */
floatLeft_Tf;/* The left fractional delay. */
float*RightOldBuffer;/* Buffer with old samples for the Resampling function */
int16_tNoOfRightOldBufferSamples;/* Number of samples in RightOldBuffer */
floatResampledBufferLeft[SFX_SPAT_BIN_MAX_NO_OF_OUTPUT_SAMPLES+SFX_SPAT_BIN_MAX_FILTER_LENGTH-1];/* Buffers getting the resampled output and having the old samples used for HR-filtering */