# HG changeset patch # User nenolod # Date 1135631663 28800 # Node ID 2dd23cdf6c4bbef63935b92b1de76b7d31c49ce0 # Parent 430658951e300bb24ae4e21ffca26ae087e8bcdc [svn] Use the audacious filterchain for musepack. (I'm not removing the equalizer, because it looks like a better equalizer than the one we have right now.) diff -r 430658951e30 -r 2dd23cdf6c4b Plugins/Input/musepack/libmpc.cpp --- a/Plugins/Input/musepack/libmpc.cpp Mon Dec 26 13:09:53 2005 -0800 +++ b/Plugins/Input/musepack/libmpc.cpp Mon Dec 26 13:14:23 2005 -0800 @@ -772,13 +772,7 @@ track.bitrate = static_cast (vbrUpd * track.sampleFreq / 1152); } - if (pluginConfig.isEq) - { - iir(xmmsBuffer, 4 * status); - } - - MpcPlugin.add_vis_pcm(MpcPlugin.output->written_time(), FMT_S16_LE, track.channels, status * 4, xmmsBuffer); - MpcPlugin.output->write_audio(xmmsBuffer, status * 4); + produce_audio(MpcPlugin.output->written_time(), FMT_S16_LE, track.channels, status * 4, xmmsBuffer, NULL); return status; }