diff options
| -rw-r--r-- | src/audio_core/command_generator.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/audio_core/command_generator.cpp b/src/audio_core/command_generator.cpp index ae4efafb6..ff20ed00f 100644 --- a/src/audio_core/command_generator.cpp +++ b/src/audio_core/command_generator.cpp | |||
| @@ -129,17 +129,17 @@ s32 ToS32(float sample) { | |||
| 129 | return static_cast<s32>(rescaled_sample); | 129 | return static_cast<s32>(rescaled_sample); |
| 130 | } | 130 | } |
| 131 | 131 | ||
| 132 | constexpr std::array<std::size_t, 20> REVERB_TAP_INDEX_1CH{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, | 132 | constexpr std::array<u8, 20> REVERB_TAP_INDEX_1CH{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
| 133 | 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}; | 133 | 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}; |
| 134 | 134 | ||
| 135 | constexpr std::array<std::size_t, 20> REVERB_TAP_INDEX_2CH{0, 0, 0, 1, 1, 1, 1, 0, 0, 0, | 135 | constexpr std::array<u8, 20> REVERB_TAP_INDEX_2CH{0, 0, 0, 1, 1, 1, 1, 0, 0, 0, |
| 136 | 1, 1, 1, 0, 0, 0, 0, 1, 1, 1}; | 136 | 1, 1, 1, 0, 0, 0, 0, 1, 1, 1}; |
| 137 | 137 | ||
| 138 | constexpr std::array<std::size_t, 20> REVERB_TAP_INDEX_4CH{0, 0, 0, 1, 1, 1, 1, 2, 2, 2, | 138 | constexpr std::array<u8, 20> REVERB_TAP_INDEX_4CH{0, 0, 0, 1, 1, 1, 1, 2, 2, 2, |
| 139 | 1, 1, 1, 0, 0, 0, 0, 3, 3, 3}; | 139 | 1, 1, 1, 0, 0, 0, 0, 3, 3, 3}; |
| 140 | 140 | ||
| 141 | constexpr std::array<std::size_t, 20> REVERB_TAP_INDEX_6CH{4, 0, 0, 1, 1, 1, 1, 2, 2, 2, | 141 | constexpr std::array<u8, 20> REVERB_TAP_INDEX_6CH{4, 0, 0, 1, 1, 1, 1, 2, 2, 2, |
| 142 | 1, 1, 1, 0, 0, 0, 0, 3, 3, 3}; | 142 | 1, 1, 1, 0, 0, 0, 0, 3, 3, 3}; |
| 143 | 143 | ||
| 144 | template <std::size_t CHANNEL_COUNT> | 144 | template <std::size_t CHANNEL_COUNT> |
| 145 | void ApplyReverbGeneric( | 145 | void ApplyReverbGeneric( |