diff options
author | Andree Buschmann <AndreeBuschmann@t-online.de> | 2010-10-02 23:02:36 +0000 |
---|---|---|
committer | Andree Buschmann <AndreeBuschmann@t-online.de> | 2010-10-02 23:02:36 +0000 |
commit | 27122e4cc943e4c2035975bf0a1f131e603fc9be (patch) | |
tree | 869497a616fea70883c9cf04a808ed4a6dbdd4fa /apps/codecs | |
parent | c4925f14a365de30fd4b5610466b5d87693e67fe (diff) |
Fix FS#11650. Correct sliencing of subband in mpc decoder. Thanks to Leo Witt for reporting and supporting.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28200 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs')
-rw-r--r-- | apps/codecs/libmusepack/mpc_decoder.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/codecs/libmusepack/mpc_decoder.c b/apps/codecs/libmusepack/mpc_decoder.c index 7ff677aa27..2ac855b946 100644 --- a/apps/codecs/libmusepack/mpc_decoder.c +++ b/apps/codecs/libmusepack/mpc_decoder.c @@ -208,7 +208,7 @@ void mpc_decoder_read_bitstream_sv8(mpc_decoder * d, mpc_bits_reader * r, *(YR+=IDX) = *(YL+=IDX) = 0; #define REQUANT_SILENCE \ - for (n = 0; n < 12; n+=4, YL += 32, YR += 32) { \ + for (n = 0; n < 36; n+=4, YL += 32, YR += 32) { \ REQUANT_SILENCE_SAMPLES( 0); \ REQUANT_SILENCE_SAMPLES(32); \ REQUANT_SILENCE_SAMPLES(32); \ |