Renamed mix_pitch_and_residual() to normalise_residual(), after minor

simplification.
This commit is contained in:
Jean-Marc Valin 2009-10-07 06:56:03 -04:00
parent f6dc1eba26
commit f7a1e165aa
2 changed files with 5 additions and 5 deletions

View file

@ -315,7 +315,7 @@ void apply_pitch(const CELTMode *m, celt_sig_t *X, const celt_sig_t *P, int gain
celt_word16_t gg = gain;
for (j=0;j<len;j++)
{
X[j+c*N] += SHL(MULT16_32_Q15(gg,P[j+c*N]),1);
X[j+c*N] += SHL32(MULT16_32_Q15(gg,P[j+c*N]),1);
gg = ADD16(gg, delta);
}
}