MCPcopy Create free account
hub / github.com/StrangeLoopsAudio/gRainbow / Fft

Method Fft

Source/DSP/Fft.cpp:13–17  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

11#include "Fft.h"
12
13Fft::Fft(int windowSize, int hopSize)
14 : mWindowSize(windowSize),
15 mHopSize(hopSize),
16 mForwardFFT(std::log2(windowSize)),
17 mWindowEnvelope(windowSize, juce::dsp::WindowingFunction<float>::WindowingMethod::blackmanHarris) {}
18
19Fft::~Fft() {}
20

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected