swaroop: support creation of H264 with 24-bit PCM.
[dcpomatic.git] / src / lib / hints.h
index b8bc806c010f8cb103d84d25931f0f06218ba40d..00c2486e7e430e094ab1fcbdfc5def77cb70c29f 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2016 Carl Hetherington <cth@carlh.net>
+    Copyright (C) 2016-2019 Carl Hetherington <cth@carlh.net>
 
     This file is part of DCP-o-matic.
 
@@ -45,9 +45,8 @@ public:
 
 private:
        void thread ();
-       void stop_thread ();
        void hint (std::string h);
-       void text (PlayerText text, TextType type, DCPTimePeriod period);
+       void text (PlayerText text, TextType type, dcpomatic::DCPTimePeriod period);
 
        boost::weak_ptr<const Film> _film;
        boost::thread* _thread;
@@ -55,5 +54,8 @@ private:
        bool _long_ccap;
        bool _overlap_ccap;
        bool _too_many_ccap_lines;
-       boost::optional<DCPTimePeriod> _last;
+       boost::optional<dcpomatic::DCPTimePeriod> _last;
+
+       boost::mutex _mutex;
+       bool _stop;
 };