FastLED 3.9.15
Loading...
Searching...
No Matches

◆ PerceptualWeighting()

fl::PerceptualWeighting::PerceptualWeighting ( )

Definition at line 710 of file audio_reactive.cpp.

712 : mHistoryIndex(0)
713#endif
714{
715#if SKETCH_HAS_LOTS_OF_MEMORY
716 // Initialize loudness history to zero
717 for (fl::size i = 0; i < mLoudnessHistory.size(); ++i) {
718 mLoudnessHistory[i] = 0.0f;
719 }
720 // Suppress unused warning until mHistoryIndex is implemented
721 (void)mHistoryIndex;
722#endif
723}