X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=mp3_afh.c;h=0ca742cb1ac46e0208f535d122db7502c3b6d5f3;hp=ece13e1f925e857cc43acc9437b9b7547fa621f8;hb=47a9983cc65ef57ad25c4ba3e16cabe48fd57b23;hpb=e065f3eec9be99d82da855bf3da38d8e86752fef;ds=sidebyside diff --git a/mp3_afh.c b/mp3_afh.c index ece13e1f..0ca742cb 100644 --- a/mp3_afh.c +++ b/mp3_afh.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2003-2013 Andre Noll + * Copyright (C) 2003-2014 Andre Noll * * Licensed under the GPL v2. For licencing details see COPYING. */ @@ -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;