summaryrefslogtreecommitdiff
path: root/src/wx/film_viewer.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/wx/film_viewer.cc')
-rw-r--r--src/wx/film_viewer.cc8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/wx/film_viewer.cc b/src/wx/film_viewer.cc
index c1d04be03..cb9c85b3d 100644
--- a/src/wx/film_viewer.cc
+++ b/src/wx/film_viewer.cc
@@ -86,7 +86,6 @@ FilmViewer::FilmViewer (wxWindow* p)
, _playing (false)
, _suspended (0)
, _latency_history_count (0)
- , _dropped (0)
, _closed_captions_dialog (new ClosedCaptionsDialog(p, this))
, _outline_content (false)
, _eyes (EYES_LEFT)
@@ -326,7 +325,6 @@ FilmViewer::start ()
_audio.startStream ();
}
- _dropped = 0;
_playing = true;
_video_view->start ();
Started (position());
@@ -656,3 +654,9 @@ FilmViewer::emit_finished ()
emit (boost::bind(boost::ref(Finished)));
}
+int
+FilmViewer::dropped () const
+{
+ return _video_view->dropped ();
+}
+