mirror of
https://github.com/overte-org/overte.git
synced 2025-04-20 18:23:54 +02:00
forgot to skip seq number in InjectedAudioRingBuffer::parseData()
This commit is contained in:
parent
cb48825561
commit
c5474f95bd
1 changed files with 3 additions and 0 deletions
|
@ -38,6 +38,9 @@ int InjectedAudioRingBuffer::parseData(const QByteArray& packet) {
|
|||
QDataStream packetStream(packet);
|
||||
packetStream.skipRawData(numBytesForPacketHeader(packet));
|
||||
|
||||
// push past the sequence number
|
||||
packetStream.skipRawData(sizeof(quint16));
|
||||
|
||||
// push past the stream identifier
|
||||
packetStream.skipRawData(NUM_BYTES_RFC4122_UUID);
|
||||
|
||||
|
|
Loading…
Reference in a new issue