]> git.sesse.net Git - c64tapwav/blob - level.h
Support AVX to speed up the FIR filters.
[c64tapwav] / level.h
1 #ifndef _LEVEL_H
2 #define _LEVEL_H 1
3
4 #include <vector>
5
6 std::vector<float> level_samples(const std::vector<float> &pcm, float min_level, float lpfilter_freq, int sample_rate);
7
8 #endif  // !defined(_LEVEL_H)