mirror of
https://github.com/overte-org/overte.git
synced 2025-04-23 03:53:34 +02:00
fix typos
This commit is contained in:
parent
557ab43f0f
commit
2fc904b990
1 changed files with 2 additions and 2 deletions
|
@ -231,10 +231,10 @@ bool AudioMixerSlave::prepareMix(const SharedNodePointer& node) {
|
|||
}
|
||||
});
|
||||
|
||||
// use the per listner AudioLimiter to render the mixed data...
|
||||
// use the per listener AudioLimiter to render the mixed data...
|
||||
nodeData->audioLimiter.render(_mixSamples, _bufferSamples, AudioConstants::NETWORK_FRAME_SAMPLES_PER_CHANNEL);
|
||||
|
||||
// check for silent audio after the peak limitor has converted the samples
|
||||
// check for silent audio after the peak limiter has converted the samples
|
||||
bool hasAudio = false;
|
||||
for (int i = 0; i < AudioConstants::NETWORK_FRAME_SAMPLES_STEREO; ++i) {
|
||||
if (_bufferSamples[i] != 0) {
|
||||
|
|
Loading…
Reference in a new issue