Give DCPDecoder its own ::position which just returns its internal
[dcpomatic.git] / src / lib / decoder.h
index 26035d221080a5304cbccdde0bcf4490c78550bf..93c212b344c97c2b9277e4be45a6a2d0d8209115 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2012-2016 Carl Hetherington <cth@carlh.net>
+    Copyright (C) 2012-2018 Carl Hetherington <cth@carlh.net>
 
     This file is part of DCP-o-matic.
 
 #define DCPOMATIC_DECODER_H
 
 #include "types.h"
+#include "film.h"
 #include "dcpomatic_time.h"
 #include <boost/utility.hpp>
 
 class Decoded;
 class VideoDecoder;
 class AudioDecoder;
-class SubtitleDecoder;
+class TextDecoder;
 class DecoderPart;
 
 /** @class Decoder.
@@ -41,17 +42,28 @@ class DecoderPart;
 class Decoder : public boost::noncopyable
 {
 public:
+       Decoder (boost::weak_ptr<const Film> film);
        virtual ~Decoder () {}
 
        boost::shared_ptr<VideoDecoder> video;
        boost::shared_ptr<AudioDecoder> audio;
-       boost::shared_ptr<SubtitleDecoder> subtitle;
+       std::list<boost::shared_ptr<TextDecoder> > text;
 
-       /** @return true if there is no more data to come from this decoder */
+       boost::shared_ptr<TextDecoder> only_text () const;
+
+       /** Do some decoding and perhaps emit video, audio or subtitle data.
+        *  @return true if this decoder will emit no more data unless a seek() happens.
+        */
        virtual bool pass () = 0;
-       virtual void seek (ContentTime time, bool accurate) = 0;
+       virtual void seek (ContentTime time, bool accurate);
+
+       virtual ContentTime position () const;
+
+protected:
+       boost::shared_ptr<const Film> film () const;
 
-       ContentTime position () const;
+private:
+       boost::weak_ptr<const Film> _film;
 };
 
 #endif