diff options
author | Chris Robinson <[email protected]> | 2019-05-28 17:18:22 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2019-05-28 17:18:22 -0700 |
commit | 838e2bae801fec73258c4b8332b4d95a34d0aff2 (patch) | |
tree | 9ceceb72d00fc8d7ec3648e8fc471ee90bafe950 /Alc/mastering.h | |
parent | c80ee5b7014d12675e2c615574c9f3f3354ffd1b (diff) |
Improve a couple algorithms
Diffstat (limited to 'Alc/mastering.h')
-rw-r--r-- | Alc/mastering.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Alc/mastering.h b/Alc/mastering.h index 6cc40ba3..31d0ef97 100644 --- a/Alc/mastering.h +++ b/Alc/mastering.h @@ -50,8 +50,7 @@ struct Compressor { alignas(16) ALfloat mCrestFactor[BUFFERSIZE]{}; SlidingHold *mHold{nullptr}; - ALfloat (*mDelay)[BUFFERSIZE]{nullptr}; - ALsizei mDelayIndex{0}; + FloatBufferLine *mDelay{nullptr}; ALfloat mCrestCoeff{0.0f}; ALfloat mGainEstimate{0.0f}; |