]> git.sesse.net Git - c64tapwav/blob - level.h
Add an RC highpass filter, which seemingly does a good job of emulating the one in...
[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, int sample_rate);
7
8 #endif  // !defined(_LEVEL_H)