diff options
author | Michael Sevakis <jethead71@rockbox.org> | 2007-02-26 17:15:04 +0000 |
---|---|---|
committer | Michael Sevakis <jethead71@rockbox.org> | 2007-02-26 17:15:04 +0000 |
commit | 9b9e22731c137ef3f3febde7d4a914e1adfe6253 (patch) | |
tree | 4e6f98841be43af0004f97e6d827986279b6ff28 /apps/codecs/aiff.c | |
parent | 94c02493a9f34a686655bd82dedba8c9a78cbc63 (diff) |
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/aiff.c')
-rw-r--r-- | apps/codecs/aiff.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/codecs/aiff.c b/apps/codecs/aiff.c index 2e92d9353f..7cb471c432 100644 --- a/apps/codecs/aiff.c +++ b/apps/codecs/aiff.c @@ -75,6 +75,8 @@ next_track: while (!*ci->taginfo_ready) ci->yield(); + + codec_set_replaygain(ci->id3); /* assume the AIFF header is less than 1024 bytes */ buf = ci->request_buffer(&n, 1024); |