Lines Matching refs:pitch_coef
538 spx_word16_t pitch_coef, /* Voicing (pitch) coefficient */ in pitch_search_3tap() argument
660 spx_word16_t pitch_coef, /* Voicing (pitch) coefficient */ in pitch_unquant_3tap() argument
765 spx_word16_t pitch_coef, /* Voicing (pitch) coefficient */ in forced_pitch_quant() argument
782 if (pitch_coef>63) in forced_pitch_quant()
783 pitch_coef=63; in forced_pitch_quant()
785 if (pitch_coef>.99) in forced_pitch_quant()
786 pitch_coef=.99; in forced_pitch_quant()
790 exc[i]=MULT16_16(SHL16(pitch_coef, 7),exc2[i-start]); in forced_pitch_quant()
794 exc[i]=MULT16_32_Q15(SHL16(pitch_coef, 9),exc[i-start]); in forced_pitch_quant()
810 spx_word16_t pitch_coef, /* Voicing (pitch) coefficient */ in forced_pitch_unquant() argument
825 if (pitch_coef>63) in forced_pitch_unquant()
826 pitch_coef=63; in forced_pitch_unquant()
828 if (pitch_coef>.99) in forced_pitch_unquant()
829 pitch_coef=.99; in forced_pitch_unquant()
833 exc_out[i]=MULT16_16(exc[i-start],SHL16(pitch_coef,7)); in forced_pitch_unquant()
838 gain_val[1] = pitch_coef; in forced_pitch_unquant()