aboutsummaryrefslogtreecommitdiffstats
path: root/OpenAL32/Include
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2015-10-01 00:34:13 -0700
committerChris Robinson <[email protected]>2015-10-01 00:34:13 -0700
commit07f80eb4e1ba0839ae97fac0914855c239c4ea1f (patch)
tree75b38bc640ace778979b6bb04e428255ff1749dc /OpenAL32/Include
parentd5675d5395cc8eb4df60a147e0f5caba48fbf68f (diff)
Move the resampler stuff to mixer.c where it's used
Diffstat (limited to 'OpenAL32/Include')
-rw-r--r--OpenAL32/Include/alMain.h9
-rw-r--r--OpenAL32/Include/alSource.h5
2 files changed, 0 insertions, 14 deletions
diff --git a/OpenAL32/Include/alMain.h b/OpenAL32/Include/alMain.h
index 9703a9cf..17ce9122 100644
--- a/OpenAL32/Include/alMain.h
+++ b/OpenAL32/Include/alMain.h
@@ -525,15 +525,6 @@ enum DistanceModel {
DefaultDistanceModel = InverseDistanceClamped
};
-enum Resampler {
- PointResampler,
- LinearResampler,
- FIR4Resampler,
- FIR6Resampler,
-
- ResamplerMax,
-};
-
enum Channel {
FrontLeft = 0,
FrontRight,
diff --git a/OpenAL32/Include/alSource.h b/OpenAL32/Include/alSource.h
index f67d5f3b..89c210b9 100644
--- a/OpenAL32/Include/alSource.h
+++ b/OpenAL32/Include/alSource.h
@@ -14,11 +14,6 @@ extern "C" {
struct ALbuffer;
struct ALsource;
-extern enum Resampler DefaultResampler;
-
-extern const ALsizei ResamplerPadding[ResamplerMax];
-extern const ALsizei ResamplerPrePadding[ResamplerMax];
-
typedef struct ALbufferlistitem {
struct ALbuffer *buffer;