2012-08-15 08:01:55 +00:00
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include "AL/al.h"
|
|
|
|
#include "AL/alc.h"
|
|
|
|
#include "alMain.h"
|
|
|
|
#include "alu.h"
|
|
|
|
|
|
|
|
|
2012-08-15 15:19:04 +00:00
|
|
|
static __inline void ApplyCoeffsStep(ALuint Offset, ALfloat (*RESTRICT Values)[2],
|
2012-09-11 08:59:42 +00:00
|
|
|
const ALuint IrSize,
|
2012-08-15 15:19:04 +00:00
|
|
|
ALfloat (*RESTRICT Coeffs)[2],
|
|
|
|
ALfloat (*RESTRICT CoeffStep)[2],
|
|
|
|
ALfloat left, ALfloat right)
|
|
|
|
{
|
|
|
|
ALuint c;
|
2012-09-11 08:59:42 +00:00
|
|
|
for(c = 0;c < IrSize;c++)
|
2012-08-15 15:19:04 +00:00
|
|
|
{
|
|
|
|
const ALuint off = (Offset+c)&HRIR_MASK;
|
|
|
|
Values[off][0] += Coeffs[c][0] * left;
|
|
|
|
Values[off][1] += Coeffs[c][1] * right;
|
|
|
|
Coeffs[c][0] += CoeffStep[c][0];
|
|
|
|
Coeffs[c][1] += CoeffStep[c][1];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-08-15 08:01:55 +00:00
|
|
|
static __inline void ApplyCoeffs(ALuint Offset, ALfloat (*RESTRICT Values)[2],
|
2012-09-11 08:59:42 +00:00
|
|
|
const ALuint IrSize,
|
2012-08-15 08:01:55 +00:00
|
|
|
ALfloat (*RESTRICT Coeffs)[2],
|
|
|
|
ALfloat left, ALfloat right)
|
|
|
|
{
|
|
|
|
ALuint c;
|
2012-09-11 08:59:42 +00:00
|
|
|
for(c = 0;c < IrSize;c++)
|
2012-08-15 08:01:55 +00:00
|
|
|
{
|
|
|
|
const ALuint off = (Offset+c)&HRIR_MASK;
|
|
|
|
Values[off][0] += Coeffs[c][0] * left;
|
|
|
|
Values[off][1] += Coeffs[c][1] * right;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-08-29 08:56:04 +00:00
|
|
|
|
2012-08-15 08:01:55 +00:00
|
|
|
#define SUFFIX C
|
|
|
|
#include "mixer_inc.c"
|
|
|
|
#undef SUFFIX
|