diff options
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | src/wx/film_viewer.cc | 10 |
2 files changed, 13 insertions, 1 deletions
@@ -1,3 +1,7 @@ +2015-06-18 Carl Hetherington <cth@carlh.net> + + * Stop playback when we reach the end of the film. + 2015-06-16 c.hetherington <cth@carlh.net> * Prevent selection of fewer DCP channels than diff --git a/src/wx/film_viewer.cc b/src/wx/film_viewer.cc index 1632a45be..07c64886e 100644 --- a/src/wx/film_viewer.cc +++ b/src/wx/film_viewer.cc @@ -221,7 +221,15 @@ FilmViewer::get (DCPTime p, bool accurate) void FilmViewer::timer () { - get (_position + DCPTime::from_frames (1, _film->video_frame_rate ()), true); + DCPTime const frame = DCPTime::from_frames (1, _film->video_frame_rate ()); + + if ((_position + frame) >= _film->length ()) { + _play_button->SetValue (false); + check_play_state (); + } else { + get (_position + frame, true); + } + update_position_label (); update_position_slider (); } |
