BASS.NET API for the Un4seen BASS Audio Library

BASSDSPType Enumeration

BASS.NET API for the Un4seen BASS Audio Library

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

public enum BASSDSPType
Members

  Member nameValueDescription
BASS_DSP_READONLY1 The DSP function does not modify the data. This lets BASS know that it does not need to copy back data from any temporary buffers, eg. used in floating-point conversion or mono/stereo channel separation.
BASS_DSP_FLOAT2 The DSP function always wants floating-point sample data. 8/16-bit data will be converted before being passed to the DSP function, and then converted back again after (if BASS_DSP_READONLY is not set).
BASS_DSP_FREECALL4 Call the DSP function with a NULL buffer when it is removed from the channel or the channel is freed.
BASS_DSP_BYPASS4194304 Set the DSP in a bypassed/paused state. Use BASS_FXSetBypass(Int32, Boolean) to start processing.
BASS_DSP_MONO_N1000000 Flag: Apply the effect to only the n'th channel (1 - 255).
BASS_DSP_STEREO_N8388608 Flag: Apply the effect to only the n'th channel (1 - 255) and the one after it.
See Also

Reference