aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/bformatdec.c
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2016-09-02 00:29:46 -0700
committerChris Robinson <[email protected]>2016-09-02 00:29:46 -0700
commitcf0ef500ec6e999e744d4ad54e26e0c74c8c53b9 (patch)
tree3dee3d4aafe88b0a5cc5f87ae57ec14bee491014 /Alc/bformatdec.c
parent17636a0c1c6cc7916d2b3f659b5a701266bcab36 (diff)
Rename MatrixMixerFunc to RowMixerFunc
Diffstat (limited to 'Alc/bformatdec.c')
-rw-r--r--Alc/bformatdec.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Alc/bformatdec.c b/Alc/bformatdec.c
index 70a6b3fd..180170d9 100644
--- a/Alc/bformatdec.c
+++ b/Alc/bformatdec.c
@@ -159,7 +159,7 @@ static const ALfloat CubeMatrix[8][FB_Max][MAX_AMBI_COEFFS] = {
static ALfloat CubeEncoder[8][MAX_AMBI_COEFFS];
-static inline MatrixMixerFunc SelectMixer(void)
+static inline RowMixerFunc SelectMixer(void)
{
#ifdef HAVE_SSE
if((CPUCapFlags&CPU_CAP_SSE))
@@ -172,7 +172,7 @@ static inline MatrixMixerFunc SelectMixer(void)
return MixRow_C;
}
-static MatrixMixerFunc MixMatrixRow = MixRow_C;
+static RowMixerFunc MixMatrixRow = MixRow_C;
static alonce_flag bformatdec_inited = AL_ONCE_FLAG_INIT;