Fixing the hack fix (I can't multiply 32x32)

This commit is contained in:
Pierre Bourdon 2012-11-20 04:26:07 +01:00
parent 0d3c3f6339
commit e858835c7e
1 changed files with 1 additions and 1 deletions

View File

@ -242,7 +242,7 @@ inline void GetInputSamples(PB_TYPE& pb, s16* samples)
if (ratio > 0x00100000) if (ratio > 0x00100000)
ratio = 0x00100000; ratio = 0x00100000;
s16 real_samples[514]; s16 real_samples[1026];
u32 real_samples_needed = (32 * ratio + curr_pos) >> 16; u32 real_samples_needed = (32 * ratio + curr_pos) >> 16;
// The first two real samples are the ones we read at the previous // The first two real samples are the ones we read at the previous