mirror of
https://github.com/UberGames/lilium-voyager.git
synced 2024-11-10 06:31:47 +00:00
Fix some opus_decode issues
It was able to fail the assert before. I was using opus_decode wrong.
This commit is contained in:
parent
615b73288f
commit
8d38e2307c
1 changed files with 2 additions and 2 deletions
|
@ -785,7 +785,7 @@ void CL_ParseVoip ( msg_t *msg, qboolean ignoreData ) {
|
||||||
// tell opus that we're missing frames...
|
// tell opus that we're missing frames...
|
||||||
for (i = 0; i < seqdiff; i++) {
|
for (i = 0; i < seqdiff; i++) {
|
||||||
assert((written + VOIP_MAX_PACKET_SAMPLES) * 2 < sizeof (decoded));
|
assert((written + VOIP_MAX_PACKET_SAMPLES) * 2 < sizeof (decoded));
|
||||||
numSamples = opus_decode(clc.opusDecoder[sender], NULL, VOIP_MAX_PACKET_SAMPLES * 2, decoded + written, sizeof (decoded) - written, 0);
|
numSamples = opus_decode(clc.opusDecoder[sender], NULL, 0, decoded + written, VOIP_MAX_PACKET_SAMPLES, 0);
|
||||||
if ( numSamples <= 0 ) {
|
if ( numSamples <= 0 ) {
|
||||||
Com_DPrintf("VoIP: Error decoding frame %d from client #%d\n", i, sender);
|
Com_DPrintf("VoIP: Error decoding frame %d from client #%d\n", i, sender);
|
||||||
continue;
|
continue;
|
||||||
|
@ -794,7 +794,7 @@ void CL_ParseVoip ( msg_t *msg, qboolean ignoreData ) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
numSamples = opus_decode(clc.opusDecoder[sender], encoded, packetsize, decoded + written, sizeof (decoded) - written, 0);
|
numSamples = opus_decode(clc.opusDecoder[sender], encoded, packetsize, decoded + written, ARRAY_LEN(decoded) - written, 0);
|
||||||
|
|
||||||
if ( numSamples <= 0 ) {
|
if ( numSamples <= 0 ) {
|
||||||
Com_DPrintf("VoIP: Error decoding voip data from client #%d\n", sender);
|
Com_DPrintf("VoIP: Error decoding voip data from client #%d\n", sender);
|
||||||
|
|
Loading…
Reference in a new issue