I would like to build a 7 band equalizer (250 Hz, 500 Hz, 1, 2, 4, 8, 16 kHz).
But I don't succeed.
I do not use the BASS_SAMPLE_FX flag, the stream which is uses for the effect is created with BASS_SAMPLE_SOFTWARE flag.
What's wrong with the following code?
Private Sub sld250Hz_Change()
'Slider sld250Hz Min = -15, Max = 15
'Set up effect on stream (cdhandle is a stream)
BASS_ChannelSetFX cdhandle, BASS_FX_PARAMEQ, 1
'Set Center to 125; Bandwith to 36; Gain to sld250Hz.Value
BASS_FXSetParameters cdhandle, BASS_FX_PARAMEQ(125, 36, sld250Hz.value)
End Sub