alCSPSetChlFXMix (function)

alCSPSetChlFXMix, n_alCSPSetChlFXMix

Sets the effect mix on the given MIDI channel

Syntax

#include <libaudio.h>     /* libaudio.h */
void alCSPSetChlFXMix(    ALCSPlayer *seqp, u8 chan, u8 fxmix);
#include <n_libaudio.h>     /* n_libaudio.h */
void n_alCSPSetChlFXMix(N_ALCSPlayer *seqp, u8 chan, u8 fxmix);

Arguments

seqp
Pointer to the compressed MIDI sequence player

chan
Target (0 based) MIDI channel

fxmix
wet/dry mix
a value of 0 specifies a completely dry sound, 127 specifies a completely wet sound

Description

alCSPSetChlFXMix sets the effect mix for the given MIDI channel. Subsequent FXMix controllers (Cntrl 91) in the sequence will override the effect of this call.

For details on n_audio library, see "Chapter 28: n_audio library" in the N64 Programming Manual.

See Also

alCSPGetChlFXMix, alCSPSendMidi, and alCSeqPlayer

Revision History

1999/04/30 Changed Format