mirror of
https://github.com/lubosz/overte.git
synced 2025-04-16 09:46:29 +02:00
unqueue from front for audio packets
This commit is contained in:
parent
821c01eeca
commit
07e97a0cab
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