Add playback seek logging.
[dcpomatic.git] / src / wx / film_viewer.cc
index a27c0053d8ca6204dfa27c7a4adde1db7b64504c..db72e6c6037fb759ff43b1587830fe878119e9b4 100644 (file)
@@ -422,7 +422,7 @@ FilmViewer::start ()
        _playing = true;
        _dropped = 0;
        timer ();
-       Started ();
+       Started (position());
 }
 
 bool
@@ -438,7 +438,7 @@ FilmViewer::stop ()
        }
 
        _playing = false;
-       Stopped ();
+       Stopped (position());
        return true;
 }
 
@@ -556,6 +556,7 @@ FilmViewer::seek (DCPTime t, bool accurate)
        }
 
        PositionChanged ();
+       Seeked (position());
 }
 
 void