Untested rework of AB transcoder.
[dcpomatic.git] / src / lib / combiner.h
1 #include "processor.h"
2
3 class Combiner : public VideoProcessor
4 {
5 public:
6         Combiner (Log* log);
7
8         void process_video (boost::shared_ptr<Image> i, boost::shared_ptr<Subtitle> s);
9         void process_video_b (boost::shared_ptr<Image> i, boost::shared_ptr<Subtitle> s);
10
11 private:
12         boost::shared_ptr<Image> _image;
13 };