diff options
| author | Carl Hetherington <cth@carlh.net> | 2017-07-26 17:08:00 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2017-07-26 17:08:00 +0100 |
| commit | 0302594838ce422afb3346ecc91a1bdfd26c00de (patch) | |
| tree | d1087c24b51044ad4870c4b9017144d686b60852 /src/lib/encoder.cc | |
| parent | e1093a718c15e1c9ca98abbf514ec54293f0723a (diff) | |
Basic multithread of DCP decryption during export.
Diffstat (limited to 'src/lib/encoder.cc')
| -rw-r--r-- | src/lib/encoder.cc | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/lib/encoder.cc b/src/lib/encoder.cc index 16d992314..535389a94 100644 --- a/src/lib/encoder.cc +++ b/src/lib/encoder.cc @@ -43,7 +43,5 @@ Encoder::Encoder (shared_ptr<const Film> film, weak_ptr<Job> job) , _job (job) , _player (new Player (film, film->playlist ())) { - _player_video_connection = _player->Video.connect (bind (&Encoder::video, this, _1, _2)); - _player_audio_connection = _player->Audio.connect (bind (&Encoder::audio, this, _1, _2)); - _player_subtitle_connection = _player->Subtitle.connect (bind (&Encoder::subtitle, this, _1, _2)); + } |
