Merge master.
[dcpomatic.git] / src / lib / ab_transcoder.h
index 1fef66b8870a3ae72de2d8a645e056d656239350..54d7ed0be3f336862f43b879ce99b8299c60c6c7 100644 (file)
@@ -31,12 +31,8 @@ class Encoder;
 class Image;
 class Log;
 class Film;
-class Matcher;
-class DelayLine;
-class Gain;
 class Combiner;
 class Player;
-class Trimmer;
 
 /** @class ABTranscoder
  *  @brief A transcoder which uses one Film for the left half of the screen, and a different one
@@ -54,16 +50,10 @@ public:
        void go ();
 
 private:
-       boost::shared_ptr<Film> _film_a;
-       boost::shared_ptr<Film> _film_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<Trimmer> _trimmer;
        boost::shared_ptr<Image> _image;
 };