MCPcopy Create free account
hub / github.com/ObEngine/ObEngine / ifft

Function ifft

extlibs/soloud/src/core/soloud_fft.cpp:2466–2472  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2464 }
2465
2466 void ifft(float *aBuffer, unsigned int aBufferLength)
2467 {
2468 unsigned int i;
2469 fftimpl::cftfsub(aBufferLength, aBuffer);
2470 for (i = 0; i < aBufferLength; i++)
2471 aBuffer[i] *= 1.0f / (aBufferLength / 2);
2472 }
2473 };
2474};

Callers 1

ifft256Function · 0.85

Calls 1

cftfsubFunction · 0.85

Tested by

no test coverage detected