diff options
Diffstat (limited to 'alc/mastering.h')
-rw-r--r-- | alc/mastering.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/alc/mastering.h b/alc/mastering.h index 5be769ac..03cd21c0 100644 --- a/alc/mastering.h +++ b/alc/mastering.h @@ -34,7 +34,7 @@ struct Compressor { bool Declip : 1; } mAuto{}; - ALsizei mLookAhead{0}; + ALuint mLookAhead{0}; ALfloat mPreGain{0.0f}; ALfloat mPostGain{0.0f}; @@ -64,7 +64,7 @@ struct Compressor { ~Compressor(); - void process(const ALsizei SamplesToDo, FloatBufferLine *OutBuffer); + void process(const ALuint SamplesToDo, FloatBufferLine *OutBuffer); ALsizei getLookAhead() const noexcept { return mLookAhead; } DEF_PLACE_NEWDEL() |