mirror of
https://github.com/lubosz/overte.git
synced 2025-08-28 18:06:33 +02:00
fix a debug message for audability threshold
This commit is contained in:
parent
75bc640104
commit
50007d7f4b
1 changed files with 2 additions and 2 deletions
|
@ -415,9 +415,9 @@ void AudioMixer::run() {
|
|||
}
|
||||
|
||||
if (hasRatioChanged) {
|
||||
// set out min required loudness from the new ratio
|
||||
// set out min audability threshold from the new ratio
|
||||
_minAudibilityThreshold = LOUDNESS_TO_DISTANCE_RATIO / (2.0f * (1.0f - audabilityCutoffRatio));
|
||||
qDebug() << "Minimum loudness required to be mixed is now" << _minAudibilityThreshold;
|
||||
qDebug() << "Minimum audability required to be mixed is now" << _minAudibilityThreshold;
|
||||
|
||||
framesSinceCutoffEvent = 0;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue