2012-08-15 08:01:55 +00:00
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include "alMain.h"
|
|
|
|
#include "alSource.h"
|
2014-04-19 09:11:04 +00:00
|
|
|
|
2014-02-24 05:11:01 +00:00
|
|
|
#include "hrtf.h"
|
2012-08-15 08:01:55 +00:00
|
|
|
#include "mixer_defs.h"
|
2014-04-19 09:11:04 +00:00
|
|
|
#include "align.h"
|
2012-08-15 08:01:55 +00:00
|
|
|
|
|
|
|
|
2014-06-13 20:34:19 +00:00
|
|
|
#define REAL_MERGE(a,b) a##b
|
|
|
|
#define MERGE(a,b) REAL_MERGE(a,b)
|
2012-08-15 08:01:55 +00:00
|
|
|
|
2014-06-13 20:34:19 +00:00
|
|
|
#define MixHrtf MERGE(MixHrtf_,SUFFIX)
|
2012-09-09 04:34:36 +00:00
|
|
|
|
2012-08-15 08:01:55 +00:00
|
|
|
|
2014-02-24 05:17:09 +00:00
|
|
|
static inline void ApplyCoeffsStep(ALuint Offset, ALfloat (*restrict Values)[2],
|
|
|
|
const ALuint irSize,
|
2013-05-29 05:27:07 +00:00
|
|
|
ALfloat (*restrict Coeffs)[2],
|
2014-02-24 05:17:09 +00:00
|
|
|
const ALfloat (*restrict CoeffStep)[2],
|
|
|
|
ALfloat left, ALfloat right);
|
2013-05-29 05:27:07 +00:00
|
|
|
static inline void ApplyCoeffs(ALuint Offset, ALfloat (*restrict Values)[2],
|
|
|
|
const ALuint irSize,
|
|
|
|
ALfloat (*restrict Coeffs)[2],
|
|
|
|
ALfloat left, ALfloat right);
|
2012-09-09 04:34:36 +00:00
|
|
|
|
2012-08-29 08:56:04 +00:00
|
|
|
|
2014-06-13 20:34:19 +00:00
|
|
|
void MixHrtf(ALfloat (*restrict OutBuffer)[BUFFERSIZE], const ALfloat *data,
|
|
|
|
ALuint Counter, ALuint Offset, ALuint OutPos, const ALuint IrSize,
|
|
|
|
const HrtfParams *hrtfparams, HrtfState *hrtfstate, ALuint BufferSize)
|
2012-08-15 08:01:55 +00:00
|
|
|
{
|
2014-04-19 09:11:04 +00:00
|
|
|
alignas(16) ALfloat Coeffs[HRIR_LENGTH][2];
|
2012-09-09 04:34:36 +00:00
|
|
|
ALuint Delay[2];
|
|
|
|
ALfloat left, right;
|
|
|
|
ALuint pos;
|
|
|
|
ALuint c;
|
2012-08-15 08:01:55 +00:00
|
|
|
|
2012-09-11 08:59:42 +00:00
|
|
|
for(c = 0;c < IrSize;c++)
|
2012-09-09 04:34:36 +00:00
|
|
|
{
|
2014-05-04 01:59:26 +00:00
|
|
|
Coeffs[c][0] = hrtfparams->Coeffs[c][0] - (hrtfparams->CoeffStep[c][0]*Counter);
|
|
|
|
Coeffs[c][1] = hrtfparams->Coeffs[c][1] - (hrtfparams->CoeffStep[c][1]*Counter);
|
2012-09-09 04:34:36 +00:00
|
|
|
}
|
2014-05-04 01:59:26 +00:00
|
|
|
Delay[0] = hrtfparams->Delay[0] - (hrtfparams->DelayStep[0]*Counter);
|
|
|
|
Delay[1] = hrtfparams->Delay[1] - (hrtfparams->DelayStep[1]*Counter);
|
2012-09-09 04:34:36 +00:00
|
|
|
|
2014-03-23 14:18:49 +00:00
|
|
|
for(pos = 0;pos < BufferSize && pos < Counter;pos++)
|
2012-09-09 04:34:36 +00:00
|
|
|
{
|
2014-05-04 01:59:26 +00:00
|
|
|
hrtfstate->History[Offset&SRC_HISTORY_MASK] = data[pos];
|
|
|
|
left = lerp(hrtfstate->History[(Offset-(Delay[0]>>HRTFDELAY_BITS))&SRC_HISTORY_MASK],
|
|
|
|
hrtfstate->History[(Offset-(Delay[0]>>HRTFDELAY_BITS)-1)&SRC_HISTORY_MASK],
|
2012-09-09 04:34:36 +00:00
|
|
|
(Delay[0]&HRTFDELAY_MASK)*(1.0f/HRTFDELAY_FRACONE));
|
2014-05-04 01:59:26 +00:00
|
|
|
right = lerp(hrtfstate->History[(Offset-(Delay[1]>>HRTFDELAY_BITS))&SRC_HISTORY_MASK],
|
|
|
|
hrtfstate->History[(Offset-(Delay[1]>>HRTFDELAY_BITS)-1)&SRC_HISTORY_MASK],
|
2012-09-09 04:34:36 +00:00
|
|
|
(Delay[1]&HRTFDELAY_MASK)*(1.0f/HRTFDELAY_FRACONE));
|
|
|
|
|
2014-05-04 01:59:26 +00:00
|
|
|
Delay[0] += hrtfparams->DelayStep[0];
|
|
|
|
Delay[1] += hrtfparams->DelayStep[1];
|
2012-09-09 04:34:36 +00:00
|
|
|
|
2014-05-04 01:59:26 +00:00
|
|
|
hrtfstate->Values[(Offset+IrSize)&HRIR_MASK][0] = 0.0f;
|
|
|
|
hrtfstate->Values[(Offset+IrSize)&HRIR_MASK][1] = 0.0f;
|
2012-09-09 04:34:36 +00:00
|
|
|
Offset++;
|
|
|
|
|
2014-05-04 01:59:26 +00:00
|
|
|
ApplyCoeffsStep(Offset, hrtfstate->Values, IrSize, Coeffs, hrtfparams->CoeffStep, left, right);
|
2014-05-18 14:54:51 +00:00
|
|
|
OutBuffer[FrontLeft][OutPos] += hrtfstate->Values[Offset&HRIR_MASK][0];
|
|
|
|
OutBuffer[FrontRight][OutPos] += hrtfstate->Values[Offset&HRIR_MASK][1];
|
2012-09-09 04:34:36 +00:00
|
|
|
OutPos++;
|
|
|
|
}
|
|
|
|
|
|
|
|
Delay[0] >>= HRTFDELAY_BITS;
|
|
|
|
Delay[1] >>= HRTFDELAY_BITS;
|
|
|
|
for(;pos < BufferSize;pos++)
|
|
|
|
{
|
2014-05-04 01:59:26 +00:00
|
|
|
hrtfstate->History[Offset&SRC_HISTORY_MASK] = data[pos];
|
|
|
|
left = hrtfstate->History[(Offset-Delay[0])&SRC_HISTORY_MASK];
|
|
|
|
right = hrtfstate->History[(Offset-Delay[1])&SRC_HISTORY_MASK];
|
2012-09-09 04:34:36 +00:00
|
|
|
|
2014-05-04 01:59:26 +00:00
|
|
|
hrtfstate->Values[(Offset+IrSize)&HRIR_MASK][0] = 0.0f;
|
|
|
|
hrtfstate->Values[(Offset+IrSize)&HRIR_MASK][1] = 0.0f;
|
2012-09-09 04:34:36 +00:00
|
|
|
Offset++;
|
|
|
|
|
2014-05-04 01:59:26 +00:00
|
|
|
ApplyCoeffs(Offset, hrtfstate->Values, IrSize, Coeffs, left, right);
|
2014-05-18 14:54:51 +00:00
|
|
|
OutBuffer[FrontLeft][OutPos] += hrtfstate->Values[Offset&HRIR_MASK][0];
|
|
|
|
OutBuffer[FrontRight][OutPos] += hrtfstate->Values[Offset&HRIR_MASK][1];
|
2012-09-09 04:34:36 +00:00
|
|
|
|
|
|
|
OutPos++;
|
|
|
|
}
|
2012-08-15 08:01:55 +00:00
|
|
|
}
|
2012-09-09 07:53:54 +00:00
|
|
|
|
2012-08-15 08:01:55 +00:00
|
|
|
|
2014-06-13 20:34:19 +00:00
|
|
|
#undef MixHrtf
|
2012-08-29 09:43:19 +00:00
|
|
|
|
2014-06-13 20:34:19 +00:00
|
|
|
#undef MERGE
|
|
|
|
#undef REAL_MERGE
|