Remove approximate size stuff where playback viewer would round
[dcpomatic.git] / src / lib / player.h
index 5d2273a44018c04e50605fd71179f31176240f52..d8b13ee7bca6e82e444934285bf02b8e87ab5334 100644 (file)
@@ -89,9 +89,10 @@ public:
        std::list<boost::shared_ptr<PlayerVideo> > get_video (DCPTime time, bool accurate);
        boost::shared_ptr<AudioBuffers> get_audio (DCPTime time, DCPTime length, bool accurate);
        PlayerSubtitles get_subtitles (DCPTime time, DCPTime length, bool starting);
+       std::list<boost::shared_ptr<Font> > get_subtitle_fonts ();
 
        void set_video_container_size (dcp::Size);
-       void set_approximate_size ();
+       void set_ignore_video ();
 
        PlayerStatistics const & statistics () const;
        
@@ -155,8 +156,8 @@ private:
        dcp::Size _video_container_size;
        boost::shared_ptr<Image> _black_image;
 
-       bool _approximate_size;
-       bool _burn_subtitles;
+       /** true if the player should ignore all video; i.e. never produce any */
+       bool _ignore_video;
 
        PlayerStatistics _statistics;