Some missing copy constructors / operator= / noncopyable.
[dcpomatic.git] / src / lib / playlist.h
index 2d243fe8f0e84060b0ffa20b93a96d08fbf7af31..0b928fe51e46b27378a3aab87284a0221cae920f 100644 (file)
@@ -73,7 +73,7 @@ public:
                return _content;
        }
 
-       std::string video_digest () const;
+       std::string video_identifier () const;
 
        int loop () const {
                return _loop;
@@ -86,12 +86,14 @@ public:
        Time video_end () const;
 
        void set_sequence_video (bool);
+       void maybe_sequence_video ();
 
        mutable boost::signals2::signal<void ()> Changed;
-       mutable boost::signals2::signal<void (boost::weak_ptr<Content>, int)> ContentChanged;
+       /** Third parameter is true if signals are currently being emitted frequently */
+       mutable boost::signals2::signal<void (boost::weak_ptr<Content>, int, bool)> ContentChanged;
        
 private:
-       void content_changed (boost::weak_ptr<Content>, int);
+       void content_changed (boost::weak_ptr<Content>, int, bool);
        void reconnect ();
 
        ContentList _content;