diff options
Diffstat (limited to 'src/PlayerControl.cxx')
-rw-r--r-- | src/PlayerControl.cxx | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/PlayerControl.cxx b/src/PlayerControl.cxx index 7ba703ea0..bca3cc937 100644 --- a/src/PlayerControl.cxx +++ b/src/PlayerControl.cxx @@ -26,9 +26,11 @@ #include <assert.h> -PlayerControl::PlayerControl(unsigned _buffer_chunks, +PlayerControl::PlayerControl(MultipleOutputs &_outputs, + unsigned _buffer_chunks, unsigned _buffered_before_play) - :buffer_chunks(_buffer_chunks), + :outputs(_outputs), + buffer_chunks(_buffer_chunks), buffered_before_play(_buffered_before_play), command(PlayerCommand::NONE), state(PlayerState::STOP), |