diff options
author | Max Kellermann <max@duempel.org> | 2015-06-21 15:38:48 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2015-06-21 15:38:48 +0200 |
commit | 06301e279c047f5f6c27393edb88c3207c94a992 (patch) | |
tree | a829dc64240cd55614bd9425408d88d4c6cb0399 /src | |
parent | 6d6f2746485d8234110858e5e3621b0ce03c6c8a (diff) |
PlayerThread: start the decoder on PlayerCommand::QUEUE
Fixes missing SongBorder() call, which causes "single" mode breakage.
Diffstat (limited to 'src')
-rw-r--r-- | src/PlayerThread.cxx | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/PlayerThread.cxx b/src/PlayerThread.cxx index c5308e612..eeebcdb96 100644 --- a/src/PlayerThread.cxx +++ b/src/PlayerThread.cxx @@ -612,6 +612,12 @@ Player::ProcessCommand() queued = true; pc.CommandFinished(); + + pc.Unlock(); + if (dc.LockIsIdle()) + StartDecoder(*new MusicPipe()); + pc.Lock(); + break; case PlayerCommand::PAUSE: |