Hello, in this funtion I make a mono out from the "left" channel, playing in stereo R/L out:
public static int monoLeft(int _stream)
{
int mixfx = Bass.BASS_ChannelSetFX(_stream, BASSFXType.BASS_FX_BFX_MIX, 0);
BASS_BFX_MIX swap = new BASS_BFX_MIX(BASSFXChan.BASS_BFX_CHAN1, BASSFXChan.BASS_BFX_CHAN1);
Bass.BASS_FXSetParameters(mixfx, swap);
return mixfx;
}
from this point (if I undersand), "the stream only have the CHAN1 in L/R output".
How can I go back to have the CHAN1 and CHAN2 again in a "normal stereo out" as the original stream.
I've tryed this code but didnt work (cause the stream, from the last change, only has CHAN1)
BASS_BFX_MIX swap = new BASS_BFX_MIX(BASSFXChan.BASS_BFX_CHAN1, BASSFXChan.BASS_BFX_CHAN2);
Please a little help. Thanks