diff options
Diffstat (limited to 'Alc/mixer.c')
-rw-r--r-- | Alc/mixer.c | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/Alc/mixer.c b/Alc/mixer.c index 2a30e323..90f3e05e 100644 --- a/Alc/mixer.c +++ b/Alc/mixer.c @@ -44,15 +44,6 @@ static_assert((INT_MAX>>FRACTIONBITS)/MAX_PITCH > BUFFERSIZE, extern inline void InitiatePositionArrays(ALsizei frac, ALint increment, ALsizei *restrict frac_arr, ALint *restrict pos_arr, ALsizei size); -enum Resampler { - PointResampler, - LinearResampler, - FIR4Resampler, - BSincResampler, - - ResamplerDefault = LinearResampler -}; - /* BSinc requires up to 11 extra samples before the current position, and 12 after. */ static_assert(MAX_PRE_SAMPLES >= 11, "MAX_PRE_SAMPLES must be at least 11!"); static_assert(MAX_POST_SAMPLES >= 12, "MAX_POST_SAMPLES must be at least 12!"); @@ -103,7 +94,7 @@ static inline HrtfMixerFunc SelectHrtfMixer(void) return MixHrtf_C; } -static inline ResamplerFunc SelectResampler(enum Resampler resampler) +ResamplerFunc SelectResampler(enum Resampler resampler) { switch(resampler) { |