diff options
| author | Carl Hetherington <cth@carlh.net> | 2024-11-09 13:00:05 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2024-11-09 13:00:05 +0100 |
| commit | bce90174eb9ac99029e11b44c2267ae245eee600 (patch) | |
| tree | 167456e7a9850253d238752914cc8bc1e63e40b6 /src/lib/player.cc | |
| parent | 93dd1d53fd0f94a5856efdc97b90c57f5ddc2b8a (diff) | |
wip2882-hang
Diffstat (limited to 'src/lib/player.cc')
| -rw-r--r-- | src/lib/player.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lib/player.cc b/src/lib/player.cc index 75f6b7919..c51e826ca 100644 --- a/src/lib/player.cc +++ b/src/lib/player.cc @@ -1444,6 +1444,7 @@ Player::emit_video (shared_ptr<PlayerVideo> pv, DCPTime time) { auto film = _film.lock(); DCPOMATIC_ASSERT(film); + std::cout << "Player::emit_video " << to_string(time) << "\n"; /* We need a delay to give a little wiggle room to ensure that relevant subtitles arrive at the player before the video that requires them. @@ -1468,6 +1469,7 @@ Player::emit_video (shared_ptr<PlayerVideo> pv, DCPTime time) void Player::do_emit_video (shared_ptr<PlayerVideo> pv, DCPTime time) { + std::cout << "Player::do_emit_video " << to_string(time) << "\n"; if (pv->eyes() == Eyes::BOTH || pv->eyes() == Eyes::RIGHT) { std::for_each(_active_texts.begin(), _active_texts.end(), [time](ActiveText& a) { a.clear_before(time); }); } |
