summaryrefslogtreecommitdiff
path: root/src/lib/combiner.h
blob: 7d81500a8e35faefad327ab12f4150a6a0d5ff01 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "processor.h"

class Combiner : public VideoProcessor
{
public:
	Combiner (Log* log);

	void process_video (boost::shared_ptr<Image> i, boost::shared_ptr<Subtitle> s);
	void process_video_b (boost::shared_ptr<Image> i, boost::shared_ptr<Subtitle> s);

private:
	boost::shared_ptr<Image> _image;
};