No need to rebuild pieces when only crop or ratio changes.
[dcpomatic.git] / src / lib / sndfile_content.h
index 87350eac70d13314f0721128564e25466465bd46..191d625277307ea933fa13f1877ffa7494eab965 100644 (file)
@@ -41,22 +41,23 @@ public:
        
        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;
-       Time length () const;
+       Time full_length () const;
 
-        /* AudioContent */
-        int audio_channels () const {
+       /* AudioContent */
+       int audio_channels () const {
                boost::mutex::scoped_lock lm (_mutex);
                return _audio_channels;
        }
        
-        AudioContent::Frame audio_length () const {
+       AudioContent::Frame audio_length () const {
                boost::mutex::scoped_lock lm (_mutex);
                return _audio_length;
        }
        
-        int content_audio_frame_rate () const {
+       int content_audio_frame_rate () const {
                boost::mutex::scoped_lock lm (_mutex);
                return _audio_frame_rate;
        }