MCPcopy Create free account
hub / github.com/LabSound/LabSound / cleanup

Method cleanup

src/backends/FFTFrameAppleAcclerate.cpp:74–87  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

72}
73
74void FFTFrame::cleanup()
75{
76 if (!fftSetups)
77 return;
78
79 for (int i = 0; i < kMaxFFTPow2Size; ++i)
80 {
81 if (fftSetups[i])
82 vDSP_destroy_fftsetup(fftSetups[i]);
83 }
84
85 free(fftSetups);
86 fftSetups = 0;
87}
88
89void FFTFrame::multiply(const FFTFrame & frame)
90{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected