From f351550534939478d7ddc791dc76aafd5f2a3503 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Sat, 25 Aug 2012 08:44:31 +0200 Subject: player_thread: disable cross-fading in "single" mode This commit reimplements the core of the "single" mode. Instead of doing the detection in the playlist code from the outside, it is moved to the player thread, which gets a new option called "border_pause". It will now pause playback exactly at the beginning of the new song, making the feature more reliable. Now that the player thread knows what will happen, it can suppress cross-fading. Fixes mantis tickets 0003055 and 0003166. --- src/player_control.c | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'src/player_control.c') diff --git a/src/player_control.c b/src/player_control.c index d8d54dfd6..90f616d77 100644 --- a/src/player_control.c +++ b/src/player_control.c @@ -210,6 +210,14 @@ pc_set_pause(struct player_control *pc, bool pause_flag) player_unlock(pc); } +void +pc_set_border_pause(struct player_control *pc, bool border_pause) +{ + player_lock(pc); + pc->border_pause = border_pause; + player_unlock(pc); +} + void pc_get_status(struct player_control *pc, struct player_status *status) { -- cgit v1.2.3