Home
last modified time | relevance | path

Searched refs:channelStored (Results 1 – 5 of 5) sorted by relevance

/external/webrtc/webrtc/modules/audio_processing/aecm/
Daecm_core_neon.c51 int16_t* start_stored_p = aecm->channelStored; in WebRtcAecm_CalcLinearEnergiesNeon()
54 const int16_t* end_stored_p = aecm->channelStored + PART_LEN; in WebRtcAecm_CalcLinearEnergiesNeon()
110 echo_est[PART_LEN] = WEBRTC_SPL_MUL_16_U16(aecm->channelStored[PART_LEN], in WebRtcAecm_CalcLinearEnergiesNeon()
121 assert((uintptr_t)(aecm->channelStored) % 16 == 0); in WebRtcAecm_StoreAdaptiveChannelNeon()
144 int16_t* start_stored_p = aecm->channelStored; in WebRtcAecm_StoreAdaptiveChannelNeon()
145 const int16_t* end_stored_p = aecm->channelStored + PART_LEN; in WebRtcAecm_StoreAdaptiveChannelNeon()
171 aecm->channelStored[PART_LEN] = aecm->channelAdapt16[PART_LEN]; in WebRtcAecm_StoreAdaptiveChannelNeon()
172 echo_est[PART_LEN] = WEBRTC_SPL_MUL_16_U16(aecm->channelStored[PART_LEN], in WebRtcAecm_StoreAdaptiveChannelNeon()
177 assert((uintptr_t)(aecm->channelStored) % 16 == 0); in WebRtcAecm_ResetAdaptiveChannelNeon()
188 int16_t* start_stored_p = aecm->channelStored; in WebRtcAecm_ResetAdaptiveChannelNeon()
[all …]
Daecm_core.c273 aecm->channelStored = (int16_t*) (((uintptr_t) in WebRtcAecm_CreateCore()
287 memcpy(aecm->channelStored, echo_path, sizeof(int16_t) * PART_LEN1); in WebRtcAecm_InitEchoPathCore()
314 echo_est[i] = WEBRTC_SPL_MUL_16_U16(aecm->channelStored[i], in CalcLinearEnergiesC()
328 memcpy(aecm->channelStored, aecm->channelAdapt16, sizeof(int16_t) * PART_LEN1); in StoreAdaptiveChannelC()
332 echo_est[i] = WEBRTC_SPL_MUL_16_U16(aecm->channelStored[i], in StoreAdaptiveChannelC()
334 echo_est[i + 1] = WEBRTC_SPL_MUL_16_U16(aecm->channelStored[i + 1], in StoreAdaptiveChannelC()
336 echo_est[i + 2] = WEBRTC_SPL_MUL_16_U16(aecm->channelStored[i + 2], in StoreAdaptiveChannelC()
338 echo_est[i + 3] = WEBRTC_SPL_MUL_16_U16(aecm->channelStored[i + 3], in StoreAdaptiveChannelC()
341 echo_est[i] = WEBRTC_SPL_MUL_16_U16(aecm->channelStored[i], in StoreAdaptiveChannelC()
350 memcpy(aecm->channelAdapt16, aecm->channelStored, in ResetAdaptiveChannelC()
[all …]
Daecm_core_mips.c445 int16_t* ch_stored_p = &(aecm->channelStored[0]); in WebRtcAecm_CalcLinearEnergies_mips()
512 echo_est[PART_LEN] = WEBRTC_SPL_MUL_16_U16(aecm->channelStored[PART_LEN], in WebRtcAecm_CalcLinearEnergies_mips()
532 temp1 = &(aecm->channelStored[0]); in WebRtcAecm_StoreAdaptiveChannel_mips()
536 memcpy(aecm->channelStored, aecm->channelAdapt16, in WebRtcAecm_StoreAdaptiveChannel_mips()
567 echo_est[i] = WEBRTC_SPL_MUL_16_U16(aecm->channelStored[i], in WebRtcAecm_StoreAdaptiveChannel_mips()
577 temp0 = &(aecm->channelStored[0]); in WebRtcAecm_ResetAdaptiveChannel_mips()
583 aecm->channelStored, in WebRtcAecm_ResetAdaptiveChannel_mips()
609 aecm->channelAdapt32[i] = (int32_t)aecm->channelStored[i] << 16; in WebRtcAecm_ResetAdaptiveChannel_mips()
Daecm_core.h89 int16_t *channelStored; member
Decho_control_mobile.c566 memcpy(echo_path_ptr, aecm->aecmCore->channelStored, size_bytes); in WebRtcAecm_GetEchoPath()