summaryrefslogtreecommitdiff
path: root/apps/codecs/spc.c
diff options
context:
space:
mode:
authorMichael Sevakis <jethead71@rockbox.org>2007-02-26 17:15:04 +0000
committerMichael Sevakis <jethead71@rockbox.org>2007-02-26 17:15:04 +0000
commit9b9e22731c137ef3f3febde7d4a914e1adfe6253 (patch)
tree4e6f98841be43af0004f97e6d827986279b6ff28 /apps/codecs/spc.c
parent94c02493a9f34a686655bd82dedba8c9a78cbc63 (diff)
downloadrockbox-9b9e22731c137ef3f3febde7d4a914e1adfe6253.tar.gz
rockbox-9b9e22731c137ef3f3febde7d4a914e1adfe6253.zip
SWCODEC: Fix the problem of replaygain not being applied unless the menu is entered. Make all codecs set the replay gain or else formats that do not have replaygain will not set the gain back to default if a file with gain applied proceeded them.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12498 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs/spc.c')
-rw-r--r--apps/codecs/spc.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/codecs/spc.c b/apps/codecs/spc.c
index 8d621dd677..12b236c53d 100644
--- a/apps/codecs/spc.c
+++ b/apps/codecs/spc.c
@@ -829,6 +829,8 @@ enum codec_status codec_main(void)
829 while (!*ci->taginfo_ready && !ci->stop_codec) 829 while (!*ci->taginfo_ready && !ci->stop_codec)
830 ci->sleep(1); 830 ci->sleep(1);
831 831
832 codec_set_replaygain(ci->id3);
833
832 /* Read the entire file */ 834 /* Read the entire file */
833 DEBUGF("SPC: request initial buffer\n"); 835 DEBUGF("SPC: request initial buffer\n");
834 ci->configure(CODEC_SET_FILEBUF_WATERMARK, ci->filesize); 836 ci->configure(CODEC_SET_FILEBUF_WATERMARK, ci->filesize);