diff options
| author | Carl Hetherington <cth@carlh.net> | 2019-10-30 21:39:58 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2019-10-30 21:39:58 +0000 |
| commit | da39ed1516f2463f8a9bf4795a94f23d420c9ca3 (patch) | |
| tree | 3abe8686c959c361774be09446953228e06cc70a /src/lib/dcp_decoder.cc | |
| parent | c51e34376ea3abe67d02be88ff3fbe9fe24cb5ef (diff) | |
Fix dying butler on changing CPL from one without to one withv2.14.13
subtitles (#1641).
Diffstat (limited to 'src/lib/dcp_decoder.cc')
| -rw-r--r-- | src/lib/dcp_decoder.cc | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/src/lib/dcp_decoder.cc b/src/lib/dcp_decoder.cc index 8179ef009..340ef5d93 100644 --- a/src/lib/dcp_decoder.cc +++ b/src/lib/dcp_decoder.cc @@ -204,8 +204,14 @@ void DCPDecoder::pass_texts (ContentTime next, dcp::Size size) { list<shared_ptr<TextDecoder> >::const_iterator decoder = text.begin (); + if (decoder == text.end()) { + /* It's possible that there is now a main subtitle but no TextDecoders, for example if + the CPL has just changed but the TextContent's texts have not been recreated yet. + */ + return; + } + if ((*_reel)->main_subtitle()) { - DCPOMATIC_ASSERT (decoder != text.end ()); pass_texts ( next, (*_reel)->main_subtitle()->asset(), @@ -216,8 +222,8 @@ DCPDecoder::pass_texts (ContentTime next, dcp::Size size) ); ++decoder; } + BOOST_FOREACH (shared_ptr<dcp::ReelClosedCaptionAsset> i, (*_reel)->closed_captions()) { - DCPOMATIC_ASSERT (decoder != text.end ()); pass_texts ( next, i->asset(), _dcp_content->reference_text(TEXT_CLOSED_CAPTION), i->entry_point(), *decoder, size ); |
