aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2023-12-31 09:41:01 -0800
committerChris Robinson <[email protected]>2023-12-31 09:41:01 -0800
commit2cdce8817ebb80bde92727f8ded0789cc8954919 (patch)
tree6aecf9091d3df3586ac0bdbd1edb749cf6eed2c8
parente8f3c5aaf43a478ecc74eaa7b360c912999c9f5d (diff)
Properly align the output limiter delay buffer
-rw-r--r--core/mastering.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/mastering.h b/core/mastering.h
index 5fb7133e..ca7266a3 100644
--- a/core/mastering.h
+++ b/core/mastering.h
@@ -52,7 +52,7 @@ class Compressor {
alignas(16) std::array<float,BufferLineSize> mCrestFactor{};
std::unique_ptr<SlidingHold> mHold;
- al::vector<FloatBufferLine> mDelay;
+ al::vector<FloatBufferLine,16> mDelay;
float mCrestCoeff{0.0f};
float mGainEstimate{0.0f};