Remove unused file.
[dcpomatic.git] / src / lib / subrip_decoder.h
index d6c6e6bc2fa7fd37df7c4769c572fedaa7a7823c..f76d04aebaa62243234849f9bc971bf06e3f6b26 100644 (file)
@@ -32,11 +32,13 @@ public:
 
 protected:
        void seek (ContentTime time, bool accurate);
-       bool pass ();
+       bool pass (PassReason, bool accurate);
 
 private:
-       bool has_subtitle_during (ContentTimePeriod) const;
-       
+       std::list<ContentTimePeriod> image_subtitles_during (ContentTimePeriod, bool starting) const;
+       std::list<ContentTimePeriod> text_subtitles_during (ContentTimePeriod, bool starting) const;
+       ContentTimePeriod content_time_period (sub::Subtitle s) const;
+
        size_t _next;
 };