Searched refs:priorNonSpeechProb (Results 1 - 6 of 6) sorted by relevance

/external/chromium_org/third_party/webrtc/modules/audio_processing/ns/
H A Dnsx_core_c.c204 // inst->priorNonSpeechProb += PRIOR_UPDATE *
205 // (indPriorNonSpeech - inst->priorNonSpeechProb);
206 tmp16 = indPriorFX16 - inst->priorNonSpeechProb; // Q14
207 inst->priorNonSpeechProb += (int16_t)WEBRTC_SPL_MUL_16_16_RSFT(
214 if (inst->priorNonSpeechProb > 0) {
221 // invLrt = (1.0 - inst->priorNonSpeechProb) * invLrt;
222 // nonSpeechProbFinal[i] = inst->priorNonSpeechProb /
223 // (inst->priorNonSpeechProb + invLrt);
241 normTmp2 = WebRtcSpl_NormW16((16384 - inst->priorNonSpeechProb));
246 tmp32no1 = invLrtFX * (16384 - inst->priorNonSpeechProb);
[all...]
H A Dnsx_core_mips.c238 // inst->priorNonSpeechProb += PRIOR_UPDATE *
239 // (indPriorNonSpeech - inst->priorNonSpeechProb);
240 tmp16 = indPriorFX16 - inst->priorNonSpeechProb; // Q14
241 inst->priorNonSpeechProb += (int16_t)WEBRTC_SPL_MUL_16_16_RSFT(
248 if (inst->priorNonSpeechProb > 0) {
249 r0 = inst->priorNonSpeechProb;
H A Dnsx_core.h83 int16_t priorNonSpeechProb; member in struct:NsxInst_t_
H A Dnsx_core.c704 inst->priorNonSpeechProb = 8192; // Q14(0.5) prior probability for speech/noise
1508 tmp16no1 = (int16_t)WEBRTC_SPL_MUL_16_16_RSFT(16384 - inst->priorNonSpeechProb,
1510 tmp16no2 = (int16_t)WEBRTC_SPL_MUL_16_16_RSFT(inst->priorNonSpeechProb,
/external/webrtc/src/modules/audio_processing/ns/
H A Dnsx_core.h77 WebRtc_Word16 priorNonSpeechProb; //prior speech/noise probability // Q14 member in struct:NsxInst_t_
H A Dnsx_core.c807 inst->priorNonSpeechProb = 8192; // Q14(0.5) prior probability for speech/noise
1465 // inst->priorNonSpeechProb += PRIOR_UPDATE * (indPriorNonSpeech - inst->priorNonSpeechProb);
1466 tmp16 = indPriorFX16 - inst->priorNonSpeechProb; // Q14
1467 inst->priorNonSpeechProb += (WebRtc_Word16)WEBRTC_SPL_MUL_16_16_RSFT(
1474 if (inst->priorNonSpeechProb > 0) {
1480 // invLrt = (1.0 - inst->priorNonSpeechProb) * invLrt;
1481 // nonSpeechProbFinal[i] = inst->priorNonSpeechProb / (inst->priorNonSpeechProb + invLrt);
1498 normTmp2 = WebRtcSpl_NormW16((16384 - inst->priorNonSpeechProb));
[all...]

Completed in 259 milliseconds