diff options
author | Chris Robinson <[email protected]> | 2019-05-28 16:22:36 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2019-05-28 16:22:36 -0700 |
commit | c80ee5b7014d12675e2c615574c9f3f3354ffd1b (patch) | |
tree | 75ac5c7197ab7d8994854455c7261a9d42a99c82 /Alc/mastering.h | |
parent | 7ce2b632f51292c26014ad2efeb4b5429c3bf04f (diff) |
Use std::array for most mixing buffer arrays
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 a9411bd0..6cc40ba3 100644 --- a/Alc/mastering.h +++ b/Alc/mastering.h @@ -6,7 +6,7 @@ #include "AL/al.h" #include "almalloc.h" -/* For BUFFERSIZE. */ +/* For FloatBufferLine/BUFFERSIZE. */ #include "alMain.h" @@ -65,7 +65,7 @@ struct Compressor { ~Compressor(); - void process(const ALsizei SamplesToDo, ALfloat (*OutBuffer)[BUFFERSIZE]); + void process(const ALsizei SamplesToDo, FloatBufferLine *OutBuffer); ALsizei getLookAhead() const noexcept { return mLookAhead; } DEF_PLACE_NEWDEL() |