BASS.NET API for the Un4seen BASS Audio Library

WINAMP_DSPStart Method

BASS.NET API for the Un4seen BASS Audio Library
Starts a certain module of a Wianmp DSP plugin and assignes it to a channel as a new DSP.

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

public int Start(
	int module,
	int channel,
	int prio
)

Parameters

module
Type: SystemInt32
The module index to start (must be between 0 and ModuleCount-1).
channel
Type: SystemInt32
The BASS stream channel handle to assign it to.
prio
Type: SystemInt32
The DSP priority to use when assigning the DSP.

Return Value

Type: Int32
The DSP handle on success - else 0 is returned.
Remarks

The Winamp DSP must have been loaded with Load before you can use this method! Call Stop if you don't need this module anymore and to remove the DSP from the channel.
See Also

Reference