diff options
| author | Carl Hetherington <cth@carlh.net> | 2017-08-02 16:00:47 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2017-08-14 21:07:48 +0100 |
| commit | 7a3f4f1b6411f7d15bf00e863fb5e70a5d930dd8 (patch) | |
| tree | d00041a7602ab4f21ce11377b4a1754cb6d43bd1 /src/lib/player.cc | |
| parent | d66bcea066deb3b3cd919a69aab7e2078fb52ca8 (diff) | |
Remove Film dependency from Empty.
Diffstat (limited to 'src/lib/player.cc')
| -rw-r--r-- | src/lib/player.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/player.cc b/src/lib/player.cc index db09d1768..3d191a302 100644 --- a/src/lib/player.cc +++ b/src/lib/player.cc @@ -156,8 +156,8 @@ Player::setup_pieces () } } - _black = Empty (_film, bind(&Content::video, _1)); - _silent = Empty (_film, bind(&Content::audio, _1)); + _black = Empty (_film->content(), _film->length(), bind(&Content::video, _1)); + _silent = Empty (_film->content(), _film->length(), bind(&Content::audio, _1)); _last_video_time = DCPTime (); _last_audio_time = DCPTime (); |
