alSeqpSetChlFXMix (function)

alSeqpSetChlFXMix, n_alSeqpSetChlFXMix

Sets the effect mix on the given MIDI channel

Syntax

#include <libaudio.h>     /* libaudio.h */
void alSeqpSetChlFXMix(    ALSeqPlayer *seqp, u8 chan, u8 fxmix);
#include <n_libaudio.h>     /* n_libaudio.h */
void n_alSeqpSetChlFXMix(N_ALSeqPlayer *seqp, u8 chan, u8 fxmix);

Arguments

seqp
Pointer to a compressed MIDI sequence player

chan
Target (0 based) MIDI channel

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

Description

alSeqpSetChlFXMix 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 the "Chapter 28 n_audio library" of the programming manual.

See Also

alSeqpGetChlFXMix, alSeqpSendMidi, and alSeqPlayer

Revision History

1999/04/30 Changed Format