Remove gain/delay_line/matcher/trimmer.
[dcpomatic.git] / src / lib / ab_transcoder.h
index 090c26fb7e6b0e7b5693ee9266a3e012feef7816..54d7ed0be3f336862f43b879ce99b8299c60c6c7 100644 (file)
 #include <boost/shared_ptr.hpp>
 #include <stdint.h>
 #include "util.h"
-#include "decoder_factory.h"
 
 class Job;
 class Encoder;
 class Image;
 class Log;
 class Film;
-class Matcher;
-class DelayLine;
-class Gain;
 class Combiner;
-class Playlist;
+class Player;
 
 /** @class ABTranscoder
  *  @brief A transcoder which uses one Film for the left half of the screen, and a different one
@@ -54,15 +50,10 @@ public:
        void go ();
 
 private:
-       boost::shared_ptr<Film> _film_a;
-       boost::shared_ptr<Film> _film_b;
-       boost::shared_ptr<Playlist> _playlist_a;
-       boost::shared_ptr<Playlist> _playlist_b;
+       boost::shared_ptr<Player> _player_a;
+       boost::shared_ptr<Player> _player_b;
        boost::shared_ptr<Job> _job;
        boost::shared_ptr<Encoder> _encoder;
        boost::shared_ptr<Combiner> _combiner;
-       boost::shared_ptr<Matcher> _matcher;
-       boost::shared_ptr<DelayLine> _delay_line;
-       boost::shared_ptr<Gain> _gain;
        boost::shared_ptr<Image> _image;
 };