Centos build fixes.
[dcpomatic.git] / src / lib / sndfile_content.h
index dcfdfd8d7b199eba9730f154951187d36554eb4d..a32043c5c63660caf3ec6bcf7aba59ac37158f66 100644 (file)
@@ -29,12 +29,6 @@ namespace cxml {
        class Node;
 }
 
-class SndfileContentProperty
-{
-public:
-       static int const VIDEO_FRAME_RATE;
-};
-
 class SndfileContent : public AudioContent
 {
 public:
@@ -73,17 +67,6 @@ public:
                return _audio_mapping;
        }
 
-       void set_video_frame_rate (float r) {
-               {
-                       boost::mutex::scoped_lock lm (_mutex);
-                       _video_frame_rate = r;
-               }
-
-               signal_changed (SndfileContentProperty::VIDEO_FRAME_RATE);
-       }
-
-       float video_frame_rate () const;
-
        void set_audio_mapping (AudioMapping);
        
        static bool valid_file (boost::filesystem::path);
@@ -93,10 +76,6 @@ private:
        AudioContent::Frame _audio_length;
        int _audio_frame_rate;
        AudioMapping _audio_mapping;
-       /** Video frame rate that this audio has been prepared for,
-           if specified.
-       */
-       boost::optional<float> _video_frame_rate;
 };
 
 #endif