summaryrefslogtreecommitdiff
path: root/src/lib/playlist.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/playlist.h')
-rw-r--r--src/lib/playlist.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/lib/playlist.h b/src/lib/playlist.h
index f75b4ba63..3a7ca73bf 100644
--- a/src/lib/playlist.h
+++ b/src/lib/playlist.h
@@ -51,6 +51,11 @@ class Region;
* are played simultaneously (i.e. they can be split up into multiple files for different channels)
*/
+struct ContentSorter
+{
+ bool operator() (boost::shared_ptr<Content> a, boost::shared_ptr<Content> b);
+};
+
class Playlist
{
public:
@@ -85,6 +90,8 @@ public:
int best_dcp_frame_rate () const;
Time video_end () const;
+ void set_sequence_video (bool);
+
mutable boost::signals2::signal<void ()> Changed;
mutable boost::signals2::signal<void (boost::weak_ptr<Content>, int)> ContentChanged;
@@ -94,6 +101,8 @@ private:
ContentList _content;
int _loop;
+ bool _sequence_video;
+ bool _sequencing_video;
std::list<boost::signals2::connection> _content_connections;
};