Remove GL context accessor and hence lock.
[dcpomatic.git] / src / wx / simple_video_view.h
index 8b3ec9f0bda91233857c978b25116c99baf46d20..e8bb932e44ad3933c769c770ecaea3413b60436f 100644 (file)
@@ -36,10 +36,16 @@ public:
                return _panel;
        }
 
+       void update ();
+       void start ();
+       bool display_next_frame (bool non_blocking);
+
 private:
        void paint ();
+       void timer ();
+       void display_player_video ();
 
-       FilmViewer* _viewer;
        wxPanel* _panel;
        boost::shared_ptr<const Image> _image;
+       wxTimer _timer;
 };