Store audio length in AudioStream.
[dcpomatic.git] / src / lib / sndfile_content.h
index dfd36971d41dbab852cf35730f2ecb42b7c1f809..cdb842c042f471d234eb5df17ab543cb8b2be149 100644 (file)
@@ -42,17 +42,7 @@ public:
        std::string information () const;
        void as_xml (xmlpp::Node *) const;
 
-       void take_from_audio_examiner (boost::shared_ptr<AudioExaminer>);
-
        static bool valid_file (boost::filesystem::path);
-
-private:
-       Frame audio_length () const {
-               boost::mutex::scoped_lock lm (_mutex);
-               return _audio_length;
-       }
-
-       Frame _audio_length;
 };
 
 #endif