summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2019-10-20 22:20:06 +0200
committerCarl Hetherington <cth@carlh.net>2020-01-08 21:56:47 +0100
commitd6d5e36cbeb285c78c33d88a09882d964f83d563 (patch)
treee53c7650f53affbdf200d4a5c8dc8664e155622a
parent64ff02a143c8364c49554d9631fb6be5f273b54d (diff)
Remove redundant FilmViewer::video_position() and use FilmViewer::position() instead.
-rw-r--r--src/wx/film_viewer.h3
-rw-r--r--src/wx/simple_video_view.cc4
2 files changed, 2 insertions, 5 deletions
diff --git a/src/wx/film_viewer.h b/src/wx/film_viewer.h
index d64eef4a9..d0041bd95 100644
--- a/src/wx/film_viewer.h
+++ b/src/wx/film_viewer.h
@@ -135,9 +135,6 @@ public:
bool pad_black () const {
return _pad_black;
}
- dcpomatic::DCPTime video_position () const {
- return _video_position;
- }
boost::signals2::signal<void (boost::weak_ptr<PlayerVideo>)> ImageChanged;
boost::signals2::signal<void ()> PositionChanged;
diff --git a/src/wx/simple_video_view.cc b/src/wx/simple_video_view.cc
index 56e50ebed..9aa73fe7f 100644
--- a/src/wx/simple_video_view.cc
+++ b/src/wx/simple_video_view.cc
@@ -83,10 +83,10 @@ SimpleVideoView::paint ()
#ifdef DCPOMATIC_VARIANT_SWAROOP
DCPTime const period = DCPTime::from_seconds(Config::instance()->player_watermark_period() * 60);
- int64_t n = _viewer->video_position().get() / period.get();
+ int64_t n = _viewer->position().get() / period.get();
DCPTime from(n * period.get());
DCPTime to = from + DCPTime::from_seconds(Config::instance()->player_watermark_duration() / 1000.0);
- if (from <= _viewer->video_position() && _viewer->video_position() <= to) {
+ if (from <= _viewer->position() && _viewer->position() <= to) {
if (!_in_watermark) {
_in_watermark = true;
_watermark_x = rand() % panel_size.GetWidth();