From: Andre Noll Date: Sun, 7 Jul 2013 08:44:50 +0000 (+0200) Subject: mp3_afh: Use symbolic constants for id3 tag identifiers. X-Git-Tag: v0.4.13~21 X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=commitdiff_plain;h=2b2026c751dd30e09318bad6a420b826149832a0 mp3_afh: Use symbolic constants for id3 tag identifiers. --- diff --git a/mp3_afh.c b/mp3_afh.c index ece13e1f..251574a5 100644 --- a/mp3_afh.c +++ b/mp3_afh.c @@ -139,27 +139,27 @@ static void mp3_get_id3(__a_unused unsigned char *map, } for (i = 0; i < id3_t->nframes; i++) { struct id3_frame *fr = id3_t->frames[i]; - if (!strcmp(fr->id, "TIT2")) { + if (!strcmp(fr->id, ID3_FRAME_TITLE)) { if (!tags->title) tags->title = get_strings(fr); continue; } - if (!strcmp(fr->id, "TPE1")) { + if (!strcmp(fr->id, ID3_FRAME_ARTIST)) { if (!tags->artist) tags->artist = get_strings(fr); continue; } - if (!strcmp(fr->id, "TALB")) { + if (!strcmp(fr->id, ID3_FRAME_ALBUM)) { if (!tags->album) tags->album = get_strings(fr); continue; } - if (!strcmp(fr->id, "TDRC")) { + if (!strcmp(fr->id, ID3_FRAME_YEAR)) { if (!tags->year) tags->year = get_strings(fr); continue; } - if (!strcmp(fr->id, "COMM")) { + if (!strcmp(fr->id, ID3_FRAME_COMMENT)) { if (!tags->comment) tags->comment = get_strings(fr); continue;