Bump libdcp for better verification, and make API adjustments.
[dcpomatic.git] / src / lib / dcp_subtitle_decoder.h
index 31b8e6a8e557656e040ab4746a22855074b54869..a9540c3cf05e6896901683d1eaf5c9a20f770889 100644 (file)
@@ -35,10 +35,10 @@ public:
        std::vector<dcpomatic::FontData> fonts () const;
 
 private:
-       dcpomatic::ContentTimePeriod content_time_period (std::shared_ptr<dcp::Subtitle> s) const;
+       dcpomatic::ContentTimePeriod content_time_period (std::shared_ptr<const dcp::Subtitle> s) const;
 
-       std::list<std::shared_ptr<dcp::Subtitle> > _subtitles;
-       std::list<std::shared_ptr<dcp::Subtitle> >::const_iterator _next;
+       std::vector<std::shared_ptr<const dcp::Subtitle>> _subtitles;
+       std::vector<std::shared_ptr<const dcp::Subtitle>>::const_iterator _next;
 
        std::vector<dcpomatic::FontData> _fonts;
 };