From: Carl Hetherington Date: Thu, 11 May 2023 11:47:35 +0000 (+0200) Subject: Fix _text_count for ccaps when there are multiple reels. X-Git-Tag: v2.16.56~18 X-Git-Url: https://git.carlh.net/gitweb/?p=dcpomatic.git;a=commitdiff_plain;h=2f0b79afd2110617fe694745a65b2350a448bd77 Fix _text_count for ccaps when there are multiple reels. Previously we would get a _text_count of 1 for open subs, no matter how many reels there were, but for ccaps the _text_count would increase with the number of tracks _and_ the number of reels. --- diff --git a/src/lib/dcp_examiner.cc b/src/lib/dcp_examiner.cc index 536c9ec1a..6586e6e81 100644 --- a/src/lib/dcp_examiner.cc +++ b/src/lib/dcp_examiner.cc @@ -208,6 +208,18 @@ DCPExaminer::DCPExaminer (shared_ptr content, bool tolerant) } } + _text_count[TextType::CLOSED_CAPTION] = std::max(_text_count[TextType::CLOSED_CAPTION], static_cast(reel->closed_captions().size())); + if (_dcp_text_tracks.size() < reel->closed_captions().size()) { + /* We only want to add 1 DCPTextTrack to _dcp_text_tracks per closed caption. I guess it's possible that different + * reels have different numbers of tracks (though I don't think they should) so make sure that _dcp_text_tracks ends + * up with the maximum. + */ + _dcp_text_tracks.clear(); + for (auto ccap: reel->closed_captions()) { + _dcp_text_tracks.push_back(DCPTextTrack(ccap->annotation_text().get_value_or(""), try_to_parse_language(ccap->language()))); + } + } + for (auto ccap: reel->closed_captions()) { if (!ccap->asset_ref().resolved()) { /* We are missing this asset so we can't continue; examination will be repeated later */ @@ -218,8 +230,6 @@ DCPExaminer::DCPExaminer (shared_ptr content, bool tolerant) LOG_GENERAL("Closed caption %1 of reel %2 found", ccap->id(), reel->id()); - _text_count[TextType::CLOSED_CAPTION]++; - _dcp_text_tracks.push_back(DCPTextTrack(ccap->annotation_text().get_value_or(""), try_to_parse_language(ccap->language()))); } if (reel->main_markers ()) {