MCPcopy Create free account
hub / github.com/audacity/audacity / ReorderToTime

Function ReorderToTime

libraries/lib-fft/RealFFTf.cpp:360–367  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

358}
359
360void 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}

Callers 2

InverseRealFFTFunction · 0.85
FilterMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected