mirror of
https://github.com/xiph/opus.git
synced 2025-05-30 23:27:42 +00:00
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:
parent
784d4ff92d
commit
ea8b26ff85
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue