Another macOS std::list boost::thread SNAFU.
[dcpomatic.git] / src / lib / dcp_subtitle_decoder.cc
index 3a182c0c7a20c4ea953c6ea02ad601c051029d60..f34c495c0eb03eaf3621ae1b533e70b958b6bc6e 100644 (file)
@@ -28,11 +28,13 @@ using std::cout;
 using boost::shared_ptr;
 using boost::dynamic_pointer_cast;
 using boost::bind;
+using namespace dcpomatic;
 
 DCPSubtitleDecoder::DCPSubtitleDecoder (shared_ptr<const Film> film, shared_ptr<const DCPSubtitleContent> content)
        : Decoder (film)
 {
        shared_ptr<dcp::SubtitleAsset> c (load (content->path (0)));
+       c->fix_empty_font_ids ();
        _subtitles = c->subtitles ();
        _next = _subtitles.begin ();