diff options
| author | Carl Hetherington <cth@carlh.net> | 2025-06-11 02:14:40 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2025-06-14 22:57:00 +0200 |
| commit | a1a14f3a4186dce4e1c9bac97cf3bb43e370e1b9 (patch) | |
| tree | 5f13c260b5e93d91ad78b8d48d010d4cb058ac19 | |
| parent | 7466600420f72af03767992911af299d52a20238 (diff) | |
Fix hang on changing content video frame rate during playback (#3052).
| -rw-r--r-- | src/lib/player.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/player.cc b/src/lib/player.cc index 516a66ee2..8bb398038 100644 --- a/src/lib/player.cc +++ b/src/lib/player.cc @@ -141,11 +141,11 @@ Player::connect() DCPOMATIC_ASSERT(film); _film_changed_connection = film->Change.connect(bind(&Player::film_change, this, _1, _2)); - /* The butler must hear about this first, so since we are proxying this through to the butler we must + /* The butler must hear about these first, so since we are proxying them through to the butler we must be first. */ _playlist_change_connection = playlist()->Change.connect(bind(&Player::playlist_change, this, _1), boost::signals2::at_front); - _playlist_content_change_connection = playlist()->ContentChange.connect(bind(&Player::playlist_content_change, this, _1, _3, _4)); + _playlist_content_change_connection = playlist()->ContentChange.connect(bind(&Player::playlist_content_change, this, _1, _3, _4), boost::signals2::at_front); } |
