Logging improvements to allow prettier displays in the server GUI.
[dcpomatic.git] / src / lib / sndfile_decoder.h
index 68c8633a0d604df5e7e6aa3f19dfc07993422d2e..da9016ee09a958c26211df60e4ae68b6a1d9620d 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2012-2013 Carl Hetherington <cth@carlh.net>
+    Copyright (C) 2012-2015 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.h>
+#include "sndfile_base.h"
 
 class SndfileContent;
 
-class SndfileDecoder : public AudioDecoder, public AudioExaminer
+class SndfileDecoder : public Sndfile, public AudioDecoder
 {
 public:
-       SndfileDecoder (boost::shared_ptr<const SndfileContent> c);
+       SndfileDecoder (boost::shared_ptr<const SndfileContent> c, bool fast);
        ~SndfileDecoder ();
 
-       int audio_channels () const;
-       ContentTime audio_length () const;
-       int audio_frame_rate () const;
-
 private:
-       bool pass (PassReason);
+       bool pass ();
        void seek (ContentTime, bool);
-       
-       boost::shared_ptr<const SndfileContent> _sndfile_content;
-       SNDFILE* _sndfile;
-       SF_INFO _info;
+
        int64_t _done;
        int64_t _remaining;
        float* _deinterleave_buffer;