/* 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. */ #include #include #include #include "playlist.h" #include "sndfile_content.h" #include "sndfile_decoder.h" #include "video_content.h" #include "ffmpeg_decoder.h" #include "ffmpeg_content.h" #include "imagemagick_decoder.h" #include "imagemagick_content.h" #include "job.h" #include "config.h" #include "util.h" #include "i18n.h" using std::list; using std::cout; using std::vector; using std::min; using std::max; using std::string; using std::stringstream; using boost::optional; using boost::shared_ptr; using boost::weak_ptr; using boost::dynamic_pointer_cast; using boost::lexical_cast; Playlist::Playlist () : _loop (1) , _sequence_video (true) , _sequencing_video (false) { } Playlist::Playlist (shared_ptr other) : _loop (other->_loop) { for (ContentList::const_iterator i = other->_content.begin(); i != other->_content.end(); ++i) { _content.push_back ((*i)->clone ()); } } Playlist::~Playlist () { _content.clear (); reconnect (); } void Playlist::content_changed (weak_ptr c, int p) { if (p == ContentProperty::LENGTH && _sequence_video && !_sequencing_video) { _sequencing_video = true; ContentList cl = _content; sort (cl.begin(), cl.end(), ContentSorter ()); Time last = 0; for (ContentList::iterator i = cl.begin(); i != cl.end(); ++i) { if (!dynamic_pointer_cast (*i)) { continue; } (*i)->set_start (last); last = (*i)->end (); } _sequencing_video = false; } ContentChanged (c, p); } string Playlist::video_identifier () const { string t; for (ContentList::const_iterator i = _content.begin(); i != _content.end(); ++i) { shared_ptr vc = dynamic_pointer_cast (*i); if (vc) { t += vc->identifier (); } } t += lexical_cast (_loop); return md5_digest (t.c_str(), t.length()); } /** @param node node */ void Playlist::set_from_xml (shared_ptr film, shared_ptr node) { list > c = node->node_children ("Content"); for (list >::iterator i = c.begin(); i != c.end(); ++i) { string const type = (*i)->string_child ("Type"); boost::shared_ptr content; if (type == "FFmpeg") { content.reset (new FFmpegContent (film, *i)); } else if (type == "ImageMagick") { content.reset (new ImageMagickContent (film, *i)); } else if (type == "Sndfile") { content.reset (new SndfileContent (film, *i)); } _content.push_back (content); } reconnect (); _loop = node->number_child ("Loop"); _sequence_video = node->bool_child ("SequenceVideo"); } /** @param node node */ void Playlist::as_xml (xmlpp::Node* node) { for (ContentList::iterator i = _content.begin(); i != _content.end(); ++i) { (*i)->as_xml (node->add_child ("Content")); } node->add_child("Loop")->add_child_text(lexical_cast (_loop)); node->add_child("SequenceVideo")->add_child_text(_sequence_video ? "1" : "0"); } void Playlist::add (shared_ptr c) { _content.push_back (c); reconnect (); Changed (); } void Playlist::remove (shared_ptr c) { ContentList::iterator i = _content.begin (); while (i != _content.end() && *i != c) { ++i; } if (i != _content.end ()) { _content.erase (i); Changed (); } } void Playlist::set_loop (int l) { _loop = l; Changed (); } bool Playlist::has_subtitles () const { for (ContentList::const_iterator i = _content.begin(); i != _content.end(); ++i) { shared_ptr fc = dynamic_pointer_cast (*i); if (fc && !fc->subtitle_streams().empty()) { return true; } } return false; } class FrameRateCandidate { public: FrameRateCandidate (float source_, int dcp_) : source (source_) , dcp (dcp_) {} float source; int dcp; }; int Playlist::best_dcp_frame_rate () const { list const allowed_dcp_frame_rates = Config::instance()->allowed_dcp_frame_rates (); /* Work out what rates we could manage, including those achieved by using skip / repeat. */ list candidates; /* Start with the ones without skip / repeat so they will get matched in preference to skipped/repeated ones */ for (list::const_iterator i = allowed_dcp_frame_rates.begin(); i != allowed_dcp_frame_rates.end(); ++i) { candidates.push_back (FrameRateCandidate (*i, *i)); } /* Then the skip/repeat ones */ for (list::const_iterator i = allowed_dcp_frame_rates.begin(); i != allowed_dcp_frame_rates.end(); ++i) { candidates.push_back (FrameRateCandidate (float (*i) / 2, *i)); candidates.push_back (FrameRateCandidate (float (*i) * 2, *i)); } /* Pick the best one, bailing early if we hit an exact match */ float error = std::numeric_limits::max (); optional best; list::iterator i = candidates.begin(); while (i != candidates.end()) { float this_error = 0; for (ContentList::const_iterator j = _content.begin(); j != _content.end(); ++j) { shared_ptr vc = dynamic_pointer_cast (*j); if (!vc) { continue; } this_error += fabs (i->source - vc->video_frame_rate ()); } if (this_error < error) { error = this_error; best = *i; } ++i; } if (!best) { return 24; } return best->dcp; } Time Playlist::length () const { Time len = 0; for (ContentList::const_iterator i = _content.begin(); i != _content.end(); ++i) { len = max (len, (*i)->end ()); } return len; } void Playlist::reconnect () { for (list::iterator i = _content_connections.begin(); i != _content_connections.end(); ++i) { i->disconnect (); } _content_connections.clear (); for (ContentList::iterator i = _content.begin(); i != _content.end(); ++i) { _content_connections.push_back ((*i)->Changed.connect (bind (&Playlist::content_changed, this, _1, _2))); } } Time Playlist::video_end () const { Time end = 0; for (ContentList::const_iterator i = _content.begin(); i != _content.end(); ++i) { if (dynamic_pointer_cast (*i)) { end = max (end, (*i)->end ()); } } return end; } void Playlist::set_sequence_video (bool s) { _sequence_video = s; } bool ContentSorter::operator() (shared_ptr a, shared_ptr b) { return a->start() < b->start(); }