Initial work on removing storage of subtitle times.
[dcpomatic.git] / src / wx / subtitle_view.h
index f88bb490f5e1b928cbf9b7d8c766e9d45f805779..43a62270525e4ac3a062c3c8afd985a2f5b908e0 100644 (file)
@@ -31,9 +31,11 @@ public:
        SubtitleView (wxWindow *, boost::shared_ptr<Film>, boost::shared_ptr<Decoder>, DCPTime position);
 
 private:
-       void data (ContentTextSubtitle cts);
+       void data_start (ContentTextSubtitle cts);
+       void data_stop (ContentTime time);
 
        wxListCtrl* _list;
        int _subs;
        boost::optional<FrameRateChange> _frc;
+       boost::optional<int> _last_count;
 };