Skip to content

Commit d17b5df

Browse files
committed
Silence FFT wrap-around
1 parent 74cdcae commit d17b5df

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

celt/kiss_fft.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ static void kf_bfly2(
9292
C_ADDTO( Fout[1] , t );
9393

9494
t.r = Fout2[2].i;
95-
t.i = -Fout2[2].r;
95+
t.i = NEG32_ovflw(Fout2[2].r);
9696
C_SUB( Fout2[2] , Fout[2] , t );
9797
C_ADDTO( Fout[2] , t );
9898

0 commit comments

Comments
 (0)