Home
last modified time | relevance | path

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

/external/webrtc/webrtc/modules/audio_processing/ns/
Dnsx_core_neon.c138 int16_t lmagn[HALF_ANAL_BLOCKL], counter, countDiv; in WebRtcNsx_NoiseEstimationNeon() local
171 lmagn[i] = (int16_t)((log2 * log2_const) >> 15); in WebRtcNsx_NoiseEstimationNeon()
173 lmagn[i] += logval; in WebRtcNsx_NoiseEstimationNeon()
175 lmagn[i] = logval; in WebRtcNsx_NoiseEstimationNeon()
268 tmp16x8_3 = vld1q_s16(&lmagn[i]); // keep for several lines in WebRtcNsx_NoiseEstimationNeon()
303 if (lmagn[i] > inst->noiseEstLogQuantile[offset + i]) { in WebRtcNsx_NoiseEstimationNeon()
323 if (WEBRTC_SPL_ABS_W16(lmagn[i] - inst->noiseEstLogQuantile[offset + i]) in WebRtcNsx_NoiseEstimationNeon()
Dnsx_core.c338 int16_t lmagn[HALF_ANAL_BLOCKL], counter, countDiv; in NoiseEstimationC() local
369 lmagn[i] = (int16_t)((log2 * log2_const) >> 15); in NoiseEstimationC()
371 lmagn[i] += logval; in NoiseEstimationC()
373 lmagn[i] = logval;//0; in NoiseEstimationC()
405 if (lmagn[i] > inst->noiseEstLogQuantile[offset + i]) { in NoiseEstimationC()
424 if (WEBRTC_SPL_ABS_W16(lmagn[i] - inst->noiseEstLogQuantile[offset + i]) in NoiseEstimationC()
Dns_core.c221 float lmagn[HALF_ANAL_BLOCKL], delta; in NoiseEstimation() local
228 lmagn[i] = (float)log(magn[i]); in NoiseEstimation()
245 if (lmagn[i] > self->lquantile[offset + i]) { in NoiseEstimation()
254 if (fabs(lmagn[i] - self->lquantile[offset + i]) < WIDTH) { in NoiseEstimation()