Set AudioDecoder::fast a different way.
[dcpomatic.git] / src / lib / resampler.h
index 5ce766f809612fa96904491660d4c2149cd85c70..afc28aefd01ce58a7ef2a1a431d29fff02ae4311 100644 (file)
@@ -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;