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:
parent
c4925f14a3
commit
27122e4cc9
1 changed files with 1 additions and 1 deletions
|
@ -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); \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue