Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(991)

Unified Diff: webrtc/modules/audio_device/android/java/src/org/webrtc/voiceengine/WebRtcAudioEffects.java

Issue 1952123003: Surface the IntelligibilityEnhancer on MediaConstraints (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: webrtc/modules/audio_device/android/java/src/org/webrtc/voiceengine/WebRtcAudioEffects.java
diff --git a/webrtc/modules/audio_device/android/java/src/org/webrtc/voiceengine/WebRtcAudioEffects.java b/webrtc/modules/audio_device/android/java/src/org/webrtc/voiceengine/WebRtcAudioEffects.java
index c3ab0438687dafe19b6f679a94b4376c6015b570..70016707fb32361fb1ff9d513e185d62cb10b703 100644
--- a/webrtc/modules/audio_device/android/java/src/org/webrtc/voiceengine/WebRtcAudioEffects.java
+++ b/webrtc/modules/audio_device/android/java/src/org/webrtc/voiceengine/WebRtcAudioEffects.java
@@ -194,6 +194,7 @@ class WebRtcAudioEffects {
canUseNoiseSuppressor = new Boolean(
isNoiseSuppressorSupported()
&& !WebRtcAudioUtils.useWebRtcBasedNoiseSuppressor()
+ && !WebRtcAudioUtils.useWebRtcBasedIntelligibilityEnhancer()
the sun 2016/05/06 09:00:16 IIUC WebRtcAudioEffects is meant to provide an int
aluebs-webrtc 2016/05/06 16:27:10 What this line does is to disable hardware NS when
&& !isNoiseSuppressorBlacklisted()
&& !isNoiseSuppressorExcludedByUUID());
Logging.d(TAG, "canUseNoiseSuppressor: " + canUseNoiseSuppressor);

Powered by Google App Engine
This is Rietveld 408576698