Home
last modified time | relevance | path

Searched refs:canUseAcousticEchoCanceler (Results 1 – 2 of 2) sorted by relevance

/external/webrtc/webrtc/modules/audio_device/android/java/src/org/webrtc/voiceengine/
DWebRtcAudioEffects.java48 private static Boolean canUseAcousticEchoCanceler = null; field in WebRtcAudioEffects
162 public static boolean canUseAcousticEchoCanceler() { in canUseAcousticEchoCanceler() method in WebRtcAudioEffects
163 if (canUseAcousticEchoCanceler == null) { in canUseAcousticEchoCanceler()
164 canUseAcousticEchoCanceler = new Boolean( in canUseAcousticEchoCanceler()
170 + canUseAcousticEchoCanceler); in canUseAcousticEchoCanceler()
172 return canUseAcousticEchoCanceler; in canUseAcousticEchoCanceler()
223 if (!canUseAcousticEchoCanceler()) { in setAEC()
297 boolean enable = shouldEnableAec && canUseAcousticEchoCanceler(); in enable()
DWebRtcAudioManager.java231 return WebRtcAudioEffects.canUseAcousticEchoCanceler(); in isAcousticEchoCancelerSupported()