DSP/FX flags, use with BASS_ChannelSetDSP(Int32, DSPPROC, IntPtr, Int32) or BASS_ChannelSetFX(Int32, BASSFXType, Int32).
Namespace: Un4seen.Bass
Assembly: Bass.Net (in Bass.Net.dll) Version: 2.4.18.2
Syntax
Members
| Member name | Value | Description | |
|---|---|---|---|
| BASS_DSP_READONLY | 1 | 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_FLOAT | 2 | 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_FREECALL | 4 | Call the DSP function with a NULL buffer when it is removed from the channel or the channel is freed. | |
| BASS_DSP_BYPASS | 4194304 | Set the DSP in a bypassed/paused state. Use BASS_FXSetBypass(Int32, Boolean) to start processing. | |
| BASS_DSP_MONO_N | 1000000 | Flag: Apply the effect to only the n'th channel (1 - 255). | |
| BASS_DSP_STEREO_N | 8388608 | Flag: Apply the effect to only the n'th channel (1 - 255) and the one after it. |
See Also