aboutsummaryrefslogtreecommitdiffstats
path: root/alc/voice.cpp
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2020-04-03 03:52:23 -0700
committerChris Robinson <[email protected]>2020-04-03 03:52:23 -0700
commit11305975629176e032548bba53207a36f55d9dc7 (patch)
tree0d6725a51a81aafd42502127e89cade19198a103 /alc/voice.cpp
parentd9225083b4c7fe84d7a4bbde31801be4e51f6f61 (diff)
Use structs for the mixer and resampler tags
Diffstat (limited to 'alc/voice.cpp')
-rw-r--r--alc/voice.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/alc/voice.cpp b/alc/voice.cpp
index 64e0bde4..493687ae 100644
--- a/alc/voice.cpp
+++ b/alc/voice.cpp
@@ -63,6 +63,15 @@
#include "threads.h"
#include "vector.h"
+struct CTag;
+#ifdef HAVE_SSE
+struct SSETag;
+#endif
+#ifdef HAVE_NEON
+struct NEONTag;
+#endif
+struct CopyTag;
+
static_assert((BUFFERSIZE-1)/MAX_PITCH > 0, "MAX_PITCH is too large for BUFFERSIZE!");
static_assert((INT_MAX>>FRACTIONBITS)/MAX_PITCH > BUFFERSIZE,