X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fplayer.cc;h=782e445e8ad3a3487c409cbbed725e193da12131;hb=672b6dd3356d4cbf8703777538d396dbb868b96d;hp=4c9e216e1ecb2e30ccc4ce72e495bc8afc3f39c0;hpb=491176352b80bea000564e6662738722185be721;p=dcpomatic.git diff --git a/src/lib/player.cc b/src/lib/player.cc index 4c9e216e1..782e445e8 100644 --- a/src/lib/player.cc +++ b/src/lib/player.cc @@ -52,6 +52,7 @@ #include #include #include +#include #include #include #include @@ -82,14 +83,18 @@ int const PlayerProperty::PLAYLIST = 701; int const PlayerProperty::FILM_CONTAINER = 702; int const PlayerProperty::FILM_VIDEO_FRAME_RATE = 703; int const PlayerProperty::DCP_DECODE_REDUCTION = 704; +int const PlayerProperty::IGNORE = 705; +int const PlayerProperty::FAST = 706; +int const PlayerProperty::PLAY_REFERENCED = 707; Player::Player (shared_ptr film, shared_ptr playlist) : _film (film) , _playlist (playlist) , _have_valid_pieces (false) , _ignore_video (false) - , _ignore_subtitle (false) - , _always_burn_subtitles (false) + , _ignore_audio (false) + , _ignore_text (false) + , _always_burn_open_subtitles (false) , _fast (false) , _play_referenced (false) , _audio_merger (_film->audio_frame_rate()) @@ -125,6 +130,11 @@ Player::setup_pieces () continue; } + if (_ignore_video && _ignore_audio && i->text.empty()) { + /* We're only interested in text and this content has none */ + continue; + } + shared_ptr decoder = decoder_factory (i, _film->log(), _fast); FrameRateChange frc (i->active_video_frame_rate(), _film->video_frame_rate()); @@ -137,8 +147,14 @@ Player::setup_pieces () decoder->video->set_ignore (true); } - if (decoder->subtitle && _ignore_subtitle) { - decoder->subtitle->set_ignore (true); + if (decoder->audio && _ignore_audio) { + decoder->audio->set_ignore (true); + } + + if (_ignore_text) { + BOOST_FOREACH (shared_ptr i, decoder->text) { + i->set_ignore (true); + } } shared_ptr dcp = dynamic_pointer_cast (decoder); @@ -165,10 +181,20 @@ Player::setup_pieces () decoder->audio->Data.connect (bind (&Player::audio, this, weak_ptr (piece), _1, _2)); } - if (decoder->subtitle) { - decoder->subtitle->BitmapStart.connect (bind (&Player::bitmap_text_start, this, weak_ptr (piece), _1)); - decoder->subtitle->PlainStart.connect (bind (&Player::plain_text_start, this, weak_ptr (piece), _1)); - decoder->subtitle->Stop.connect (bind (&Player::subtitle_stop, this, weak_ptr (piece), _1)); + list >::const_iterator j = decoder->text.begin(); + + while (j != decoder->text.end()) { + (*j)->BitmapStart.connect ( + bind(&Player::bitmap_text_start, this, weak_ptr(piece), weak_ptr((*j)->content()), _1) + ); + (*j)->PlainStart.connect ( + bind(&Player::plain_text_start, this, weak_ptr(piece), weak_ptr((*j)->content()), _1) + ); + (*j)->Stop.connect ( + bind(&Player::subtitle_stop, this, weak_ptr(piece), weak_ptr((*j)->content()), _1, _2) + ); + + ++j; } } @@ -216,7 +242,11 @@ Player::playlist_content_changed (weak_ptr w, int property, bool freque property == FFmpegContentProperty::FILTERS ) { - _have_valid_pieces = false; + { + boost::mutex::scoped_lock lm (_mutex); + _have_valid_pieces = false; + } + Changed (property, frequent); } else if ( @@ -231,6 +261,7 @@ Player::playlist_content_changed (weak_ptr w, int property, bool freque property == TextContentProperty::Y_OFFSET || property == TextContentProperty::X_SCALE || property == TextContentProperty::FONTS || + property == TextContentProperty::TYPE || property == VideoContentProperty::CROP || property == VideoContentProperty::SCALE || property == VideoContentProperty::FADE_IN || @@ -244,14 +275,18 @@ Player::playlist_content_changed (weak_ptr w, int property, bool freque void Player::set_video_container_size (dcp::Size s) { - if (s == _video_container_size) { - return; - } + { + boost::mutex::scoped_lock lm (_mutex); + + if (s == _video_container_size) { + return; + } - _video_container_size = s; + _video_container_size = s; - _black_image.reset (new Image (AV_PIX_FMT_RGB24, _video_container_size, true)); - _black_image->make_black (); + _black_image.reset (new Image (AV_PIX_FMT_RGB24, _video_container_size, true)); + _black_image->make_black (); + } Changed (PlayerProperty::VIDEO_CONTAINER_SIZE, false); } @@ -259,7 +294,11 @@ Player::set_video_container_size (dcp::Size s) void Player::playlist_changed () { - _have_valid_pieces = false; + { + boost::mutex::scoped_lock lm (_mutex); + _have_valid_pieces = false; + } + Changed (PlayerProperty::PLAYLIST, false); } @@ -277,13 +316,18 @@ Player::film_changed (Film::Property p) /* Pieces contain a FrameRateChange which contains the DCP frame rate, so we need new pieces here. */ - _have_valid_pieces = false; + { + boost::mutex::scoped_lock lm (_mutex); + _have_valid_pieces = false; + } Changed (PlayerProperty::FILM_VIDEO_FRAME_RATE, false); } else if (p == Film::AUDIO_PROCESSOR) { if (_film->audio_processor ()) { + boost::mutex::scoped_lock lm (_mutex); _audio_processor = _film->audio_processor()->clone (_film->audio_frame_rate ()); } } else if (p == Film::AUDIO_CHANNELS) { + boost::mutex::scoped_lock lm (_mutex); _audio_merger.clear (); } } @@ -400,17 +444,19 @@ Player::content_time_to_dcp (shared_ptr piece, ContentTime t) const list > Player::get_subtitle_fonts () { + /* Does not require a lock on _mutex as it's only called from DCPEncoder */ + if (!_have_valid_pieces) { setup_pieces (); } list > fonts; - BOOST_FOREACH (shared_ptr& p, _pieces) { - if (p->content->subtitle) { + BOOST_FOREACH (shared_ptr i, _pieces) { + BOOST_FOREACH (shared_ptr j, i->content->text) { /* XXX: things may go wrong if there are duplicate font IDs with different font files. */ - list > f = p->content->subtitle->fonts (); + list > f = j->fonts (); copy (f.begin(), f.end(), back_inserter (fonts)); } } @@ -422,43 +468,77 @@ Player::get_subtitle_fonts () void Player::set_ignore_video () { - _ignore_video = true; + { + boost::mutex::scoped_lock lm (_mutex); + _ignore_video = true; + _have_valid_pieces = false; + } + + Changed (PlayerProperty::IGNORE, false); } void -Player::set_ignore_subtitle () +Player::set_ignore_audio () { - _ignore_subtitle = true; + { + boost::mutex::scoped_lock lm (_mutex); + _ignore_audio = true; + _have_valid_pieces = false; + } + + Changed (PlayerProperty::IGNORE, false); } -/** Set whether or not this player should always burn text subtitles into the image, - * regardless of the content settings. - * @param burn true to always burn subtitles, false to obey content settings. - */ void -Player::set_always_burn_subtitles (bool burn) +Player::set_ignore_text () { - _always_burn_subtitles = burn; + { + boost::mutex::scoped_lock lm (_mutex); + _ignore_text = true; + _have_valid_pieces = false; + } + + Changed (PlayerProperty::IGNORE, false); +} + +/** Set the player to always burn open texts into the image regardless of the content settings */ +void +Player::set_always_burn_open_subtitles () +{ + boost::mutex::scoped_lock lm (_mutex); + _always_burn_open_subtitles = true; } /** Sets up the player to be faster, possibly at the expense of quality */ void Player::set_fast () { - _fast = true; - _have_valid_pieces = false; + { + boost::mutex::scoped_lock lm (_mutex); + _fast = true; + _have_valid_pieces = false; + } + + Changed (PlayerProperty::FAST, false); } void Player::set_play_referenced () { - _play_referenced = true; - _have_valid_pieces = false; + { + boost::mutex::scoped_lock lm (_mutex); + _play_referenced = true; + _have_valid_pieces = false; + } + + Changed (PlayerProperty::PLAY_REFERENCED, false); } list Player::get_reel_assets () { + /* Does not require a lock on _mutex as it's only called from DCPEncoder */ + list a; BOOST_FOREACH (shared_ptr i, _playlist->content ()) { @@ -504,7 +584,7 @@ Player::get_reel_assets () ); } - if (j->reference_subtitle ()) { + if (j->reference_text (TEXT_OPEN_SUBTITLE)) { shared_ptr ra = k->main_subtitle (); DCPOMATIC_ASSERT (ra); ra->set_entry_point (ra->entry_point() + trim_start); @@ -514,6 +594,16 @@ Player::get_reel_assets () ); } + if (j->reference_text (TEXT_CLOSED_CAPTION)) { + shared_ptr ra = k->closed_caption (); + DCPOMATIC_ASSERT (ra); + ra->set_entry_point (ra->entry_point() + trim_start); + ra->set_duration (ra->duration() - trim_start - trim_end); + a.push_back ( + ReferencedReelAsset (ra, DCPTimePeriod (from, from + DCPTime::from_frames (ra->duration(), ffr))) + ); + } + /* Assume that main picture duration is the length of the reel */ offset += k->main_picture()->duration (); } @@ -525,8 +615,16 @@ Player::get_reel_assets () bool Player::pass () { + boost::mutex::scoped_lock lm (_mutex); + if (!_have_valid_pieces) { - setup_pieces (); + /* This should only happen when we are under the control of the butler. In this case, _have_valid_pieces + will be false if something in the Player has changed and we are waiting for the butler to notice + and do a seek back to the place we were at before. During this time we don't want pass() to do anything, + as just after setup_pieces the new decoders will be back to time 0 until the seek has gone through. Just do nothing + here and assume that the seek will be forthcoming. + */ + return false; } if (_playlist->length() == DCPTime()) { @@ -550,10 +648,10 @@ Player::pass () i->done = true; } else { - /* Given two choices at the same time, pick the one with a subtitle so we see it before + /* Given two choices at the same time, pick the one with texts so we see it before the video. */ - if (!earliest_time || t < *earliest_time || (t == *earliest_time && i->decoder->subtitle)) { + if (!earliest_time || t < *earliest_time || (t == *earliest_time && !i->decoder->text.empty())) { earliest_time = t; earliest_content = i; } @@ -656,31 +754,34 @@ Player::pass () return done; } +/** @return Open subtitles for the frame at the given time, converted to images */ optional -Player::subtitles_for_frame (DCPTime time) const +Player::open_subtitles_for_frame (DCPTime time) const { - list subtitles; - + list captions; int const vfr = _film->video_frame_rate(); - BOOST_FOREACH (PlayerSubtitles i, _active_subtitles.get_burnt (DCPTimePeriod(time, time + DCPTime::from_frames(1, vfr)), _always_burn_subtitles)) { + BOOST_FOREACH ( + PlayerText j, + _active_texts[TEXT_OPEN_SUBTITLE].get_burnt(DCPTimePeriod(time, time + DCPTime::from_frames(1, vfr)), _always_burn_open_subtitles) + ) { - /* Image subtitles */ - list c = transform_bitmap_texts (i.image); - copy (c.begin(), c.end(), back_inserter (subtitles)); + /* Bitmap subtitles */ + list c = transform_bitmap_texts (j.bitmap); + copy (c.begin(), c.end(), back_inserter (captions)); - /* Text subtitles (rendered to an image) */ - if (!i.text.empty ()) { - list s = render_text (i.text, i.fonts, _video_container_size, time, vfr); - copy (s.begin(), s.end(), back_inserter (subtitles)); + /* String subtitles (rendered to an image) */ + if (!j.string.empty ()) { + list s = render_text (j.string, j.fonts, _video_container_size, time, vfr); + copy (s.begin(), s.end(), back_inserter (captions)); } } - if (subtitles.empty ()) { + if (captions.empty ()) { return optional (); } - return merge (subtitles); + return merge (captions); } void @@ -716,12 +817,17 @@ Player::video (weak_ptr wp, ContentVideo video) DCPTime fill_from = max (*_last_video_time, piece->content->position()); LastVideoMap::const_iterator last = _last_video.find (wp); if (_film->three_d()) { + Eyes fill_to_eyes = video.eyes; + if (fill_to == piece->content->end()) { + /* Don't fill after the end of the content */ + fill_to_eyes = EYES_LEFT; + } DCPTime j = fill_from; Eyes eyes = _last_video_eyes.get_value_or(EYES_LEFT); if (eyes == EYES_BOTH) { eyes = EYES_LEFT; } - while (j < fill_to || eyes != video.eyes) { + while (j < fill_to || eyes != fill_to_eyes) { if (last != _last_video.end()) { shared_ptr copy = last->second->shallow_copy(); copy->set_eyes (eyes); @@ -839,41 +945,43 @@ Player::audio (weak_ptr wp, AudioStreamPtr stream, ContentAudio content_a } void -Player::bitmap_text_start (weak_ptr wp, ContentBitmapText subtitle) +Player::bitmap_text_start (weak_ptr wp, weak_ptr wc, ContentBitmapText subtitle) { shared_ptr piece = wp.lock (); - if (!piece) { + shared_ptr text = wc.lock (); + if (!piece || !text) { return; } /* Apply content's subtitle offsets */ - subtitle.sub.rectangle.x += piece->content->subtitle->x_offset (); - subtitle.sub.rectangle.y += piece->content->subtitle->y_offset (); + subtitle.sub.rectangle.x += text->x_offset (); + subtitle.sub.rectangle.y += text->y_offset (); /* Apply a corrective translation to keep the subtitle centred after the scale that is coming up */ - subtitle.sub.rectangle.x -= subtitle.sub.rectangle.width * ((piece->content->subtitle->x_scale() - 1) / 2); - subtitle.sub.rectangle.y -= subtitle.sub.rectangle.height * ((piece->content->subtitle->y_scale() - 1) / 2); + subtitle.sub.rectangle.x -= subtitle.sub.rectangle.width * ((text->x_scale() - 1) / 2); + subtitle.sub.rectangle.y -= subtitle.sub.rectangle.height * ((text->y_scale() - 1) / 2); /* Apply content's subtitle scale */ - subtitle.sub.rectangle.width *= piece->content->subtitle->x_scale (); - subtitle.sub.rectangle.height *= piece->content->subtitle->y_scale (); + subtitle.sub.rectangle.width *= text->x_scale (); + subtitle.sub.rectangle.height *= text->y_scale (); - PlayerSubtitles ps; - ps.image.push_back (subtitle.sub); + PlayerText ps; + ps.bitmap.push_back (subtitle.sub); DCPTime from (content_time_to_dcp (piece, subtitle.from())); - _active_subtitles.add_from (wp, ps, from); + _active_texts[subtitle.type()].add_from (wc, ps, from); } void -Player::plain_text_start (weak_ptr wp, ContentPlainText subtitle) +Player::plain_text_start (weak_ptr wp, weak_ptr wc, ContentStringText subtitle) { shared_ptr piece = wp.lock (); - if (!piece) { + shared_ptr text = wc.lock (); + if (!piece || !text) { return; } - PlayerSubtitles ps; + PlayerText ps; DCPTime const from (content_time_to_dcp (piece, subtitle.from())); if (from > piece->content->end()) { @@ -881,10 +989,10 @@ Player::plain_text_start (weak_ptr wp, ContentPlainText subtitle) } BOOST_FOREACH (dcp::SubtitleString s, subtitle.subs) { - s.set_h_position (s.h_position() + piece->content->subtitle->x_offset ()); - s.set_v_position (s.v_position() + piece->content->subtitle->y_offset ()); - float const xs = piece->content->subtitle->x_scale(); - float const ys = piece->content->subtitle->y_scale(); + s.set_h_position (s.h_position() + text->x_offset ()); + s.set_v_position (s.v_position() + text->y_offset ()); + float const xs = text->x_scale(); + float const ys = text->y_scale(); float size = s.size(); /* Adjust size to express the common part of the scaling; @@ -901,22 +1009,23 @@ Player::plain_text_start (weak_ptr wp, ContentPlainText subtitle) } s.set_in (dcp::Time(from.seconds(), 1000)); - ps.text.push_back (SubtitleString (s, piece->content->subtitle->outline_width())); - ps.add_fonts (piece->content->subtitle->fonts ()); + ps.string.push_back (StringText (s, text->outline_width())); + ps.add_fonts (text->fonts ()); } - _active_subtitles.add_from (wp, ps, from); + _active_texts[subtitle.type()].add_from (wc, ps, from); } void -Player::subtitle_stop (weak_ptr wp, ContentTime to) +Player::subtitle_stop (weak_ptr wp, weak_ptr wc, ContentTime to, TextType type) { - if (!_active_subtitles.have (wp)) { + if (!_active_texts[type].have (wc)) { return; } shared_ptr piece = wp.lock (); - if (!piece) { + shared_ptr text = wc.lock (); + if (!piece || !text) { return; } @@ -926,16 +1035,19 @@ Player::subtitle_stop (weak_ptr wp, ContentTime to) return; } - pair from = _active_subtitles.add_to (wp, dcp_to); + pair from = _active_texts[type].add_to (wc, dcp_to); - if (piece->content->subtitle->use() && !_always_burn_subtitles && !piece->content->subtitle->burn()) { - Subtitle (from.first, DCPTimePeriod (from.second, dcp_to)); + bool const always = (type == TEXT_OPEN_SUBTITLE && _always_burn_open_subtitles); + if (text->use() && !always && !text->burn()) { + Text (from.first, type, DCPTimePeriod (from.second, dcp_to)); } } void Player::seek (DCPTime time, bool accurate) { + boost::mutex::scoped_lock lm (_mutex); + if (!_have_valid_pieces) { setup_pieces (); } @@ -951,7 +1063,9 @@ Player::seek (DCPTime time, bool accurate) } _audio_merger.clear (); - _active_subtitles.clear (); + for (int i = 0; i < TEXT_COUNT; ++i) { + _active_texts[i].clear (); + } BOOST_FOREACH (shared_ptr i, _pieces) { if (time < i->content->position()) { @@ -1010,12 +1124,14 @@ void Player::do_emit_video (shared_ptr pv, DCPTime time) { if (pv->eyes() == EYES_BOTH || pv->eyes() == EYES_RIGHT) { - _active_subtitles.clear_before (time); + for (int i = 0; i < TEXT_COUNT; ++i) { + _active_texts[i].clear_before (time); + } } - optional subtitles = subtitles_for_frame (time); + optional subtitles = open_subtitles_for_frame (time); if (subtitles) { - pv->set_subtitle (subtitles.get ()); + pv->set_text (subtitles.get ()); } Video (pv, time); @@ -1080,18 +1196,25 @@ Player::discard_audio (shared_ptr audio, DCPTime time, DCPTi void Player::set_dcp_decode_reduction (optional reduction) { - if (reduction == _dcp_decode_reduction) { - return; + { + boost::mutex::scoped_lock lm (_mutex); + + if (reduction == _dcp_decode_reduction) { + return; + } + + _dcp_decode_reduction = reduction; + _have_valid_pieces = false; } - _dcp_decode_reduction = reduction; - _have_valid_pieces = false; Changed (PlayerProperty::DCP_DECODE_REDUCTION, false); } DCPTime Player::content_time_to_dcp (shared_ptr content, ContentTime t) { + boost::mutex::scoped_lock lm (_mutex); + if (_have_valid_pieces) { setup_pieces (); }