Support songartistid (asri) in group requests and queuefilter=artist

- credit misenhower of wp8remote.com
This commit is contained in:
ejurgensen
2014-02-21 20:39:57 +01:00
parent 7997377deb
commit 190f91114e
5 changed files with 30 additions and 10 deletions

View File

@@ -194,6 +194,7 @@ struct group_info {
uint32_t itemcount; /* number of items (mimc) */
uint32_t groupalbumcount; /* number of albums (agac) */
char *songalbumartist; /* song album artist (asaa) */
uint64_t songartistid; /* song artist id (asri) */
};
#define gri_offsetof(field) offsetof(struct group_info, field)
@@ -206,6 +207,7 @@ struct db_group_info {
char *itemcount;
char *groupalbumcount;
char *songalbumartist;
char *songartistid;
};
#define dbgri_offsetof(field) offsetof(struct db_group_info, field)