Get closed caption view data from the butler, rather than the player.
[dcpomatic.git] / src / lib / active_text.h
index 1dab7a867540b38927bea08f29b315a1ca87866e..ff4a1bd2f75cf07cc39bb621193171f7ceb992c7 100644 (file)
@@ -37,7 +37,6 @@ class TextContent;
 class ActiveText : public boost::noncopyable
 {
 public:
-       std::list<PlayerText> get (DCPTimePeriod period) const;
        std::list<PlayerText> get_burnt (DCPTimePeriod period, bool always_burn_captions) const;
        void clear_before (DCPTime time);
        void clear ();
@@ -63,8 +62,6 @@ private:
 
        typedef std::map<boost::weak_ptr<const TextContent>, std::list<Period> > Map;
 
-       void add (DCPTimePeriod period, std::list<PlayerText>& pc, std::list<Period> p) const;
-
        mutable boost::mutex _mutex;
        Map _data;
 };