Fix comma that should have been a semicolon

Didn't cause any problem, but still good to fix. Reported by
keithchugg on github.
This commit is contained in:
Jean-Marc Valin 2018-07-25 22:47:50 -04:00
parent 784d4ff92d
commit ea8b26ff85
No known key found for this signature in database
GPG key ID: 5E5DD9A36F9189C8

View file

@ -107,7 +107,7 @@ void celt_fir_c(
{
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, arch);