diff options
author | Chris Robinson <[email protected]> | 2016-09-06 13:21:11 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2016-09-06 13:21:11 -0700 |
commit | 1d9d1958db4b14da654a3bc3f362582829596c75 (patch) | |
tree | 0cba33071b023c1eb6985f478f2eecfdd7890aef /Alc/bformatdec.c | |
parent | 9cbe02fd850b9ecc4a227c7553004ca3203a5ed0 (diff) |
Make the SelectMixer function sharable
Diffstat (limited to 'Alc/bformatdec.c')
-rw-r--r-- | Alc/bformatdec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Alc/bformatdec.c b/Alc/bformatdec.c index 056eb7f5..0722c061 100644 --- a/Alc/bformatdec.c +++ b/Alc/bformatdec.c @@ -161,7 +161,7 @@ static const ALfloat Ambi3DDecoder[8][FB_Max][MAX_AMBI_COEFFS] = { static ALfloat Ambi3DEncoder[8][MAX_AMBI_COEFFS]; -static inline RowMixerFunc SelectMixer(void) +static inline RowMixerFunc SelectRowMixer(void) { #ifdef HAVE_SSE if((CPUCapFlags&CPU_CAP_SSE)) @@ -183,7 +183,7 @@ static void init_bformatdec(void) { ALuint i, j; - MixMatrixRow = SelectMixer(); + MixMatrixRow = SelectRowMixer(); for(i = 0;i < COUNTOF(Ambi3DPoints);i++) CalcDirectionCoeffs(Ambi3DPoints[i], 0.0f, Ambi3DEncoder[i]); |