From b949e776ca74e15d78e597fbcb86630cc6c257f7 Mon Sep 17 00:00:00 2001 From: icculus Date: Wed, 4 Jun 2008 21:49:15 +0000 Subject: VoIP: client can now specify targets for voice transmission. git-svn-id: svn://svn.icculus.org/quake3/trunk@1365 edf5b092-35ff-0310-97b2-ce42778d08ea --- code/client/cl_parse.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'code/client/cl_parse.c') diff --git a/code/client/cl_parse.c b/code/client/cl_parse.c index 294e46e..9e6d5f9 100644 --- a/code/client/cl_parse.c +++ b/code/client/cl_parse.c @@ -647,6 +647,8 @@ qboolean CL_ShouldIgnoreVoipSender(int sender) return qtrue; // all channels are muted with extreme prejudice. else if (clc.voipIgnore[sender]) return qtrue; // just ignoring this guy. + else if (clc.voipGain[sender] == 0.0f) + return qtrue; // too quiet to play. return qfalse; // !!! FIXME: implement per-channel muting. } @@ -758,7 +760,7 @@ void CL_ParseVoip ( msg_t *msg ) { Com_DPrintf("VoIP: playback %d bytes, %d samples, %d frames\n", written * 2, written, i); S_RawSamples(sender + 1, written, 8000, 2, 1, - (const byte *) decoded, 1.0f); // !!! FIXME: hardcoding! + (const byte *) decoded, clc.voipGain[sender]); // !!! FIXME: hardcoding! written = 0; } -- cgit v1.2.3