aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJ. Alexander Treuman <jat@spatialrift.net>2006-08-23 19:10:47 +0000
committerJ. Alexander Treuman <jat@spatialrift.net>2006-08-23 19:10:47 +0000
commit25555cd1b06dbc8ab19dbd1db780126568cef1d6 (patch)
tree019390e52066d98d7e74ab2d8115c706aa6ce155
parent87327cb931445ea643eaa2f5ea67667903d603c8 (diff)
downloadmpd-25555cd1b06dbc8ab19dbd1db780126568cef1d6.tar.gz
mpd-25555cd1b06dbc8ab19dbd1db780126568cef1d6.tar.xz
mpd-25555cd1b06dbc8ab19dbd1db780126568cef1d6.zip
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
-rw-r--r--src/inputPlugins/mp3_plugin.c8
1 files changed, 4 insertions, 4 deletions
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;
}