diff options
author | J. Alexander Treuman <jat@spatialrift.net> | 2006-07-24 16:32:50 +0000 |
---|---|---|
committer | J. Alexander Treuman <jat@spatialrift.net> | 2006-07-24 16:32:50 +0000 |
commit | 48240740e7aaaa58df65d570afa6ccbac8d590b2 (patch) | |
tree | 9079a4ca6dbc9d90267edf1de041bf6490f1e926 /src/replayGain.c | |
parent | 24c1f46353213e3392b542a6c3655bcd215e7c63 (diff) | |
download | mpd-48240740e7aaaa58df65d570afa6ccbac8d590b2.tar.gz mpd-48240740e7aaaa58df65d570afa6ccbac8d590b2.tar.xz mpd-48240740e7aaaa58df65d570afa6ccbac8d590b2.zip |
Do normalization if there's replaygain data but replaygain is off
git-svn-id: https://svn.musicpd.org/mpd/trunk@4445 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to '')
-rw-r--r-- | src/replayGain.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/replayGain.c b/src/replayGain.c index 5c0664563..52362946e 100644 --- a/src/replayGain.c +++ b/src/replayGain.c @@ -27,7 +27,7 @@ #include <stdlib.h> /* Added 4/14/2004 by AliasMrJones */ -static int replayGainState = REPLAYGAIN_OFF; +int replayGainState = REPLAYGAIN_OFF; static float replayGainPreamp = 1.0; |