/* Copyright (C) 2013 Carl Hetherington This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifndef DCPOMATIC_PLAYLIST_H #define DCPOMATIC_PLAYLIST_H #include #include #include #include "video_source.h" #include "audio_source.h" #include "video_sink.h" #include "audio_sink.h" #include "ffmpeg_content.h" #include "audio_mapping.h" class Content; class FFmpegContent; class FFmpegDecoder; class ImageMagickContent; class ImageMagickDecoder; class SndfileContent; class SndfileDecoder; class Job; class Film; /** @class Playlist * @brief A set of content files (video and audio), with knowledge of how they should be arranged into * a DCP. * * This class holds Content objects, and it knows how they should be arranged. At the moment * the ordering is implicit; video content is placed sequentially, and audio content is taken * from the video unless any sound-only files are present. If sound-only files exist, they * are played simultaneously (i.e. they can be split up into multiple files for different channels) */ class Playlist { public: Playlist (); Playlist (boost::shared_ptr); void as_xml (xmlpp::Node *); void set_from_xml (boost::shared_ptr); void add (boost::shared_ptr); void remove (boost::shared_ptr); bool has_subtitles () const; struct Region { Region () : time (0) {} Region (boost::shared_ptr c, Time t, Playlist* p); Region (boost::shared_ptr, Playlist* p); void as_xml (xmlpp::Node *) const; boost::shared_ptr content; Time time; boost::signals2::connection connection; }; typedef std::vector RegionList; RegionList regions () const { return _regions; } std::string audio_digest () const; std::string video_digest () const; int loop () const { return _loop; } void set_loop (int l); Time length (boost::shared_ptr) const; int best_dcp_frame_rate () const; mutable boost::signals2::signal Changed; mutable boost::signals2::signal, int)> ContentChanged; private: void content_changed (boost::weak_ptr, int); RegionList _regions; int _loop; }; #endif