diff options
Diffstat (limited to 'Alc/mastering.c')
-rw-r--r-- | Alc/mastering.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Alc/mastering.c b/Alc/mastering.c index f443de37..637cd8d2 100644 --- a/Alc/mastering.c +++ b/Alc/mastering.c @@ -5,10 +5,12 @@ #include "mastering.h" #include "alu.h" #include "almalloc.h" +#include "static_assert.h" -/* These structures assume BUFFERSIZE is a power of 2. - */ +/* These structures assume BUFFERSIZE is a power of 2. */ +static_assert((BUFFERSIZE & (BUFFERSIZE-1)) == 0, "BUFFERSIZE is not a power of 2"); + typedef struct SlidingHold { ALfloat Values[BUFFERSIZE]; ALsizei Expiries[BUFFERSIZE]; |