summaryrefslogtreecommitdiff
path: root/src/lib/resampler.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/resampler.h')
-rw-r--r--src/lib/resampler.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/resampler.h b/src/lib/resampler.h
index 5ce766f80..afc28aefd 100644
--- a/src/lib/resampler.h
+++ b/src/lib/resampler.h
@@ -28,11 +28,12 @@ class AudioBuffers;
class Resampler : public boost::noncopyable
{
public:
- Resampler (int, int, int, bool fast);
+ Resampler (int, int, int);
~Resampler ();
boost::shared_ptr<const AudioBuffers> run (boost::shared_ptr<const AudioBuffers>);
boost::shared_ptr<const AudioBuffers> flush ();
+ void set_fast ();
private:
SRC_STATE* _src;