mirror of
https://thingvellir.net/git/overte
synced 2025-03-27 23:52:03 +01:00
Merge pull request #9691 from zzmp/fix/audio-packet-queue
Fix audio packet queue behavior
This commit is contained in:
commit
24591ee82b
1 changed files with 1 additions and 1 deletions
|
@ -61,7 +61,7 @@ void AudioMixerClientData::processPackets() {
|
|||
_packetQueue.node.clear();
|
||||
|
||||
while (!_packetQueue.empty()) {
|
||||
auto& packet = _packetQueue.back();
|
||||
auto& packet = _packetQueue.front();
|
||||
|
||||
switch (packet->getType()) {
|
||||
case PacketType::MicrophoneAudioNoEcho:
|
||||
|
|
Loading…
Reference in a new issue