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: BooleanIf succesful, is returned, else is returned. Use BASS_ErrorGetCode to get the error code.
Remarks
ERROR CODE | Description |
---|---|
BASS_ERROR_HANDLE | At least one of handle and dsp is not valid. |
See Also