summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Sevakis <jethead71@rockbox.org>2007-02-10 16:47:13 +0000
committerMichael Sevakis <jethead71@rockbox.org>2007-02-10 16:47:13 +0000
commitb013d11e77090cd295e2fa1503ee8667dcc84ce5 (patch)
treefd50cadb9ef8f3e2af7d37ce042c48497f89b20a
parent97f369a5876762a6f4181a8b44c85cb894ebc5f3 (diff)
downloadrockbox-b013d11e77090cd295e2fa1503ee8667dcc84ce5.tar.gz
rockbox-b013d11e77090cd295e2fa1503ee8667dcc84ce5.zip
Doh. Forgot about codeclib.c.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12260 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/codecs/lib/codeclib.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/codecs/lib/codeclib.c b/apps/codecs/lib/codeclib.c
index f6b2131e88..125c4663c8 100644
--- a/apps/codecs/lib/codeclib.c
+++ b/apps/codecs/lib/codeclib.c
@@ -40,10 +40,10 @@ int codec_init(void)
40 40
41void codec_set_replaygain(struct mp3entry* id3) 41void codec_set_replaygain(struct mp3entry* id3)
42{ 42{
43 ci->configure(DSP_SET_TRACK_GAIN, (long *) id3->track_gain); 43 ci->configure(DSP_SET_TRACK_GAIN, id3->track_gain);
44 ci->configure(DSP_SET_ALBUM_GAIN, (long *) id3->album_gain); 44 ci->configure(DSP_SET_ALBUM_GAIN, id3->album_gain);
45 ci->configure(DSP_SET_TRACK_PEAK, (long *) id3->track_peak); 45 ci->configure(DSP_SET_TRACK_PEAK, id3->track_peak);
46 ci->configure(DSP_SET_ALBUM_PEAK, (long *) id3->album_peak); 46 ci->configure(DSP_SET_ALBUM_PEAK, id3->album_peak);
47} 47}
48 48
49/* Various "helper functions" common to all the xxx2wav decoder plugins */ 49/* Various "helper functions" common to all the xxx2wav decoder plugins */