Commit 25555cd1 authored by J. Alexander Treuman's avatar J. Alexander Treuman

Use strcasecmp to check for replaygain id3v2 tags, since apparently some apps…

Use strcasecmp to check for replaygain id3v2 tags, since apparently some apps write them in all caps. git-svn-id: https://svn.musicpd.org/mpd/trunk@4672 09075e82-0dd4-0310-85a5-a0d7c8717e4f
parent 87327cb9
......@@ -251,16 +251,16 @@ static ReplayGainInfo *parseId3ReplayGainInfo(struct id3_tag *tag)
id3_ucs4_latin1duplicate(id3_field_getstring
(&frame->fields[2]));
if (strcmp(key, "replaygain_track_gain") == 0) {
if (strcasecmp(key, "replaygain_track_gain") == 0) {
replayGainInfo->trackGain = atof(value);
found = 1;
} else if (strcmp(key, "replaygain_album_gain") == 0) {
} else if (strcasecmp(key, "replaygain_album_gain") == 0) {
replayGainInfo->albumGain = atof(value);
found = 1;
} else if (strcmp(key, "replaygain_track_peak") == 0) {
} else if (strcasecmp(key, "replaygain_track_peak") == 0) {
replayGainInfo->trackPeak = atof(value);
found = 1;
} else if (strcmp(key, "replaygain_album_peak") == 0) {
} else if (strcasecmp(key, "replaygain_album_peak") == 0) {
replayGainInfo->albumPeak = atof(value);
found = 1;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment