wip: hacks which at least get GPU-decoded image on screen
[dcpomatic.git] / src / lib / player_video_preparer.h
1 #ifndef DCPOMATIC_PLAYER_VIDEO_PREPARER_H
2 #define DCPOMATIC_PLAYER_VIDEO_PREPARER_H
3
4 #include "exception_store.h"
5 #include <boost/shared_ptr.hpp>
6
7 class PlayerVideo;
8
9 class PlayerVideoPreparer : public ExceptionStore
10 {
11 public:
12         virtual ~PlayerVideoPreparer () {}
13         virtual void request (boost::shared_ptr<PlayerVideo> pv) = 0;
14 };
15
16 #endif
17