mirror of
https://github.com/lubosz/overte.git
synced 2025-04-24 09:23:17 +02:00
actually require minRequiredLoudness for a stream to be mixed in
This commit is contained in:
parent
508e59217f
commit
7f96c71793
1 changed files with 1 additions and 1 deletions
|
@ -305,7 +305,7 @@ void AudioMixer::prepareMixForListeningNode(Node* node) {
|
|||
if ((*otherNode != *node
|
||||
|| otherNodeBuffer->shouldLoopbackForNode())
|
||||
&& otherNodeBuffer->willBeAddedToMix()
|
||||
&& otherNodeClientData->getNextOutputLoudness() > 0) {
|
||||
&& otherNodeClientData->getNextOutputLoudness() > _minRequiredLoudness) {
|
||||
addBufferToMixForListeningNodeWithBuffer(otherNodeBuffer, nodeRingBuffer);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue