Remarks
Removes a player from the given stream mixer; when a player is removed from a stream mixer it will redirect its audio output to the output device set into the InitDJSystem method.
Further information about the use of custom Stream Mixers can be found inside the How to use custom Stream Mixers tutorial.
Syntax
[Visual Basic]
control.StreamMixerPlayerRemove (
nStreamMixerID as Long,
nPlayerIndex as Integer
) as enumErrorCodes
|
|
[C++]
short control.StreamMixerPlayerRemove (
long nStreamMixerID,
short nPlayerIndex
);
|
|
Parameter
|
Description
|
|
|
nStreamMixerID
|
Unique identifier of the stream mixer created by a previous call to the StreamMixerCreate method
|
nPlayerIndex
|
Number representing the zero-based index of the involved player
|
Return value
Value
|
Meaning
|
|
|
Negative value
|
An error occurred, check the LastError property value in order to get the error code
|
enumErrorCodes.ERR_NOERROR (0)
|
The method call was successful
|
|