]> git.sesse.net Git - nageru/blobdiff - stereocompressor.h
Re-run include-what-you-use.
[nageru] / stereocompressor.h
index 239f284eb705a11a3ea05ec3ec24fb270b418262..be13ce2f7cad4d4ec39742d75a8f28ae0f05800e 100644 (file)
@@ -1,6 +1,7 @@
 #ifndef _STEREOCOMPRESSOR_H
 #define _STEREOCOMPRESSOR_H 1
 
+#include <stddef.h>
 // A simple compressor based on absolute values, with independent
 // attack/release times. There is no sidechain or lookahead, but the
 // peak value is shared between both channels.
@@ -9,8 +10,6 @@
 // It has been adapted and relicensed under GPLv3 (or, at your option,
 // any later version) for Nageru, so that its license matches the rest of the code.
 
-class StereoBuffer;
-
 class StereoCompressor {
 public:
        StereoCompressor(float sample_rate)