diff options
author | Chris Robinson <[email protected]> | 2021-07-30 08:08:16 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2021-07-30 08:08:16 -0700 |
commit | 47c20b283efd8115e6e8bbc9c25029dc21da9214 (patch) | |
tree | 44bc337c47e37e7b4ed0363bd99d470fe4742ec3 /utils/uhjencoder.cpp | |
parent | 29fba79cd5dd06888da22c7fc18779062c28fc3a (diff) |
Use a higher quality all-pass for the UHJ utils
Diffstat (limited to 'utils/uhjencoder.cpp')
-rw-r--r-- | utils/uhjencoder.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/uhjencoder.cpp b/utils/uhjencoder.cpp index 70124f66..73e21479 100644 --- a/utils/uhjencoder.cpp +++ b/utils/uhjencoder.cpp @@ -62,7 +62,7 @@ using FloatBufferSpan = al::span<float,BufferLineSize>; struct UhjEncoder { - constexpr static size_t sFilterDelay{256}; + constexpr static size_t sFilterDelay{1024}; /* Delays and processing storage for the unfiltered signal. */ alignas(16) std::array<float,BufferLineSize+sFilterDelay> mS{}; |