a bit confused with explanation of BASS_Mixer_ChannelFlags function.
A first time to use it .
Supposedly I already have a mixer handle (mixerhandle)
And I already have a stream handle (handle)
And I want to add handle to mixerhandle, in specific Speaker setting and in paused condition, i need to use
int flag = BASS_SPEAKER_FRONTRIGHT | BASS_MIXER_CHAN_PAUSE
BASS_Mixer_StreamAddChannel(mixerhandle, handle, flag);
Then if I want to resume (un-pause) the handle, and retaining speaker condition, what command should I use ?
BASS_Mixer_ChannelFlags(handle, 0, BASS_MIXER_CHAN_PAUSE); // remove PAUSE flag
... OR ....
BASS_Mixer_ChannelFlags(handle, BASS_SPEAKER_FRONTRIGHT | BASS_MIXER_CHAN_PAUSE , BASS_MIXER_CHAN_PAUSE); // remove PAUSE flag
... OR ....
BASS_Mixer_ChannelFlags(handle, BASS_SPEAKER_FRONTRIGHT , BASS_MIXER_CHAN_PAUSE); // remove PAUSE flag
Also please explain if I want to Pause the handle again, while retaining speaker configuration.