BASS.NET API for the Un4seen BASS Audio Library

BassBASS_ChannelRemoveDSP Method

BASS.NET API for the Un4seen BASS Audio Library
Removes a DSP function from a stream, MOD music, or recording channel.

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

[DllImportAttribute("bass")]
public static bool BASS_ChannelRemoveDSP(
	int handle,
	int dsp
)

Parameters

handle
Type: SystemInt32
The channel handle... a HSTREAM, HMUSIC, or HRECORD.
dsp
Type: SystemInt32
Handle of the DSP function to remove from the channel (return value of a previous BASS_ChannelSetDSP(Int32, DSPPROC, IntPtr, Int32) call).

Return Value

Type: Boolean
If succesful, is returned, else is returned. Use BASS_ErrorGetCode to get the error code.
Remarks

ERROR CODEDescription
BASS_ERROR_HANDLEAt least one of handle and dsp is not valid.

See Also

Reference