Various fixes to make audio analysis sort-of work.
[dcpomatic.git] / src / lib / playlist.cc
index e0220ef6f6377768852a80ec0e60a489586b28c3..9cc1789d135d5c38a66e416b4c90888421d7142e 100644 (file)
 
 */
 
+#include <libcxml/cxml.h>
 #include <boost/shared_ptr.hpp>
+#include <boost/lexical_cast.hpp>
 #include "playlist.h"
 #include "sndfile_content.h"
 #include "sndfile_decoder.h"
-#include "ffmpeg_content.h"
+#include "video_content.h"
 #include "ffmpeg_decoder.h"
-#include "imagemagick_content.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 ()
-       : _video_from (VIDEO_NONE)
-       , _audio_from (AUDIO_NONE)
+       : _loop (1)
+       , _sequence_video (true)
+       , _sequencing_video (false)
 {
 
 }
 
+Playlist::Playlist (shared_ptr<const Playlist> 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::setup (ContentList content)
+Playlist::content_changed (weak_ptr<Content> c, int p)
 {
-       _video_from = VIDEO_NONE;
-       _audio_from = AUDIO_NONE;
+       if (p == ContentProperty::LENGTH && _sequence_video && !_sequencing_video) {
+               _sequencing_video = true;
 
-       _ffmpeg.reset ();
-       _imagemagick.clear ();
-       _sndfile.clear ();
+               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<VideoContent> (*i)) {
+                               continue;
+                       }
 
-       for (list<boost::signals2::connection>::iterator i = _content_connections.begin(); i != _content_connections.end(); ++i) {
-               i->disconnect ();
+                       (*i)->set_start (last);
+                       last = (*i)->end ();
+               }
+
+               _sequencing_video = false;
        }
        
-       _content_connections.clear ();
+       ContentChanged (c, p);
+}
 
-       for (ContentList::const_iterator i = content.begin(); i != content.end(); ++i) {
-               shared_ptr<FFmpegContent> fc = dynamic_pointer_cast<FFmpegContent> (*i);
-               if (fc) {
-                       assert (!_ffmpeg);
-                       _ffmpeg = fc;
-                       _video_from = VIDEO_FFMPEG;
-                       if (_audio_from == AUDIO_NONE) {
-                               _audio_from = AUDIO_FFMPEG;
-                       }
+string
+Playlist::video_digest () const
+{
+       string t;
+       
+       for (ContentList::const_iterator i = _content.begin(); i != _content.end(); ++i) {
+               if (!dynamic_pointer_cast<const VideoContent> (*i)) {
+                       continue;
                }
                
-               shared_ptr<ImageMagickContent> ic = dynamic_pointer_cast<ImageMagickContent> (*i);
-               if (ic) {
-                       _imagemagick.push_back (ic);
-                       if (_video_from == VIDEO_NONE) {
-                               _video_from = VIDEO_IMAGEMAGICK;
-                       }
+               t += (*i)->digest ();
+               shared_ptr<const FFmpegContent> fc = dynamic_pointer_cast<const FFmpegContent> (*i);
+               if (fc && fc->subtitle_stream()) {
+                       t += fc->subtitle_stream()->id;
                }
+       }
+
+       t += lexical_cast<string> (_loop);
+
+       return md5_digest (t.c_str(), t.length());
+}
+
+/** @param node <Playlist> node */
+void
+Playlist::set_from_xml (shared_ptr<const Film> film, shared_ptr<const cxml::Node> node)
+{
+       list<shared_ptr<cxml::Node> > c = node->node_children ("Content");
+       for (list<shared_ptr<cxml::Node> >::iterator i = c.begin(); i != c.end(); ++i) {
+               string const type = (*i)->string_child ("Type");
+
+               boost::shared_ptr<Content> content;
 
-               shared_ptr<SndfileContent> sc = dynamic_pointer_cast<SndfileContent> (*i);
-               if (sc) {
-                       _sndfile.push_back (sc);
-                       _audio_from = AUDIO_SNDFILE;
+               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_connections.push_back ((*i)->Changed.connect (bind (&Playlist::content_changed, this, _1, _2)));
+               _content.push_back (content);
        }
 
+       reconnect ();
+       _loop = node->number_child<int> ("Loop");
+       _sequence_video = node->bool_child ("SequenceVideo");
+}
+
+/** @param node <Playlist> 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<string> (_loop));
+       node->add_child("SequenceVideo")->add_child_text(_sequence_video ? "1" : "0");
+}
+
+void
+Playlist::add (shared_ptr<Content> c)
+{
+       _content.push_back (c);
+       reconnect ();
        Changed ();
 }
 
-ContentAudioFrame
-Playlist::audio_length () const
+void
+Playlist::remove (shared_ptr<Content> c)
 {
-       switch (_audio_from) {
-       case AUDIO_NONE:
-               return 0;
-       case AUDIO_FFMPEG:
-               return _ffmpeg->audio_length ();
-       case AUDIO_SNDFILE:
-       {
-               ContentAudioFrame l = 0;
-               for (list<shared_ptr<const SndfileContent> >::const_iterator i = _sndfile.begin(); i != _sndfile.end(); ++i) {
-                       l += (*i)->audio_length ();
-               }
-               return l;
+       ContentList::iterator i = _content.begin ();
+       while (i != _content.end() && *i != c) {
+               ++i;
        }
+       
+       if (i != _content.end ()) {
+               _content.erase (i);
+               Changed ();
        }
+}
 
-       return 0;
+void
+Playlist::set_loop (int l)
+{
+       _loop = l;
+       Changed ();
 }
 
-int
-Playlist::audio_channels () const
-{
-       switch (_audio_from) {
-       case AUDIO_NONE:
-               return 0;
-       case AUDIO_FFMPEG:
-               return _ffmpeg->audio_channels ();
-       case AUDIO_SNDFILE:
-       {
-               int c = 0;
-               for (list<shared_ptr<const SndfileContent> >::const_iterator i = _sndfile.begin(); i != _sndfile.end(); ++i) {
-                       c += (*i)->audio_channels ();
+bool
+Playlist::has_subtitles () const
+{
+       for (ContentList::const_iterator i = _content.begin(); i != _content.end(); ++i) {
+               shared_ptr<const FFmpegContent> fc = dynamic_pointer_cast<FFmpegContent> (*i);
+               if (fc && !fc->subtitle_streams().empty()) {
+                       return true;
                }
-               return c;
-       }
        }
 
-       return 0;
+       return false;
 }
 
+class FrameRateCandidate
+{
+public:
+       FrameRateCandidate (float source_, int dcp_)
+               : source (source_)
+               , dcp (dcp_)
+       {}
+
+       float source;
+       int dcp;
+};
+
 int
-Playlist::audio_frame_rate () const
+Playlist::best_dcp_frame_rate () const
 {
-       switch (_audio_from) {
-       case AUDIO_NONE:
-               return 0;
-       case AUDIO_FFMPEG:
-               return _ffmpeg->audio_frame_rate ();
-       case AUDIO_SNDFILE:
-               return _sndfile.front()->audio_frame_rate ();
+       list<int> 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<FrameRateCandidate> candidates;
+
+       /* Start with the ones without skip / repeat so they will get matched in preference to skipped/repeated ones */
+       for (list<int>::const_iterator i = allowed_dcp_frame_rates.begin(); i != allowed_dcp_frame_rates.end(); ++i) {
+               candidates.push_back (FrameRateCandidate (*i, *i));
        }
 
-       return 0;
-}
+       /* Then the skip/repeat ones */
+       for (list<int>::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));
+       }
 
-int64_t
-Playlist::audio_channel_layout () const
-{
-       switch (_audio_from) {
-       case AUDIO_NONE:
-               return 0;
-       case AUDIO_FFMPEG:
-               return _ffmpeg->audio_channel_layout ();
-       case AUDIO_SNDFILE:
-               /* XXX */
-               return 0;
+       /* Pick the best one, bailing early if we hit an exact match */
+       float error = std::numeric_limits<float>::max ();
+       optional<FrameRateCandidate> best;
+       list<FrameRateCandidate>::iterator i = candidates.begin();
+       while (i != candidates.end()) {
+
+               float this_error = std::numeric_limits<float>::max ();
+               for (ContentList::const_iterator j = _content.begin(); j != _content.end(); ++j) {
+                       shared_ptr<VideoContent> vc = dynamic_pointer_cast<VideoContent> (*j);
+                       if (!vc) {
+                               continue;
+                       }
+
+                       this_error += fabs (i->source - vc->video_frame_rate ());
+               }
+
+               if (this_error < error) {
+                       error = this_error;
+                       best = *i;
+               }
+
+               ++i;
        }
 
-       return 0;
+       if (!best) {
+               return 24;
+       }
+       
+       return best->dcp;
 }
 
-float
-Playlist::video_frame_rate () const
+Time
+Playlist::length () const
 {
-       switch (_video_from) {
-       case VIDEO_NONE:
-               return 0;
-       case VIDEO_FFMPEG:
-               return _ffmpeg->video_frame_rate ();
-       case VIDEO_IMAGEMAGICK:
-               return 24;
+       Time len = 0;
+       for (ContentList::const_iterator i = _content.begin(); i != _content.end(); ++i) {
+               len = max (len, (*i)->end ());
        }
 
-       return 0;
+       return len;
 }
 
-libdcp::Size
-Playlist::video_size () const
+void
+Playlist::reconnect ()
 {
-       switch (_video_from) {
-       case VIDEO_NONE:
-               return libdcp::Size ();
-       case VIDEO_FFMPEG:
-               return _ffmpeg->video_size ();
-       case VIDEO_IMAGEMAGICK:
-               /* XXX */
-               return _imagemagick.front()->video_size ();
+       for (list<boost::signals2::connection>::iterator i = _content_connections.begin(); i != _content_connections.end(); ++i) {
+               i->disconnect ();
        }
 
-       return libdcp::Size ();
+       _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)));
+       }
 }
 
-ContentVideoFrame
-Playlist::video_length () const
+Time
+Playlist::video_end () const
 {
-       switch (_video_from) {
-       case VIDEO_NONE:
-               return 0;
-       case VIDEO_FFMPEG:
-               return _ffmpeg->video_length ();
-       case VIDEO_IMAGEMAGICK:
-       {
-               ContentVideoFrame l = 0;
-               for (list<shared_ptr<const ImageMagickContent> >::const_iterator i = _imagemagick.begin(); i != _imagemagick.end(); ++i) {
-                       l += (*i)->video_length ();
+       Time end = 0;
+       for (ContentList::const_iterator i = _content.begin(); i != _content.end(); ++i) {
+               if (dynamic_pointer_cast<const VideoContent> (*i)) {
+                       end = max (end, (*i)->end ());
                }
-               return l;
-       }
        }
 
-       return 0;
+       return end;
 }
 
-bool
-Playlist::has_audio () const
+void
+Playlist::set_sequence_video (bool s)
 {
-       return _audio_from != AUDIO_NONE;
+       _sequence_video = s;
 }
 
-void
-Playlist::content_changed (weak_ptr<Content> c, int p)
+bool
+ContentSorter::operator() (shared_ptr<Content> a, shared_ptr<Content> b)
 {
-       ContentChanged (c, p);
+       return a->start() < b->start();
 }