Home
last modified time | relevance | path

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

/external/webrtc/src/modules/audio_processing/aec/interface/
Decho_cancellation.h77 WebRtc_Word32 WebRtcAec_Create(void **aecInst);
91 WebRtc_Word32 WebRtcAec_Free(void *aecInst);
107 WebRtc_Word32 WebRtcAec_Init(void *aecInst,
126 WebRtc_Word32 WebRtcAec_BufferFarend(void *aecInst,
156 WebRtc_Word32 WebRtcAec_Process(void *aecInst,
179 WebRtc_Word32 WebRtcAec_set_config(void *aecInst, AecConfig config);
195 WebRtc_Word32 WebRtcAec_get_config(void *aecInst, AecConfig *config);
211 WebRtc_Word32 WebRtcAec_get_echo_status(void *aecInst, WebRtc_Word16 *status);
227 WebRtc_Word32 WebRtcAec_GetMetrics(void *aecInst, AecMetrics *metrics);
257 WebRtc_Word32 WebRtcAec_get_error_code(void *aecInst);
/external/webrtc/src/modules/audio_processing/aec/
Decho_cancellation.c100 static int EstBufDelay(aecpc_t *aecInst);
102 WebRtc_Word32 WebRtcAec_Create(void **aecInst) in WebRtcAec_Create() argument
105 if (aecInst == NULL) { in WebRtcAec_Create()
110 *aecInst = aecpc; in WebRtcAec_Create()
171 WebRtc_Word32 WebRtcAec_Free(void *aecInst) in WebRtcAec_Free() argument
173 aecpc_t *aecpc = aecInst; in WebRtcAec_Free()
199 WebRtc_Word32 WebRtcAec_Init(void *aecInst, WebRtc_Word32 sampFreq, WebRtc_Word32 scSampFreq) in WebRtcAec_Init() argument
201 aecpc_t *aecpc = aecInst; in WebRtcAec_Init()
292 WebRtc_Word32 WebRtcAec_BufferFarend(void *aecInst, const WebRtc_Word16 *farend, in WebRtcAec_BufferFarend() argument
295 aecpc_t *aecpc = aecInst; in WebRtcAec_BufferFarend()
[all …]
Daec_core.c147 int WebRtcAec_CreateAec(aec_t **aecInst) in WebRtcAec_CreateAec() argument
150 *aecInst = aec; in WebRtcAec_CreateAec()