diff options
author | Chris Robinson <[email protected]> | 2016-03-15 09:07:03 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2016-03-15 09:07:03 -0700 |
commit | 8ff4a5435614c85e43a3514157537dab80ecb3e7 (patch) | |
tree | 767369b9bc969a7b6047d62e35c760ccb60fa137 /Alc/bformatdec.c | |
parent | 3a26d853ba02d970b3e31db85c8b4b32c14417b7 (diff) |
Properly handle negative matrix values and fix decoder initialization
Diffstat (limited to 'Alc/bformatdec.c')
-rw-r--r-- | Alc/bformatdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/bformatdec.c b/Alc/bformatdec.c index d917f803..fff693bc 100644 --- a/Alc/bformatdec.c +++ b/Alc/bformatdec.c @@ -252,7 +252,7 @@ static void apply_row(ALfloat *out, const ALfloat *mtx, ALfloat (*restrict in)[B for(c = 0;c < inchans;c++) { ALfloat gain = mtx[c]; - if(!(gain > GAIN_SILENCE_THRESHOLD)) + if(!(fabsf(gain) > GAIN_SILENCE_THRESHOLD)) continue; for(i = 0;i < todo;i++) out[i] += in[c][i] * gain; |