Go to the source code of this file.
|
| namespace | Audio |
| | NO_LOGGING.
|
| |
|
| void | Audio::GenerateRectangularWindow (float *WindowBuffer, int32 NumFrames, int32 NumChannels) |
| |
| void | Audio::GenerateHammingWindow (float *WindowBuffer, int32 NumFrames, int32 NumChannels, bool bIsPeriodic) |
| |
| void | Audio::GenerateHannWindow (float *WindowBuffer, int32 NumFrames, int32 NumChannels, bool bIsPeriodic) |
| |
| void | Audio::GenerateBlackmanWindow (float *WindowBuffer, int32 NumFrames, int32 NumChannels, bool bIsPeriodic) |
| |
| void | Audio::GenerateWindow (float *InOutWindowBuffer, EWindowType InType, int32 InNumFrames, int32 InNumChannels, bool bIsPeriodic) |
| |
| uint32 | Audio::GetCOLAHopSizeForWindow (EWindowType InType, uint32 WindowLength) |
| |
| int32 | Audio::CeilLog2 (int32 InNum) |
| |
| float | Audio::GetPowerSpectrumScaling (int32 FFTSize, EFFTScaling InCurrentScaling, EFFTScaling InTargetScaling) |
| |
| void | Audio::ScalePowerSpectrumInPlace (int32 FFTSize, EFFTScaling InCurrentScaling, EFFTScaling InTargetScaling, TArrayView< float > InPowerSpectrum) |
| |