Home | History | Annotate | Download | only in src

Lines Matching refs:pow_sum

973     /* if the input power (pow_sum) is lower than a threshold, clear
1416 pow_sum -- Word32 -- power of the input frame
1481 Word32 pow_sum, /* i : power of the input frame */
1543 /* check if the input power (pow_sum) is lower than a threshold" */
1544 if (L_sub(pow_sum, VAD_POW_LOW, pOverflow) < 0)
2295 Word32 pow_sum;
2299 pow_sum = 0L;
2303 pow_sum = L_mac(pow_sum, in_buf[i-LOOKAHEAD], in_buf[i-LOOKAHEAD], pOverflow);
2309 if (L_sub(pow_sum, POW_PITCH_THR, pOverflow) < 0)
2317 if (L_sub(pow_sum, POW_COMPLEX_THR, pOverflow) < 0)
2327 return (vad_decision(st, level, pow_sum, pOverflow));