Home
last modified time | relevance | path

Searched refs:initMagnEst (Results 1 – 4 of 4) sorted by relevance

/external/webrtc/webrtc/modules/audio_processing/ns/
Dnsx_core.c701 inst->initMagnEst[i] = 0; //initial average magnitude spectrum in WebRtcNsx_InitCore()
1279 inst->initMagnEst[0] >>= right_shifts_in_initMagnEst; in WebRtcNsx_DataAnalysis()
1280 inst->initMagnEst[inst->anaLen2] >>= right_shifts_in_initMagnEst; in WebRtcNsx_DataAnalysis()
1283 inst->initMagnEst[0] += magnU16[0] >> right_shifts_in_magnU16; in WebRtcNsx_DataAnalysis()
1284 inst->initMagnEst[inst->anaLen2] += in WebRtcNsx_DataAnalysis()
1315 inst->initMagnEst[i] >>= right_shifts_in_initMagnEst; in WebRtcNsx_DataAnalysis()
1318 inst->initMagnEst[i] += magnU16[i] >> right_shifts_in_magnU16; in WebRtcNsx_DataAnalysis()
1649 if (inst->initMagnEst[i]) { in WebRtcNsx_ProcessCore()
1653 numerator = inst->initMagnEst[i] << 8; in WebRtcNsx_ProcessCore()
1667 tmpU32no1 = inst->initMagnEst[i] >> (6 - nShifts); in WebRtcNsx_ProcessCore()
Dns_core.h99 float initMagnEst[HALF_ANAL_BLOCKL]; // Initial magnitude spectrum estimate. member
Dnsx_core.h71 uint32_t initMagnEst[HALF_ANAL_BLOCKL]; member
Dns_core.c151 memset(self->initMagnEst, 0, sizeof(float) * HALF_ANAL_BLOCKL); in WebRtcNs_InitCore()
1271 self->initMagnEst[i] += magn[i]; in WebRtcNs_ProcessCore()
1288 (self->initMagnEst[i] - self->overdrive * self->parametricNoise[i]); in WebRtcNs_ProcessCore()
1289 theFilterTmp[i] /= (self->initMagnEst[i] + 0.0001f); in WebRtcNs_ProcessCore()