diff options
Diffstat (limited to 'src/audio_core')
| -rw-r--r-- | src/audio_core/command_generator.cpp | 3 | ||||
| -rw-r--r-- | src/audio_core/mix_context.cpp | 2 | ||||
| -rw-r--r-- | src/audio_core/voice_context.cpp | 2 |
3 files changed, 7 insertions, 0 deletions
diff --git a/src/audio_core/command_generator.cpp b/src/audio_core/command_generator.cpp index 45b2eef52..830af46ad 100644 --- a/src/audio_core/command_generator.cpp +++ b/src/audio_core/command_generator.cpp | |||
| @@ -2,13 +2,16 @@ | |||
| 2 | // Licensed under GPLv2 or any later version | 2 | // Licensed under GPLv2 or any later version |
| 3 | // Refer to the license.txt file included. | 3 | // Refer to the license.txt file included. |
| 4 | 4 | ||
| 5 | #include <algorithm> | ||
| 5 | #include <cmath> | 6 | #include <cmath> |
| 6 | #include <numbers> | 7 | #include <numbers> |
| 8 | |||
| 7 | #include "audio_core/algorithm/interpolate.h" | 9 | #include "audio_core/algorithm/interpolate.h" |
| 8 | #include "audio_core/command_generator.h" | 10 | #include "audio_core/command_generator.h" |
| 9 | #include "audio_core/effect_context.h" | 11 | #include "audio_core/effect_context.h" |
| 10 | #include "audio_core/mix_context.h" | 12 | #include "audio_core/mix_context.h" |
| 11 | #include "audio_core/voice_context.h" | 13 | #include "audio_core/voice_context.h" |
| 14 | #include "common/common_types.h" | ||
| 12 | #include "core/memory.h" | 15 | #include "core/memory.h" |
| 13 | 16 | ||
| 14 | namespace AudioCore { | 17 | namespace AudioCore { |
diff --git a/src/audio_core/mix_context.cpp b/src/audio_core/mix_context.cpp index 4bca72eb0..057aab5ad 100644 --- a/src/audio_core/mix_context.cpp +++ b/src/audio_core/mix_context.cpp | |||
| @@ -2,6 +2,8 @@ | |||
| 2 | // Licensed under GPLv2 or any later version | 2 | // Licensed under GPLv2 or any later version |
| 3 | // Refer to the license.txt file included. | 3 | // Refer to the license.txt file included. |
| 4 | 4 | ||
| 5 | #include <algorithm> | ||
| 6 | |||
| 5 | #include "audio_core/behavior_info.h" | 7 | #include "audio_core/behavior_info.h" |
| 6 | #include "audio_core/common.h" | 8 | #include "audio_core/common.h" |
| 7 | #include "audio_core/effect_context.h" | 9 | #include "audio_core/effect_context.h" |
diff --git a/src/audio_core/voice_context.cpp b/src/audio_core/voice_context.cpp index d8c954b60..75012a887 100644 --- a/src/audio_core/voice_context.cpp +++ b/src/audio_core/voice_context.cpp | |||
| @@ -2,6 +2,8 @@ | |||
| 2 | // Licensed under GPLv2 or any later version | 2 | // Licensed under GPLv2 or any later version |
| 3 | // Refer to the license.txt file included. | 3 | // Refer to the license.txt file included. |
| 4 | 4 | ||
| 5 | #include <algorithm> | ||
| 6 | |||
| 5 | #include "audio_core/behavior_info.h" | 7 | #include "audio_core/behavior_info.h" |
| 6 | #include "audio_core/voice_context.h" | 8 | #include "audio_core/voice_context.h" |
| 7 | #include "core/memory.h" | 9 | #include "core/memory.h" |