diff options
| author | Carl Hetherington <cth@carlh.net> | 2018-08-05 01:15:45 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2018-08-05 01:15:45 +0100 |
| commit | 3a7b6acdb993864f319a6ceb3bc4c3fb7d4aaefd (patch) | |
| tree | 6f516185b6155b13cddfcd6be8fdf9e5bc52f86a /src/lib/butler.cc | |
| parent | 7c45c2c7b0904446bbc8cd175fe1deab54c61c15 (diff) | |
Get closed caption view data from the butler, rather than the player.
You can't introduce the butler (so that the player is ahead of time)
and then ask the player what should be in the frame that is being
displayed "now"; the player will already have moved on.
Diffstat (limited to 'src/lib/butler.cc')
| -rw-r--r-- | src/lib/butler.cc | 29 |
1 files changed, 25 insertions, 4 deletions
diff --git a/src/lib/butler.cc b/src/lib/butler.cc index 6a1cc68fc..45cd5a9db 100644 --- a/src/lib/butler.cc +++ b/src/lib/butler.cc @@ -63,6 +63,7 @@ Butler::Butler (shared_ptr<Player> player, shared_ptr<Log> log, AudioMapping aud { _player_video_connection = _player->Video.connect (bind (&Butler::video, this, _1, _2)); _player_audio_connection = _player->Audio.connect (bind (&Butler::audio, this, _1, _2)); + _player_text_connection = _player->Text.connect (bind (&Butler::text, this, _1, _2, _3)); _player_changed_connection = _player->Changed.connect (bind (&Butler::player_changed, this)); _thread = new boost::thread (bind (&Butler::thread, this)); #ifdef DCPOMATIC_LINUX @@ -203,6 +204,13 @@ Butler::get_video () return r; } +optional<pair<PlayerText, DCPTimePeriod> > +Butler::get_closed_caption () +{ + boost::mutex::scoped_lock lm (_mutex); + return _closed_caption.get (); +} + void Butler::seek (DCPTime position, bool accurate) { @@ -218,9 +226,10 @@ Butler::seek_unlocked (DCPTime position, bool accurate) } { - boost::mutex::scoped_lock lm (_video_audio_mutex); + boost::mutex::scoped_lock lm (_buffers_mutex); _video.clear (); _audio.clear (); + _closed_caption.clear (); } _finished = false; @@ -253,7 +262,7 @@ Butler::video (shared_ptr<PlayerVideo> video, DCPTime time) _prepare_service.post (bind (&Butler::prepare, this, weak_ptr<PlayerVideo>(video))); - boost::mutex::scoped_lock lm2 (_video_audio_mutex); + boost::mutex::scoped_lock lm2 (_buffers_mutex); _video.put (video, time); } @@ -268,7 +277,7 @@ Butler::audio (shared_ptr<AudioBuffers> audio, DCPTime time) } } - boost::mutex::scoped_lock lm2 (_video_audio_mutex); + boost::mutex::scoped_lock lm2 (_buffers_mutex); _audio.put (remap (audio, _audio_channels, _audio_mapping), time); } @@ -318,9 +327,10 @@ Butler::player_changed () } { - boost::mutex::scoped_lock lm (_video_audio_mutex); + boost::mutex::scoped_lock lm (_buffers_mutex); _video.clear (); _audio.clear (); + _closed_caption.clear (); } _finished = false; @@ -329,3 +339,14 @@ Butler::player_changed () seek_unlocked (seek_to, true); _awaiting = seek_to; } + +void +Butler::text (PlayerText pt, TextType type, DCPTimePeriod period) +{ + if (type != TEXT_CLOSED_CAPTION) { + return; + } + + boost::mutex::scoped_lock lm2 (_buffers_mutex); + _closed_caption.put (make_pair(pt, period)); +} |
