diff options
Diffstat (limited to 'src/chresampler.h')
-rw-r--r-- | src/chresampler.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/chresampler.h b/src/chresampler.h index cd5d571..262e5cb 100644 --- a/src/chresampler.h +++ b/src/chresampler.h @@ -28,6 +28,7 @@ #include <memory> #include <stdlib.h> +#include <config.h> /** * Channel resampler class using either zita-resampler or secret rabbit code @@ -54,10 +55,12 @@ public: double getRatio() const; +#ifdef WITH_RESAMPLER private: class Prv; std::unique_ptr<Prv> prv; double input_fs; double output_fs; +#endif /*WITH_RESAMPLER*/ }; |