diff options
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); }); } |
