diff options
author | Max Kellermann <max@duempel.org> | 2009-01-20 22:49:19 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-01-20 22:49:19 +0100 |
commit | 06bd9ad88f452348a01575810fc372244285734b (patch) | |
tree | 78dc0ca01802b8894d5997143c087ac35dcb0436 /src/playlist.h | |
parent | d10910cc903160231912e5a762af9b54aa2846e0 (diff) | |
download | mpd-06bd9ad88f452348a01575810fc372244285734b.tar.gz mpd-06bd9ad88f452348a01575810fc372244285734b.tar.xz mpd-06bd9ad88f452348a01575810fc372244285734b.zip |
event_pipe: added "TAG" event
The "TAG" event is emitted by the player thread when the current
song's tag has changed. Split this event from "PLAYLIST" and make it
a separate callback, which is more efficient.
Diffstat (limited to '')
-rw-r--r-- | src/playlist.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/playlist.h b/src/playlist.h index 19dc747e9..251297c4f 100644 --- a/src/playlist.h +++ b/src/playlist.h @@ -55,11 +55,6 @@ typedef struct _Playlist { bool repeat; bool random; uint32_t version; - - /** used by syncCurrentPlayerDecodeMetadata() to detect tag changes */ - const struct song *prev_song; - /** used by syncCurrentPlayerDecodeMetadata() to detect tag changes */ - const struct tag *prev_tag; } Playlist; extern bool playlist_saveAbsolutePaths; |