Home | History | Annotate | Download | only in libspeex

Lines Matching defs:error

72 /* returns minimum mean square error    */
81 spx_word16_t error = ac[0];
97 r = DIV32_16(rr+PSHR32(error,1),ADD16(error,8));
99 r = rr/(error+.003*ac[0]);
101 /* Update LPC coefficients and total error */
112 error = SUB16(error,MULT16_16_Q13(r,MULT16_16_Q13(error,r)));
114 return error;