Home
last modified time | relevance | path

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

/external/webrtc/src/modules/audio_processing/aecm/
Daecm_core.h41 #define FAR_BUF_LEN PART_LEN4 // Length of buffers macro
120 WebRtc_Word16 farBuf[FAR_BUF_LEN];
Daecm_core.c2073 while (aecm->farBufWritePos + writeLen > FAR_BUF_LEN) in WebRtcAecm_BufferFarFrame()
2076 writeLen = FAR_BUF_LEN - aecm->farBufWritePos; in WebRtcAecm_BufferFarFrame()
2101 aecm->farBufReadPos += FAR_BUF_LEN; in WebRtcAecm_FetchFarFrame()
2103 while (aecm->farBufReadPos > FAR_BUF_LEN - 1) in WebRtcAecm_FetchFarFrame()
2105 aecm->farBufReadPos -= FAR_BUF_LEN; in WebRtcAecm_FetchFarFrame()
2111 while (aecm->farBufReadPos + readLen > FAR_BUF_LEN) in WebRtcAecm_FetchFarFrame()
2115 readLen = FAR_BUF_LEN - aecm->farBufReadPos; in WebRtcAecm_FetchFarFrame()
Decho_control_mobile.c795 if (delayNew > FAR_BUF_LEN - FRAME_LEN * aecm->aecmCore->mult) in WebRtcAecm_DelayComp()