Searched refs:aecInst (Results 1 - 3 of 3) sorted by relevance

/external/webrtc/src/modules/audio_processing/aec/interface/
H A Decho_cancellation.h69 * void **aecInst Pointer to the AEC instance to be created
77 WebRtc_Word32 WebRtcAec_Create(void **aecInst);
84 * void *aecInst Pointer to the AEC instance
91 WebRtc_Word32 WebRtcAec_Free(void *aecInst);
98 * void *aecInst Pointer to the AEC instance
107 WebRtc_Word32 WebRtcAec_Init(void *aecInst,
116 * void *aecInst Pointer to the AEC instance
126 WebRtc_Word32 WebRtcAec_BufferFarend(void *aecInst,
135 * void *aecInst Pointer to the AEC instance
156 WebRtc_Word32 WebRtcAec_Process(void *aecInst,
[all...]
/external/webrtc/src/modules/audio_processing/aec/
H A Decho_cancellation.c100 static int EstBufDelay(aecpc_t *aecInst);
102 WebRtc_Word32 WebRtcAec_Create(void **aecInst) argument
105 if (aecInst == NULL) {
110 *aecInst = aecpc;
171 WebRtc_Word32 WebRtcAec_Free(void *aecInst) argument
173 aecpc_t *aecpc = aecInst;
199 WebRtc_Word32 WebRtcAec_Init(void *aecInst, WebRtc_Word32 sampFreq, WebRtc_Word32 scSampFreq) argument
201 aecpc_t *aecpc = aecInst;
292 WebRtc_Word32 WebRtcAec_BufferFarend(void *aecInst, const WebRtc_Word16 *farend, argument
295 aecpc_t *aecpc = aecInst;
371 WebRtcAec_Process(void *aecInst, const WebRtc_Word16 *nearend, const WebRtc_Word16 *nearendH, WebRtc_Word16 *out, WebRtc_Word16 *outH, WebRtc_Word16 nrOfSamples, WebRtc_Word16 msInSndCardBuf, WebRtc_Word32 skew) argument
604 WebRtcAec_set_config(void *aecInst, AecConfig config) argument
653 WebRtcAec_get_config(void *aecInst, AecConfig *config) argument
679 WebRtcAec_get_echo_status(void *aecInst, WebRtc_Word16 *status) argument
702 WebRtcAec_GetMetrics(void *aecInst, AecMetrics *metrics) argument
886 WebRtcAec_get_error_code(void *aecInst) argument
[all...]
H A Daec_core.c147 int WebRtcAec_CreateAec(aec_t **aecInst) argument
150 *aecInst = aec;

Completed in 62 milliseconds