aboutsummaryrefslogtreecommitdiffstats
path: root/src/playlist_control.c (unfollow)
Commit message (Collapse)AuthorFilesLines
2009-03-06playlist_control: fix requeue after seekMax Kellermann1-3/+3
The queue update after a seek was wrong: the queued song is cleared by a successful seek. This caused queue/cross-fading problems after a seek.
2009-02-10playlist: update queued song after seekingMax Kellermann1-3/+7
If a new song is queued before calling playerSeek(), then the player and the playlist enter an inconsistent state, because the player discards the playlist's "queued" song in favor of the seeked song. Call playlist_update_queued_song() after playerSeek().
2009-02-04playlist: added G_LOG_DOMAINMax Kellermann1-1/+6
Removed the explicit "playlist:" prefix from all log messages.
2009-02-04playlist: moved code to playlist_control.cMax Kellermann1-0/+249
Moved handlers for control commands (play, stop, next, prev) to playlist_control.c.