Logging improvements to allow prettier displays in the server GUI.
[dcpomatic.git] / src / lib / sndfile_decoder.h
index 56fc3a9f08bc7811d4a6d7720992874d5a13b393..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 <sndfile.h>
-#include "decoder.h"
 #include "audio_decoder.h"
+#include "sndfile_base.h"
 
 class SndfileContent;
 
-class SndfileDecoder : public AudioDecoder
+class SndfileDecoder : public Sndfile, public AudioDecoder
 {
 public:
-       SndfileDecoder (boost::shared_ptr<const Film>, boost::shared_ptr<const SndfileContent>);
-
-       bool pass ();
+       SndfileDecoder (boost::shared_ptr<const SndfileContent> c, bool fast);
+       ~SndfileDecoder ();
 
 private:
-       SNDFILE* open_file (sf_count_t &);
-       void close_file (SNDFILE*);
+       bool pass ();
+       void seek (ContentTime, bool);
 
-       boost::shared_ptr<const SndfileContent> _sndfile_content;
+       int64_t _done;
+       int64_t _remaining;
+       float* _deinterleave_buffer;
 };