BASS_DX8_ECHO structure

Used with BASS_FXGetParameters and BASS_FXSetParameters to retrieve and set the parameters of a DX8 echo effect.

typedef struct {
    float fWetDryMix;
    float fFeedback;
    float fLeftDelay;
    float fRightDelay;
    BOOL lPanDelay;
} BASS_DX8_ECHO;

Members

fWetDryMixRatio of wet (processed) signal to dry (unprocessed) signal. Must be in the range from 0 through 100 (all wet). The default value is 50.
fFeedbackPercentage of output fed back into input, in the range from 0 through 100. The default value is 50.
fLeftDelayDelay for left channel, in milliseconds, in the range from 1 through 2000. The default value is 500 ms.
fRightDelayDelay for right channel, in milliseconds, in the range from 1 through 2000. The default value is 500 ms.
lPanDelayValue that specifies whether to swap left and right delays with each successive echo. The default value is FALSE, meaning no swap.

See also

BASS_ChannelSetFX, BASS_FXGetParameters, BASS_FXSetParameters