Move the resampler stuff to mixer.c where it's used

This commit is contained in:
Chris Robinson
2015-10-01 00:34:13 -07:00
parent d5675d5395
commit 07f80eb4e1
5 changed files with 53 additions and 54 deletions
-15
View File
@@ -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);