]> git.sesse.net Git - c64tapwav/blobdiff - level.h
Specify levels in terms of 0..1 and not 0..32768.
[c64tapwav] / level.h
diff --git a/level.h b/level.h
index 3f830d77f0a3718049863e4e929eff0c17bd4d6c..3a7f39d1289966b68dae9f18a5321a77d23b5ef0 100644 (file)
--- a/level.h
+++ b/level.h
@@ -3,6 +3,6 @@
 
 #include <vector>
 
-std::vector<float> level_samples(const std::vector<float> &pcm, int sample_rate);
+std::vector<float> level_samples(const std::vector<float> &pcm, float min_level, float lpfilter_freq, int sample_rate);
 
 #endif  // !defined(_LEVEL_H)