Skip to content

Commit 1e7cbfe

Browse files
tangshijmvalin
authored andcommitted
Update celt_lpc.c
1 parent 9346a03 commit 1e7cbfe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/celt_lpc.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ void celt_fir(
103103
{
104104
opus_val32 sum[4];
105105
sum[0] = SHL32(EXTEND32(x[i ]), SIG_SHIFT);
106-
sum[1] = SHL32(EXTEND32(x[i+1]), SIG_SHIFT),
106+
sum[1] = SHL32(EXTEND32(x[i+1]), SIG_SHIFT);
107107
sum[2] = SHL32(EXTEND32(x[i+2]), SIG_SHIFT);
108108
sum[3] = SHL32(EXTEND32(x[i+3]), SIG_SHIFT);
109109
xcorr_kernel(rnum, x+i-ord, sum, ord);

0 commit comments

Comments
 (0)