summaryrefslogtreecommitdiff
path: root/src/chresampler.h
diff options
context:
space:
mode:
authorJonas Suhr Christensen <jonas.christensen@prevas.com>2016-04-14 12:44:24 +0200
committerJonas Suhr Christensen <jonas.christensen@prevas.com>2016-04-14 12:44:24 +0200
commitf0ccaeaec633a728240d7e8f3c339766694f90b2 (patch)
treebbcebbcd59ed76e4616458980bb7eb15e91cd58f /src/chresampler.h
parentc7aae008ad818f9cb453ce184673e0edf8ba4e58 (diff)
Fixed dummy implementation of CHResampler used when compiling without resampler support.
Diffstat (limited to 'src/chresampler.h')
-rw-r--r--src/chresampler.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/chresampler.h b/src/chresampler.h
index cd5d571..da4c410 100644
--- a/src/chresampler.h
+++ b/src/chresampler.h
@@ -54,10 +54,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*/
};