this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix normalization issue; things work binned to 1024 instead of 256

alice d00ccb43 296a6318

+6 -3
-3
src/ext/fft.c
··· 192 192 } 193 193 194 194 ////////////////////////////////////////////////////////////////////////// 195 - static const float fPeakMinValue = 0.01f; 196 - static const float fPeakSmoothing = 0.995f; 197 - static float fPeakSmoothValue = 0.0f; 198 195 199 196 bool FFT_GetFFT( float * _samples ) 200 197 {
+3
src/fftdata.c
··· 1 1 #include "fftdata.h" 2 + float fPeakMinValue = 0.01f; 3 + float fPeakSmoothing = 0.995f; 4 + float fPeakSmoothValue = 0.0f; 2 5 float fftData[1024] = {0};
+3
src/fftdata.h
··· 1 1 #pragma once 2 + float fPeakMinValue; 3 + float fPeakSmoothing; 4 + float fPeakSmoothValue; 2 5 extern float fftData[1024];