Adding of plchangesposid command, this is a stripped down version of the plchanges command, it only sends the pos and id of the changed command. Libmpd allready has support for it, and libmpdclient in libmpd too
git-svn-id: https://svn.musicpd.org/mpd/trunk@4101 09075e82-0dd4-0310-85a5-a0d7c8717e4f
This commit is contained in:
@@ -458,6 +458,26 @@ int playlistChanges(FILE * fp, mpd_uint32 version) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
int playlistChangesPosId(FILE * fp, mpd_uint32 version) {
|
||||
int i;
|
||||
|
||||
for(i=0; i<playlist.length; i++) {
|
||||
if(version > playlist.version ||
|
||||
playlist.songMod[i] >= version ||
|
||||
playlist.songMod[i] == 0)
|
||||
{
|
||||
myfprintf(fp, "cpos: %i\n", i);
|
||||
myfprintf(fp, "Id: %i\n", playlist.positionToId[i]);
|
||||
}
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
int playlistInfo(FILE * fp, int song) {
|
||||
int i;
|
||||
int begin = 0;
|
||||
|
Reference in New Issue
Block a user