Use a non-pointer boost::thread and a std::atomic for the stop flag.
[dcpomatic.git] / src / lib / hints.h
index e9a75fb14dabc17664d2451ca8bf5c9d71cae479..db7ee49b60007bf12f0ab5336df9efb409f36ce5 100644 (file)
@@ -49,13 +49,12 @@ private:
        void text (PlayerText text, TextType type, dcpomatic::DCPTimePeriod period);
 
        boost::weak_ptr<const Film> _film;
-       boost::thread* _thread;
+       boost::thread _thread;
 
        bool _long_ccap;
        bool _overlap_ccap;
        bool _too_many_ccap_lines;
        boost::optional<dcpomatic::DCPTimePeriod> _last;
 
-       boost::mutex _mutex;
-       bool _stop;
+       boost::atomic<bool> _stop;
 };