From bce90174eb9ac99029e11b44c2267ae245eee600 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Sat, 9 Nov 2024 13:00:05 +0100 Subject: wip --- src/lib/player.cc | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/lib/player.cc') 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 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 pv, DCPTime time) void Player::do_emit_video (shared_ptr 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); }); } -- cgit v1.2.3