diff options
author | Chris Robinson <[email protected]> | 2015-11-05 21:57:12 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2015-11-05 21:57:12 -0800 |
commit | 431c89ece9014aa0c3f00d7ffb1f27da3dbadd82 (patch) | |
tree | 996fc11b2f832a211def01c132a2e33e9f8a5b70 /Alc/mixer_c.c | |
parent | 46e72a48adcad773907767b0fe3041aca41a8ba0 (diff) |
Manually inline and condense the bsinc resampler
Diffstat (limited to 'Alc/mixer_c.c')
-rw-r--r-- | Alc/mixer_c.c | 64 |
1 files changed, 27 insertions, 37 deletions
diff --git a/Alc/mixer_c.c b/Alc/mixer_c.c index bbed14d3..ef37b730 100644 --- a/Alc/mixer_c.c +++ b/Alc/mixer_c.c @@ -17,39 +17,6 @@ static inline ALfloat fir4_32(const ALfloat *vals, ALuint frac) 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); } -// Obtain the next sample from the interpolator. - -static inline ALfloat bsinc32(const BsincState *state, const ALfloat *vals, const ALuint frac) -{ - const ALfloat sf = state->sf; - ALfloat pf, r; - ALuint pi; - - // 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 - - r = 0.0f; - { - const ALuint m = state->m; - const ALint l = state->l; - const ALfloat *fil = state->coeffs[pi].filter; - const ALfloat *scd = state->coeffs[pi].scDelta; - const ALfloat *phd = state->coeffs[pi].phDelta; - const ALfloat *spd = state->coeffs[pi].spDelta; - ALuint j_f; - ALint j_s; - - // Apply the scale and phase interpolated filter. - for(j_f = 0,j_s = l;j_f < m;j_f++,j_s++) - r += (fil[j_f] + sf*scd[j_f] + pf*(phd[j_f] + sf*spd[j_f])) * - vals[j_s]; - } - return r; -} - const ALfloat *Resample_copy32_C(const BsincState* UNUSED(state), const ALfloat *src, ALuint UNUSED(frac), ALuint UNUSED(increment), ALfloat *restrict dst, ALuint numsamples) @@ -85,13 +52,38 @@ DECL_TEMPLATE(lerp32) DECL_TEMPLATE(fir4_32) DECL_TEMPLATE(fir8_32) +#undef DECL_TEMPLATE + const ALfloat *Resample_bsinc32_C(const BsincState *state, const ALfloat *src, ALuint frac, ALuint increment, ALfloat *restrict dst, ALuint dstlen) { - ALuint i; + const ALfloat *fil, *scd, *phd, *spd; + const ALfloat sf = state->sf; + const ALuint m = state->m; + const ALint l = state->l; + ALuint j_f, pi, i; + ALfloat pf, r; + ALint j_s; + for(i = 0;i < dstlen;i++) { - dst[i] = bsinc32(state, src, frac); + // 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 + + fil = state->coeffs[pi].filter; + scd = state->coeffs[pi].scDelta; + phd = state->coeffs[pi].phDelta; + spd = state->coeffs[pi].spDelta; + + // Apply the scale and phase interpolated filter. + r = 0.0f; + for(j_f = 0,j_s = l;j_f < m;j_f++,j_s++) + r += (fil[j_f] + sf*scd[j_f] + pf*(phd[j_f] + sf*spd[j_f])) * + src[j_s]; + dst[i] = r; frac += increment; src += frac>>FRACTIONBITS; @@ -100,8 +92,6 @@ const ALfloat *Resample_bsinc32_C(const BsincState *state, const ALfloat *src, A return dst; } -#undef DECL_TEMPLATE - void ALfilterState_processC(ALfilterState *filter, ALfloat *restrict dst, const ALfloat *src, ALuint numsamples) { |