forked from len0rd/rockbox
kiss_fftr appears to perform two real-valued ffts in parallel -- so feed it only one signal of size N/2 (as opposed to splitting a single signal of size N into two interleaved parts which is what it seemed to be doing before)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24865 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
0b7dcd69c8
commit
f7a30a4b08
1 changed files with 2 additions and 0 deletions
|
@ -1057,6 +1057,8 @@ void input_thread_entry(void)
|
|||
|
||||
input[fft_idx] = left;
|
||||
fft_idx++;
|
||||
input[fft_idx] = 0;
|
||||
fft_idx++;
|
||||
|
||||
if (fft_idx == ARRAYSIZE_IN)
|
||||
break;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue