mirror of
https://github.com/lubosz/overte.git
synced 2025-04-23 23:33:48 +02:00
remove unused variable
This commit is contained in:
parent
39272652e5
commit
331bb54144
1 changed files with 1 additions and 1 deletions
|
@ -132,7 +132,7 @@ int InboundAudioStream::parseData(NLPacket& packet) {
|
|||
if (packet.getType() == PacketType::SilentAudioFrame) {
|
||||
writeDroppableSilentSamples(networkSamples);
|
||||
} else {
|
||||
int audioBytes = parseAudioData(packet.getType(), packet.read(packet.bytesLeftToRead()), networkSamples);
|
||||
parseAudioData(packet.getType(), packet.read(packet.bytesLeftToRead()), networkSamples);
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue