HomeSort by relevance Sort by last modified time
    Searched defs:aecm (Results 1 - 2 of 2) sorted by null

  /external/webrtc/webrtc/modules/audio_processing/aecm/
echo_control_mobile.c 11 #include "webrtc/modules/audio_processing/aecm/echo_control_mobile.h"
20 #include "webrtc/modules/audio_processing/aecm/aecm_core.h"
82 AecMobile* aecm = malloc(sizeof(AecMobile)); local
86 aecm->aecmCore = WebRtcAecm_CreateCore();
87 if (!aecm->aecmCore) {
88 WebRtcAecm_Free(aecm);
92 aecm->farendBuf = WebRtc_CreateBuffer(kBufSizeSamp,
94 if (!aecm->farendBuf)
96 WebRtcAecm_Free(aecm);
100 aecm->initFlag = 0
117 AecMobile* aecm = aecmInst; local
141 AecMobile* aecm = aecmInst; local
199 AecMobile* aecm = aecmInst; local
219 AecMobile* aecm = aecmInst; local
242 AecMobile* aecm = aecmInst; local
438 AecMobile* aecm = aecmInst; local
519 AecMobile* aecm = aecmInst; local
547 AecMobile* aecm = aecmInst; local
    [all...]
aecm_core.c 11 #include "webrtc/modules/audio_processing/aecm/aecm_core.h"
19 #include "webrtc/modules/audio_processing/aecm/echo_control_mobile.h"
178 // - self : Pointer to the AECM instance.
211 AecmCore* aecm = malloc(sizeof(AecmCore)); local
213 aecm->farFrameBuf = WebRtc_CreateBuffer(FRAME_LEN + PART_LEN,
215 if (!aecm->farFrameBuf)
217 WebRtcAecm_FreeCore(aecm);
221 aecm->nearNoisyFrameBuf = WebRtc_CreateBuffer(FRAME_LEN + PART_LEN,
223 if (!aecm->nearNoisyFrameBuf)
225 WebRtcAecm_FreeCore(aecm);
    [all...]

Completed in 303 milliseconds