VoIP: Fixed per-user gain output.

This commit is contained in:
Ryan C. Gordon 2008-06-05 15:14:07 +00:00
parent 35e2091c90
commit bab9a00838

View file

@ -785,7 +785,7 @@ void CL_ParseVoip ( msg_t *msg ) {
if (written > 0) {
S_RawSamples(sender + 1, written, 8000, 2, 1,
(const byte *) decoded, 1.0f); // !!! FIXME: hardcoding!
(const byte *) decoded, clc.voipGain[sender]); // !!! FIXME: hardcoding!
}
clc.voipIncomingSequence[sender] = sequence + frames;