Remove player activity logging. Fixes #2122.
[dcpomatic.git] / src / wx / film_viewer.cc
index e678c6aa3045cc9057d29c77ecd6cafbe2f69cbe..2c90b86095278c9bd19b81831e27f3d82123909b 100644 (file)
@@ -371,7 +371,7 @@ FilmViewer::start ()
        /* Calling start() below may directly result in Stopped being emitted, and if that
         * happens we want it to come after the Started signal, so do that first.
         */
-       Started (position());
+       Started ();
        _video_view->start ();
 }
 
@@ -390,7 +390,7 @@ FilmViewer::stop ()
 
        _playing = false;
        _video_view->stop ();
-       Stopped (position());
+       Stopped ();
 
        _video_view->rethrow ();
        return true;