aboutsummaryrefslogtreecommitdiffstats
path: root/src/queue/Playlist.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'src/queue/Playlist.hxx')
-rw-r--r--src/queue/Playlist.hxx14
1 files changed, 13 insertions, 1 deletions
diff --git a/src/queue/Playlist.hxx b/src/queue/Playlist.hxx
index fb75377f0..ab8fbe2d4 100644
--- a/src/queue/Playlist.hxx
+++ b/src/queue/Playlist.hxx
@@ -135,6 +135,17 @@ protected:
void OnModified();
/**
+ * Called when playback of a new song starts. Unlike
+ * QueuedSongStarted(), this also gets called when the user
+ * manually switches to another song. It may be used for
+ * playlist fixups.
+ *
+ * The song being started is specified by the #current
+ * attribute.
+ */
+ void SongStarted();
+
+ /**
* Updates the "queued song". Calculates the next song
* according to the current one (if MPD isn't playing, it
* takes the first song), and queues this song. Clears the
@@ -152,7 +163,8 @@ protected:
/**
* Called when the player thread has started playing the
- * "queued" song.
+ * "queued" song, i.e. it has switched from one song to the
+ * next automatically.
*/
void QueuedSongStarted(PlayerControl &pc);