aboutsummaryrefslogtreecommitdiffstats
path: root/src/playlist_control.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* playlist_control: fix requeue after seekMax Kellermann2009-03-061-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.
* playlist: update queued song after seekingMax Kellermann2009-02-101-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().
* playlist: added G_LOG_DOMAINMax Kellermann2009-02-041-1/+6
| | | | Removed the explicit "playlist:" prefix from all log messages.
* playlist: moved code to playlist_control.cMax Kellermann2009-02-041-0/+249
Moved handlers for control commands (play, stop, next, prev) to playlist_control.c.