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
|
|
|
|
|
|
|
|
2017-04-08 21:29:08 +00:00
|
|
|
static inline ALfloat point32(const ALfloat *restrict vals, ALsizei UNUSED(frac))
|
2013-10-07 14:44:09 +00:00
|
|
|
{ return vals[0]; }
|
2017-04-08 21:29:08 +00:00
|
|
|
static inline ALfloat lerp32(const ALfloat *restrict vals, ALsizei frac)
|
2012-09-27 09:46:15 +00:00
|
|
|
{ return lerp(vals[0], vals[1], frac * (1.0f/FRACTIONONE)); }
|
2017-04-08 21:29:08 +00:00
|
|
|
static inline ALfloat fir4_32(const ALfloat *restrict vals, ALsizei frac)
|
2015-09-28 06:52:16 +00:00
|
|
|
{ return resample_fir4(vals[-1], vals[0], vals[1], vals[2], frac); }
|
2012-09-14 11:13:18 +00:00
|
|
|
|
2015-11-05 17:42:08 +00:00
|
|
|
|
2017-02-13 19:29:32 +00:00
|
|
|
const ALfloat *Resample_copy32_C(const InterpState* UNUSED(state),
|
2017-04-08 21:29:08 +00:00
|
|
|
const ALfloat *restrict src, ALsizei UNUSED(frac), ALint UNUSED(increment),
|
2017-01-16 16:54:30 +00:00
|
|
|
ALfloat *restrict dst, ALsizei 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) \
|
2017-02-13 19:29:32 +00:00
|
|
|
const ALfloat *Resample_##Sampler##_C(const InterpState* UNUSED(state), \
|
2017-04-08 21:29:08 +00:00
|
|
|
const ALfloat *restrict src, ALsizei frac, ALint increment, \
|
2017-01-16 16:54:30 +00:00
|
|
|
ALfloat *restrict dst, ALsizei numsamples) \
|
2012-09-14 11:13:18 +00:00
|
|
|
{ \
|
2017-01-16 16:54:30 +00:00
|
|
|
ALsizei 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)
|
2012-09-14 11:13:18 +00:00
|
|
|
|
2015-11-06 05:57:12 +00:00
|
|
|
#undef DECL_TEMPLATE
|
|
|
|
|
2017-02-13 19:29:32 +00:00
|
|
|
const ALfloat *Resample_bsinc32_C(const InterpState *state, const ALfloat *restrict src,
|
2017-04-08 21:29:08 +00:00
|
|
|
ALsizei frac, ALint increment, ALfloat *restrict dst,
|
2017-01-16 16:54:30 +00:00
|
|
|
ALsizei dstlen)
|
2015-11-05 17:42:08 +00:00
|
|
|
{
|
2015-11-06 05:57:12 +00:00
|
|
|
const ALfloat *fil, *scd, *phd, *spd;
|
2017-02-13 19:29:32 +00:00
|
|
|
const ALfloat sf = state->bsinc.sf;
|
|
|
|
const ALsizei m = state->bsinc.m;
|
2017-02-13 05:35:08 +00:00
|
|
|
ALsizei j_f, pi, i;
|
2015-11-06 05:57:12 +00:00
|
|
|
ALfloat pf, r;
|
|
|
|
|
2017-02-13 19:29:32 +00:00
|
|
|
src += state->bsinc.l;
|
2015-11-05 17:42:08 +00:00
|
|
|
for(i = 0;i < dstlen;i++)
|
|
|
|
{
|
2015-11-06 05:57:12 +00:00
|
|
|
// Calculate the phase index and factor.
|
|
|
|
#define FRAC_PHASE_BITDIFF (FRACTIONBITS-BSINC_PHASE_BITS)
|
|
|
|
pi = frac >> FRAC_PHASE_BITDIFF;
|
|
|
|
pf = (frac & ((1<<FRAC_PHASE_BITDIFF)-1)) * (1.0f/(1<<FRAC_PHASE_BITDIFF));
|
|
|
|
#undef FRAC_PHASE_BITDIFF
|
|
|
|
|
2017-02-13 19:29:32 +00:00
|
|
|
fil = ASSUME_ALIGNED(state->bsinc.coeffs[pi].filter, 16);
|
|
|
|
scd = ASSUME_ALIGNED(state->bsinc.coeffs[pi].scDelta, 16);
|
|
|
|
phd = ASSUME_ALIGNED(state->bsinc.coeffs[pi].phDelta, 16);
|
|
|
|
spd = ASSUME_ALIGNED(state->bsinc.coeffs[pi].spDelta, 16);
|
2015-11-06 05:57:12 +00:00
|
|
|
|
|
|
|
// Apply the scale and phase interpolated filter.
|
|
|
|
r = 0.0f;
|
2017-02-13 05:35:08 +00:00
|
|
|
for(j_f = 0;j_f < m;j_f++)
|
2017-04-08 21:29:08 +00:00
|
|
|
r += (fil[j_f] + sf*scd[j_f] + pf*(phd[j_f] + sf*spd[j_f])) * src[j_f];
|
2015-11-06 05:57:12 +00:00
|
|
|
dst[i] = r;
|
2015-11-05 17:42:08 +00:00
|
|
|
|
|
|
|
frac += increment;
|
|
|
|
src += frac>>FRACTIONBITS;
|
|
|
|
frac &= FRACTIONMASK;
|
|
|
|
}
|
|
|
|
return dst;
|
|
|
|
}
|
|
|
|
|
2012-09-14 11:13:18 +00:00
|
|
|
|
2017-01-16 16:54:30 +00:00
|
|
|
void ALfilterState_processC(ALfilterState *filter, ALfloat *restrict dst, const ALfloat *restrict src, ALsizei numsamples)
|
2014-05-18 12:02:34 +00:00
|
|
|
{
|
2017-01-16 16:54:30 +00:00
|
|
|
ALsizei i;
|
2016-06-03 13:55:54 +00:00
|
|
|
if(numsamples > 1)
|
|
|
|
{
|
2016-07-26 07:03:44 +00:00
|
|
|
dst[0] = filter->b0 * src[0] +
|
2016-06-03 13:55:54 +00:00
|
|
|
filter->b1 * filter->x[0] +
|
|
|
|
filter->b2 * filter->x[1] -
|
|
|
|
filter->a1 * filter->y[0] -
|
|
|
|
filter->a2 * filter->y[1];
|
2016-07-26 07:03:44 +00:00
|
|
|
dst[1] = filter->b0 * src[1] +
|
2016-06-03 13:55:54 +00:00
|
|
|
filter->b1 * src[0] +
|
|
|
|
filter->b2 * filter->x[0] -
|
|
|
|
filter->a1 * dst[0] -
|
|
|
|
filter->a2 * filter->y[0];
|
|
|
|
for(i = 2;i < numsamples;i++)
|
2016-07-26 07:03:44 +00:00
|
|
|
dst[i] = filter->b0 * src[i] +
|
2016-06-03 13:55:54 +00:00
|
|
|
filter->b1 * src[i-1] +
|
|
|
|
filter->b2 * src[i-2] -
|
|
|
|
filter->a1 * dst[i-1] -
|
|
|
|
filter->a2 * dst[i-2];
|
|
|
|
filter->x[0] = src[i-1];
|
|
|
|
filter->x[1] = src[i-2];
|
|
|
|
filter->y[0] = dst[i-1];
|
|
|
|
filter->y[1] = dst[i-2];
|
|
|
|
}
|
|
|
|
else if(numsamples == 1)
|
|
|
|
{
|
2016-07-26 07:03:44 +00:00
|
|
|
dst[0] = filter->b0 * src[0] +
|
2016-06-03 13:55:54 +00:00
|
|
|
filter->b1 * filter->x[0] +
|
|
|
|
filter->b2 * filter->x[1] -
|
|
|
|
filter->a1 * filter->y[0] -
|
|
|
|
filter->a2 * filter->y[1];
|
|
|
|
filter->x[1] = filter->x[0];
|
|
|
|
filter->x[0] = src[0];
|
|
|
|
filter->y[1] = filter->y[0];
|
|
|
|
filter->y[0] = dst[0];
|
|
|
|
}
|
2014-05-18 12:02:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-01-16 15:45:07 +00:00
|
|
|
static inline void ApplyCoeffs(ALsizei Offset, ALfloat (*restrict Values)[2],
|
|
|
|
const ALsizei IrSize,
|
2017-03-12 02:04:06 +00:00
|
|
|
const ALfloat (*restrict Coeffs)[2],
|
2013-05-29 05:27:07 +00:00
|
|
|
ALfloat left, ALfloat right)
|
2012-08-15 08:01:55 +00:00
|
|
|
{
|
2017-01-16 15:45:07 +00:00
|
|
|
ALsizei c;
|
2012-09-11 08:59:42 +00:00
|
|
|
for(c = 0;c < IrSize;c++)
|
2012-08-15 08:01:55 +00:00
|
|
|
{
|
2017-01-16 15:45:07 +00:00
|
|
|
const ALsizei off = (Offset+c)&HRIR_MASK;
|
2012-08-15 08:01:55 +00:00
|
|
|
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
|
2017-05-03 10:29:21 +00:00
|
|
|
#define MixHrtfBlend MixHrtfBlend_C
|
2016-08-12 12:26:36 +00:00
|
|
|
#define MixDirectHrtf MixDirectHrtf_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
|
|
|
|
|
|
|
|
2017-01-16 15:45:07 +00:00
|
|
|
void Mix_C(const ALfloat *data, ALsizei OutChans, ALfloat (*restrict OutBuffer)[BUFFERSIZE],
|
|
|
|
ALfloat *CurrentGains, const ALfloat *TargetGains, ALsizei Counter, ALsizei OutPos,
|
|
|
|
ALsizei BufferSize)
|
2012-09-16 15:14:26 +00:00
|
|
|
{
|
2016-10-06 03:33:45 +00:00
|
|
|
ALfloat gain, delta, step;
|
2017-01-16 15:45:07 +00:00
|
|
|
ALsizei c;
|
2012-09-16 15:14:26 +00:00
|
|
|
|
2016-10-06 03:33:45 +00:00
|
|
|
delta = (Counter > 0) ? 1.0f/(ALfloat)Counter : 0.0f;
|
|
|
|
|
2014-06-13 20:34:19 +00:00
|
|
|
for(c = 0;c < OutChans;c++)
|
2012-09-16 15:14:26 +00:00
|
|
|
{
|
2017-01-16 15:45:07 +00:00
|
|
|
ALsizei pos = 0;
|
2016-10-06 03:33:45 +00:00
|
|
|
gain = CurrentGains[c];
|
|
|
|
step = (TargetGains[c] - gain) * delta;
|
|
|
|
if(fabsf(step) > FLT_EPSILON)
|
2014-03-23 13:57:00 +00:00
|
|
|
{
|
2017-01-16 15:45:07 +00:00
|
|
|
ALsizei minsize = mini(BufferSize, Counter);
|
2015-10-01 00:25:28 +00:00
|
|
|
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)
|
2016-10-06 03:33:45 +00:00
|
|
|
gain = TargetGains[c];
|
|
|
|
CurrentGains[c] = 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
|
|
|
}
|
2016-05-31 17:18:34 +00:00
|
|
|
|
|
|
|
/* Basically the inverse of the above. Rather than one input going to multiple
|
|
|
|
* outputs (each with its own gain), it's multiple inputs (each with its own
|
|
|
|
* gain) going to one output. This applies one row (vs one column) of a matrix
|
|
|
|
* transform. And as the matrices are more or less static once set up, no
|
|
|
|
* stepping is necessary.
|
|
|
|
*/
|
2017-01-16 15:45:07 +00:00
|
|
|
void MixRow_C(ALfloat *OutBuffer, const ALfloat *Gains, const ALfloat (*restrict data)[BUFFERSIZE], ALsizei InChans, ALsizei InPos, ALsizei BufferSize)
|
2016-05-31 17:18:34 +00:00
|
|
|
{
|
2017-01-16 15:45:07 +00:00
|
|
|
ALsizei c, i;
|
2016-05-31 17:18:34 +00:00
|
|
|
|
|
|
|
for(c = 0;c < InChans;c++)
|
|
|
|
{
|
2016-09-02 07:29:46 +00:00
|
|
|
ALfloat gain = Gains[c];
|
2016-05-31 17:18:34 +00:00
|
|
|
if(!(fabsf(gain) > GAIN_SILENCE_THRESHOLD))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
for(i = 0;i < BufferSize;i++)
|
2016-10-04 23:25:43 +00:00
|
|
|
OutBuffer[i] += data[c][InPos+i] * gain;
|
2016-05-31 17:18:34 +00:00
|
|
|
}
|
|
|
|
}
|