A little thread safety.
[dcpomatic.git] / src / wx / video_view.h
index d6e76ada703ed240dbf447e00e9c53869cb704e5..d9ef2a65f4859afd8a8bea01dd8ef9abd0c8642b 100644 (file)
@@ -24,6 +24,7 @@
 #include "lib/dcpomatic_time.h"
 #include <boost/shared_ptr.hpp>
 #include <boost/signals2.hpp>
+#include <boost/thread.hpp>
 
 class Image;
 class wxWindow;
@@ -48,6 +49,8 @@ public:
 
        /* XXX_b: make pure */
        virtual void start () {}
+       /* XXX_b: make pure */
+       virtual void stop () {}
 
        void clear ();
 
@@ -59,23 +62,42 @@ public:
        virtual void display_player_video () {}
 
        dcpomatic::DCPTime position () const {
+               boost::mutex::scoped_lock lm (_mutex);
                return _player_video.second;
        }
 
+       void set_film (boost::shared_ptr<const Film> film) {
+               boost::mutex::scoped_lock lm (_mutex);
+               _film = film;
+       }
+
 protected:
        /* XXX_b: to remove */
        friend class FilmViewer;
 
        bool get_next_frame (bool non_blocking);
+       int time_until_next_frame () const;
+       dcpomatic::DCPTime one_video_frame () const;
+
+       boost::shared_ptr<const Film> film () const {
+               boost::mutex::scoped_lock lm (_mutex);
+               return _film;
+       }
 
        FilmViewer* _viewer;
        std::pair<boost::shared_ptr<PlayerVideo>, dcpomatic::DCPTime> _player_video;
 
+       /** Mutex protecting all the state in VideoView */
+       mutable boost::mutex _mutex;
+
 #ifdef DCPOMATIC_VARIANT_SWAROOP
        bool _in_watermark;
        int _watermark_x;
        int _watermark_y;
 #endif
+
+private:
+       boost::shared_ptr<const Film> _film;
 };
 
 #endif