2012-08-15 01:01:55 -07:00
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include "alMain.h"
|
|
|
|
#include "alSource.h"
|
2014-04-19 02:11:04 -07:00
|
|
|
|
2014-02-23 21:11:01 -08:00
|
|
|
#include "hrtf.h"
|
2012-08-15 01:01:55 -07:00
|
|
|
#include "mixer_defs.h"
|
2014-04-19 02:11:04 -07:00
|
|
|
#include "align.h"
|
2016-02-14 03:23:06 -08:00
|
|
|
#include "alu.h"
|
2012-08-15 01:01:55 -07:00
|
|
|
|
|
|
|
|
2014-11-23 10:49:54 -08:00
|
|
|
static inline void ApplyCoeffsStep(ALuint Offset, ALfloat (*restrict Values)[2],
|
|
|
|
const ALuint irSize,
|
|
|
|
ALfloat (*restrict Coeffs)[2],
|
|
|
|
const ALfloat (*restrict CoeffStep)[2],
|
|
|
|
ALfloat left, ALfloat right);
|
2013-05-28 22:27:07 -07:00
|
|
|
static inline void ApplyCoeffs(ALuint Offset, ALfloat (*restrict Values)[2],
|
|
|
|
const ALuint irSize,
|
|
|
|
ALfloat (*restrict Coeffs)[2],
|
|
|
|
ALfloat left, ALfloat right);
|
2012-09-08 21:34:36 -07:00
|
|
|
|
2012-08-29 01:56:04 -07:00
|
|
|
|
2014-06-13 13:34:19 -07:00
|
|
|
void MixHrtf(ALfloat (*restrict OutBuffer)[BUFFERSIZE], const ALfloat *data,
|
2014-11-23 10:49:54 -08:00
|
|
|
ALuint Counter, ALuint Offset, ALuint OutPos, const ALuint IrSize,
|
2016-02-14 03:23:06 -08:00
|
|
|
const MixHrtfParams *hrtfparams, HrtfState *hrtfstate, ALuint BufferSize)
|
2012-08-15 01:01:55 -07:00
|
|
|
{
|
2016-02-14 03:23:06 -08:00
|
|
|
ALfloat (*Coeffs)[2] = hrtfparams->Current->Coeffs;
|
|
|
|
ALuint Delay[2] = { hrtfparams->Current->Delay[0], hrtfparams->Current->Delay[1] };
|
2012-09-08 21:34:36 -07:00
|
|
|
ALfloat left, right;
|
|
|
|
ALuint pos;
|
2012-08-15 01:01:55 -07:00
|
|
|
|
2014-11-23 10:49:54 -08:00
|
|
|
pos = 0;
|
2016-02-14 03:23:06 -08:00
|
|
|
if(pos < Counter)
|
2014-11-23 10:49:54 -08:00
|
|
|
{
|
2016-02-14 03:23:06 -08:00
|
|
|
for(;pos < BufferSize && pos < Counter;pos++)
|
|
|
|
{
|
|
|
|
hrtfstate->History[Offset&HRTF_HISTORY_MASK] = data[pos];
|
|
|
|
left = lerp(hrtfstate->History[(Offset-(Delay[0]>>HRTFDELAY_BITS))&HRTF_HISTORY_MASK],
|
|
|
|
hrtfstate->History[(Offset-(Delay[0]>>HRTFDELAY_BITS)-1)&HRTF_HISTORY_MASK],
|
|
|
|
(Delay[0]&HRTFDELAY_MASK)*(1.0f/HRTFDELAY_FRACONE));
|
|
|
|
right = lerp(hrtfstate->History[(Offset-(Delay[1]>>HRTFDELAY_BITS))&HRTF_HISTORY_MASK],
|
|
|
|
hrtfstate->History[(Offset-(Delay[1]>>HRTFDELAY_BITS)-1)&HRTF_HISTORY_MASK],
|
|
|
|
(Delay[1]&HRTFDELAY_MASK)*(1.0f/HRTFDELAY_FRACONE));
|
2014-11-23 10:49:54 -08:00
|
|
|
|
2016-02-14 03:23:06 -08:00
|
|
|
Delay[0] += hrtfparams->Steps.Delay[0];
|
|
|
|
Delay[1] += hrtfparams->Steps.Delay[1];
|
2014-11-23 10:49:54 -08:00
|
|
|
|
2016-02-14 03:23:06 -08:00
|
|
|
hrtfstate->Values[(Offset+IrSize)&HRIR_MASK][0] = 0.0f;
|
|
|
|
hrtfstate->Values[(Offset+IrSize)&HRIR_MASK][1] = 0.0f;
|
|
|
|
Offset++;
|
2014-11-23 10:49:54 -08:00
|
|
|
|
2016-02-14 03:23:06 -08:00
|
|
|
ApplyCoeffsStep(Offset, hrtfstate->Values, IrSize, Coeffs, hrtfparams->Steps.Coeffs, left, right);
|
|
|
|
OutBuffer[0][OutPos] += hrtfstate->Values[Offset&HRIR_MASK][0];
|
|
|
|
OutBuffer[1][OutPos] += hrtfstate->Values[Offset&HRIR_MASK][1];
|
|
|
|
OutPos++;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(pos == Counter)
|
|
|
|
{
|
|
|
|
*hrtfparams->Current = *hrtfparams->Target;
|
|
|
|
Delay[0] = hrtfparams->Target->Delay[0];
|
|
|
|
Delay[1] = hrtfparams->Target->Delay[1];
|
|
|
|
}
|
2014-11-23 10:49:54 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
Delay[0] >>= HRTFDELAY_BITS;
|
|
|
|
Delay[1] >>= HRTFDELAY_BITS;
|
|
|
|
for(;pos < BufferSize;pos++)
|
2012-09-08 21:34:36 -07:00
|
|
|
{
|
2014-11-22 04:20:17 -08:00
|
|
|
hrtfstate->History[Offset&HRTF_HISTORY_MASK] = data[pos];
|
|
|
|
left = hrtfstate->History[(Offset-Delay[0])&HRTF_HISTORY_MASK];
|
|
|
|
right = hrtfstate->History[(Offset-Delay[1])&HRTF_HISTORY_MASK];
|
2012-09-08 21:34:36 -07:00
|
|
|
|
2014-05-03 18:59:26 -07:00
|
|
|
hrtfstate->Values[(Offset+IrSize)&HRIR_MASK][0] = 0.0f;
|
|
|
|
hrtfstate->Values[(Offset+IrSize)&HRIR_MASK][1] = 0.0f;
|
2012-09-08 21:34:36 -07:00
|
|
|
Offset++;
|
|
|
|
|
2014-05-03 18:59:26 -07:00
|
|
|
ApplyCoeffs(Offset, hrtfstate->Values, IrSize, Coeffs, left, right);
|
2014-11-23 10:49:54 -08:00
|
|
|
OutBuffer[0][OutPos] += hrtfstate->Values[Offset&HRIR_MASK][0];
|
|
|
|
OutBuffer[1][OutPos] += hrtfstate->Values[Offset&HRIR_MASK][1];
|
|
|
|
OutPos++;
|
2012-09-08 21:34:36 -07:00
|
|
|
}
|
2012-08-15 01:01:55 -07:00
|
|
|
}
|