Some missing copy constructors / operator= / noncopyable.
[dcpomatic.git] / src / lib / video_content.h
index 372cab3bd3c48ab5874188800cf7b41e541ebea0..d74242ae9c46779801bd4a8415d509610725f8ca 100644 (file)
@@ -46,6 +46,7 @@ public:
 
        void as_xml (xmlpp::Node *) const;
        virtual std::string information () const;
+       virtual std::string identifier () const;
 
        VideoContent::Frame video_length () const {
                boost::mutex::scoped_lock lm (_mutex);
@@ -62,7 +63,6 @@ public:
                return _video_frame_rate;
        }
 
-       void set_crop (Crop);
        void set_left_crop (int);
        void set_right_crop (int);
        void set_top_crop (int);
@@ -86,6 +86,11 @@ protected:
        VideoContent::Frame _video_length;
 
 private:
+       friend class ffmpeg_pts_offset_test;
+       friend class best_dcp_frame_rate_test_single;
+       friend class best_dcp_frame_rate_test_double;
+       friend class audio_sampling_rate_test;
+       
        libdcp::Size _video_size;
        float _video_frame_rate;
        Crop _crop;