diff options
-rw-r--r-- | Alc/bs2b.c | 6 | ||||
-rw-r--r-- | OpenAL32/Include/bs2b.h | 2 |
2 files changed, 4 insertions, 4 deletions
@@ -112,7 +112,7 @@ static void init(struct bs2b *bs2b) bs2b->a0_hi = 1.0 - G_hi * (1.0 - x); bs2b->a1_hi = -x; - bs2b->gain = 1.0 / (1.0 - G_hi + G_lo); + bs2b->gain = 1.0f / (float)(1.0 - G_hi + G_lo); } /* init */ /* Exported functions. @@ -180,8 +180,8 @@ void bs2b_cross_feed(struct bs2b *bs2b, float *sample) bs2b->last_sample.asis[1] = sample[1]; /* Crossfeed */ - sample[0] = bs2b->last_sample.hi[0] + bs2b->last_sample.lo[1]; - sample[1] = bs2b->last_sample.hi[1] + bs2b->last_sample.lo[0]; + sample[0] = (float)(bs2b->last_sample.hi[0] + bs2b->last_sample.lo[1]); + sample[1] = (float)(bs2b->last_sample.hi[1] + bs2b->last_sample.lo[0]); /* Bass boost cause allpass attenuation */ sample[0] *= bs2b->gain; diff --git a/OpenAL32/Include/bs2b.h b/OpenAL32/Include/bs2b.h index 4ed576b8..3e5cd83c 100644 --- a/OpenAL32/Include/bs2b.h +++ b/OpenAL32/Include/bs2b.h @@ -60,7 +60,7 @@ struct bs2b { double b1_hi; /* Global gain against overloading */ - double gain; + float gain; /* Buffer of last filtered sample. * [0] - first channel, [1] - second channel |