aboutsummaryrefslogtreecommitdiffstats
path: root/OpenAL32
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2016-05-31 10:18:34 -0700
committerChris Robinson <[email protected]>2016-05-31 10:18:34 -0700
commit5e64882be9ad3e3a1552e41befef5a6216f4ecfe (patch)
tree47059e787d77c86a0e2575e0d5a1d6b13798b8b4 /OpenAL32
parent72d2febccbc670843669494fe5bc052839f54294 (diff)
Use SSE for applying the HQ B-Format decoder matrices
Diffstat (limited to 'OpenAL32')
-rw-r--r--OpenAL32/Include/alu.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/OpenAL32/Include/alu.h b/OpenAL32/Include/alu.h
index eb8fb65e..fca60b15 100644
--- a/OpenAL32/Include/alu.h
+++ b/OpenAL32/Include/alu.h
@@ -170,6 +170,9 @@ typedef const ALfloat* (*ResamplerFunc)(const BsincState *state,
typedef void (*MixerFunc)(const ALfloat *data, ALuint OutChans,
ALfloat (*restrict OutBuffer)[BUFFERSIZE], struct MixGains *Gains,
ALuint Counter, ALuint OutPos, ALuint BufferSize);
+typedef void (*MatrixMixerFunc)(ALfloat *OutBuffer, const ALfloat *Mtx,
+ ALfloat (*restrict data)[BUFFERSIZE], ALuint InChans,
+ ALuint BufferSize);
typedef void (*HrtfMixerFunc)(ALfloat (*restrict OutBuffer)[BUFFERSIZE], ALuint lidx, ALuint ridx,
const ALfloat *data, ALuint Counter, ALuint Offset, ALuint OutPos,
const ALuint IrSize, const MixHrtfParams *hrtfparams,