Searched refs:initMagnEst (Results 1 - 8 of 8) sorted by relevance

/external/chromium_org/third_party/webrtc/modules/audio_processing/ns/
H A Dns_core.h98 float initMagnEst[HALF_ANAL_BLOCKL]; // initial magnitude spectrum estimate member in struct:NSinst_t_
H A Dnsx_core.c624 // Scale up to initMagnEst, which is not block averaged
710 inst->initMagnEst[i] = 0; //initial average magnitude spectrum
1283 // Switch initMagnEst to Q(minNorm-stages)
1284 inst->initMagnEst[0] = WEBRTC_SPL_RSHIFT_U32(inst->initMagnEst[0],
1286 inst->initMagnEst[inst->anaLen2] =
1287 WEBRTC_SPL_RSHIFT_U32(inst->initMagnEst[inst->anaLen2],
1290 // Shift magnU16 to same domain as initMagnEst
1296 // Update initMagnEst
1297 inst->initMagnEst[
[all...]
H A Dnsx_core.h71 uint32_t initMagnEst[HALF_ANAL_BLOCKL]; member in struct:NsxInst_t_
H A Dns_core.c157 inst->initMagnEst[i] = (float)0.0; // initial average mag spectrum
1152 inst->initMagnEst[0] += magn[0];
1153 inst->initMagnEst[inst->magnLen - 1] += magn[inst->magnLen - 1];
1163 inst->initMagnEst[i] += magn[i];
1197 (inst->initMagnEst[i] - inst->overdrive * inst->parametricNoise[i]);
1198 theFilterTmp[i] /= (inst->initMagnEst[i] + (float)0.0001);
/external/webrtc/src/modules/audio_processing/ns/
H A Dns_core.h96 float initMagnEst[HALF_ANAL_BLOCKL]; //initial magnitude spectrum estimate member in struct:NSinst_t_
H A Dnsx_core.h69 WebRtc_UWord32 initMagnEst[HALF_ANAL_BLOCKL];//initial magnitude spectrum estimate member in struct:NsxInst_t_
H A Dnsx_core.c735 // Scale up to initMagnEst, which is not block averaged
813 inst->initMagnEst[i] = 0; //initial average magnitude spectrum
1611 // Switch initMagnEst to Q(minNorm-stages)
1612 inst->initMagnEst[0] = WEBRTC_SPL_RSHIFT_U32(inst->initMagnEst[0],
1614 inst->initMagnEst[inst->anaLen2] =
1615 WEBRTC_SPL_RSHIFT_U32(inst->initMagnEst[inst->anaLen2],
1618 // Shift magnU16 to same domain as initMagnEst
1624 // Update initMagnEst
1625 inst->initMagnEst[
[all...]
H A Dns_core.c151 inst->initMagnEst[i] = (float)0.0; //initial average mag spectrum
877 inst->initMagnEst[0] += magn[0];
878 inst->initMagnEst[inst->magnLen - 1] += magn[inst->magnLen - 1];
896 inst->initMagnEst[i] += magn[i];
958 theFilterTmp[i] = (inst->initMagnEst[i] - inst->overdrive * parametric_noise);
959 theFilterTmp[i] /= (inst->initMagnEst[i] + (float)0.0001);

Completed in 3315 milliseconds