No-op: remove all trailing whitespace.
[dcpomatic.git] / src / lib / playlist.h
index 4add76344e7c5b1af299e1376d0e397d544c7ed3..3829d6f31e9254367b006823aa44f8f000d477fe 100644 (file)
 
 */
 
+#ifndef DCPOMATIC_PLAYLIST_H
+#define DCPOMATIC_PLAYLIST_H
+
+#include "ffmpeg_content.h"
+#include "audio_mapping.h"
+#include "util.h"
+#include "frame_rate_change.h"
 #include <boost/shared_ptr.hpp>
-#include "video_source.h"
-#include "video_sink.h"
+#include <boost/enable_shared_from_this.hpp>
+#include <list>
 
 class Content;
+class FFmpegContent;
+class FFmpegDecoder;
+class StillImageMagickContent;
+class StillImageMagickDecoder;
+class SndfileContent;
+class SndfileDecoder;
+class Job;
+class Film;
+class Region;
+
+struct ContentSorter
+{
+       bool operator() (boost::shared_ptr<Content> a, boost::shared_ptr<Content> b);
+};
 
-class Playlist : public VideoSource, public AudioSource
+/** @class Playlist
+ *  @brief A set of Content objects with knowledge of how they should be arranged into
+ *  a DCP.
+ */
+class Playlist : public boost::noncopyable
 {
 public:
-       Playlist (std::list<boost::shared_ptr<Content> >);
+       Playlist ();
+       ~Playlist ();
+
+       void as_xml (xmlpp::Node *);
+       void set_from_xml (boost::shared_ptr<const Film>, cxml::ConstNodePtr, int, std::list<std::string> &);
+
+       void add (boost::shared_ptr<Content>);
+       void remove (boost::shared_ptr<Content>);
+       void remove (ContentList);
+       void move_earlier (boost::shared_ptr<Content>);
+       void move_later (boost::shared_ptr<Content>);
+
+       ContentList content () const;
+
+       std::string video_identifier () const;
+
+       DCPTime length () const;
+
+       int best_dcp_frame_rate () const;
+       DCPTime video_end () const;
+       FrameRateChange active_frame_rate_change (DCPTime, int dcp_frame_rate) const;
+
+       void set_sequence_video (bool);
+       void maybe_sequence_video ();
+
+       void repeat (ContentList, int);
+
+       /** Emitted when content has been added to or removed from the playlist */
+       mutable boost::signals2::signal<void ()> Changed;
+       /** Emitted when something about a piece of our content has changed;
+        *  these emissions include when the position of the content changes.
+        *  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, bool);
+       void reconnect ();
+
+       /** List of content.  Kept sorted in position order. */
+       ContentList _content;
+       bool _sequence_video;
+       bool _sequencing_video;
+       std::list<boost::signals2::connection> _content_connections;
 };
+
+#endif