User defined DSP callback function which does the stereo enhancement. Not for direct use in your application!
Namespace: Un4seen.Bass.Misc
Assembly: Bass.Net (in Bass.Net.dll) Version: 2.4.17.5
Syntax
public override void DSPCallback( int handle, int channel, IntPtr buffer, int length, IntPtr user )
Parameters
- handle
- Type: SystemInt32
The DSP handle. - channel
- Type: SystemInt32
Channel that the DSP is being applied to. - buffer
- Type: SystemIntPtr
The buffer to apply the DSP to. The sample data is as follows: 8-bit samples are unsigned, 16-bit samples are signed, 32-bit floating-point samples range from -1 to +1 (not clipped, so can actually be outside this range). - length
- Type: SystemInt32
The number of BYTES to process. - user
- Type: SystemIntPtr
The user instance data given (see User).
Remarks
See Also