Skip to content
Snippets Groups Projects
Commit 1e7cbfef authored by tangshi's avatar tangshi Committed by Jean-Marc Valin
Browse files

Update celt_lpc.c

parent 9346a036
No related branches found
No related tags found
No related merge requests found
......@@ -103,7 +103,7 @@ void celt_fir(
{
opus_val32 sum[4];
sum[0] = SHL32(EXTEND32(x[i ]), SIG_SHIFT);
sum[1] = SHL32(EXTEND32(x[i+1]), SIG_SHIFT),
sum[1] = SHL32(EXTEND32(x[i+1]), SIG_SHIFT);
sum[2] = SHL32(EXTEND32(x[i+2]), SIG_SHIFT);
sum[3] = SHL32(EXTEND32(x[i+3]), SIG_SHIFT);
xcorr_kernel(rnum, x+i-ord, sum, ord);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment