BASS.NET API for the Un4seen BASS Audio Library

DSP_IIRDelay Constructor (Int32, Int32, Single)

BASS.NET API for the Un4seen BASS Audio Library
Creates a new instance of the IIR Delay Filter DSP, which already assigns the DSP (Start will be called automatically).

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

public DSP_IIRDelay(
	int channel,
	int priority,
	float maxDelay
)

Parameters

channel
Type: SystemInt32
Channel that the DSP is being applied to.
priority
Type: SystemInt32
The priority of the DSP, which determines it's position in the DSP chain - DSPs with higher priority are called before those with lower.
maxDelay
Type: SystemSingle
The maximum delay buffer size in seconds (between 0.001 and 60.0).
Remarks

The DSP is automatically assigned by this constructor!

Use Stop to remove the DSP (you can (re)assign the DSP at any time again by calling Start).

See Also

Reference