Searched refs:FAR_BUF_LEN (Results 1 – 3 of 3) sorted by relevance
41 #define FAR_BUF_LEN PART_LEN4 // Length of buffers macro120 WebRtc_Word16 farBuf[FAR_BUF_LEN];
2073 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()
795 if (delayNew > FAR_BUF_LEN - FRAME_LEN * aecm->aecmCore->mult) in WebRtcAecm_DelayComp()