summaryrefslogtreecommitdiff
path: root/src/lib/resampler.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2016-06-22 01:47:28 +0100
committerCarl Hetherington <cth@carlh.net>2016-06-22 01:47:28 +0100
commit76f83b97c401c24b3c93baee0665e84be05f43ea (patch)
tree75e7f3e87f3721c8ac4c55ac6bc9559556954987 /src/lib/resampler.h
parent5e9e59e044fe3b51352d5dccad7f11882c6a571c (diff)
Set AudioDecoder::fast a different way.
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;