mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-08-09 21:26:25 +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();
|
_packetQueue.node.clear();
|
||||||
|
|
||||||
while (!_packetQueue.empty()) {
|
while (!_packetQueue.empty()) {
|
||||||
auto& packet = _packetQueue.back();
|
auto& packet = _packetQueue.front();
|
||||||
|
|
||||||
switch (packet->getType()) {
|
switch (packet->getType()) {
|
||||||
case PacketType::MicrophoneAudioNoEcho:
|
case PacketType::MicrophoneAudioNoEcho:
|
||||||
|
|
Loading…
Reference in a new issue