summaryrefslogtreecommitdiffstats
path: root/OpenAL32
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2015-09-27 20:55:39 -0700
committerChris Robinson <[email protected]>2015-09-27 20:55:39 -0700
commit3e60b1898943c26d817aef8d31466c1fee5aa83b (patch)
tree426ab735da0d42e3c000baa2452023c80b355026 /OpenAL32
parent86ff35bf71559295019847ccccb8522f93df1106 (diff)
Don't keep selecting the mixer to use
Diffstat (limited to 'OpenAL32')
-rw-r--r--OpenAL32/Include/alSource.h2
-rw-r--r--OpenAL32/Include/alu.h2
-rw-r--r--OpenAL32/alSource.c2
3 files changed, 1 insertions, 5 deletions
diff --git a/OpenAL32/Include/alSource.h b/OpenAL32/Include/alSource.h
index fe2867b1..f67d5f3b 100644
--- a/OpenAL32/Include/alSource.h
+++ b/OpenAL32/Include/alSource.h
@@ -77,8 +77,6 @@ typedef struct ALsource {
volatile ALfloat Radius;
- enum Resampler Resampler;
-
/**
* Last user-specified offset, and the offset type (bytes, samples, or
* seconds).
diff --git a/OpenAL32/Include/alu.h b/OpenAL32/Include/alu.h
index 2edc0d0c..f5fc9fa4 100644
--- a/OpenAL32/Include/alu.h
+++ b/OpenAL32/Include/alu.h
@@ -216,7 +216,7 @@ inline ALfloat cubic(ALfloat val0, ALfloat val1, ALfloat val2, ALfloat val3, ALu
}
-void aluInitResamplers(void);
+void aluInitMixer(void);
ALvoid aluInitPanning(ALCdevice *Device);
diff --git a/OpenAL32/alSource.c b/OpenAL32/alSource.c
index ee9e1fcd..67fb45a9 100644
--- a/OpenAL32/alSource.c
+++ b/OpenAL32/alSource.c
@@ -2549,8 +2549,6 @@ static ALvoid InitSourceParams(ALsource *Source)
Source->DistanceModel = DefaultDistanceModel;
- Source->Resampler = DefaultResampler;
-
Source->state = AL_INITIAL;
Source->new_state = AL_NONE;
Source->SourceType = AL_UNDETERMINED;