diff options
Diffstat (limited to 'OpenAL32')
-rw-r--r-- | OpenAL32/Include/alMain.h | 9 | ||||
-rw-r--r-- | OpenAL32/Include/alSource.h | 5 | ||||
-rw-r--r-- | OpenAL32/alSource.c | 15 |
3 files changed, 0 insertions, 29 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; diff --git a/OpenAL32/alSource.c b/OpenAL32/alSource.c index 24e5874d..7ab17c74 100644 --- a/OpenAL32/alSource.c +++ b/OpenAL32/alSource.c @@ -38,21 +38,6 @@ #include "threads.h" -enum Resampler DefaultResampler = LinearResampler; -const ALsizei ResamplerPadding[ResamplerMax] = { - 0, /* Point */ - 1, /* Linear */ - 2, /* FIR4 */ - 3, /* FIR6 */ -}; -const ALsizei ResamplerPrePadding[ResamplerMax] = { - 0, /* Point */ - 0, /* Linear */ - 1, /* FIR4 */ - 2, /* FIR6 */ -}; - - extern inline struct ALsource *LookupSource(ALCcontext *context, ALuint id); extern inline struct ALsource *RemoveSource(ALCcontext *context, ALuint id); |