Get the source channel handle.
Namespace: Un4seen.Bass.AddOn.Fx
Assembly: Bass.Net (in Bass.Net.dll) Version: 2.4.17.2
Syntax
Parameters
- channel
- Type: SystemInt32
Tempo stream handle.
Return Value
Type: Int32If successful, the source channel handle is returned, else 0 is returned. Use BASS_ErrorGetCode to get the error code.
Remarks
ERROR CODE | Description |
---|---|
BASS_ERROR_HANDLE | channel is not valid. |
Examples
// the source channel int stream = Bass.BASS_StreamCreateFile("test.mp3", 0L, 0L, BASSFlag.BASS_STREAM_DECODE); // the tempo channel int streamFX = BassFx.BASS_FX_TempoCreate(stream, BASSFlag.BASS_FX_FREESOURCE); ... // this will return 'stream' int chan = BassFx.BASS_FX_TempoGetSource(streamFX);
See Also