We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9346a03 commit 1e7cbfeCopy full SHA for 1e7cbfe
src/celt_lpc.c
@@ -103,7 +103,7 @@ void celt_fir(
103
{
104
opus_val32 sum[4];
105
sum[0] = SHL32(EXTEND32(x[i ]), SIG_SHIFT);
106
- sum[1] = SHL32(EXTEND32(x[i+1]), SIG_SHIFT),
+ sum[1] = SHL32(EXTEND32(x[i+1]), SIG_SHIFT);
107
sum[2] = SHL32(EXTEND32(x[i+2]), SIG_SHIFT);
108
sum[3] = SHL32(EXTEND32(x[i+3]), SIG_SHIFT);
109
xcorr_kernel(rnum, x+i-ord, sum, ord);
0 commit comments