summaryrefslogtreecommitdiff
path: root/src/wx/film_viewer.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2019-10-20 23:24:15 +0200
committerCarl Hetherington <cth@carlh.net>2020-01-08 21:56:47 +0100
commit0a3f387f5d39da2ca38ec90a9593c1b598040dd7 (patch)
treeba8cb7a5cee8ed78b3c5f0822224af2477fefed5 /src/wx/film_viewer.h
parent3b173e309f9f2736aa7e7d09900c5baee4ef31b3 (diff)
Add FilmViewer::time_until_next_frame.
Diffstat (limited to 'src/wx/film_viewer.h')
-rw-r--r--src/wx/film_viewer.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/wx/film_viewer.h b/src/wx/film_viewer.h
index 51419a54d..55356f188 100644
--- a/src/wx/film_viewer.h
+++ b/src/wx/film_viewer.h
@@ -119,7 +119,7 @@ public:
return _gets;
}
- /* Some accessors that VideoView classes need */
+ /* Some accessors and utility methods that VideoView classes need */
dcp::Size out_size () const {
return _out_size;
}
@@ -138,6 +138,7 @@ public:
boost::shared_ptr<Butler> butler () const {
return _butler;
}
+ int time_until_next_frame () const;
boost::signals2::signal<void (boost::weak_ptr<PlayerVideo>)> ImageChanged;
boost::signals2::signal<void ()> PositionChanged;