Store audio length in AudioStream.
[dcpomatic.git] / src / lib / sndfile_content.h
index 75c723518ea61ebf48ed6e06163b2894e71fe53b..cdb842c042f471d234eb5df17ab543cb8b2be149 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2013 Carl Hetherington <cth@carlh.net>
+    Copyright (C) 2013-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
 #ifndef DCPOMATIC_SNDFILE_CONTENT_H
 #define DCPOMATIC_SNDFILE_CONTENT_H
 
-extern "C" {
-#include <libavutil/audioconvert.h>
-}
-#include "single_stream_audio_content.h"
+#include "content.h"
 
-namespace cxml {
-       class Node;
-}
+class AudioExaminer;
 
-class SndfileContent : public SingleStreamAudioContent
+class SndfileContent : public Content
 {
 public:
        SndfileContent (boost::shared_ptr<const Film>, boost::filesystem::path);
@@ -38,15 +33,15 @@ public:
        boost::shared_ptr<SndfileContent> shared_from_this () {
                return boost::dynamic_pointer_cast<SndfileContent> (Content::shared_from_this ());
        }
-       
+
        DCPTime full_length () const;
-       
+
        void examine (boost::shared_ptr<Job>);
        std::string summary () const;
        std::string technical_summary () const;
        std::string information () const;
        void as_xml (xmlpp::Node *) const;
-       
+
        static bool valid_file (boost::filesystem::path);
 };