Home
last modified time | relevance | path

Searched refs:aec (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/media/java/android/media/audiofx/
DAcousticEchoCanceler.java62 AcousticEchoCanceler aec = null; in create() local
64 aec = new AcousticEchoCanceler(audioSession); in create()
66 Log.w(TAG, "not implemented on this device"+ aec); in create()
72 return aec; in create()
/frameworks/wilhelm/tests/examples/
DslesTestRecBuffQueue.cpp47 bool aec = false; variable
217 if (aec) numInterfaces++; in TestRecToBuffQueue()
244 if (aec) { in TestRecToBuffQueue()
387 if (aec) { in TestRecToBuffQueue()
536 aec = true; in main()
/frameworks/av/media/libeffects/preprocessing/
DPreProcessing.cpp437 webrtc::EchoControlMobile *aec = static_cast<webrtc::EchoControlMobile *>(effect->engine); in AecInit() local
438 aec->set_routing_mode(kAecDefaultMode); in AecInit()
439 aec->enable_comfort_noise(kAecDefaultComfortNoise); in AecInit()
445 webrtc::EchoControlMobile *aec = effect->session->apm->echo_control_mobile(); in AecCreate() local
446 ALOGV("AecCreate got aec %p", aec); in AecCreate()
447 if (aec == NULL) { in AecCreate()
451 effect->engine = static_cast<preproc_fx_handle_t>(aec); in AecCreate()
503 webrtc::EchoControlMobile *aec = static_cast<webrtc::EchoControlMobile *>(effect->engine); in AecEnable() local
504 ALOGV("AecEnable aec %p", aec); in AecEnable()
505 aec->Enable(true); in AecEnable()
[all …]
/frameworks/opt/net/voip/src/jni/rtp/
DAudioGroup.cpp847 sp<AudioEffect> aec; in threadLoop() local
850 aec = new AudioEffect(FX_IID_AEC, in threadLoop()
858 status_t status = aec->initCheck(); in threadLoop()
860 aec->setEnabled(true); in threadLoop()
862 aec.clear(); in threadLoop()
866 if (aec == 0) { in threadLoop()