Remove unused file.
[dcpomatic.git] / src / lib / subrip_decoder.h
index 26d5d501006c021ee7892667246b626e817a43f3..f76d04aebaa62243234849f9bc971bf06e3f6b26 100644 (file)
@@ -28,11 +28,17 @@ class SubRipContent;
 class SubRipDecoder : public SubtitleDecoder, public SubRip
 {
 public:
-       SubRipDecoder (boost::shared_ptr<const Film>, boost::shared_ptr<const SubRipContent>);
-       
-       bool pass ();
+       SubRipDecoder (boost::shared_ptr<const SubRipContent>);
+
+protected:
+       void seek (ContentTime time, bool accurate);
+       bool pass (PassReason, bool accurate);
 
 private:
+       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;
 };