colorchord/colorchord2/filter.h

14 lines
350 B
C
Raw Permalink Normal View History

2015-07-29 07:56:18 +02:00
//Copyright 2015 <>< Charles Lohr under the ColorChord License.
2015-01-07 04:51:39 +01:00
#ifndef _FILTER_H
#define _FILTER_H
//Perform a two-pass filter on the data, circularly. Once right, then left.
//void FilterFoldedBinsIIRTWOPASS( float * folded, int bins, float strength );
2015-01-07 04:51:39 +01:00
void FilterFoldedBinsBlob( float * folded, int bins, float strength, int iter );
#endif