mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-08-05 18:24:17 +02:00
spacing fix in Audio.cpp
This commit is contained in:
parent
cc5c04c82f
commit
8ece758107
1 changed files with 1 additions and 1 deletions
|
@ -465,7 +465,7 @@ void Audio::addReceivedAudioToBuffer(const QByteArray& audioByteArray) {
|
|||
ringBufferSamples[i * 2] = glm::clamp(ringBufferSamples[i * 2] + _localInjectedSamples[i],
|
||||
MIN_SAMPLE_VALUE, MAX_SAMPLE_VALUE);
|
||||
ringBufferSamples[(i * 2) + 1] = glm::clamp(ringBufferSamples[(i * 2) + 1] + _localInjectedSamples[i],
|
||||
MIN_SAMPLE_VALUE, MAX_SAMPLE_VALUE);
|
||||
MIN_SAMPLE_VALUE, MAX_SAMPLE_VALUE);
|
||||
}
|
||||
|
||||
// copy the packet from the RB to the output
|
||||
|
|
Loading…
Reference in a new issue