mirror of
https://github.com/overte-org/overte.git
synced 2025-04-08 08:14:48 +02: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