BASS.NET API for the Un4seen BASS Audio Library

BassFxBASS_FX_ReverseGetSource Method

BASS.NET API for the Un4seen BASS Audio Library
Get the source channel handle of the reversed stream.

Namespace:  Un4seen.Bass.AddOn.Fx
Assembly:  Bass.Net (in Bass.Net.dll) Version: 2.4.17.5
Syntax

[DllImportAttribute("bass_fx")]
public static int BASS_FX_ReverseGetSource(
	int channel
)

Parameters

channel
Type: SystemInt32
The handle of the reversed stream.

Return Value

Type: Int32
If successful, the handle of the source of the reversed stream is returned, else 0 is returned. Use BASS_ErrorGetCode to get the error code.
Remarks

ERROR CODEDescription
BASS_ERROR_HANDLEchannel is not valid.

Examples

// the source channel
int stream = Bass.BASS_StreamCreateFile("test.mp3", 0L, 0L, BASSFlag.BASS_STREAM_DECODE | 
                                                            BASSFlag.BASS_STREAM_PRESCAN);
// the reverse channel
int streamFX = BassFx.BASS_FX_ReverseCreate(stream, 2f, BASSFlag.BASS_FX_FREESOURCE);
...
// this will return 'stream'
int chan = BassFx.BASS_FX_ReverseGetSource(streamFX);
See Also

Reference