diff --git a/webrtc/media/engine/webrtcvoiceengine.cc b/webrtc/media/engine/webrtcvoiceengine.cc index eb8399494c..c7fd768913 100644 --- a/webrtc/media/engine/webrtcvoiceengine.cc +++ b/webrtc/media/engine/webrtcvoiceengine.cc @@ -615,10 +615,12 @@ bool WebRtcVoiceEngine::ApplyOptions(const AudioOptions& options_in) { } #if defined(WEBRTC_IOS) - // On iOS, VPIO provides built-in EC and AGC. + // On iOS, VPIO provides built-in EC, NS and AGC. options.echo_cancellation = rtc::Optional(false); options.auto_gain_control = rtc::Optional(false); - LOG(LS_INFO) << "Always disable AEC and AGC on iOS. Use built-in instead."; + options.noise_suppression = rtc::Optional(false); + LOG(LS_INFO) + << "Always disable AEC, NS and AGC on iOS. Use built-in instead."; #elif defined(ANDROID) ec_mode = webrtc::kEcAecm; #endif