summaryrefslogtreecommitdiff
path: root/src/lib/combiner.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/combiner.h')
-rw-r--r--src/lib/combiner.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/lib/combiner.h b/src/lib/combiner.h
new file mode 100644
index 000000000..7d81500a8
--- /dev/null
+++ b/src/lib/combiner.h
@@ -0,0 +1,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;
+};