From 07f80eb4e1ba0839ae97fac0914855c239c4ea1f Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Thu, 1 Oct 2015 00:34:13 -0700 Subject: Move the resampler stuff to mixer.c where it's used --- OpenAL32/alSource.c | 15 --------------- 1 file changed, 15 deletions(-) (limited to 'OpenAL32/alSource.c') 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); -- cgit v1.2.3