1
0
Fork 0
forked from len0rd/rockbox

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
This commit is contained in:
Andree Buschmann 2010-10-02 23:02:36 +00:00
parent c4925f14a3
commit 27122e4cc9

View file

@ -208,7 +208,7 @@ void mpc_decoder_read_bitstream_sv8(mpc_decoder * d, mpc_bits_reader * r,
*(YR+=IDX) = *(YL+=IDX) = 0; *(YR+=IDX) = *(YL+=IDX) = 0;
#define REQUANT_SILENCE \ #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( 0); \
REQUANT_SILENCE_SAMPLES(32); \ REQUANT_SILENCE_SAMPLES(32); \
REQUANT_SILENCE_SAMPLES(32); \ REQUANT_SILENCE_SAMPLES(32); \