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

  /external/chromium_org/third_party/webrtc/modules/audio_processing/aecm/
echo_control_mobile.c 11 #include "webrtc/modules/audio_processing/aecm/include/echo_control_mobile.h"
19 #include "webrtc/modules/audio_processing/aecm/aecm_core.h"
85 aecmob_t *aecm; local
91 aecm = malloc(sizeof(aecmob_t));
92 *aecmInst = aecm;
93 if (aecm == NULL)
100 if (WebRtcAecm_CreateCore(&aecm->aecmCore) == -1)
102 WebRtcAecm_Free(aecm);
103 aecm = NULL;
107 aecm->farendBuf = WebRtc_CreateBuffer(kBufSizeSamp
135 aecmob_t *aecm = aecmInst; local
162 aecmob_t *aecm = aecmInst; local
226 aecmob_t *aecm = aecmInst; local
267 aecmob_t *aecm = aecmInst; local
469 aecmob_t *aecm = aecmInst; local
551 aecmob_t *aecm = aecmInst; local
580 aecmob_t *aecm = aecmInst; local
611 aecmob_t *aecm = aecmInst; local
644 aecmob_t *aecm = aecmInst; local
    [all...]
aecm_core.c 11 #include "webrtc/modules/audio_processing/aecm/aecm_core.h"
18 #include "webrtc/modules/audio_processing/aecm/include/echo_control_mobile.h"
178 // - self : Pointer to the AECM instance.
212 AecmCore_t *aecm = malloc(sizeof(AecmCore_t)); local
213 *aecmInst = aecm;
214 if (aecm == NULL)
219 aecm->farFrameBuf = WebRtc_CreateBuffer(FRAME_LEN + PART_LEN,
221 if (!aecm->farFrameBuf)
223 WebRtcAecm_FreeCore(aecm);
224 aecm = NULL
    [all...]
  /external/webrtc/src/modules/audio_processing/aecm/
echo_control_mobile.c 91 aecmob_t *aecm; local
97 aecm = malloc(sizeof(aecmob_t));
98 *aecmInst = aecm;
99 if (aecm == NULL)
104 if (WebRtcAecm_CreateCore(&aecm->aecmCore) == -1)
106 WebRtcAecm_Free(aecm);
107 aecm = NULL;
111 if (WebRtc_CreateBuffer(&aecm->farendBuf, kBufSizeSamp,
114 WebRtcAecm_Free(aecm);
115 aecm = NULL
138 aecmob_t *aecm = aecmInst; local
165 aecmob_t *aecm = aecmInst; local
229 aecmob_t *aecm = aecmInst; local
270 aecmob_t *aecm = aecmInst; local
536 aecmob_t *aecm = aecmInst; local
618 aecmob_t *aecm = aecmInst; local
647 aecmob_t *aecm = aecmInst; local
676 aecmob_t *aecm = aecmInst; local
726 aecmob_t *aecm = aecmInst; local
    [all...]
aecm_core.c 200 static void ComfortNoise(AecmCore_t* aecm,
205 static WebRtc_Word16 CalcSuppressionGain(AecmCore_t * const aecm);
238 // - self : Pointer to the AECM instance.
276 AecmCore_t *aecm = malloc(sizeof(AecmCore_t)); local
277 *aecmInst = aecm;
278 if (aecm == NULL)
283 if (WebRtc_CreateBuffer(&aecm->farFrameBuf, FRAME_LEN + PART_LEN,
286 WebRtcAecm_FreeCore(aecm);
287 aecm = NULL;
291 if (WebRtc_CreateBuffer(&aecm->nearNoisyFrameBuf, FRAME_LEN + PART_LEN
    [all...]

Completed in 739 milliseconds