diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/command.c | 1 | ||||
-rw-r--r-- | src/playlist.c | 4 | ||||
-rw-r--r-- | src/playlist.h | 2 |
3 files changed, 3 insertions, 4 deletions
diff --git a/src/command.c b/src/command.c index 1c4cb4ee0..529f3ac1d 100644 --- a/src/command.c +++ b/src/command.c @@ -451,7 +451,6 @@ handle_status(struct client *client, int updateJobId; int song; - playPlaylistIfPlayerStopped(); switch (getPlayerState()) { case PLAYER_STATE_STOP: state = "stop"; diff --git a/src/playlist.c b/src/playlist.c index 3582dfd98..5d17f8cb9 100644 --- a/src/playlist.c +++ b/src/playlist.c @@ -861,6 +861,8 @@ enum playlist_result playPlaylistById(int id, int stopOnError) return playPlaylist(song, stopOnError); } +static void playPlaylistIfPlayerStopped(void); + void syncPlayerAndPlaylist(void) { if (playlist_state != PLAYLIST_STATE_PLAY) @@ -911,7 +913,7 @@ void nextSongInPlaylist(void) } } -void playPlaylistIfPlayerStopped(void) +static void playPlaylistIfPlayerStopped(void) { if (getPlayerState() == PLAYER_STATE_STOP) { enum player_error error = getPlayerError(); diff --git a/src/playlist.h b/src/playlist.h index 251297c4f..a2531963b 100644 --- a/src/playlist.h +++ b/src/playlist.h @@ -149,8 +149,6 @@ int getPlaylistLength(void); unsigned long getPlaylistVersion(void); -void playPlaylistIfPlayerStopped(void); - enum playlist_result seekSongInPlaylist(unsigned song, float seek_time); enum playlist_result seekSongInPlaylistById(unsigned id, float seek_time); |