Searched refs:aecInst (Results 1 – 3 of 3) sorted by relevance
/external/webrtc/src/modules/audio_processing/aec/main/interface/ |
D | echo_cancellation.h | 76 WebRtc_Word32 WebRtcAec_Create(void **aecInst); 90 WebRtc_Word32 WebRtcAec_Free(void *aecInst); 106 WebRtc_Word32 WebRtcAec_Init(void *aecInst, 125 WebRtc_Word32 WebRtcAec_BufferFarend(void *aecInst, 155 WebRtc_Word32 WebRtcAec_Process(void *aecInst, 178 WebRtc_Word32 WebRtcAec_set_config(void *aecInst, AecConfig config); 194 WebRtc_Word32 WebRtcAec_get_config(void *aecInst, AecConfig *config); 210 WebRtc_Word32 WebRtcAec_get_echo_status(void *aecInst, WebRtc_Word16 *status); 226 WebRtc_Word32 WebRtcAec_GetMetrics(void *aecInst, AecMetrics *metrics); 239 WebRtc_Word32 WebRtcAec_get_error_code(void *aecInst);
|
/external/webrtc/src/modules/audio_processing/aec/main/source/ |
D | echo_cancellation.c | 96 static int EstBufDelay(aecpc_t *aecInst, short msInSndCardBuf); 99 static int DelayComp(aecpc_t *aecInst); 101 WebRtc_Word32 WebRtcAec_Create(void **aecInst) in WebRtcAec_Create() argument 104 if (aecInst == NULL) { in WebRtcAec_Create() 109 *aecInst = aecpc; in WebRtcAec_Create() 151 WebRtc_Word32 WebRtcAec_Free(void *aecInst) in WebRtcAec_Free() argument 153 aecpc_t *aecpc = aecInst; in WebRtcAec_Free() 180 WebRtc_Word32 WebRtcAec_Init(void *aecInst, WebRtc_Word32 sampFreq, WebRtc_Word32 scSampFreq) in WebRtcAec_Init() argument 182 aecpc_t *aecpc = aecInst; in WebRtcAec_Init() 267 WebRtc_Word32 WebRtcAec_BufferFarend(void *aecInst, const WebRtc_Word16 *farend, in WebRtcAec_BufferFarend() argument [all …]
|
D | aec_core.c | 158 int WebRtcAec_CreateAec(aec_t **aecInst) in WebRtcAec_CreateAec() argument 161 *aecInst = aec; in WebRtcAec_CreateAec()
|