diff options
author | Max Kellermann <max@duempel.org> | 2013-04-08 21:22:06 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-04-08 21:31:03 +0200 |
commit | 436335e9a3251cbfe42848843e1acea33d22177c (patch) | |
tree | fe6e4c96799316c3560a2843e89a37c5d4058d1a /src/player_thread.c | |
parent | a30eb194d5c5188a0e824e72ce959677d5801c0a (diff) | |
download | mpd-436335e9a3251cbfe42848843e1acea33d22177c.tar.gz mpd-436335e9a3251cbfe42848843e1acea33d22177c.tar.xz mpd-436335e9a3251cbfe42848843e1acea33d22177c.zip |
player_control: don't emit IDLE_PLAYER before audio format is known
Eliminates one IDLE_PLAYER call in playlist_control, and add two new
ones to player_thread. Fixes Mantis bug 3636.
Diffstat (limited to 'src/player_thread.c')
-rw-r--r-- | src/player_thread.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/player_thread.c b/src/player_thread.c index 593788caf..ac0b0579e 100644 --- a/src/player_thread.c +++ b/src/player_thread.c @@ -313,6 +313,8 @@ player_open_output(struct player *player) pc->state = PLAYER_STATE_PLAY; player_unlock(pc); + idle_add(IDLE_PLAYER); + return true; } else { player->output_open = false; @@ -375,6 +377,8 @@ player_check_decoder_startup(struct player *player) pc->audio_format = dc->in_audio_format; player_unlock(pc); + idle_add(IDLE_PLAYER); + player->play_audio_format = dc->out_audio_format; player->decoder_starting = false; |