diff options
author | Chris Robinson <chris.kcat@gmail.com> | 2023-02-12 03:15:40 -0800 |
---|---|---|
committer | Chris Robinson <chris.kcat@gmail.com> | 2023-02-12 03:15:40 -0800 |
commit | 63f840d31f09922ddef632f233342cbba46b09cf (patch) | |
tree | 79c128b3b6c6c01e9700de22afa7e5246f738584 /alc | |
parent | 2001d93b03dd2af62e341b91ab2bee9b92da03bc (diff) |
Separate decoding and mixing from resampling
Diffstat (limited to 'alc')
-rw-r--r-- | alc/alu.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/alc/alu.cpp b/alc/alu.cpp index 2fe87ab6..7af21245 100644 --- a/alc/alu.cpp +++ b/alc/alu.cpp @@ -108,12 +108,6 @@ namespace { using uint = unsigned int; using namespace std::chrono; -constexpr uint MaxPitch{10}; - -static_assert((BufferLineSize-1)/MaxPitch > 0, "MaxPitch is too large for BufferLineSize!"); -static_assert((INT_MAX>>MixerFracBits)/MaxPitch > BufferLineSize, - "MaxPitch and/or BufferLineSize are too large for MixerFracBits!"); - using namespace std::placeholders; float InitConeScale() |