Remove unnecessary Film variable in ContentPart.
[dcpomatic.git] / src / lib / sndfile_decoder.h
index 4474adc9e3b37dba35bf62bd689ec318e973e643..d3f9342b3a0ca6a71ea02350049042bfe04a8dd1 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2012-2015 Carl Hetherington <cth@carlh.net>
+    Copyright (C) 2012-2016 Carl Hetherington <cth@carlh.net>
 
     This program is free software; you can redistribute it and/or modify
     it under the terms of the GNU General Public License as published by
 
 */
 
-#include "decoder.h"
 #include "audio_decoder.h"
-#include "audio_examiner.h"
 #include "sndfile_base.h"
 
 class SndfileContent;
 
-class SndfileDecoder : public Sndfile, public AudioDecoder
+class SndfileDecoder : public Sndfile, public Decoder
 {
 public:
-       SndfileDecoder (boost::shared_ptr<const SndfileContent> c);
+       SndfileDecoder (boost::shared_ptr<const SndfileContent> c, bool fast, boost::shared_ptr<Log> log);
        ~SndfileDecoder ();
 
 private:
-       bool pass (PassReason);
+       bool pass (PassReason, bool);
        void seek (ContentTime, bool);
-       
+
        int64_t _done;
        int64_t _remaining;
        float* _deinterleave_buffer;