From 25555cd1b06dbc8ab19dbd1db780126568cef1d6 Mon Sep 17 00:00:00 2001 From: "J. Alexander Treuman" Date: Wed, 23 Aug 2006 19:10:47 +0000 Subject: 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 --- src/inputPlugins/mp3_plugin.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/inputPlugins/mp3_plugin.c') diff --git a/src/inputPlugins/mp3_plugin.c b/src/inputPlugins/mp3_plugin.c index 899bb1682..098b64da3 100644 --- a/src/inputPlugins/mp3_plugin.c +++ b/src/inputPlugins/mp3_plugin.c @@ -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; } -- cgit v1.2.3