HomeSort by relevance Sort by last modified time
    Searched refs:aec (Results 26 - 50 of 52) sorted by null

12 3

  /external/chromium_org/third_party/webrtc/modules/
audio_processing.target.darwin-mips64.mk 27 third_party/webrtc/modules/audio_processing/aec/echo_cancellation.c \
28 third_party/webrtc/modules/audio_processing/aec/aec_core.c \
29 third_party/webrtc/modules/audio_processing/aec/aec_rdft.c \
30 third_party/webrtc/modules/audio_processing/aec/aec_resampler.c \
audio_processing.target.darwin-x86.mk 27 third_party/webrtc/modules/audio_processing/aec/echo_cancellation.c \
28 third_party/webrtc/modules/audio_processing/aec/aec_core.c \
29 third_party/webrtc/modules/audio_processing/aec/aec_rdft.c \
30 third_party/webrtc/modules/audio_processing/aec/aec_resampler.c \
audio_processing.target.darwin-x86_64.mk 27 third_party/webrtc/modules/audio_processing/aec/echo_cancellation.c \
28 third_party/webrtc/modules/audio_processing/aec/aec_core.c \
29 third_party/webrtc/modules/audio_processing/aec/aec_rdft.c \
30 third_party/webrtc/modules/audio_processing/aec/aec_resampler.c \
audio_processing.target.linux-arm.mk 27 third_party/webrtc/modules/audio_processing/aec/echo_cancellation.c \
28 third_party/webrtc/modules/audio_processing/aec/aec_core.c \
29 third_party/webrtc/modules/audio_processing/aec/aec_rdft.c \
30 third_party/webrtc/modules/audio_processing/aec/aec_resampler.c \
audio_processing.target.linux-arm64.mk 27 third_party/webrtc/modules/audio_processing/aec/echo_cancellation.c \
28 third_party/webrtc/modules/audio_processing/aec/aec_core.c \
29 third_party/webrtc/modules/audio_processing/aec/aec_rdft.c \
30 third_party/webrtc/modules/audio_processing/aec/aec_resampler.c \
audio_processing.target.linux-mips.mk 27 third_party/webrtc/modules/audio_processing/aec/echo_cancellation.c \
28 third_party/webrtc/modules/audio_processing/aec/aec_core.c \
29 third_party/webrtc/modules/audio_processing/aec/aec_rdft.c \
30 third_party/webrtc/modules/audio_processing/aec/aec_resampler.c \
audio_processing.target.linux-mips64.mk 27 third_party/webrtc/modules/audio_processing/aec/echo_cancellation.c \
28 third_party/webrtc/modules/audio_processing/aec/aec_core.c \
29 third_party/webrtc/modules/audio_processing/aec/aec_rdft.c \
30 third_party/webrtc/modules/audio_processing/aec/aec_resampler.c \
audio_processing.target.linux-x86.mk 27 third_party/webrtc/modules/audio_processing/aec/echo_cancellation.c \
28 third_party/webrtc/modules/audio_processing/aec/aec_core.c \
29 third_party/webrtc/modules/audio_processing/aec/aec_rdft.c \
30 third_party/webrtc/modules/audio_processing/aec/aec_resampler.c \
audio_processing.target.linux-x86_64.mk 27 third_party/webrtc/modules/audio_processing/aec/echo_cancellation.c \
28 third_party/webrtc/modules/audio_processing/aec/aec_core.c \
29 third_party/webrtc/modules/audio_processing/aec/aec_rdft.c \
30 third_party/webrtc/modules/audio_processing/aec/aec_resampler.c \
audio_processing_sse2.target.darwin-x86.mk 25 third_party/webrtc/modules/audio_processing/aec/aec_core_sse2.c \
26 third_party/webrtc/modules/audio_processing/aec/aec_rdft_sse2.c
audio_processing_sse2.target.darwin-x86_64.mk 25 third_party/webrtc/modules/audio_processing/aec/aec_core_sse2.c \
26 third_party/webrtc/modules/audio_processing/aec/aec_rdft_sse2.c
audio_processing_sse2.target.linux-x86.mk 25 third_party/webrtc/modules/audio_processing/aec/aec_core_sse2.c \
26 third_party/webrtc/modules/audio_processing/aec/aec_rdft_sse2.c
audio_processing_sse2.target.linux-x86_64.mk 25 third_party/webrtc/modules/audio_processing/aec/aec_core_sse2.c \
26 third_party/webrtc/modules/audio_processing/aec/aec_rdft_sse2.c
audio_processing_neon.target.darwin-arm.mk 28 third_party/webrtc/modules/audio_processing/aec/aec_core_neon.c \
29 third_party/webrtc/modules/audio_processing/aec/aec_rdft_neon.c \
audio_processing_neon.target.linux-arm.mk 28 third_party/webrtc/modules/audio_processing/aec/aec_core_neon.c \
29 third_party/webrtc/modules/audio_processing/aec/aec_rdft_neon.c \
  /frameworks/opt/net/voip/src/jni/rtp/
AudioGroup.cpp 835 AudioEffect *aec = NULL; local
838 aec = new AudioEffect(FX_IID_AEC,
845 status_t status = aec->initCheck();
847 aec->setEnabled(true);
849 delete aec;
850 aec = NULL;
853 // Create local echo suppressor if platform AEC cannot be used.
854 if (aec == NULL) {
930 delete aec;
  /frameworks/av/media/libeffects/preprocessing/
PreProcessing.cpp 426 // Acoustic Echo Canceler (AEC)
436 webrtc::EchoControlMobile *aec = static_cast<webrtc::EchoControlMobile *>(effect->engine); local
437 aec->set_routing_mode(kAecDefaultMode);
438 aec->enable_comfort_noise(kAecDefaultComfortNoise);
444 webrtc::EchoControlMobile *aec = effect->session->apm->echo_control_mobile(); local
445 ALOGV("AecCreate got aec %p", aec);
446 if (aec == NULL) {
450 effect->engine = static_cast<preproc_fx_handle_t>(aec);
502 webrtc::EchoControlMobile *aec = static_cast<webrtc::EchoControlMobile *>(effect->engine) local
510 webrtc::EchoControlMobile *aec = static_cast<webrtc::EchoControlMobile *>(effect->engine); local
517 webrtc::EchoControlMobile *aec = static_cast<webrtc::EchoControlMobile *>(effect->engine); local
    [all...]
  /external/webrtc/
Android.mk 118 include $(webrtc_path)/src/modules/audio_processing/aec/Android.mk
  /external/webrtc/src/modules/audio_processing/
Android.mk 49 $(LOCAL_PATH)/aec/interface \
  /external/chromium_org/third_party/webrtc/voice_engine/
voe_audio_processing_impl.cc 506 EchoCancellation* aec = _shared->audio_processing()->echo_cancellation(); local
507 if (aec->enable_drift_compensation(enable) != 0) {
509 "aec->enable_drift_compensation() failed");
519 EchoCancellation* aec = _shared->audio_processing()->echo_cancellation(); local
520 return aec->is_drift_compensation_enabled();
532 // AEC mode
539 // Disable the AECM before enable the AEC
542 "SetEcStatus() disable AECM before enabling AEC");
553 "SetEcStatus() failed to set AEC state");
578 // Disable the AEC before enable the AEC
    [all...]
transmit_mixer.cc 1265 EchoCancellation* aec = audioproc_->echo_cancellation(); local
    [all...]
  /hardware/qcom/msm8960/kernel-headers/media/
msm_camera.h 724 struct stats_buff aec; member in struct:msm_stats_buf
    [all...]
  /hardware/qcom/msm8960/original-kernel-headers/media/
msm_camera.h 572 MSM_STATS_TYPE_AEC, /* legacy based AEC */
746 struct stats_buff aec; member in struct:msm_stats_buf
    [all...]
  /hardware/qcom/msm8x74/kernel-headers/media/
msm_camera.h 711 struct stats_buff aec; member in struct:msm_stats_buf
    [all...]
  /hardware/qcom/msm8x74/original-kernel-headers/media/
msm_camera.h 629 MSM_STATS_TYPE_AEC, /* legacy based AEC */
812 struct stats_buff aec; member in struct:msm_stats_buf
    [all...]

Completed in 1199 milliseconds

12 3