aboutsummaryrefslogtreecommitdiffstats
path: root/src/inputPlugins
diff options
context:
space:
mode:
authorWarren Dukes <warren.dukes@gmail.com>2005-02-09 03:08:39 +0000
committerWarren Dukes <warren.dukes@gmail.com>2005-02-09 03:08:39 +0000
commit9e4465cbd1db844461d43df17f699060fbfcfef4 (patch)
tree9feedc41fe544f7115ec83d415ffd248eef0d92a /src/inputPlugins
parent65c75caa398de3d0c6f51c822ae4ccb797709661 (diff)
downloadmpd-9e4465cbd1db844461d43df17f699060fbfcfef4.tar.gz
mpd-9e4465cbd1db844461d43df17f699060fbfcfef4.tar.xz
mpd-9e4465cbd1db844461d43df17f699060fbfcfef4.zip
disable replaygain support for musepack till i can figure out the format that the replagininfo is tored in by libmusepack
git-svn-id: https://svn.musicpd.org/mpd/trunk@2942 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'src/inputPlugins')
-rw-r--r--src/inputPlugins/mpc_plugin.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/inputPlugins/mpc_plugin.c b/src/inputPlugins/mpc_plugin.c
index 4d07b2f86..89867993a 100644
--- a/src/inputPlugins/mpc_plugin.c
+++ b/src/inputPlugins/mpc_plugin.c
@@ -182,10 +182,10 @@ static int mpc_decode(OutputBuffer * cb, DecoderControl * dc,
getOutputAudioFormat(&(dc->audioFormat), &(cb->audioFormat));
replayGainInfo = newReplayGainInfo();
- replayGainInfo->albumGain = info.gain_album;
+ /*replayGainInfo->albumGain = info.gain_album;
replayGainInfo->albumPeak = info.peak_album;
replayGainInfo->trackGain = info.gain_title;
- replayGainInfo->trackPeak = info.peak_title;
+ replayGainInfo->trackPeak = info.peak_title;*/
dc->state = DECODE_STATE_DECODE;