| 358 | } |
| 359 | |
| 360 | void ReorderToTime(const FFTParam *hFFT, const fft_type *buffer, fft_type *TimeOut) |
| 361 | { |
| 362 | // Copy the data into the real outputs |
| 363 | for(size_t i = 0; i < hFFT->Points; i++) { |
| 364 | TimeOut[i*2 ]=buffer[hFFT->BitReversed[i] ]; |
| 365 | TimeOut[i*2+1]=buffer[hFFT->BitReversed[i]+1]; |
| 366 | } |
| 367 | } |
no outgoing calls
no test coverage detected