Rename ScreenKDM -> KDMWithMetadata
[dcpomatic.git] / src / lib / encoder.cc
index 3af80efa51edeab31dd5b0b225e1049297978948..0a29989b175045fcc6eaeab46266ee55fb358ad7 100644 (file)
@@ -41,9 +41,7 @@ using boost::shared_ptr;
 Encoder::Encoder (shared_ptr<const Film> film, weak_ptr<Job> job)
        : _film (film)
        , _job (job)
-       , _player (new Player (film, film->playlist ()))
+       , _player (new Player(film))
 {
-       _player->Video.connect (bind (&Encoder::video, this, _1, _2));
-       _player->Audio.connect (bind (&Encoder::audio, this, _1, _2));
-       _player->Subtitle.connect (bind (&Encoder::subtitle, this, _1, _2));
+
 }