Searched refs:album_artist (Results 1 - 10 of 10) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/forked-daapd-0.19/sqlext/
H A Dsqlext.c175 const char *album_artist; local
182 sqlite3_result_error(pv, "daap_songalbumid() requires 2 parameters, album_artist and album", -1);
193 album_artist = (const char *)sqlite3_value_text(ppv[0]);
196 hashbuf = sqlite3_mprintf("%s==%s", (album_artist) ? album_artist : "", (album) ? album : "");
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/forked-daapd-0.19/src/
H A Drsp_query_hash.c171 {"album_artist", RSP_TYPE_STRING},
H A Dscan-flac.c130 if ((pmp3->album_artist = calloc(len + 1, 1)) != NULL)
131 strncpy(pmp3->album_artist, val, len);
H A Dfilescanner_ffmpeg.c104 { "album_artist", 0, mfi_offsetof(album_artist), NULL },
147 { "albumartist", 0, mfi_offsetof(album_artist), NULL },
148 { "album artist", 0, mfi_offsetof(album_artist), NULL },
174 { "TP2", 0, mfi_offsetof(album_artist), NULL }, /* ID3v2.2 */
175 { "TPE2", 0, mfi_offsetof(album_artist), NULL }, /* ID3v2.3 */
H A Ddaap_query_hash.c147 {"daap.songalbumartist", "f.album_artist", 0},
H A Dfilescanner_itunes.c67 { "Album Artist", PLIST_STRING, mfi_offsetof(album_artist) },
430 /* Don't let album_artist set to "Unknown artist" if we've
433 if (strcmp(mfi->album_artist, "Unknown artist") == 0)
435 free(mfi->album_artist);
436 mfi->album_artist = strdup(mfi->artist);
H A Ddb.h142 char *album_artist; member in struct:media_file_info
195 char *itemname; /* album or album_artist (minm) */
262 char *album_artist; member in struct:db_media_file_info
H A Dfilescanner.c279 /* If we don't have an album_artist, set it to artist */
280 if (!mfi->album_artist)
284 mfi->album_artist = strdup("");
288 mfi->album_artist = strdup(mfi->artist);
291 if (!mfi->album_artist_sort && (strcmp(mfi->album_artist, mfi->artist) == 0))
297 normalize_fixup_tag(&mfi->album_artist_sort, mfi->album_artist);
H A Ddb.c123 { mfi_offsetof(album_artist), DB_TYPE_STRING },
207 dbmfi_offsetof(album_artist),
382 if (mfi->album_artist)
383 free(mfi->album_artist);
1200 query = sqlite3_mprintf("SELECT g.id, g.persistentid, f.album, f.album_sort, COUNT(f.id), 1, f.album_artist, f.songartistid FROM files f JOIN groups g ON f.songalbumid = g.persistentid WHERE f.disabled = 0 AND %s GROUP BY f.songalbumid %s %s;", qp->filter, sort, idx);
1202 query = sqlite3_mprintf("SELECT g.id, g.persistentid, f.album, f.album_sort, COUNT(f.id), 1, f.album_artist, f.songartistid FROM files f JOIN groups g ON f.songalbumid = g.persistentid WHERE f.disabled = 0 GROUP BY f.songalbumid %s %s;", sort, idx);
1204 query = sqlite3_mprintf("SELECT g.id, g.persistentid, f.album, f.album_sort, COUNT(f.id), 1, f.album_artist, f.songartistid FROM files f JOIN groups g ON f.songalbumid = g.persistentid WHERE f.disabled = 0 AND %s GROUP BY f.songalbumid %s;", qp->filter, sort);
1206 query = sqlite3_mprintf("SELECT g.id, g.persistentid, f.album, f.album_sort, COUNT(f.id), 1, f.album_artist, f.songartistid FROM files f JOIN groups g ON f.songalbumid = g.persistentid WHERE f.disabled = 0 GROUP BY f.songalbumid %s;", sort);
1239 query = sqlite3_mprintf("SELECT g.id, g.persistentid, f.album_artist, f.album_artist_sort, COUNT(f.id), COUNT(DISTINCT f.songalbumid), f.album_artist,
[all...]
H A Dscan-wma.c676 if(!pmp3->album_artist) {
677 pmp3->album_artist = descriptor_byte_value;

Completed in 77 milliseconds