From 4dd53ab9429f0ca561dfd45f8f6022ae9871455a Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Tue, 15 Aug 2017 04:15:50 -0700 Subject: Keep bsinc info together in a struct --- OpenAL32/Include/alu.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'OpenAL32/Include') diff --git a/OpenAL32/Include/alu.h b/OpenAL32/Include/alu.h index b62bb024..57c85ad0 100644 --- a/OpenAL32/Include/alu.h +++ b/OpenAL32/Include/alu.h @@ -71,7 +71,7 @@ extern enum Resampler ResamplerDefault; */ typedef struct BsincState { ALfloat sf; /* Scale interpolation factor. */ - ALuint m; /* Coefficient count. */ + ALsizei m; /* Coefficient count. */ ALint l; /* Left coefficient offset. */ struct { const ALfloat *filter; /* Filter coefficients. */ @@ -382,7 +382,6 @@ inline ALuint64 clampu64(ALuint64 val, ALuint64 min, ALuint64 max) { return minu64(max, maxu64(min, val)); } -extern alignas(16) const ALfloat bsincTab[18840]; extern alignas(16) const ALfloat sinc4Tab[FRACTIONONE][4]; -- cgit v1.2.3