Fix tests.
[dcpomatic.git] / src / lib / player.cc
index b0a408c1016a1cfd9bf5307a44975f2fa65e3b72..cd1c54d5bd466e78834d36d87c10476e180e6410 100644 (file)
@@ -1,5 +1,3 @@
-/* -*- c-basic-offset: 8; default-tab-width: 8; -*- */
-
 /*
     Copyright (C) 2013 Carl Hetherington <cth@carlh.net>
 
@@ -19,6 +17,7 @@
 
 */
 
+#include <stdint.h>
 #include "player.h"
 #include "film.h"
 #include "ffmpeg_decoder.h"
 using std::list;
 using std::cout;
 using std::min;
+using std::max;
 using std::vector;
 using boost::shared_ptr;
 using boost::weak_ptr;
 using boost::dynamic_pointer_cast;
 
+#define DEBUG_PLAYER 1
+
 struct Piece
 {
        Piece (shared_ptr<Content> c, shared_ptr<Decoder> d)
@@ -52,18 +54,39 @@ struct Piece
        shared_ptr<Content> content;
        shared_ptr<Decoder> decoder;
 };
+       
+
+#ifdef DEBUG_PLAYER
+std::ostream& operator<<(std::ostream& s, Piece const & p)
+{
+       if (dynamic_pointer_cast<NullContent> (p.content)) {
+               if (dynamic_pointer_cast<SilenceDecoder> (p.decoder)) {
+                       s << "\tsilence    ";
+               } else {
+                       s << "\tblack      ";
+               }
+       } else if (dynamic_pointer_cast<FFmpegContent> (p.content)) {
+               s << "\tffmpeg     ";
+       } else if (dynamic_pointer_cast<ImageMagickContent> (p.content)) {
+               s << "\timagemagick";
+       } else if (dynamic_pointer_cast<SndfileContent> (p.content)) {
+               s << "\tsndfile    ";
+       }
+       
+       s << " at " << p.content->start() << " until " << p.content->end();
+       
+       return s;
+}
+#endif 
 
 Player::Player (shared_ptr<const Film> f, shared_ptr<const Playlist> p)
        : _film (f)
        , _playlist (p)
        , _video (true)
        , _audio (true)
-       , _subtitles (true)
        , _have_valid_pieces (false)
        , _position (0)
-       , _audio_buffers (MAX_AUDIO_CHANNELS, 0)
-       , _last_video (0)
-       , _last_was_black (false)
+       , _audio_buffers (f->dcp_audio_channels(), 0)
        , _next_audio (0)
 {
        _playlist->Changed.connect (bind (&Player::playlist_changed, this));
@@ -82,12 +105,6 @@ Player::disable_audio ()
        _audio = false;
 }
 
-void
-Player::disable_subtitles ()
-{
-       _subtitles = false;
-}
-
 bool
 Player::pass ()
 {
@@ -104,11 +121,15 @@ Player::pass ()
         shared_ptr<Piece> earliest;
 
        for (list<shared_ptr<Piece> >::iterator i = _pieces.begin(); i != _pieces.end(); ++i) {
-               if ((*i)->content->end(_film) < _position) {
+               if ((*i)->decoder->done ()) {
+                       continue;
+               }
+
+               if (!_audio && dynamic_pointer_cast<AudioDecoder> ((*i)->decoder) && !dynamic_pointer_cast<VideoDecoder> ((*i)->decoder)) {
                        continue;
                }
                
-               Time const t = (*i)->content->start() + (*i)->decoder->next();
+               Time const t = (*i)->content->start() + (*i)->decoder->position();
                if (t < earliest_t) {
                        earliest_t = t;
                        earliest = *i;
@@ -116,30 +137,18 @@ Player::pass ()
        }
 
        if (!earliest) {
+               flush ();
                return true;
        }
-       
-       earliest->decoder->pass ();
-
-       /* Move position to earliest active next emission */
-
-       for (list<shared_ptr<Piece> >::iterator i = _pieces.begin(); i != _pieces.end(); ++i) {
-               if ((*i)->content->end(_film) < _position) {
-                       continue;
-               }
 
-               Time const t = (*i)->content->start() + (*i)->decoder->next();
-
-               if (t < _position) {
-                       _position = t;
-               }
-       }
+       earliest->decoder->pass ();
+       _position = earliest->content->start() + earliest->decoder->position ();
 
         return false;
 }
 
 void
-Player::process_video (weak_ptr<Content> weak_content, shared_ptr<const Image> image, bool same, shared_ptr<Subtitle> sub, Time time)
+Player::process_video (weak_ptr<Content> weak_content, shared_ptr<const Image> image, bool same, Time time)
 {
        shared_ptr<Content> content = weak_content.lock ();
        if (!content) {
@@ -148,7 +157,7 @@ Player::process_video (weak_ptr<Content> weak_content, shared_ptr<const Image> i
        
        time += content->start ();
        
-        Video (image, same, sub, time);
+        Video (image, same, time);
 }
 
 void
@@ -159,17 +168,18 @@ Player::process_audio (weak_ptr<Content> weak_content, shared_ptr<const AudioBuf
                return;
        }
        
-        /* XXX: mapping */
-
         /* The time of this audio may indicate that some of our buffered audio is not going to
            be added to any more, so it can be emitted.
         */
 
        time += content->start ();
 
+       cout << "Player gets " << audio->frames() << " @ " << time << " cf " << _next_audio << "\n";
+
         if (time > _next_audio) {
                 /* We can emit some audio from our buffers */
-                OutputAudioFrame const N = min (_film->time_to_audio_frames (time - _next_audio), static_cast<OutputAudioFrame> (_audio_buffers.frames()));
+                OutputAudioFrame const N = _film->time_to_audio_frames (time - _next_audio);
+               assert (N <= _audio_buffers.frames());
                 shared_ptr<AudioBuffers> emit (new AudioBuffers (_audio_buffers.channels(), N));
                 emit->copy_from (&_audio_buffers, N, 0, 0);
                 Audio (emit, _next_audio);
@@ -183,8 +193,21 @@ Player::process_audio (weak_ptr<Content> weak_content, shared_ptr<const AudioBuf
         }
 
         /* Now accumulate the new audio into our buffers */
-        _audio_buffers.ensure_size (time - _next_audio + audio->frames());
-        _audio_buffers.accumulate (audio.get(), 0, _film->time_to_audio_frames (time - _next_audio));
+        _audio_buffers.ensure_size (_audio_buffers.frames() + audio->frames());
+        _audio_buffers.accumulate_frames (audio.get(), 0, 0, audio->frames ());
+       _audio_buffers.set_frames (_audio_buffers.frames() + audio->frames());
+}
+
+void
+Player::flush ()
+{
+       if (_audio_buffers.frames() > 0) {
+               shared_ptr<AudioBuffers> emit (new AudioBuffers (_audio_buffers.channels(), _audio_buffers.frames()));
+               emit->copy_from (&_audio_buffers, _audio_buffers.frames(), 0, 0);
+               Audio (emit, _next_audio);
+               _next_audio += _film->audio_frames_to_time (_audio_buffers.frames ());
+               _audio_buffers.set_frames (0);
+       }
 }
 
 /** @return true on error */
@@ -200,6 +223,13 @@ Player::seek (Time t)
                return;
        }
 
+       for (list<shared_ptr<Piece> >::iterator i = _pieces.begin(); i != _pieces.end(); ++i) {
+               Time s = t - (*i)->content->start ();
+               s = max (static_cast<Time> (0), s);
+               s = min ((*i)->content->length(), s);
+               (*i)->decoder->seek (s);
+       }
+
        /* XXX: don't seek audio because we don't need to... */
 }
 
@@ -207,22 +237,34 @@ Player::seek (Time t)
 void
 Player::seek_back ()
 {
-       /* XXX */
+
 }
 
 void
 Player::seek_forward ()
 {
-       /* XXX */
+
 }
 
-struct ContentSorter
+void
+Player::add_black_piece (Time s, Time len)
 {
-       bool operator() (shared_ptr<Content> a, shared_ptr<Content> b)
-       {
-               return a->start() < b->start();
-       }
-};
+       shared_ptr<NullContent> nc (new NullContent (_film, s, len));
+       nc->set_ratio (_film->container ());
+       shared_ptr<BlackDecoder> bd (new BlackDecoder (_film, nc));
+       bd->Video.connect (bind (&Player::process_video, this, nc, _1, _2, _3));
+       _pieces.push_back (shared_ptr<Piece> (new Piece (nc, bd)));
+}
+
+void
+Player::add_silent_piece (Time s, Time len)
+{
+       shared_ptr<NullContent> nc (new NullContent (_film, s, len));
+       shared_ptr<SilenceDecoder> sd (new SilenceDecoder (_film, nc));
+       sd->Audio.connect (bind (&Player::process_audio, this, nc, _1, _2));
+       _pieces.push_back (shared_ptr<Piece> (new Piece (nc, sd)));
+}
+
 
 void
 Player::setup_pieces ()
@@ -242,10 +284,13 @@ Player::setup_pieces ()
 
                shared_ptr<const FFmpegContent> fc = dynamic_pointer_cast<const FFmpegContent> (*i);
                if (fc) {
-                       shared_ptr<FFmpegDecoder> fd (new FFmpegDecoder (_film, fc, _video, _audio, _subtitles));
+                       shared_ptr<FFmpegDecoder> fd (new FFmpegDecoder (_film, fc, _video, _audio));
                        
-                       fd->Video.connect (bind (&Player::process_video, this, *i, _1, _2, _3, _4));
+                       fd->Video.connect (bind (&Player::process_video, this, *i, _1, _2, _3));
                        fd->Audio.connect (bind (&Player::process_audio, this, *i, _1, _2));
+                       if (_video_container_size) {
+                               fd->set_video_container_size (_video_container_size.get ());
+                       }
 
                        decoder = fd;
                }
@@ -264,7 +309,10 @@ Player::setup_pieces ()
 
                        if (!id) {
                                id.reset (new ImageMagickDecoder (_film, ic));
-                               id->Video.connect (bind (&Player::process_video, this, *i, _1, _2, _3, _4));
+                               id->Video.connect (bind (&Player::process_video, this, *i, _1, _2, _3));
+                               if (_video_container_size) {
+                                       id->set_video_container_size (_video_container_size.get ());
+                               }
                        }
 
                        decoder = id;
@@ -288,24 +336,35 @@ Player::setup_pieces ()
        list<shared_ptr<Piece> > pieces_copy = _pieces;
        for (list<shared_ptr<Piece> >::iterator i = pieces_copy.begin(); i != pieces_copy.end(); ++i) {
                if (dynamic_pointer_cast<VideoContent> ((*i)->content)) {
-                       Time const diff = video_pos - (*i)->content->start();
+                       Time const diff = (*i)->content->start() - video_pos;
                        if (diff > 0) {
-                               shared_ptr<NullContent> nc (new NullContent (video_pos, diff));
-                               _pieces.push_back (shared_ptr<Piece> (new Piece (nc, shared_ptr<Decoder> (new BlackDecoder (_film, nc)))));
+                               add_black_piece (video_pos, diff);
                        }
-                                               
-                       video_pos = (*i)->content->start() + (*i)->content->length(_film);
-               } else {
-                       Time const diff = audio_pos - (*i)->content->start();
+                       video_pos = (*i)->content->end();
+               }
+
+               shared_ptr<AudioContent> ac = dynamic_pointer_cast<AudioContent> ((*i)->content);
+               if (ac && ac->audio_channels()) {
+                       Time const diff = (*i)->content->start() - audio_pos;
                        if (diff > 0) {
-                               shared_ptr<NullContent> nc (new NullContent (audio_pos, diff));
-                               _pieces.push_back (shared_ptr<Piece> (new Piece (nc, shared_ptr<Decoder> (new SilenceDecoder (_film, nc)))));
+                               add_silent_piece (video_pos, diff);
                        }
-                       audio_pos = (*i)->content->start() + (*i)->content->length(_film);
+                       audio_pos = (*i)->content->end();
                }
        }
 
-       _position = 0;
+       if (video_pos < audio_pos) {
+               add_black_piece (video_pos, audio_pos - video_pos);
+       } else if (audio_pos < video_pos) {
+               add_silent_piece (audio_pos, video_pos - audio_pos);
+       }
+
+#ifdef DEBUG_PLAYER
+       cout << "=== Player setup:\n";
+       for (list<shared_ptr<Piece> >::iterator i = _pieces.begin(); i != _pieces.end(); ++i) {
+               cout << *(i->get()) << "\n";
+       }
+#endif 
 }
 
 void
@@ -316,7 +375,7 @@ Player::content_changed (weak_ptr<Content> w, int p)
                return;
        }
 
-       if (p == VideoContentProperty::VIDEO_LENGTH) {
+       if (p == ContentProperty::START || p == ContentProperty::LENGTH) {
                _have_valid_pieces = false;
        }
 }
@@ -326,3 +385,15 @@ Player::playlist_changed ()
 {
        _have_valid_pieces = false;
 }
+
+void
+Player::set_video_container_size (libdcp::Size s)
+{
+       _video_container_size = s;
+       for (list<shared_ptr<Piece> >::iterator i = _pieces.begin(); i != _pieces.end(); ++i) {
+               shared_ptr<VideoDecoder> vd = dynamic_pointer_cast<VideoDecoder> ((*i)->decoder);
+               if (vd) {
+                       vd->set_video_container_size (s);
+               }
+       }
+}