2012-08-15 08:01:55 +00:00
|
|
|
#include "config.h"
|
|
|
|
|
2012-10-05 13:03:19 +00:00
|
|
|
#include <assert.h>
|
|
|
|
|
2012-08-15 08:01:55 +00:00
|
|
|
#include "alMain.h"
|
|
|
|
#include "alu.h"
|
2012-09-16 15:14:26 +00:00
|
|
|
#include "alSource.h"
|
|
|
|
#include "alAuxEffectSlot.h"
|
2012-08-15 08:01:55 +00:00
|
|
|
|
|
|
|
|
2013-10-07 14:44:09 +00:00
|
|
|
static inline ALfloat point32(const ALfloat *vals, ALuint UNUSED(frac))
|
|
|
|
{ return vals[0]; }
|
2013-05-29 05:27:07 +00:00
|
|
|
static inline ALfloat lerp32(const ALfloat *vals, ALuint frac)
|
2012-09-27 09:46:15 +00:00
|
|
|
{ return lerp(vals[0], vals[1], frac * (1.0f/FRACTIONONE)); }
|
2015-09-28 06:52:16 +00:00
|
|
|
static inline ALfloat fir4_32(const ALfloat *vals, ALuint frac)
|
|
|
|
{ return resample_fir4(vals[-1], vals[0], vals[1], vals[2], frac); }
|
2015-10-11 14:37:22 +00:00
|
|
|
static inline ALfloat fir8_32(const ALfloat *vals, ALuint frac)
|
|
|
|
{ return resample_fir8(vals[-3], vals[-2], vals[-1], vals[0], vals[1], vals[2], vals[3], vals[4], frac); }
|
2012-09-14 11:13:18 +00:00
|
|
|
|
2014-05-21 22:24:40 +00:00
|
|
|
const ALfloat *Resample_copy32_C(const ALfloat *src, ALuint UNUSED(frac),
|
2015-02-15 21:15:49 +00:00
|
|
|
ALuint UNUSED(increment), ALfloat *restrict dst, ALuint numsamples)
|
2012-10-05 13:03:19 +00:00
|
|
|
{
|
2014-05-21 22:24:40 +00:00
|
|
|
#if defined(HAVE_SSE) || defined(HAVE_NEON)
|
|
|
|
/* Avoid copying the source data if it's aligned like the destination. */
|
|
|
|
if((((intptr_t)src)&15) == (((intptr_t)dst)&15))
|
|
|
|
return src;
|
|
|
|
#endif
|
|
|
|
memcpy(dst, src, numsamples*sizeof(ALfloat));
|
|
|
|
return dst;
|
2012-10-05 13:03:19 +00:00
|
|
|
}
|
|
|
|
|
2012-09-14 11:13:18 +00:00
|
|
|
#define DECL_TEMPLATE(Sampler) \
|
2014-05-21 22:24:40 +00:00
|
|
|
const ALfloat *Resample_##Sampler##_C(const ALfloat *src, ALuint frac, \
|
|
|
|
ALuint increment, ALfloat *restrict dst, ALuint numsamples) \
|
2012-09-14 11:13:18 +00:00
|
|
|
{ \
|
|
|
|
ALuint i; \
|
2014-05-21 22:24:40 +00:00
|
|
|
for(i = 0;i < numsamples;i++) \
|
2012-09-14 11:13:18 +00:00
|
|
|
{ \
|
2014-05-21 22:24:40 +00:00
|
|
|
dst[i] = Sampler(src, frac); \
|
2012-09-14 11:13:18 +00:00
|
|
|
\
|
|
|
|
frac += increment; \
|
2014-05-21 22:24:40 +00:00
|
|
|
src += frac>>FRACTIONBITS; \
|
2012-09-14 11:13:18 +00:00
|
|
|
frac &= FRACTIONMASK; \
|
|
|
|
} \
|
2014-05-21 22:24:40 +00:00
|
|
|
return dst; \
|
2012-09-14 11:13:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
DECL_TEMPLATE(point32)
|
|
|
|
DECL_TEMPLATE(lerp32)
|
2015-09-28 06:52:16 +00:00
|
|
|
DECL_TEMPLATE(fir4_32)
|
2015-10-11 14:37:22 +00:00
|
|
|
DECL_TEMPLATE(fir8_32)
|
2012-09-14 11:13:18 +00:00
|
|
|
|
|
|
|
#undef DECL_TEMPLATE
|
|
|
|
|
|
|
|
|
2014-05-18 12:02:34 +00:00
|
|
|
void ALfilterState_processC(ALfilterState *filter, ALfloat *restrict dst, const ALfloat *src, ALuint numsamples)
|
|
|
|
{
|
|
|
|
ALuint i;
|
|
|
|
for(i = 0;i < numsamples;i++)
|
|
|
|
*(dst++) = ALfilterState_processSingle(filter, *(src++));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-11-25 06:26:42 +00:00
|
|
|
static inline void SetupCoeffs(ALfloat (*restrict OutCoeffs)[2],
|
|
|
|
const HrtfParams *hrtfparams,
|
|
|
|
ALuint IrSize, ALuint Counter)
|
|
|
|
{
|
|
|
|
ALuint c;
|
|
|
|
for(c = 0;c < IrSize;c++)
|
|
|
|
{
|
|
|
|
OutCoeffs[c][0] = hrtfparams->Coeffs[c][0] - (hrtfparams->CoeffStep[c][0]*Counter);
|
|
|
|
OutCoeffs[c][1] = hrtfparams->Coeffs[c][1] - (hrtfparams->CoeffStep[c][1]*Counter);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-11-23 18:49:54 +00: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)
|
|
|
|
{
|
|
|
|
ALuint c;
|
|
|
|
for(c = 0;c < IrSize;c++)
|
|
|
|
{
|
|
|
|
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];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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-08-15 08:01:55 +00:00
|
|
|
{
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-15 08:37:46 +00:00
|
|
|
#define MixHrtf MixHrtf_C
|
2012-08-15 08:01:55 +00:00
|
|
|
#include "mixer_inc.c"
|
2015-08-15 08:37:46 +00:00
|
|
|
#undef MixHrtf
|
2012-09-16 15:14:26 +00:00
|
|
|
|
|
|
|
|
2014-06-13 20:34:19 +00:00
|
|
|
void Mix_C(const ALfloat *data, ALuint OutChans, ALfloat (*restrict OutBuffer)[BUFFERSIZE],
|
|
|
|
MixGains *Gains, ALuint Counter, ALuint OutPos, ALuint BufferSize)
|
2012-09-16 15:14:26 +00:00
|
|
|
{
|
2014-06-13 20:34:19 +00:00
|
|
|
ALfloat gain, step;
|
2012-09-16 15:14:26 +00:00
|
|
|
ALuint c;
|
|
|
|
|
2014-06-13 20:34:19 +00:00
|
|
|
for(c = 0;c < OutChans;c++)
|
2012-09-16 15:14:26 +00:00
|
|
|
{
|
2014-03-23 13:57:00 +00:00
|
|
|
ALuint pos = 0;
|
2014-06-13 20:34:19 +00:00
|
|
|
gain = Gains[c].Current;
|
|
|
|
step = Gains[c].Step;
|
2014-11-25 10:08:48 +00:00
|
|
|
if(step != 0.0f && Counter > 0)
|
2014-03-23 13:57:00 +00:00
|
|
|
{
|
2015-10-01 00:25:28 +00:00
|
|
|
ALuint minsize = minu(BufferSize, Counter);
|
|
|
|
for(;pos < minsize;pos++)
|
2014-03-23 13:57:00 +00:00
|
|
|
{
|
2014-06-13 20:34:19 +00:00
|
|
|
OutBuffer[c][OutPos+pos] += data[pos]*gain;
|
2014-11-25 10:08:48 +00:00
|
|
|
gain += step;
|
2014-03-23 13:57:00 +00:00
|
|
|
}
|
2014-05-04 07:13:19 +00:00
|
|
|
if(pos == Counter)
|
2014-06-13 20:34:19 +00:00
|
|
|
gain = Gains[c].Target;
|
|
|
|
Gains[c].Current = gain;
|
2014-03-23 13:57:00 +00:00
|
|
|
}
|
|
|
|
|
2014-10-31 23:55:19 +00:00
|
|
|
if(!(fabsf(gain) > GAIN_SILENCE_THRESHOLD))
|
2012-09-24 22:33:44 +00:00
|
|
|
continue;
|
2014-03-23 13:57:00 +00:00
|
|
|
for(;pos < BufferSize;pos++)
|
2014-06-13 20:34:19 +00:00
|
|
|
OutBuffer[c][OutPos+pos] += data[pos]*gain;
|
2014-03-23 23:11:21 +00:00
|
|
|
}
|
2012-09-16 15:14:26 +00:00
|
|
|
}
|