Home
last modified time | relevance | path

Searched refs:isAcousticEchoCancelerSupported (Results 1 – 6 of 6) sorted by relevance

/external/webrtc/sdk/android/src/java/org/webrtc/audio/
DWebRtcAudioEffects.java56 public static boolean isAcousticEchoCancelerSupported() { in isAcousticEchoCancelerSupported() method in WebRtcAudioEffects
79 if (!isAcousticEchoCancelerSupported()) { in setAEC()
131 if (isAcousticEchoCancelerSupported()) { in enable()
137 boolean enable = shouldEnableAec && isAcousticEchoCancelerSupported(); in enable()
194 return (AudioEffect.EFFECT_TYPE_AEC.equals(type) && isAcousticEchoCancelerSupported()) in effectTypeIsVoIP()
DWebRtcAudioRecord.java104 private final boolean isAcousticEchoCancelerSupported; field in WebRtcAudioRecord
184 WebRtcAudioEffects.isAcousticEchoCancelerSupported(), in WebRtcAudioRecord()
192 boolean isAcousticEchoCancelerSupported, boolean isNoiseSuppressorSupported) { in WebRtcAudioRecord() argument
193 if (isAcousticEchoCancelerSupported && !WebRtcAudioEffects.isAcousticEchoCancelerSupported()) { in WebRtcAudioRecord()
206 this.isAcousticEchoCancelerSupported = isAcousticEchoCancelerSupported; in WebRtcAudioRecord()
217 boolean isAcousticEchoCancelerSupported() { in isAcousticEchoCancelerSupported() method in WebRtcAudioRecord
218 return isAcousticEchoCancelerSupported; in isAcousticEchoCancelerSupported()
/external/webrtc/modules/audio_device/android/java/src/org/webrtc/voiceengine/
DWebRtcAudioEffects.java59 public static boolean isAcousticEchoCancelerSupported() { in isAcousticEchoCancelerSupported() method in WebRtcAudioEffects
139 boolean canUseAcousticEchoCanceler = isAcousticEchoCancelerSupported() in canUseAcousticEchoCanceler()
221 if (isAcousticEchoCancelerSupported()) { in enable()
283 return (AudioEffect.EFFECT_TYPE_AEC.equals(type) && isAcousticEchoCancelerSupported()) in effectTypeIsVoIP()
DWebRtcAudioManager.java226 hardwareAEC = isAcousticEchoCancelerSupported(); in storeAudioParameters()
329 private static boolean isAcousticEchoCancelerSupported() { in isAcousticEchoCancelerSupported() method in WebRtcAudioManager
DWebRtcAudioUtils.java121 public static boolean isAcousticEchoCancelerSupported() { in isAcousticEchoCancelerSupported() method in WebRtcAudioUtils
/external/webrtc/sdk/android/api/org/webrtc/audio/
DJavaAudioDeviceModule.java306 return WebRtcAudioEffects.isAcousticEchoCancelerSupported(); in isBuiltInAcousticEchoCancelerSupported()