diff options
author | Dave Chapman <dave@dchapman.com> | 2005-11-02 17:26:47 +0000 |
---|---|---|
committer | Dave Chapman <dave@dchapman.com> | 2005-11-02 17:26:47 +0000 |
commit | 057cc06c68e6bff3cb539f82aa74cf88225c6529 (patch) | |
tree | 0d6157aae87067afda648144e64bb3187d2a0862 | |
parent | 53dc1fefe912dcbffafc5d290f7ef79cf2f5bfa4 (diff) |
Enable replaygain for the new FLAC decoder
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7729 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r-- | apps/codecs/flac.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/codecs/flac.c b/apps/codecs/flac.c index 9d0f9cd5d4..fff301b65a 100644 --- a/apps/codecs/flac.c +++ b/apps/codecs/flac.c @@ -258,6 +258,7 @@ enum codec_status codec_start(struct codec_api* api) ci->yield(); ci->configure(DSP_SET_FREQUENCY, (long *)(ci->id3->frequency)); + codec_set_replaygain(ci->id3); /* The main decoding loop */ samplesdone=0; |