|
@@ -531,7 +531,7 @@ JitsiConference.prototype._init = function(options = {}) {
|
531
|
531
|
}
|
532
|
532
|
|
533
|
533
|
// Generates events based on no audio input detector.
|
534
|
|
- if (config.enableNoAudioDetection) {
|
|
534
|
+ if (config.enableNoAudioDetection && !config.disableAudioLevels) {
|
535
|
535
|
this._noAudioSignalDetection = new NoAudioSignalDetection(this);
|
536
|
536
|
this._noAudioSignalDetection.on(DetectionEvents.NO_AUDIO_INPUT, () => {
|
537
|
537
|
this.eventEmitter.emit(JitsiConferenceEvents.NO_AUDIO_INPUT);
|
|
@@ -541,7 +541,6 @@ JitsiConference.prototype._init = function(options = {}) {
|
541
|
541
|
});
|
542
|
542
|
}
|
543
|
543
|
|
544
|
|
-
|
545
|
544
|
if ('channelLastN' in config) {
|
546
|
545
|
this.setLastN(config.channelLastN);
|
547
|
546
|
}
|