2007-11-14 02:02:18 +00:00
|
|
|
/**
|
|
|
|
* OpenAL cross platform audio library
|
|
|
|
* Copyright (C) 1999-2007 by authors.
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the
|
2014-08-18 12:11:03 +00:00
|
|
|
* Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
2007-11-14 02:02:18 +00:00
|
|
|
* Or go to http://www.gnu.org/copyleft/lgpl.html
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include <math.h>
|
2009-01-24 18:38:04 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2009-01-26 03:20:47 +00:00
|
|
|
#include <ctype.h>
|
2009-02-02 19:18:33 +00:00
|
|
|
#include <assert.h>
|
2009-01-26 03:20:47 +00:00
|
|
|
|
2007-11-14 02:02:18 +00:00
|
|
|
#include "alMain.h"
|
2007-12-31 09:09:57 +00:00
|
|
|
#include "alSource.h"
|
|
|
|
#include "alBuffer.h"
|
|
|
|
#include "alListener.h"
|
2008-01-16 22:01:24 +00:00
|
|
|
#include "alAuxEffectSlot.h"
|
2008-08-14 12:43:52 +00:00
|
|
|
#include "alu.h"
|
2008-01-03 13:36:51 +00:00
|
|
|
#include "bs2b.h"
|
2014-02-24 05:11:01 +00:00
|
|
|
#include "hrtf.h"
|
2016-02-27 00:09:06 +00:00
|
|
|
#include "uhjfilter.h"
|
2016-03-15 12:08:05 +00:00
|
|
|
#include "bformatdec.h"
|
2014-06-03 02:19:22 +00:00
|
|
|
#include "static_assert.h"
|
2007-11-14 02:02:18 +00:00
|
|
|
|
2014-11-22 12:20:17 +00:00
|
|
|
#include "mixer_defs.h"
|
|
|
|
|
2014-11-01 22:55:18 +00:00
|
|
|
#include "backends/base.h"
|
2013-12-18 07:03:34 +00:00
|
|
|
|
2009-08-15 18:33:38 +00:00
|
|
|
|
2011-12-20 09:17:11 +00:00
|
|
|
struct ChanMap {
|
|
|
|
enum Channel channel;
|
|
|
|
ALfloat angle;
|
2014-10-03 01:05:42 +00:00
|
|
|
ALfloat elevation;
|
2011-12-20 09:17:11 +00:00
|
|
|
};
|
|
|
|
|
2011-09-24 05:33:37 +00:00
|
|
|
/* Cone scalar */
|
2012-08-11 13:20:24 +00:00
|
|
|
ALfloat ConeScale = 1.0f;
|
2011-09-24 05:33:37 +00:00
|
|
|
|
|
|
|
/* Localized Z scalar for mono sources */
|
|
|
|
ALfloat ZScale = 1.0f;
|
|
|
|
|
2013-11-04 21:44:46 +00:00
|
|
|
extern inline ALfloat minf(ALfloat a, ALfloat b);
|
|
|
|
extern inline ALfloat maxf(ALfloat a, ALfloat b);
|
|
|
|
extern inline ALfloat clampf(ALfloat val, ALfloat min, ALfloat max);
|
|
|
|
|
2013-11-27 08:30:13 +00:00
|
|
|
extern inline ALdouble mind(ALdouble a, ALdouble b);
|
|
|
|
extern inline ALdouble maxd(ALdouble a, ALdouble b);
|
|
|
|
extern inline ALdouble clampd(ALdouble val, ALdouble min, ALdouble max);
|
|
|
|
|
2013-11-04 21:44:46 +00:00
|
|
|
extern inline ALuint minu(ALuint a, ALuint b);
|
|
|
|
extern inline ALuint maxu(ALuint a, ALuint b);
|
|
|
|
extern inline ALuint clampu(ALuint val, ALuint min, ALuint max);
|
|
|
|
|
|
|
|
extern inline ALint mini(ALint a, ALint b);
|
|
|
|
extern inline ALint maxi(ALint a, ALint b);
|
|
|
|
extern inline ALint clampi(ALint val, ALint min, ALint max);
|
|
|
|
|
|
|
|
extern inline ALint64 mini64(ALint64 a, ALint64 b);
|
|
|
|
extern inline ALint64 maxi64(ALint64 a, ALint64 b);
|
|
|
|
extern inline ALint64 clampi64(ALint64 val, ALint64 min, ALint64 max);
|
|
|
|
|
|
|
|
extern inline ALuint64 minu64(ALuint64 a, ALuint64 b);
|
|
|
|
extern inline ALuint64 maxu64(ALuint64 a, ALuint64 b);
|
|
|
|
extern inline ALuint64 clampu64(ALuint64 val, ALuint64 min, ALuint64 max);
|
|
|
|
|
|
|
|
extern inline ALfloat lerp(ALfloat val1, ALfloat val2, ALfloat mu);
|
2017-04-13 05:45:54 +00:00
|
|
|
extern inline ALfloat resample_fir4(ALfloat val0, ALfloat val1, ALfloat val2, ALfloat val3, ALsizei frac);
|
2011-09-24 05:33:37 +00:00
|
|
|
|
2014-12-16 14:29:31 +00:00
|
|
|
extern inline void aluVectorSet(aluVector *restrict vector, ALfloat x, ALfloat y, ALfloat z, ALfloat w);
|
|
|
|
|
2015-11-11 16:19:33 +00:00
|
|
|
extern inline void aluMatrixfSetRow(aluMatrixf *matrix, ALuint row,
|
|
|
|
ALfloat m0, ALfloat m1, ALfloat m2, ALfloat m3);
|
|
|
|
extern inline void aluMatrixfSet(aluMatrixf *matrix,
|
|
|
|
ALfloat m00, ALfloat m01, ALfloat m02, ALfloat m03,
|
|
|
|
ALfloat m10, ALfloat m11, ALfloat m12, ALfloat m13,
|
|
|
|
ALfloat m20, ALfloat m21, ALfloat m22, ALfloat m23,
|
|
|
|
ALfloat m30, ALfloat m31, ALfloat m32, ALfloat m33);
|
|
|
|
|
2016-09-05 09:02:14 +00:00
|
|
|
const aluMatrixf IdentityMatrixf = {{
|
|
|
|
{ 1.0f, 0.0f, 0.0f, 0.0f },
|
|
|
|
{ 0.0f, 1.0f, 0.0f, 0.0f },
|
|
|
|
{ 0.0f, 0.0f, 1.0f, 0.0f },
|
|
|
|
{ 0.0f, 0.0f, 0.0f, 1.0f },
|
|
|
|
}};
|
|
|
|
|
2014-12-16 14:29:31 +00:00
|
|
|
|
2017-05-05 14:38:26 +00:00
|
|
|
struct OutputLimiter *alloc_limiter(void)
|
|
|
|
{
|
|
|
|
struct OutputLimiter *limiter = al_calloc(16, sizeof(*limiter));
|
|
|
|
/* Limiter attack drops -80dB in 50ms. */
|
|
|
|
limiter->AttackRate = 0.05f;
|
|
|
|
/* Limiter release raises +80dB in 1s. */
|
|
|
|
limiter->ReleaseRate = 1.0f;
|
|
|
|
limiter->Gain = 1.0f;
|
|
|
|
return limiter;
|
|
|
|
}
|
|
|
|
|
2017-04-18 04:16:01 +00:00
|
|
|
void DeinitVoice(ALvoice *voice)
|
|
|
|
{
|
|
|
|
struct ALvoiceProps *props;
|
|
|
|
size_t count = 0;
|
|
|
|
|
|
|
|
props = ATOMIC_EXCHANGE_PTR_SEQ(&voice->Update, NULL);
|
|
|
|
if(props) al_free(props);
|
|
|
|
|
|
|
|
props = ATOMIC_EXCHANGE_PTR(&voice->FreeList, NULL, almemory_order_relaxed);
|
|
|
|
while(props)
|
|
|
|
{
|
|
|
|
struct ALvoiceProps *next;
|
|
|
|
next = ATOMIC_LOAD(&props->next, almemory_order_relaxed);
|
|
|
|
al_free(props);
|
|
|
|
props = next;
|
|
|
|
++count;
|
|
|
|
}
|
|
|
|
/* This is excessively spammy if it traces every voice destruction, so just
|
|
|
|
* warn if it was unexpectedly large.
|
|
|
|
*/
|
|
|
|
if(count > 3)
|
|
|
|
WARN("Freed "SZFMT" voice property objects\n", count);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-08-12 12:26:36 +00:00
|
|
|
static inline HrtfDirectMixerFunc SelectHrtfMixer(void)
|
2014-11-22 12:20:17 +00:00
|
|
|
{
|
|
|
|
#ifdef HAVE_NEON
|
|
|
|
if((CPUCapFlags&CPU_CAP_NEON))
|
2016-08-12 12:26:36 +00:00
|
|
|
return MixDirectHrtf_Neon;
|
2014-11-22 12:20:17 +00:00
|
|
|
#endif
|
2017-04-13 05:44:16 +00:00
|
|
|
#ifdef HAVE_SSE
|
|
|
|
if((CPUCapFlags&CPU_CAP_SSE))
|
|
|
|
return MixDirectHrtf_SSE;
|
|
|
|
#endif
|
2014-11-22 12:20:17 +00:00
|
|
|
|
2016-08-12 12:26:36 +00:00
|
|
|
return MixDirectHrtf_C;
|
2014-11-22 12:20:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-05-29 05:27:07 +00:00
|
|
|
static inline void aluCrossproduct(const ALfloat *inVector1, const ALfloat *inVector2, ALfloat *outVector)
|
2012-10-26 00:24:22 +00:00
|
|
|
{
|
|
|
|
outVector[0] = inVector1[1]*inVector2[2] - inVector1[2]*inVector2[1];
|
|
|
|
outVector[1] = inVector1[2]*inVector2[0] - inVector1[0]*inVector2[2];
|
|
|
|
outVector[2] = inVector1[0]*inVector2[1] - inVector1[1]*inVector2[0];
|
|
|
|
}
|
|
|
|
|
2014-12-16 18:36:44 +00:00
|
|
|
static inline ALfloat aluDotproduct(const aluVector *vec1, const aluVector *vec2)
|
2012-10-26 00:24:22 +00:00
|
|
|
{
|
2014-12-16 18:36:44 +00:00
|
|
|
return vec1->v[0]*vec2->v[0] + vec1->v[1]*vec2->v[1] + vec1->v[2]*vec2->v[2];
|
2012-10-26 00:24:22 +00:00
|
|
|
}
|
|
|
|
|
2016-05-16 21:46:06 +00:00
|
|
|
static ALfloat aluNormalize(ALfloat *vec)
|
2012-10-26 00:24:22 +00:00
|
|
|
{
|
2015-07-05 15:47:56 +00:00
|
|
|
ALfloat length = sqrtf(vec[0]*vec[0] + vec[1]*vec[1] + vec[2]*vec[2]);
|
|
|
|
if(length > 0.0f)
|
2012-10-26 00:24:22 +00:00
|
|
|
{
|
2015-07-05 15:47:56 +00:00
|
|
|
ALfloat inv_length = 1.0f/length;
|
2014-12-16 18:36:44 +00:00
|
|
|
vec[0] *= inv_length;
|
|
|
|
vec[1] *= inv_length;
|
|
|
|
vec[2] *= inv_length;
|
2012-10-26 00:24:22 +00:00
|
|
|
}
|
2015-07-05 15:47:56 +00:00
|
|
|
return length;
|
2012-10-26 00:24:22 +00:00
|
|
|
}
|
|
|
|
|
2016-05-17 01:28:46 +00:00
|
|
|
static void aluMatrixfFloat3(ALfloat *vec, ALfloat w, const aluMatrixf *mtx)
|
2015-08-24 10:02:58 +00:00
|
|
|
{
|
2016-05-17 01:28:46 +00:00
|
|
|
ALfloat v[4] = { vec[0], vec[1], vec[2], w };
|
2015-08-24 10:02:58 +00:00
|
|
|
|
2015-11-11 16:19:33 +00:00
|
|
|
vec[0] = v[0]*mtx->m[0][0] + v[1]*mtx->m[1][0] + v[2]*mtx->m[2][0] + v[3]*mtx->m[3][0];
|
|
|
|
vec[1] = v[0]*mtx->m[0][1] + v[1]*mtx->m[1][1] + v[2]*mtx->m[2][1] + v[3]*mtx->m[3][1];
|
|
|
|
vec[2] = v[0]*mtx->m[0][2] + v[1]*mtx->m[1][2] + v[2]*mtx->m[2][2] + v[3]*mtx->m[3][2];
|
2015-08-24 10:02:58 +00:00
|
|
|
}
|
|
|
|
|
2016-05-17 01:28:46 +00:00
|
|
|
static aluVector aluMatrixfVector(const aluMatrixf *mtx, const aluVector *vec)
|
2007-11-14 02:02:18 +00:00
|
|
|
{
|
2015-10-23 06:39:56 +00:00
|
|
|
aluVector v;
|
2016-05-17 01:28:46 +00:00
|
|
|
v.v[0] = vec->v[0]*mtx->m[0][0] + vec->v[1]*mtx->m[1][0] + vec->v[2]*mtx->m[2][0] + vec->v[3]*mtx->m[3][0];
|
|
|
|
v.v[1] = vec->v[0]*mtx->m[0][1] + vec->v[1]*mtx->m[1][1] + vec->v[2]*mtx->m[2][1] + vec->v[3]*mtx->m[3][1];
|
|
|
|
v.v[2] = vec->v[0]*mtx->m[0][2] + vec->v[1]*mtx->m[1][2] + vec->v[2]*mtx->m[2][2] + vec->v[3]*mtx->m[3][2];
|
|
|
|
v.v[3] = vec->v[0]*mtx->m[0][3] + vec->v[1]*mtx->m[1][3] + vec->v[2]*mtx->m[2][3] + vec->v[3]*mtx->m[3][3];
|
2015-10-23 06:39:56 +00:00
|
|
|
return v;
|
2007-11-14 02:02:18 +00:00
|
|
|
}
|
|
|
|
|
2010-08-04 06:19:36 +00:00
|
|
|
|
2015-11-05 17:42:08 +00:00
|
|
|
/* Prepares the interpolator for a given rate (determined by increment). A
|
|
|
|
* result of AL_FALSE indicates that the filter output will completely cut
|
|
|
|
* the input signal.
|
|
|
|
*
|
|
|
|
* With a bit of work, and a trade of memory for CPU cost, this could be
|
|
|
|
* modified for use with an interpolated increment for buttery-smooth pitch
|
|
|
|
* changes.
|
|
|
|
*/
|
|
|
|
static ALboolean BsincPrepare(const ALuint increment, BsincState *state)
|
|
|
|
{
|
2015-11-11 02:40:33 +00:00
|
|
|
static const ALfloat scaleBase = 1.510578918e-01f, scaleRange = 1.177936623e+00f;
|
2015-11-05 17:42:08 +00:00
|
|
|
static const ALuint m[BSINC_SCALE_COUNT] = { 24, 24, 24, 24, 24, 24, 24, 20, 20, 20, 16, 16, 16, 12, 12, 12 };
|
2015-11-11 02:40:33 +00:00
|
|
|
static const ALuint to[4][BSINC_SCALE_COUNT] =
|
|
|
|
{
|
2015-11-05 17:42:08 +00:00
|
|
|
{ 0, 24, 408, 792, 1176, 1560, 1944, 2328, 2648, 2968, 3288, 3544, 3800, 4056, 4248, 4440 },
|
|
|
|
{ 4632, 5016, 5400, 5784, 6168, 6552, 6936, 7320, 7640, 7960, 8280, 8536, 8792, 9048, 9240, 0 },
|
|
|
|
{ 0, 9432, 9816, 10200, 10584, 10968, 11352, 11736, 12056, 12376, 12696, 12952, 13208, 13464, 13656, 13848 },
|
|
|
|
{ 14040, 14424, 14808, 15192, 15576, 15960, 16344, 16728, 17048, 17368, 17688, 17944, 18200, 18456, 18648, 0 }
|
|
|
|
};
|
2015-11-11 02:40:33 +00:00
|
|
|
static const ALuint tm[2][BSINC_SCALE_COUNT] =
|
|
|
|
{
|
2015-11-05 17:42:08 +00:00
|
|
|
{ 0, 24, 24, 24, 24, 24, 24, 20, 20, 20, 16, 16, 16, 12, 12, 12 },
|
|
|
|
{ 24, 24, 24, 24, 24, 24, 24, 20, 20, 20, 16, 16, 16, 12, 12, 0 }
|
|
|
|
};
|
|
|
|
ALfloat sf;
|
|
|
|
ALuint si, pi;
|
|
|
|
ALboolean uncut = AL_TRUE;
|
|
|
|
|
|
|
|
if(increment > FRACTIONONE)
|
|
|
|
{
|
|
|
|
sf = (ALfloat)FRACTIONONE / increment;
|
|
|
|
if(sf < scaleBase)
|
|
|
|
{
|
|
|
|
/* Signal has been completely cut. The return result can be used
|
|
|
|
* to skip the filter (and output zeros) as an optimization.
|
|
|
|
*/
|
|
|
|
sf = 0.0f;
|
|
|
|
si = 0;
|
|
|
|
uncut = AL_FALSE;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
sf = (BSINC_SCALE_COUNT - 1) * (sf - scaleBase) * scaleRange;
|
|
|
|
si = fastf2u(sf);
|
|
|
|
/* The interpolation factor is fit to this diagonally-symmetric
|
|
|
|
* curve to reduce the transition ripple caused by interpolating
|
|
|
|
* different scales of the sinc function.
|
|
|
|
*/
|
|
|
|
sf = 1.0f - cosf(asinf(sf - si));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
sf = 0.0f;
|
|
|
|
si = BSINC_SCALE_COUNT - 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
state->sf = sf;
|
|
|
|
state->m = m[si];
|
|
|
|
state->l = -(ALint)((m[si] / 2) - 1);
|
|
|
|
/* The CPU cost of this table re-mapping could be traded for the memory
|
|
|
|
* cost of a complete table map (1024 elements large).
|
|
|
|
*/
|
|
|
|
for(pi = 0;pi < BSINC_PHASE_COUNT;pi++)
|
|
|
|
{
|
|
|
|
state->coeffs[pi].filter = &bsincTab[to[0][si] + tm[0][si]*pi];
|
|
|
|
state->coeffs[pi].scDelta = &bsincTab[to[1][si] + tm[1][si]*pi];
|
|
|
|
state->coeffs[pi].phDelta = &bsincTab[to[2][si] + tm[0][si]*pi];
|
|
|
|
state->coeffs[pi].spDelta = &bsincTab[to[3][si] + tm[1][si]*pi];
|
|
|
|
}
|
|
|
|
return uncut;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-08-24 01:56:01 +00:00
|
|
|
static ALboolean CalcListenerParams(ALCcontext *Context)
|
2012-10-12 14:38:29 +00:00
|
|
|
{
|
2016-05-09 18:26:49 +00:00
|
|
|
ALlistener *Listener = Context->Listener;
|
2016-05-17 01:28:46 +00:00
|
|
|
ALfloat N[3], V[3], U[3], P[3];
|
2016-05-12 01:40:17 +00:00
|
|
|
struct ALlistenerProps *props;
|
|
|
|
aluVector vel;
|
|
|
|
|
2017-04-15 00:47:55 +00:00
|
|
|
props = ATOMIC_EXCHANGE_PTR(&Listener->Update, NULL, almemory_order_acq_rel);
|
2016-08-24 01:56:01 +00:00
|
|
|
if(!props) return AL_FALSE;
|
2012-10-12 14:38:29 +00:00
|
|
|
|
|
|
|
/* AT then UP */
|
2017-03-08 11:38:28 +00:00
|
|
|
N[0] = props->Forward[0];
|
|
|
|
N[1] = props->Forward[1];
|
|
|
|
N[2] = props->Forward[2];
|
2016-05-17 01:28:46 +00:00
|
|
|
aluNormalize(N);
|
2017-03-08 11:38:28 +00:00
|
|
|
V[0] = props->Up[0];
|
|
|
|
V[1] = props->Up[1];
|
|
|
|
V[2] = props->Up[2];
|
2016-05-17 01:28:46 +00:00
|
|
|
aluNormalize(V);
|
2012-10-12 14:38:29 +00:00
|
|
|
/* Build and normalize right-vector */
|
2016-05-17 01:28:46 +00:00
|
|
|
aluCrossproduct(N, V, U);
|
|
|
|
aluNormalize(U);
|
2015-11-11 16:19:33 +00:00
|
|
|
|
2016-05-17 01:28:46 +00:00
|
|
|
aluMatrixfSet(&Listener->Params.Matrix,
|
2015-11-11 16:19:33 +00:00
|
|
|
U[0], V[0], -N[0], 0.0,
|
|
|
|
U[1], V[1], -N[1], 0.0,
|
|
|
|
U[2], V[2], -N[2], 0.0,
|
|
|
|
0.0, 0.0, 0.0, 1.0
|
2014-12-16 14:29:31 +00:00
|
|
|
);
|
2015-08-24 10:02:58 +00:00
|
|
|
|
2017-03-08 11:38:28 +00:00
|
|
|
P[0] = props->Position[0];
|
|
|
|
P[1] = props->Position[1];
|
|
|
|
P[2] = props->Position[2];
|
2016-05-17 01:28:46 +00:00
|
|
|
aluMatrixfFloat3(P, 1.0, &Listener->Params.Matrix);
|
|
|
|
aluMatrixfSetRow(&Listener->Params.Matrix, 3, -P[0], -P[1], -P[2], 1.0f);
|
2014-12-16 14:29:31 +00:00
|
|
|
|
2017-03-08 11:38:28 +00:00
|
|
|
aluVectorSet(&vel, props->Velocity[0], props->Velocity[1], props->Velocity[2], 0.0f);
|
2016-05-17 01:28:46 +00:00
|
|
|
Listener->Params.Velocity = aluMatrixfVector(&Listener->Params.Matrix, &vel);
|
2016-05-12 01:40:17 +00:00
|
|
|
|
2017-03-08 11:38:28 +00:00
|
|
|
Listener->Params.Gain = props->Gain * Context->GainBoost;
|
|
|
|
Listener->Params.MetersPerUnit = props->MetersPerUnit;
|
2016-05-09 18:26:49 +00:00
|
|
|
|
2017-03-08 11:38:28 +00:00
|
|
|
Listener->Params.DopplerFactor = props->DopplerFactor;
|
|
|
|
Listener->Params.SpeedOfSound = props->SpeedOfSound * props->DopplerVelocity;
|
2016-05-09 18:26:49 +00:00
|
|
|
|
2017-03-08 11:38:28 +00:00
|
|
|
Listener->Params.SourceDistanceModel = props->SourceDistanceModel;
|
|
|
|
Listener->Params.DistanceModel = props->DistanceModel;
|
2016-08-24 02:17:17 +00:00
|
|
|
|
2016-12-22 03:58:03 +00:00
|
|
|
ATOMIC_REPLACE_HEAD(struct ALlistenerProps*, &Listener->FreeList, props);
|
2016-08-24 01:56:01 +00:00
|
|
|
return AL_TRUE;
|
2012-10-12 14:38:29 +00:00
|
|
|
}
|
|
|
|
|
2016-08-25 13:17:36 +00:00
|
|
|
static ALboolean CalcEffectSlotParams(ALeffectslot *slot, ALCdevice *device)
|
2016-05-13 01:26:33 +00:00
|
|
|
{
|
|
|
|
struct ALeffectslotProps *props;
|
2016-05-15 08:19:05 +00:00
|
|
|
ALeffectState *state;
|
2016-05-13 01:26:33 +00:00
|
|
|
|
2017-04-15 00:47:55 +00:00
|
|
|
props = ATOMIC_EXCHANGE_PTR(&slot->Update, NULL, almemory_order_acq_rel);
|
2016-08-25 13:17:36 +00:00
|
|
|
if(!props) return AL_FALSE;
|
2016-05-13 01:26:33 +00:00
|
|
|
|
2017-03-08 11:38:28 +00:00
|
|
|
slot->Params.Gain = props->Gain;
|
|
|
|
slot->Params.AuxSendAuto = props->AuxSendAuto;
|
|
|
|
slot->Params.EffectType = props->Type;
|
2016-05-13 01:26:33 +00:00
|
|
|
if(IsReverbEffect(slot->Params.EffectType))
|
|
|
|
{
|
2016-05-14 01:28:01 +00:00
|
|
|
slot->Params.RoomRolloff = props->Props.Reverb.RoomRolloffFactor;
|
|
|
|
slot->Params.DecayTime = props->Props.Reverb.DecayTime;
|
|
|
|
slot->Params.AirAbsorptionGainHF = props->Props.Reverb.AirAbsorptionGainHF;
|
2016-05-13 01:26:33 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
slot->Params.RoomRolloff = 0.0f;
|
|
|
|
slot->Params.DecayTime = 0.0f;
|
|
|
|
slot->Params.AirAbsorptionGainHF = 1.0f;
|
|
|
|
}
|
2016-05-15 08:19:05 +00:00
|
|
|
|
2016-08-25 11:57:58 +00:00
|
|
|
/* Swap effect states. No need to play with the ref counts since they keep
|
|
|
|
* the same number of refs.
|
2016-05-13 02:05:06 +00:00
|
|
|
*/
|
2017-03-08 11:38:28 +00:00
|
|
|
state = props->State;
|
|
|
|
props->State = slot->Params.EffectState;
|
2016-08-25 11:57:58 +00:00
|
|
|
slot->Params.EffectState = state;
|
2016-05-13 01:26:33 +00:00
|
|
|
|
2016-08-25 11:57:58 +00:00
|
|
|
V(state,update)(device, slot, &props->Props);
|
2016-05-14 01:28:01 +00:00
|
|
|
|
2016-12-22 03:58:03 +00:00
|
|
|
ATOMIC_REPLACE_HEAD(struct ALeffectslotProps*, &slot->FreeList, props);
|
2016-08-25 13:17:36 +00:00
|
|
|
return AL_TRUE;
|
Provide asynchronous property updates for sources
This necessitates a change in how source updates are handled. Rather than just
being able to update sources when a dependent object state is changed (e.g. a
listener gain change), now all source updates must be proactively provided.
Consequently, apps that do not utilize any deferring (AL_SOFT_defer_updates or
alcSuspendContext/alcProcessContext) may utilize more CPU since it'll be
filling out more update containers for the mixer thread to use.
The upside is that there's less blocking between the app's calling thread and
the mixer thread, particularly for vectors and other multi-value properties
(filters and sends). Deferring behavior when used is also improved, since
updates that shouldn't be applied yet are simply not provided. And when they
are provided, the mixer doesn't have to ignore them, meaning the actual
deferring of a context doesn't have to synchrnously force an update -- the
process call will send any pending updates, which the mixer will apply even if
another deferral occurs before the mixer runs, because it'll still be there
waiting on the next mixer invocation.
There is one slight bug introduced by this commit. When a listener change is
made, or changes to multiple sources while updates are being deferred, it is
possible for the mixer to run while the sources are prepping their updates,
causing some of the source updates to be seen before the other. This will be
fixed in short order.
2016-05-15 06:43:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-05-04 11:35:53 +00:00
|
|
|
static const struct ChanMap MonoMap[1] = {
|
|
|
|
{ FrontCenter, 0.0f, 0.0f }
|
|
|
|
}, RearMap[2] = {
|
|
|
|
{ BackLeft, DEG2RAD(-150.0f), DEG2RAD(0.0f) },
|
|
|
|
{ BackRight, DEG2RAD( 150.0f), DEG2RAD(0.0f) }
|
|
|
|
}, QuadMap[4] = {
|
|
|
|
{ FrontLeft, DEG2RAD( -45.0f), DEG2RAD(0.0f) },
|
|
|
|
{ FrontRight, DEG2RAD( 45.0f), DEG2RAD(0.0f) },
|
|
|
|
{ BackLeft, DEG2RAD(-135.0f), DEG2RAD(0.0f) },
|
|
|
|
{ BackRight, DEG2RAD( 135.0f), DEG2RAD(0.0f) }
|
|
|
|
}, X51Map[6] = {
|
|
|
|
{ FrontLeft, DEG2RAD( -30.0f), DEG2RAD(0.0f) },
|
|
|
|
{ FrontRight, DEG2RAD( 30.0f), DEG2RAD(0.0f) },
|
|
|
|
{ FrontCenter, DEG2RAD( 0.0f), DEG2RAD(0.0f) },
|
|
|
|
{ LFE, 0.0f, 0.0f },
|
|
|
|
{ SideLeft, DEG2RAD(-110.0f), DEG2RAD(0.0f) },
|
|
|
|
{ SideRight, DEG2RAD( 110.0f), DEG2RAD(0.0f) }
|
|
|
|
}, X61Map[7] = {
|
|
|
|
{ FrontLeft, DEG2RAD(-30.0f), DEG2RAD(0.0f) },
|
|
|
|
{ FrontRight, DEG2RAD( 30.0f), DEG2RAD(0.0f) },
|
|
|
|
{ FrontCenter, DEG2RAD( 0.0f), DEG2RAD(0.0f) },
|
|
|
|
{ LFE, 0.0f, 0.0f },
|
|
|
|
{ BackCenter, DEG2RAD(180.0f), DEG2RAD(0.0f) },
|
|
|
|
{ SideLeft, DEG2RAD(-90.0f), DEG2RAD(0.0f) },
|
|
|
|
{ SideRight, DEG2RAD( 90.0f), DEG2RAD(0.0f) }
|
|
|
|
}, X71Map[8] = {
|
|
|
|
{ FrontLeft, DEG2RAD( -30.0f), DEG2RAD(0.0f) },
|
|
|
|
{ FrontRight, DEG2RAD( 30.0f), DEG2RAD(0.0f) },
|
|
|
|
{ FrontCenter, DEG2RAD( 0.0f), DEG2RAD(0.0f) },
|
|
|
|
{ LFE, 0.0f, 0.0f },
|
|
|
|
{ BackLeft, DEG2RAD(-150.0f), DEG2RAD(0.0f) },
|
|
|
|
{ BackRight, DEG2RAD( 150.0f), DEG2RAD(0.0f) },
|
|
|
|
{ SideLeft, DEG2RAD( -90.0f), DEG2RAD(0.0f) },
|
|
|
|
{ SideRight, DEG2RAD( 90.0f), DEG2RAD(0.0f) }
|
|
|
|
};
|
2011-06-30 06:18:49 +00:00
|
|
|
|
2017-05-04 18:09:45 +00:00
|
|
|
static void CalcPanningAndFilters(ALvoice *voice, const ALfloat Distance, const ALfloat *Dir,
|
|
|
|
const ALfloat Spread, const ALfloat DryGain,
|
|
|
|
const ALfloat DryGainHF, const ALfloat DryGainLF,
|
|
|
|
const ALfloat *WetGain, const ALfloat *WetGainLF,
|
|
|
|
const ALfloat *WetGainHF, ALeffectslot **SendSlots,
|
|
|
|
const ALbuffer *Buffer, const struct ALvoiceProps *props,
|
|
|
|
const ALlistener *Listener, const ALCdevice *Device)
|
2017-05-04 11:35:53 +00:00
|
|
|
{
|
2016-03-25 21:40:44 +00:00
|
|
|
struct ChanMap StereoMap[2] = {
|
|
|
|
{ FrontLeft, DEG2RAD(-30.0f), DEG2RAD(0.0f) },
|
|
|
|
{ FrontRight, DEG2RAD( 30.0f), DEG2RAD(0.0f) }
|
|
|
|
};
|
2017-05-04 11:35:53 +00:00
|
|
|
bool DirectChannels = props->DirectChannels;
|
|
|
|
const ALsizei NumSends = Device->NumAuxSends;
|
|
|
|
const ALuint Frequency = Device->Frequency;
|
|
|
|
const struct ChanMap *chans = NULL;
|
|
|
|
ALsizei num_channels = 0;
|
|
|
|
bool isbformat = false;
|
2017-05-08 01:28:43 +00:00
|
|
|
ALfloat downmix_gain = 1.0f;
|
2017-05-04 11:35:53 +00:00
|
|
|
ALsizei c, i, j;
|
2010-08-05 08:07:20 +00:00
|
|
|
|
2017-05-04 11:35:53 +00:00
|
|
|
switch(Buffer->FmtChannels)
|
2010-12-10 00:37:23 +00:00
|
|
|
{
|
|
|
|
case FmtMono:
|
2011-12-20 09:17:11 +00:00
|
|
|
chans = MonoMap;
|
2011-05-15 09:12:42 +00:00
|
|
|
num_channels = 1;
|
2017-05-04 11:35:53 +00:00
|
|
|
/* Mono buffers are never played direct. */
|
|
|
|
DirectChannels = false;
|
2010-12-10 00:37:23 +00:00
|
|
|
break;
|
2011-05-15 07:18:28 +00:00
|
|
|
|
2012-04-29 11:44:53 +00:00
|
|
|
case FmtStereo:
|
2017-05-04 11:35:53 +00:00
|
|
|
/* Convert counter-clockwise to clockwise. */
|
|
|
|
StereoMap[0].angle = -props->StereoPan[0];
|
|
|
|
StereoMap[1].angle = -props->StereoPan[1];
|
|
|
|
|
2016-02-27 00:09:06 +00:00
|
|
|
chans = StereoMap;
|
2011-06-17 23:20:18 +00:00
|
|
|
num_channels = 2;
|
2017-05-08 01:28:43 +00:00
|
|
|
downmix_gain = 1.0f / 2.0f;
|
2010-12-10 00:37:23 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case FmtRear:
|
2011-12-20 09:17:11 +00:00
|
|
|
chans = RearMap;
|
2011-05-15 09:12:42 +00:00
|
|
|
num_channels = 2;
|
2017-05-08 01:28:43 +00:00
|
|
|
downmix_gain = 1.0f / 2.0f;
|
2010-12-10 00:37:23 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case FmtQuad:
|
2011-12-20 09:17:11 +00:00
|
|
|
chans = QuadMap;
|
2011-05-15 09:12:42 +00:00
|
|
|
num_channels = 4;
|
2017-05-08 01:28:43 +00:00
|
|
|
downmix_gain = 1.0f / 4.0f;
|
2010-12-10 00:37:23 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case FmtX51:
|
2011-12-20 09:17:11 +00:00
|
|
|
chans = X51Map;
|
2011-05-15 09:12:42 +00:00
|
|
|
num_channels = 6;
|
2017-05-08 01:28:43 +00:00
|
|
|
/* NOTE: Excludes LFE. */
|
|
|
|
downmix_gain = 1.0f / 5.0f;
|
2010-12-10 00:37:23 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case FmtX61:
|
2011-12-20 09:17:11 +00:00
|
|
|
chans = X61Map;
|
2011-05-15 09:12:42 +00:00
|
|
|
num_channels = 7;
|
2017-05-08 01:28:43 +00:00
|
|
|
/* NOTE: Excludes LFE. */
|
|
|
|
downmix_gain = 1.0f / 6.0f;
|
2010-12-10 00:37:23 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case FmtX71:
|
2011-12-20 09:17:11 +00:00
|
|
|
chans = X71Map;
|
2011-05-15 09:12:42 +00:00
|
|
|
num_channels = 8;
|
2017-05-08 01:28:43 +00:00
|
|
|
/* NOTE: Excludes LFE. */
|
|
|
|
downmix_gain = 1.0f / 7.0f;
|
2011-05-15 09:12:42 +00:00
|
|
|
break;
|
2014-11-01 00:18:45 +00:00
|
|
|
|
|
|
|
case FmtBFormat2D:
|
|
|
|
num_channels = 3;
|
2017-05-04 11:35:53 +00:00
|
|
|
isbformat = true;
|
|
|
|
DirectChannels = false;
|
2014-11-02 10:30:45 +00:00
|
|
|
break;
|
2014-11-01 00:18:45 +00:00
|
|
|
|
|
|
|
case FmtBFormat3D:
|
|
|
|
num_channels = 4;
|
2017-05-04 11:35:53 +00:00
|
|
|
isbformat = true;
|
|
|
|
DirectChannels = false;
|
2014-11-02 10:30:45 +00:00
|
|
|
break;
|
2011-05-15 09:12:42 +00:00
|
|
|
}
|
|
|
|
|
2017-05-02 11:25:08 +00:00
|
|
|
voice->Flags &= ~(VOICE_HAS_HRTF | VOICE_HAS_NFC);
|
2014-11-01 00:18:45 +00:00
|
|
|
if(isbformat)
|
|
|
|
{
|
2017-05-04 18:09:45 +00:00
|
|
|
/* Special handling for B-Format sources. */
|
2014-11-01 05:43:13 +00:00
|
|
|
|
2017-05-04 18:09:45 +00:00
|
|
|
if(Distance > FLT_EPSILON)
|
2017-03-10 12:35:32 +00:00
|
|
|
{
|
2017-05-04 18:09:45 +00:00
|
|
|
/* Panning a B-Format sound toward some direction is easy. Just pan
|
|
|
|
* the first (W) channel as a normal mono sound and silence the
|
|
|
|
* others.
|
2017-03-10 12:35:32 +00:00
|
|
|
*/
|
2017-05-04 18:09:45 +00:00
|
|
|
ALfloat coeffs[MAX_AMBI_COEFFS];
|
2014-11-01 00:18:45 +00:00
|
|
|
|
2017-05-04 18:09:45 +00:00
|
|
|
if(Device->AvgSpeakerDist > 0.0f && Listener->Params.MetersPerUnit > 0.0f)
|
2016-01-28 08:02:46 +00:00
|
|
|
{
|
2017-05-04 18:09:45 +00:00
|
|
|
ALfloat mdist = Distance * Listener->Params.MetersPerUnit;
|
|
|
|
ALfloat w0 = SPEEDOFSOUNDMETRESPERSEC /
|
|
|
|
(mdist * (ALfloat)Device->Frequency);
|
|
|
|
ALfloat w1 = SPEEDOFSOUNDMETRESPERSEC /
|
|
|
|
(Device->AvgSpeakerDist * (ALfloat)Device->Frequency);
|
|
|
|
/* Clamp w0 for really close distances, to prevent excessive
|
|
|
|
* bass.
|
|
|
|
*/
|
|
|
|
w0 = minf(w0, w1*4.0f);
|
|
|
|
|
|
|
|
/* Only need to adjust the first channel of a B-Format source. */
|
|
|
|
NfcFilterAdjust1(&voice->Direct.Params[0].NFCtrlFilter[0], w0);
|
|
|
|
NfcFilterAdjust2(&voice->Direct.Params[0].NFCtrlFilter[1], w0);
|
|
|
|
NfcFilterAdjust3(&voice->Direct.Params[0].NFCtrlFilter[2], w0);
|
|
|
|
|
|
|
|
for(i = 0;i < MAX_AMBI_ORDER+1;i++)
|
|
|
|
voice->Direct.ChannelsPerOrder[i] = Device->Dry.NumChannelsPerOrder[i];
|
|
|
|
voice->Flags |= VOICE_HAS_NFC;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(Device->Render_Mode == StereoPair)
|
|
|
|
{
|
|
|
|
ALfloat ev = asinf(Dir[1]);
|
|
|
|
ALfloat az = atan2f(Dir[0], -Dir[2]);
|
|
|
|
CalcAnglePairwiseCoeffs(az, ev, Spread, coeffs);
|
2016-01-28 08:02:46 +00:00
|
|
|
}
|
|
|
|
else
|
2017-05-04 18:09:45 +00:00
|
|
|
CalcDirectionCoeffs(Dir, Spread, coeffs);
|
|
|
|
|
|
|
|
/* NOTE: W needs to be scaled by sqrt(2) due to FuMa normalization. */
|
|
|
|
ComputePanningGains(Device->Dry, coeffs, DryGain*1.414213562f,
|
|
|
|
voice->Direct.Params[0].Gains.Target);
|
|
|
|
for(c = 1;c < num_channels;c++)
|
2016-01-28 08:02:46 +00:00
|
|
|
{
|
2017-05-04 18:09:45 +00:00
|
|
|
for(j = 0;j < MAX_OUTPUT_CHANNELS;j++)
|
|
|
|
voice->Direct.Params[c].Gains.Target[j] = 0.0f;
|
|
|
|
}
|
|
|
|
|
|
|
|
for(i = 0;i < NumSends;i++)
|
|
|
|
{
|
|
|
|
const ALeffectslot *Slot = SendSlots[i];
|
|
|
|
if(Slot)
|
|
|
|
ComputePanningGainsBF(Slot->ChanMap, Slot->NumChannels,
|
|
|
|
coeffs, WetGain[i]*1.414213562f, voice->Send[i].Params[0].Gains.Target
|
|
|
|
);
|
|
|
|
else
|
|
|
|
for(j = 0;j < MAX_EFFECT_CHANNELS;j++)
|
|
|
|
voice->Send[i].Params[0].Gains.Target[j] = 0.0f;
|
|
|
|
for(c = 1;c < num_channels;c++)
|
|
|
|
{
|
2017-02-22 02:28:09 +00:00
|
|
|
for(j = 0;j < MAX_EFFECT_CHANNELS;j++)
|
|
|
|
voice->Send[i].Params[c].Gains.Target[j] = 0.0f;
|
2017-05-04 18:09:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-05-08 01:28:43 +00:00
|
|
|
/* Local B-Format sources have their XYZ channels rotated according
|
|
|
|
* to the orientation.
|
2017-05-04 18:09:45 +00:00
|
|
|
*/
|
|
|
|
ALfloat N[3], V[3], U[3];
|
|
|
|
aluMatrixf matrix;
|
|
|
|
ALfloat scale;
|
|
|
|
|
|
|
|
if(Device->AvgSpeakerDist > 0.0f)
|
|
|
|
{
|
|
|
|
/* NOTE: The NFCtrlFilters were created with a w0 of 0, which
|
|
|
|
* is what we want for FOA input. The first channel may have
|
|
|
|
* been previously re-adjusted if panned, so reset it.
|
|
|
|
*/
|
|
|
|
NfcFilterAdjust1(&voice->Direct.Params[0].NFCtrlFilter[0], 0.0f);
|
|
|
|
NfcFilterAdjust2(&voice->Direct.Params[0].NFCtrlFilter[1], 0.0f);
|
|
|
|
NfcFilterAdjust3(&voice->Direct.Params[0].NFCtrlFilter[2], 0.0f);
|
|
|
|
|
|
|
|
voice->Direct.ChannelsPerOrder[0] = 1;
|
|
|
|
voice->Direct.ChannelsPerOrder[1] = mini(voice->Direct.Channels-1, 3);
|
|
|
|
for(i = 2;i < MAX_AMBI_ORDER+1;i++)
|
|
|
|
voice->Direct.ChannelsPerOrder[2] = 0;
|
|
|
|
voice->Flags |= VOICE_HAS_NFC;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* AT then UP */
|
|
|
|
N[0] = props->Orientation[0][0];
|
|
|
|
N[1] = props->Orientation[0][1];
|
|
|
|
N[2] = props->Orientation[0][2];
|
|
|
|
aluNormalize(N);
|
|
|
|
V[0] = props->Orientation[1][0];
|
|
|
|
V[1] = props->Orientation[1][1];
|
|
|
|
V[2] = props->Orientation[1][2];
|
|
|
|
aluNormalize(V);
|
|
|
|
if(!props->HeadRelative)
|
|
|
|
{
|
|
|
|
const aluMatrixf *lmatrix = &Listener->Params.Matrix;
|
|
|
|
aluMatrixfFloat3(N, 0.0f, lmatrix);
|
|
|
|
aluMatrixfFloat3(V, 0.0f, lmatrix);
|
|
|
|
}
|
|
|
|
/* Build and normalize right-vector */
|
|
|
|
aluCrossproduct(N, V, U);
|
|
|
|
aluNormalize(U);
|
|
|
|
|
|
|
|
/* Build a rotate + conversion matrix (FuMa -> ACN+N3D). */
|
|
|
|
scale = 1.732050808f;
|
|
|
|
aluMatrixfSet(&matrix,
|
|
|
|
1.414213562f, 0.0f, 0.0f, 0.0f,
|
|
|
|
0.0f, -N[0]*scale, N[1]*scale, -N[2]*scale,
|
|
|
|
0.0f, U[0]*scale, -U[1]*scale, U[2]*scale,
|
|
|
|
0.0f, -V[0]*scale, V[1]*scale, -V[2]*scale
|
|
|
|
);
|
|
|
|
|
|
|
|
voice->Direct.Buffer = Device->FOAOut.Buffer;
|
|
|
|
voice->Direct.Channels = Device->FOAOut.NumChannels;
|
|
|
|
for(c = 0;c < num_channels;c++)
|
|
|
|
ComputeFirstOrderGains(Device->FOAOut, matrix.m[c], DryGain,
|
|
|
|
voice->Direct.Params[c].Gains.Target);
|
|
|
|
for(i = 0;i < NumSends;i++)
|
|
|
|
{
|
|
|
|
const ALeffectslot *Slot = SendSlots[i];
|
|
|
|
if(Slot)
|
|
|
|
{
|
|
|
|
for(c = 0;c < num_channels;c++)
|
|
|
|
ComputeFirstOrderGainsBF(Slot->ChanMap, Slot->NumChannels,
|
|
|
|
matrix.m[c], WetGain[i], voice->Send[i].Params[c].Gains.Target
|
|
|
|
);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
for(c = 0;c < num_channels;c++)
|
|
|
|
for(j = 0;j < MAX_EFFECT_CHANNELS;j++)
|
|
|
|
voice->Send[i].Params[c].Gains.Target[j] = 0.0f;
|
|
|
|
}
|
2016-01-28 08:02:46 +00:00
|
|
|
}
|
2015-10-24 03:16:11 +00:00
|
|
|
}
|
2014-11-01 00:18:45 +00:00
|
|
|
}
|
2017-05-04 11:35:53 +00:00
|
|
|
else if(DirectChannels)
|
2011-06-30 06:18:49 +00:00
|
|
|
{
|
2017-05-08 01:28:43 +00:00
|
|
|
/* Direct source channels always play local. Skip the virtual channels
|
|
|
|
* and write inputs to the matching real outputs.
|
2017-05-04 18:09:45 +00:00
|
|
|
*/
|
2017-05-04 11:35:53 +00:00
|
|
|
voice->Direct.Buffer = Device->RealOut.Buffer;
|
|
|
|
voice->Direct.Channels = Device->RealOut.NumChannels;
|
2017-05-04 18:09:45 +00:00
|
|
|
|
2017-05-04 11:35:53 +00:00
|
|
|
for(c = 0;c < num_channels;c++)
|
|
|
|
{
|
|
|
|
int idx;
|
|
|
|
for(j = 0;j < MAX_OUTPUT_CHANNELS;j++)
|
|
|
|
voice->Direct.Params[c].Gains.Target[j] = 0.0f;
|
|
|
|
if((idx=GetChannelIdxByName(Device->RealOut, chans[c].channel)) != -1)
|
|
|
|
voice->Direct.Params[c].Gains.Target[idx] = DryGain;
|
|
|
|
}
|
2016-02-14 09:22:01 +00:00
|
|
|
|
2017-05-04 18:09:45 +00:00
|
|
|
/* Auxiliary sends still use normal channel panning since they mix to
|
|
|
|
* B-Format, which can't channel-match.
|
2017-05-04 11:35:53 +00:00
|
|
|
*/
|
|
|
|
for(c = 0;c < num_channels;c++)
|
2014-11-22 21:10:32 +00:00
|
|
|
{
|
2017-05-04 11:35:53 +00:00
|
|
|
ALfloat coeffs[MAX_AMBI_COEFFS];
|
|
|
|
CalcAngleCoeffs(chans[c].angle, chans[c].elevation, 0.0f, coeffs);
|
2016-01-28 08:02:46 +00:00
|
|
|
|
2017-05-04 11:35:53 +00:00
|
|
|
for(i = 0;i < NumSends;i++)
|
2016-01-28 08:02:46 +00:00
|
|
|
{
|
2017-05-04 11:35:53 +00:00
|
|
|
const ALeffectslot *Slot = SendSlots[i];
|
|
|
|
if(Slot)
|
|
|
|
ComputePanningGainsBF(Slot->ChanMap, Slot->NumChannels,
|
|
|
|
coeffs, WetGain[i], voice->Send[i].Params[c].Gains.Target
|
|
|
|
);
|
|
|
|
else
|
|
|
|
for(j = 0;j < MAX_EFFECT_CHANNELS;j++)
|
|
|
|
voice->Send[i].Params[c].Gains.Target[j] = 0.0f;
|
2016-01-28 08:02:46 +00:00
|
|
|
}
|
2012-03-13 01:27:25 +00:00
|
|
|
}
|
2017-05-04 11:35:53 +00:00
|
|
|
}
|
|
|
|
else if(Device->Render_Mode == HrtfRender)
|
|
|
|
{
|
2017-05-04 18:09:45 +00:00
|
|
|
/* Full HRTF rendering. Skip the virtual channels and render to the
|
|
|
|
* real outputs.
|
2017-05-04 11:35:53 +00:00
|
|
|
*/
|
|
|
|
voice->Direct.Buffer = Device->RealOut.Buffer;
|
|
|
|
voice->Direct.Channels = Device->RealOut.NumChannels;
|
2017-05-04 18:09:45 +00:00
|
|
|
|
|
|
|
if(Distance > FLT_EPSILON)
|
2014-11-23 18:49:54 +00:00
|
|
|
{
|
2017-05-04 11:35:53 +00:00
|
|
|
ALfloat coeffs[MAX_AMBI_COEFFS];
|
2017-05-04 18:09:45 +00:00
|
|
|
ALfloat ev, az;
|
2017-05-04 11:35:53 +00:00
|
|
|
|
2017-05-04 18:09:45 +00:00
|
|
|
ev = asinf(Dir[1]);
|
|
|
|
az = atan2f(Dir[0], -Dir[2]);
|
2014-11-23 18:49:54 +00:00
|
|
|
|
2017-05-04 18:09:45 +00:00
|
|
|
/* Get the HRIR coefficients and delays just once, for the given
|
|
|
|
* source direction.
|
|
|
|
*/
|
|
|
|
GetHrtfCoeffs(Device->HrtfHandle, ev, az, Spread,
|
|
|
|
voice->Direct.Params[0].Hrtf.Target.Coeffs,
|
|
|
|
voice->Direct.Params[0].Hrtf.Target.Delay);
|
2017-05-08 01:28:43 +00:00
|
|
|
voice->Direct.Params[0].Hrtf.Target.Gain = DryGain * downmix_gain;
|
2017-05-04 11:35:53 +00:00
|
|
|
|
2017-05-04 18:09:45 +00:00
|
|
|
/* Remaining channels use the same results as the first. */
|
|
|
|
for(c = 1;c < num_channels;c++)
|
|
|
|
{
|
|
|
|
/* Skip LFE */
|
|
|
|
if(chans[c].channel == LFE)
|
|
|
|
memset(&voice->Direct.Params[c].Hrtf.Target, 0,
|
|
|
|
sizeof(voice->Direct.Params[c].Hrtf.Target));
|
|
|
|
else
|
|
|
|
voice->Direct.Params[c].Hrtf.Target = voice->Direct.Params[0].Hrtf.Target;
|
2016-01-28 08:02:46 +00:00
|
|
|
}
|
|
|
|
|
2017-05-04 18:09:45 +00:00
|
|
|
/* Calculate the directional coefficients once, which apply to all
|
|
|
|
* input channels of the source sends.
|
|
|
|
*/
|
|
|
|
CalcDirectionCoeffs(Dir, Spread, coeffs);
|
2017-05-04 11:35:53 +00:00
|
|
|
|
|
|
|
for(i = 0;i < NumSends;i++)
|
|
|
|
{
|
|
|
|
const ALeffectslot *Slot = SendSlots[i];
|
|
|
|
if(Slot)
|
2017-05-04 18:09:45 +00:00
|
|
|
for(c = 0;c < num_channels;c++)
|
|
|
|
{
|
|
|
|
/* Skip LFE */
|
|
|
|
if(chans[c].channel == LFE)
|
|
|
|
for(j = 0;j < MAX_EFFECT_CHANNELS;j++)
|
|
|
|
voice->Send[i].Params[c].Gains.Target[j] = 0.0f;
|
|
|
|
else
|
2017-05-08 01:28:43 +00:00
|
|
|
ComputePanningGainsBF(Slot->ChanMap,
|
|
|
|
Slot->NumChannels, coeffs, WetGain[i] * downmix_gain,
|
|
|
|
voice->Send[i].Params[c].Gains.Target
|
2017-05-04 18:09:45 +00:00
|
|
|
);
|
|
|
|
}
|
2017-05-04 11:35:53 +00:00
|
|
|
else
|
|
|
|
for(j = 0;j < MAX_EFFECT_CHANNELS;j++)
|
|
|
|
voice->Send[i].Params[c].Gains.Target[j] = 0.0f;
|
|
|
|
}
|
2015-10-24 03:16:11 +00:00
|
|
|
}
|
2017-05-04 18:09:45 +00:00
|
|
|
else
|
|
|
|
{
|
2017-05-08 01:28:43 +00:00
|
|
|
/* Local sources on HRTF play with each channel panned to its
|
|
|
|
* relative location around the listener, providing "virtual
|
|
|
|
* speaker" responses.
|
|
|
|
*/
|
2017-05-04 18:09:45 +00:00
|
|
|
for(c = 0;c < num_channels;c++)
|
|
|
|
{
|
|
|
|
ALfloat coeffs[MAX_AMBI_COEFFS];
|
|
|
|
|
|
|
|
if(chans[c].channel == LFE)
|
|
|
|
{
|
|
|
|
/* Skip LFE */
|
|
|
|
memset(&voice->Direct.Params[c].Hrtf.Target, 0,
|
|
|
|
sizeof(voice->Direct.Params[c].Hrtf.Target));
|
|
|
|
for(i = 0;i < NumSends;i++)
|
|
|
|
{
|
|
|
|
for(j = 0;j < MAX_EFFECT_CHANNELS;j++)
|
|
|
|
voice->Send[i].Params[c].Gains.Target[j] = 0.0f;
|
|
|
|
}
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Get the HRIR coefficients and delays for this channel
|
|
|
|
* position.
|
|
|
|
*/
|
|
|
|
GetHrtfCoeffs(Device->HrtfHandle,
|
|
|
|
chans[c].elevation, chans[c].angle, Spread,
|
|
|
|
voice->Direct.Params[c].Hrtf.Target.Coeffs,
|
|
|
|
voice->Direct.Params[c].Hrtf.Target.Delay
|
|
|
|
);
|
|
|
|
voice->Direct.Params[c].Hrtf.Target.Gain = DryGain;
|
|
|
|
|
|
|
|
/* Normal panning for auxiliary sends. */
|
|
|
|
CalcAngleCoeffs(chans[c].angle, chans[c].elevation, Spread, coeffs);
|
|
|
|
|
|
|
|
for(i = 0;i < NumSends;i++)
|
|
|
|
{
|
|
|
|
const ALeffectslot *Slot = SendSlots[i];
|
|
|
|
if(Slot)
|
|
|
|
ComputePanningGainsBF(Slot->ChanMap, Slot->NumChannels,
|
|
|
|
coeffs, WetGain[i], voice->Send[i].Params[c].Gains.Target
|
|
|
|
);
|
|
|
|
else
|
|
|
|
for(j = 0;j < MAX_EFFECT_CHANNELS;j++)
|
|
|
|
voice->Send[i].Params[c].Gains.Target[j] = 0.0f;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-05-04 11:35:53 +00:00
|
|
|
|
|
|
|
voice->Flags |= VOICE_HAS_HRTF;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* Non-HRTF rendering. Use normal panning to the output. */
|
2017-05-04 18:09:45 +00:00
|
|
|
|
|
|
|
if(Distance > FLT_EPSILON)
|
2011-05-02 09:22:30 +00:00
|
|
|
{
|
2017-05-04 11:35:53 +00:00
|
|
|
ALfloat coeffs[MAX_AMBI_COEFFS];
|
2017-05-04 18:09:45 +00:00
|
|
|
ALfloat w0 = 0.0f;
|
2017-05-04 11:35:53 +00:00
|
|
|
|
2017-05-04 18:09:45 +00:00
|
|
|
/* Calculate NFC filter coefficient if needed. */
|
|
|
|
if(Device->AvgSpeakerDist > 0.0f && Listener->Params.MetersPerUnit > 0.0f)
|
2011-04-15 04:03:37 +00:00
|
|
|
{
|
2017-05-04 18:09:45 +00:00
|
|
|
ALfloat mdist = Distance * Listener->Params.MetersPerUnit;
|
|
|
|
ALfloat w1 = SPEEDOFSOUNDMETRESPERSEC /
|
|
|
|
(Device->AvgSpeakerDist * (ALfloat)Device->Frequency);
|
|
|
|
w0 = SPEEDOFSOUNDMETRESPERSEC /
|
|
|
|
(mdist * (ALfloat)Device->Frequency);
|
|
|
|
/* Clamp w0 for really close distances, to prevent excessive
|
|
|
|
* bass.
|
|
|
|
*/
|
|
|
|
w0 = minf(w0, w1*4.0f);
|
|
|
|
|
|
|
|
for(i = 0;i < MAX_AMBI_ORDER+1;i++)
|
|
|
|
voice->Direct.ChannelsPerOrder[i] = Device->Dry.NumChannelsPerOrder[i];
|
|
|
|
voice->Flags |= VOICE_HAS_NFC;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Calculate the directional coefficients once, which apply to all
|
|
|
|
* input channels.
|
|
|
|
*/
|
|
|
|
if(Device->Render_Mode == StereoPair)
|
|
|
|
{
|
|
|
|
ALfloat ev = asinf(Dir[1]);
|
|
|
|
ALfloat az = atan2f(Dir[0], -Dir[2]);
|
|
|
|
CalcAnglePairwiseCoeffs(az, ev, Spread, coeffs);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
CalcDirectionCoeffs(Dir, Spread, coeffs);
|
|
|
|
|
|
|
|
for(c = 0;c < num_channels;c++)
|
|
|
|
{
|
|
|
|
/* Adjust NFC filters if needed. */
|
|
|
|
if((voice->Flags&VOICE_HAS_NFC))
|
2015-10-24 03:16:11 +00:00
|
|
|
{
|
2017-05-04 18:09:45 +00:00
|
|
|
NfcFilterAdjust1(&voice->Direct.Params[c].NFCtrlFilter[0], w0);
|
|
|
|
NfcFilterAdjust2(&voice->Direct.Params[c].NFCtrlFilter[1], w0);
|
|
|
|
NfcFilterAdjust3(&voice->Direct.Params[c].NFCtrlFilter[2], w0);
|
2015-10-24 03:16:11 +00:00
|
|
|
}
|
|
|
|
|
2017-05-04 18:09:45 +00:00
|
|
|
/* Special-case LFE */
|
|
|
|
if(chans[c].channel == LFE)
|
2016-01-28 08:02:46 +00:00
|
|
|
{
|
2017-05-04 18:09:45 +00:00
|
|
|
for(j = 0;j < MAX_OUTPUT_CHANNELS;j++)
|
2017-05-04 11:35:53 +00:00
|
|
|
voice->Direct.Params[c].Gains.Target[j] = 0.0f;
|
2017-05-04 18:09:45 +00:00
|
|
|
if(Device->Dry.Buffer == Device->RealOut.Buffer)
|
|
|
|
{
|
|
|
|
int idx = GetChannelIdxByName(Device->RealOut, chans[c].channel);
|
|
|
|
if(idx != -1) voice->Direct.Params[c].Gains.Target[idx] = DryGain;
|
|
|
|
}
|
|
|
|
continue;
|
2016-01-28 08:02:46 +00:00
|
|
|
}
|
2017-05-04 11:35:53 +00:00
|
|
|
|
2017-05-04 18:09:45 +00:00
|
|
|
ComputePanningGains(Device->Dry,
|
2017-05-08 01:28:43 +00:00
|
|
|
coeffs, DryGain * downmix_gain, voice->Direct.Params[c].Gains.Target
|
2017-05-04 18:09:45 +00:00
|
|
|
);
|
|
|
|
}
|
2017-05-04 11:35:53 +00:00
|
|
|
|
|
|
|
for(i = 0;i < NumSends;i++)
|
|
|
|
{
|
|
|
|
const ALeffectslot *Slot = SendSlots[i];
|
|
|
|
if(Slot)
|
2017-05-04 18:09:45 +00:00
|
|
|
for(c = 0;c < num_channels;c++)
|
|
|
|
{
|
|
|
|
/* Skip LFE */
|
|
|
|
if(chans[c].channel == LFE)
|
|
|
|
for(j = 0;j < MAX_EFFECT_CHANNELS;j++)
|
|
|
|
voice->Send[i].Params[c].Gains.Target[j] = 0.0f;
|
|
|
|
else
|
2017-05-08 01:28:43 +00:00
|
|
|
ComputePanningGainsBF(Slot->ChanMap,
|
|
|
|
Slot->NumChannels, coeffs, WetGain[i] * downmix_gain,
|
|
|
|
voice->Send[i].Params[c].Gains.Target
|
2017-05-04 18:09:45 +00:00
|
|
|
);
|
|
|
|
}
|
2017-05-04 11:35:53 +00:00
|
|
|
else
|
2017-05-04 18:09:45 +00:00
|
|
|
for(c = 0;c < num_channels;c++)
|
|
|
|
{
|
|
|
|
for(j = 0;j < MAX_EFFECT_CHANNELS;j++)
|
|
|
|
voice->Send[i].Params[c].Gains.Target[j] = 0.0f;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ALfloat w0 = 0.0f;
|
|
|
|
|
|
|
|
if(Device->AvgSpeakerDist > 0.0f)
|
|
|
|
{
|
|
|
|
/* If the source distance is 0, set w0 to w1 to act as a pass-
|
|
|
|
* through. We still want to pass the signal through the
|
|
|
|
* filters so they keep an appropriate history, in case the
|
|
|
|
* source moves away from the listener.
|
|
|
|
*/
|
|
|
|
w0 = SPEEDOFSOUNDMETRESPERSEC /
|
|
|
|
(Device->AvgSpeakerDist * (ALfloat)Device->Frequency);
|
|
|
|
|
|
|
|
for(i = 0;i < MAX_AMBI_ORDER+1;i++)
|
|
|
|
voice->Direct.ChannelsPerOrder[i] = Device->Dry.NumChannelsPerOrder[i];
|
|
|
|
voice->Flags |= VOICE_HAS_NFC;
|
|
|
|
}
|
|
|
|
|
|
|
|
for(c = 0;c < num_channels;c++)
|
|
|
|
{
|
|
|
|
ALfloat coeffs[MAX_AMBI_COEFFS];
|
|
|
|
|
|
|
|
if((voice->Flags&VOICE_HAS_NFC))
|
|
|
|
{
|
|
|
|
NfcFilterAdjust1(&voice->Direct.Params[c].NFCtrlFilter[0], w0);
|
|
|
|
NfcFilterAdjust2(&voice->Direct.Params[c].NFCtrlFilter[1], w0);
|
|
|
|
NfcFilterAdjust3(&voice->Direct.Params[c].NFCtrlFilter[2], w0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Special-case LFE */
|
|
|
|
if(chans[c].channel == LFE)
|
|
|
|
{
|
|
|
|
for(j = 0;j < MAX_OUTPUT_CHANNELS;j++)
|
|
|
|
voice->Direct.Params[c].Gains.Target[j] = 0.0f;
|
|
|
|
if(Device->Dry.Buffer == Device->RealOut.Buffer)
|
|
|
|
{
|
|
|
|
int idx = GetChannelIdxByName(Device->RealOut, chans[c].channel);
|
|
|
|
if(idx != -1) voice->Direct.Params[c].Gains.Target[idx] = DryGain;
|
|
|
|
}
|
|
|
|
|
|
|
|
for(i = 0;i < NumSends;i++)
|
|
|
|
{
|
|
|
|
for(j = 0;j < MAX_EFFECT_CHANNELS;j++)
|
|
|
|
voice->Send[i].Params[c].Gains.Target[j] = 0.0f;
|
|
|
|
}
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(Device->Render_Mode == StereoPair)
|
|
|
|
CalcAnglePairwiseCoeffs(chans[c].angle, chans[c].elevation, Spread, coeffs);
|
|
|
|
else
|
|
|
|
CalcAngleCoeffs(chans[c].angle, chans[c].elevation, Spread, coeffs);
|
|
|
|
ComputePanningGains(Device->Dry,
|
|
|
|
coeffs, DryGain, voice->Direct.Params[c].Gains.Target
|
|
|
|
);
|
|
|
|
|
|
|
|
for(i = 0;i < NumSends;i++)
|
|
|
|
{
|
|
|
|
const ALeffectslot *Slot = SendSlots[i];
|
|
|
|
if(Slot)
|
|
|
|
ComputePanningGainsBF(Slot->ChanMap, Slot->NumChannels,
|
|
|
|
coeffs, WetGain[i], voice->Send[i].Params[c].Gains.Target
|
|
|
|
);
|
|
|
|
else
|
|
|
|
for(j = 0;j < MAX_EFFECT_CHANNELS;j++)
|
|
|
|
voice->Send[i].Params[c].Gains.Target[j] = 0.0f;
|
|
|
|
}
|
2014-10-03 01:05:42 +00:00
|
|
|
}
|
2015-10-24 03:16:11 +00:00
|
|
|
}
|
2014-03-23 23:11:21 +00:00
|
|
|
}
|
2009-12-09 15:02:26 +00:00
|
|
|
|
2013-05-28 02:14:02 +00:00
|
|
|
{
|
2017-05-04 11:35:53 +00:00
|
|
|
ALfloat hfScale = props->Direct.HFReference / Frequency;
|
|
|
|
ALfloat lfScale = props->Direct.LFReference / Frequency;
|
2017-05-16 00:20:09 +00:00
|
|
|
ALfloat gainHF = maxf(DryGainHF, 0.001f); /* Limit -60dB */
|
|
|
|
ALfloat gainLF = maxf(DryGainLF, 0.001f);
|
2013-05-28 02:14:02 +00:00
|
|
|
for(c = 0;c < num_channels;c++)
|
2014-05-17 14:17:48 +00:00
|
|
|
{
|
2017-02-16 01:40:26 +00:00
|
|
|
voice->Direct.Params[c].FilterType = AF_None;
|
2017-05-04 11:35:53 +00:00
|
|
|
if(gainHF != 1.0f) voice->Direct.Params[c].FilterType |= AF_LowPass;
|
|
|
|
if(gainLF != 1.0f) voice->Direct.Params[c].FilterType |= AF_HighPass;
|
2014-05-11 17:07:17 +00:00
|
|
|
ALfilterState_setParams(
|
2017-02-16 01:40:26 +00:00
|
|
|
&voice->Direct.Params[c].LowPass, ALfilterType_HighShelf,
|
2017-05-04 11:35:53 +00:00
|
|
|
gainHF, hfScale, calc_rcpQ_from_slope(gainHF, 1.0f)
|
2014-05-11 17:07:17 +00:00
|
|
|
);
|
2014-05-17 14:54:25 +00:00
|
|
|
ALfilterState_setParams(
|
2017-02-16 01:40:26 +00:00
|
|
|
&voice->Direct.Params[c].HighPass, ALfilterType_LowShelf,
|
2017-05-04 11:35:53 +00:00
|
|
|
gainLF, lfScale, calc_rcpQ_from_slope(gainLF, 1.0f)
|
2014-05-17 14:54:25 +00:00
|
|
|
);
|
2014-05-17 14:17:48 +00:00
|
|
|
}
|
2013-05-28 02:14:02 +00:00
|
|
|
}
|
2009-12-09 15:02:26 +00:00
|
|
|
for(i = 0;i < NumSends;i++)
|
|
|
|
{
|
2017-05-04 11:35:53 +00:00
|
|
|
ALfloat hfScale = props->Send[i].HFReference / Frequency;
|
|
|
|
ALfloat lfScale = props->Send[i].LFReference / Frequency;
|
2017-05-16 00:20:09 +00:00
|
|
|
ALfloat gainHF = maxf(WetGainHF[i], 0.001f);
|
|
|
|
ALfloat gainLF = maxf(WetGainLF[i], 0.001f);
|
2013-05-21 14:10:24 +00:00
|
|
|
for(c = 0;c < num_channels;c++)
|
2014-05-17 14:17:48 +00:00
|
|
|
{
|
2017-02-16 01:40:26 +00:00
|
|
|
voice->Send[i].Params[c].FilterType = AF_None;
|
2017-05-04 11:35:53 +00:00
|
|
|
if(gainHF != 1.0f) voice->Send[i].Params[c].FilterType |= AF_LowPass;
|
|
|
|
if(gainLF != 1.0f) voice->Send[i].Params[c].FilterType |= AF_HighPass;
|
2014-05-11 17:07:17 +00:00
|
|
|
ALfilterState_setParams(
|
2017-02-16 01:40:26 +00:00
|
|
|
&voice->Send[i].Params[c].LowPass, ALfilterType_HighShelf,
|
2017-05-04 11:35:53 +00:00
|
|
|
gainHF, hfScale, calc_rcpQ_from_slope(gainHF, 1.0f)
|
2014-05-11 17:07:17 +00:00
|
|
|
);
|
2014-05-17 14:54:25 +00:00
|
|
|
ALfilterState_setParams(
|
2017-02-16 01:40:26 +00:00
|
|
|
&voice->Send[i].Params[c].HighPass, ALfilterType_LowShelf,
|
2017-05-04 11:35:53 +00:00
|
|
|
gainLF, lfScale, calc_rcpQ_from_slope(gainLF, 1.0f)
|
2014-05-17 14:54:25 +00:00
|
|
|
);
|
2014-05-17 14:17:48 +00:00
|
|
|
}
|
2009-12-09 15:02:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-04 11:35:53 +00:00
|
|
|
static void CalcNonAttnSourceParams(ALvoice *voice, const struct ALvoiceProps *props, const ALbuffer *ALBuffer, const ALCcontext *ALContext)
|
|
|
|
{
|
2017-05-04 18:09:45 +00:00
|
|
|
static const ALfloat dir[3] = { 0.0f, 0.0f, -1.0f };
|
2017-05-04 11:35:53 +00:00
|
|
|
const ALCdevice *Device = ALContext->Device;
|
|
|
|
const ALlistener *Listener = ALContext->Listener;
|
|
|
|
ALfloat DryGain, DryGainHF, DryGainLF;
|
|
|
|
ALfloat WetGain[MAX_SENDS];
|
|
|
|
ALfloat WetGainHF[MAX_SENDS];
|
|
|
|
ALfloat WetGainLF[MAX_SENDS];
|
|
|
|
ALeffectslot *SendSlots[MAX_SENDS];
|
|
|
|
ALfloat Pitch;
|
|
|
|
ALsizei i;
|
|
|
|
|
|
|
|
voice->Direct.Buffer = Device->Dry.Buffer;
|
|
|
|
voice->Direct.Channels = Device->Dry.NumChannels;
|
|
|
|
for(i = 0;i < Device->NumAuxSends;i++)
|
|
|
|
{
|
|
|
|
SendSlots[i] = props->Send[i].Slot;
|
|
|
|
if(!SendSlots[i] && i == 0)
|
|
|
|
SendSlots[i] = Device->DefaultSlot;
|
|
|
|
if(!SendSlots[i] || SendSlots[i]->Params.EffectType == AL_EFFECT_NULL)
|
|
|
|
{
|
|
|
|
SendSlots[i] = NULL;
|
|
|
|
voice->Send[i].Buffer = NULL;
|
|
|
|
voice->Send[i].Channels = 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
voice->Send[i].Buffer = SendSlots[i]->WetBuffer;
|
|
|
|
voice->Send[i].Channels = SendSlots[i]->NumChannels;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Calculate the stepping value */
|
|
|
|
Pitch = (ALfloat)ALBuffer->Frequency/(ALfloat)Device->Frequency * props->Pitch;
|
|
|
|
if(Pitch > (ALfloat)MAX_PITCH)
|
|
|
|
voice->Step = MAX_PITCH<<FRACTIONBITS;
|
|
|
|
else
|
|
|
|
voice->Step = maxi(fastf2i(Pitch*FRACTIONONE + 0.5f), 1);
|
|
|
|
BsincPrepare(voice->Step, &voice->ResampleState.bsinc);
|
|
|
|
voice->Resampler = SelectResampler(props->Resampler);
|
|
|
|
|
|
|
|
/* Calculate gains */
|
|
|
|
DryGain = clampf(props->Gain, props->MinGain, props->MaxGain);
|
|
|
|
DryGain *= props->Direct.Gain * Listener->Params.Gain;
|
|
|
|
DryGain = minf(DryGain, GAIN_MIX_MAX);
|
|
|
|
DryGainHF = props->Direct.GainHF;
|
|
|
|
DryGainLF = props->Direct.GainLF;
|
|
|
|
for(i = 0;i < Device->NumAuxSends;i++)
|
|
|
|
{
|
|
|
|
WetGain[i] = clampf(props->Gain, props->MinGain, props->MaxGain);
|
|
|
|
WetGain[i] *= props->Send[i].Gain * Listener->Params.Gain;
|
|
|
|
WetGain[i] = minf(WetGain[i], GAIN_MIX_MAX);
|
|
|
|
WetGainHF[i] = props->Send[i].GainHF;
|
|
|
|
WetGainLF[i] = props->Send[i].GainLF;
|
|
|
|
}
|
|
|
|
|
2017-05-04 18:09:45 +00:00
|
|
|
CalcPanningAndFilters(voice, 0.0f, dir, 0.0f, DryGain, DryGainHF, DryGainLF, WetGain,
|
|
|
|
WetGainLF, WetGainHF, SendSlots, ALBuffer, props, Listener, Device);
|
2017-05-04 11:35:53 +00:00
|
|
|
}
|
|
|
|
|
2017-04-18 04:16:01 +00:00
|
|
|
static void CalcAttnSourceParams(ALvoice *voice, const struct ALvoiceProps *props, const ALbuffer *ALBuffer, const ALCcontext *ALContext)
|
2007-11-14 02:02:18 +00:00
|
|
|
{
|
2016-01-25 14:11:51 +00:00
|
|
|
const ALCdevice *Device = ALContext->Device;
|
2016-05-09 18:26:49 +00:00
|
|
|
const ALlistener *Listener = ALContext->Listener;
|
2017-05-04 18:09:45 +00:00
|
|
|
const ALsizei NumSends = Device->NumAuxSends;
|
2014-12-16 15:20:27 +00:00
|
|
|
aluVector Position, Velocity, Direction, SourceToListener;
|
2017-05-04 18:09:45 +00:00
|
|
|
ALfloat Distance, ClampedDist;
|
|
|
|
ALfloat DopplerFactor;
|
2011-07-05 18:00:52 +00:00
|
|
|
ALfloat RoomAirAbsorption[MAX_SENDS];
|
2016-01-28 08:02:46 +00:00
|
|
|
ALeffectslot *SendSlots[MAX_SENDS];
|
2012-03-15 05:45:52 +00:00
|
|
|
ALfloat Attenuation;
|
2009-04-12 03:04:46 +00:00
|
|
|
ALfloat RoomAttenuation[MAX_SENDS];
|
|
|
|
ALfloat RoomRolloff[MAX_SENDS];
|
2011-07-05 18:00:52 +00:00
|
|
|
ALfloat DecayDistance[MAX_SENDS];
|
2017-05-04 18:09:45 +00:00
|
|
|
ALfloat DryGain, DryGainHF, DryGainLF;
|
2009-10-21 22:31:21 +00:00
|
|
|
ALfloat WetGain[MAX_SENDS];
|
2009-10-21 20:08:50 +00:00
|
|
|
ALfloat WetGainHF[MAX_SENDS];
|
2014-05-17 14:54:25 +00:00
|
|
|
ALfloat WetGainLF[MAX_SENDS];
|
2017-05-04 18:09:45 +00:00
|
|
|
ALfloat dir[3];
|
|
|
|
ALfloat spread;
|
2017-05-16 00:13:05 +00:00
|
|
|
ALfloat meters;
|
2010-08-07 07:38:02 +00:00
|
|
|
ALfloat Pitch;
|
2017-05-04 18:09:45 +00:00
|
|
|
ALint i;
|
|
|
|
|
|
|
|
Pitch = 1.0f;
|
2017-03-08 11:38:28 +00:00
|
|
|
aluVectorSet(&Position, props->Position[0], props->Position[1], props->Position[2], 1.0f);
|
|
|
|
aluVectorSet(&Direction, props->Direction[0], props->Direction[1], props->Direction[2], 0.0f);
|
|
|
|
aluVectorSet(&Velocity, props->Velocity[0], props->Velocity[1], props->Velocity[2], 0.0f);
|
2012-10-14 18:21:52 +00:00
|
|
|
|
2017-02-16 01:40:26 +00:00
|
|
|
voice->Direct.Buffer = Device->Dry.Buffer;
|
|
|
|
voice->Direct.Channels = Device->Dry.NumChannels;
|
2011-07-03 10:34:40 +00:00
|
|
|
for(i = 0;i < NumSends;i++)
|
|
|
|
{
|
2017-03-08 11:38:28 +00:00
|
|
|
SendSlots[i] = props->Send[i].Slot;
|
2016-01-28 08:02:46 +00:00
|
|
|
if(!SendSlots[i] && i == 0)
|
|
|
|
SendSlots[i] = Device->DefaultSlot;
|
2016-05-13 01:26:33 +00:00
|
|
|
if(!SendSlots[i] || SendSlots[i]->Params.EffectType == AL_EFFECT_NULL)
|
2011-07-05 18:00:52 +00:00
|
|
|
{
|
2016-01-28 08:02:46 +00:00
|
|
|
SendSlots[i] = NULL;
|
2011-07-05 18:00:52 +00:00
|
|
|
RoomRolloff[i] = 0.0f;
|
|
|
|
DecayDistance[i] = 0.0f;
|
2011-07-12 05:07:37 +00:00
|
|
|
RoomAirAbsorption[i] = 1.0f;
|
2011-07-05 18:00:52 +00:00
|
|
|
}
|
Provide asynchronous property updates for sources
This necessitates a change in how source updates are handled. Rather than just
being able to update sources when a dependent object state is changed (e.g. a
listener gain change), now all source updates must be proactively provided.
Consequently, apps that do not utilize any deferring (AL_SOFT_defer_updates or
alcSuspendContext/alcProcessContext) may utilize more CPU since it'll be
filling out more update containers for the mixer thread to use.
The upside is that there's less blocking between the app's calling thread and
the mixer thread, particularly for vectors and other multi-value properties
(filters and sends). Deferring behavior when used is also improved, since
updates that shouldn't be applied yet are simply not provided. And when they
are provided, the mixer doesn't have to ignore them, meaning the actual
deferring of a context doesn't have to synchrnously force an update -- the
process call will send any pending updates, which the mixer will apply even if
another deferral occurs before the mixer runs, because it'll still be there
waiting on the next mixer invocation.
There is one slight bug introduced by this commit. When a listener change is
made, or changes to multiple sources while updates are being deferred, it is
possible for the mixer to run while the sources are prepping their updates,
causing some of the source updates to be seen before the other. This will be
fixed in short order.
2016-05-15 06:43:40 +00:00
|
|
|
else if(SendSlots[i]->Params.AuxSendAuto)
|
2011-07-05 18:00:52 +00:00
|
|
|
{
|
2017-05-04 18:09:45 +00:00
|
|
|
RoomRolloff[i] = SendSlots[i]->Params.RoomRolloff + props->RoomRolloffFactor;
|
2016-05-13 01:26:33 +00:00
|
|
|
DecayDistance[i] = SendSlots[i]->Params.DecayTime *
|
|
|
|
SPEEDOFSOUNDMETRESPERSEC;
|
|
|
|
RoomAirAbsorption[i] = SendSlots[i]->Params.AirAbsorptionGainHF;
|
2011-07-05 18:00:52 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* If the slot's auxiliary send auto is off, the data sent to the
|
|
|
|
* effect slot is the same as the dry path, sans filter effects */
|
2017-05-05 10:19:50 +00:00
|
|
|
RoomRolloff[i] = props->RolloffFactor;
|
2011-07-05 18:00:52 +00:00
|
|
|
DecayDistance[i] = 0.0f;
|
|
|
|
RoomAirAbsorption[i] = AIRABSORBGAINHF;
|
|
|
|
}
|
2011-07-05 21:14:20 +00:00
|
|
|
|
2016-01-28 08:02:46 +00:00
|
|
|
if(!SendSlots[i])
|
|
|
|
{
|
2017-02-16 01:40:26 +00:00
|
|
|
voice->Send[i].Buffer = NULL;
|
|
|
|
voice->Send[i].Channels = 0;
|
2016-01-28 08:02:46 +00:00
|
|
|
}
|
2013-10-06 17:11:01 +00:00
|
|
|
else
|
2016-01-28 08:02:46 +00:00
|
|
|
{
|
2017-02-16 01:40:26 +00:00
|
|
|
voice->Send[i].Buffer = SendSlots[i]->WetBuffer;
|
|
|
|
voice->Send[i].Channels = SendSlots[i]->NumChannels;
|
2016-01-28 08:02:46 +00:00
|
|
|
}
|
2011-07-03 10:34:40 +00:00
|
|
|
}
|
2007-11-14 02:02:18 +00:00
|
|
|
|
2012-04-26 07:59:17 +00:00
|
|
|
/* Transform source to listener space (convert to head relative) */
|
2017-03-08 11:38:28 +00:00
|
|
|
if(props->HeadRelative == AL_FALSE)
|
2009-10-19 20:25:40 +00:00
|
|
|
{
|
2016-05-17 01:28:46 +00:00
|
|
|
const aluMatrixf *Matrix = &Listener->Params.Matrix;
|
2012-04-26 07:59:17 +00:00
|
|
|
/* Transform source vectors */
|
2016-05-17 01:28:46 +00:00
|
|
|
Position = aluMatrixfVector(Matrix, &Position);
|
|
|
|
Velocity = aluMatrixfVector(Matrix, &Velocity);
|
|
|
|
Direction = aluMatrixfVector(Matrix, &Direction);
|
2009-10-19 20:25:40 +00:00
|
|
|
}
|
|
|
|
else
|
2011-10-30 12:49:17 +00:00
|
|
|
{
|
2016-05-09 18:26:49 +00:00
|
|
|
const aluVector *lvelocity = &Listener->Params.Velocity;
|
2012-03-10 07:53:45 +00:00
|
|
|
/* Offset the source velocity to be relative of the listener velocity */
|
2014-12-16 15:20:27 +00:00
|
|
|
Velocity.v[0] += lvelocity->v[0];
|
|
|
|
Velocity.v[1] += lvelocity->v[1];
|
|
|
|
Velocity.v[2] += lvelocity->v[2];
|
2011-10-30 12:49:17 +00:00
|
|
|
}
|
2009-11-23 06:36:20 +00:00
|
|
|
|
2015-07-05 15:47:56 +00:00
|
|
|
aluNormalize(Direction.v);
|
2014-12-16 15:20:27 +00:00
|
|
|
SourceToListener.v[0] = -Position.v[0];
|
|
|
|
SourceToListener.v[1] = -Position.v[1];
|
|
|
|
SourceToListener.v[2] = -Position.v[2];
|
2014-12-16 15:42:17 +00:00
|
|
|
SourceToListener.v[3] = 0.0f;
|
2015-07-05 15:47:56 +00:00
|
|
|
Distance = aluNormalize(SourceToListener.v);
|
2007-11-14 02:02:18 +00:00
|
|
|
|
2012-04-26 07:59:17 +00:00
|
|
|
/* Calculate distance attenuation */
|
2011-06-21 19:55:21 +00:00
|
|
|
ClampedDist = Distance;
|
2009-10-19 20:25:40 +00:00
|
|
|
|
2010-10-10 11:00:50 +00:00
|
|
|
Attenuation = 1.0f;
|
2009-12-06 11:59:12 +00:00
|
|
|
for(i = 0;i < NumSends;i++)
|
2009-10-19 20:25:40 +00:00
|
|
|
RoomAttenuation[i] = 1.0f;
|
2016-08-24 02:17:17 +00:00
|
|
|
switch(Listener->Params.SourceDistanceModel ?
|
2017-03-08 11:38:28 +00:00
|
|
|
props->DistanceModel : Listener->Params.DistanceModel)
|
2009-10-19 20:25:40 +00:00
|
|
|
{
|
2011-07-04 02:39:19 +00:00
|
|
|
case InverseDistanceClamped:
|
2017-05-04 18:09:45 +00:00
|
|
|
ClampedDist = clampf(ClampedDist, props->RefDistance, props->MaxDistance);
|
|
|
|
if(props->MaxDistance < props->RefDistance)
|
2009-10-19 20:25:40 +00:00
|
|
|
break;
|
2012-04-26 07:59:17 +00:00
|
|
|
/*fall-through*/
|
2011-07-04 02:39:19 +00:00
|
|
|
case InverseDistance:
|
2017-05-04 18:09:45 +00:00
|
|
|
if(props->RefDistance > 0.0f)
|
2009-10-19 20:25:40 +00:00
|
|
|
{
|
2017-05-05 10:19:50 +00:00
|
|
|
ALfloat dist = lerp(props->RefDistance, ClampedDist, props->RolloffFactor);
|
2017-05-04 18:09:45 +00:00
|
|
|
if(dist > 0.0f) Attenuation = props->RefDistance / dist;
|
2009-10-19 20:25:40 +00:00
|
|
|
for(i = 0;i < NumSends;i++)
|
2007-12-19 03:03:40 +00:00
|
|
|
{
|
2017-05-04 18:09:45 +00:00
|
|
|
dist = lerp(props->RefDistance, ClampedDist, RoomRolloff[i]);
|
|
|
|
if(dist > 0.0f) RoomAttenuation[i] = props->RefDistance / dist;
|
2007-12-19 03:03:40 +00:00
|
|
|
}
|
2009-10-19 20:25:40 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2011-07-04 02:39:19 +00:00
|
|
|
case LinearDistanceClamped:
|
2017-05-04 18:09:45 +00:00
|
|
|
ClampedDist = clampf(ClampedDist, props->RefDistance, props->MaxDistance);
|
|
|
|
if(props->MaxDistance < props->RefDistance)
|
2007-11-14 02:02:18 +00:00
|
|
|
break;
|
2012-04-26 07:59:17 +00:00
|
|
|
/*fall-through*/
|
2011-07-04 02:39:19 +00:00
|
|
|
case LinearDistance:
|
2017-05-04 18:09:45 +00:00
|
|
|
if(props->MaxDistance != props->RefDistance)
|
2009-10-19 20:25:40 +00:00
|
|
|
{
|
2017-05-05 10:19:50 +00:00
|
|
|
Attenuation = props->RolloffFactor * (ClampedDist-props->RefDistance) /
|
2017-05-04 18:09:45 +00:00
|
|
|
(props->MaxDistance-props->RefDistance);
|
|
|
|
Attenuation = maxf(1.0f - Attenuation, 0.0f);
|
2009-10-19 20:25:40 +00:00
|
|
|
for(i = 0;i < NumSends;i++)
|
2010-09-24 20:16:09 +00:00
|
|
|
{
|
2017-05-04 18:09:45 +00:00
|
|
|
RoomAttenuation[i] = RoomRolloff[i] * (ClampedDist-props->RefDistance) /
|
|
|
|
(props->MaxDistance-props->RefDistance);
|
|
|
|
RoomAttenuation[i] = maxf(1.0f - RoomAttenuation[i], 0.0f);
|
2010-09-24 20:16:09 +00:00
|
|
|
}
|
2009-10-19 20:25:40 +00:00
|
|
|
}
|
|
|
|
break;
|
2007-11-14 02:02:18 +00:00
|
|
|
|
2011-07-04 02:39:19 +00:00
|
|
|
case ExponentDistanceClamped:
|
2017-05-04 18:09:45 +00:00
|
|
|
ClampedDist = clampf(ClampedDist, props->RefDistance, props->MaxDistance);
|
|
|
|
if(props->MaxDistance < props->RefDistance)
|
2007-11-14 02:02:18 +00:00
|
|
|
break;
|
2012-04-26 07:59:17 +00:00
|
|
|
/*fall-through*/
|
2011-07-04 02:39:19 +00:00
|
|
|
case ExponentDistance:
|
2017-05-04 18:09:45 +00:00
|
|
|
if(ClampedDist > 0.0f && props->RefDistance > 0.0f)
|
2009-10-19 20:25:40 +00:00
|
|
|
{
|
2017-05-05 10:19:50 +00:00
|
|
|
Attenuation = powf(ClampedDist/props->RefDistance, -props->RolloffFactor);
|
2009-10-19 20:25:40 +00:00
|
|
|
for(i = 0;i < NumSends;i++)
|
2017-05-04 18:09:45 +00:00
|
|
|
RoomAttenuation[i] = powf(ClampedDist/props->RefDistance, -RoomRolloff[i]);
|
2009-10-19 20:25:40 +00:00
|
|
|
}
|
|
|
|
break;
|
2007-11-14 02:02:18 +00:00
|
|
|
|
2011-07-04 02:39:19 +00:00
|
|
|
case DisableDistance:
|
2017-05-04 18:09:45 +00:00
|
|
|
ClampedDist = props->RefDistance;
|
2009-10-19 20:25:40 +00:00
|
|
|
break;
|
|
|
|
}
|
2009-04-12 03:27:55 +00:00
|
|
|
|
2012-04-26 07:59:17 +00:00
|
|
|
/* Source Gain + Attenuation */
|
2017-05-04 18:09:45 +00:00
|
|
|
DryGain = props->Gain * Attenuation;
|
2017-02-15 03:59:39 +00:00
|
|
|
DryGainHF = 1.0f;
|
|
|
|
DryGainLF = 1.0f;
|
2011-07-05 18:00:52 +00:00
|
|
|
for(i = 0;i < NumSends;i++)
|
2017-02-15 03:59:39 +00:00
|
|
|
{
|
2017-05-04 18:09:45 +00:00
|
|
|
WetGain[i] = props->Gain * RoomAttenuation[i];
|
2017-02-15 03:59:39 +00:00
|
|
|
WetGainHF[i] = 1.0f;
|
|
|
|
WetGainLF[i] = 1.0f;
|
|
|
|
}
|
2011-06-18 23:45:26 +00:00
|
|
|
|
2012-04-26 07:59:17 +00:00
|
|
|
/* Distance-based air absorption */
|
2017-05-16 00:13:05 +00:00
|
|
|
meters = (ClampedDist-props->RefDistance) * props->RolloffFactor *
|
|
|
|
Listener->Params.MetersPerUnit;
|
|
|
|
if(meters > 0.0f && props->AirAbsorptionFactor > 0.0f)
|
2017-05-04 18:09:45 +00:00
|
|
|
DryGainHF *= powf(AIRABSORBGAINHF, props->AirAbsorptionFactor*meters);
|
2007-11-14 02:02:18 +00:00
|
|
|
|
2017-05-16 00:13:05 +00:00
|
|
|
if(props->WetGainAuto && meters > 0.0f)
|
2011-10-01 00:51:21 +00:00
|
|
|
{
|
|
|
|
/* Apply a decay-time transformation to the wet path, based on the
|
2017-05-16 00:13:05 +00:00
|
|
|
* source distance in meters. The initial decay of the reverb effect is
|
|
|
|
* calculated and applied to the wet path.
|
2011-10-01 00:51:21 +00:00
|
|
|
*/
|
|
|
|
for(i = 0;i < NumSends;i++)
|
|
|
|
{
|
|
|
|
if(DecayDistance[i] > 0.0f)
|
2017-05-16 00:13:05 +00:00
|
|
|
WetGain[i] *= powf(0.001f/*-60dB*/, meters/DecayDistance[i]);
|
2011-10-01 00:51:21 +00:00
|
|
|
}
|
2017-05-16 00:13:05 +00:00
|
|
|
|
|
|
|
/* Yes, the wet path's air absorption is applied with WetGainAuto on,
|
|
|
|
* rather than WetGainHFAuto.
|
|
|
|
*/
|
|
|
|
for(i = 0;i < NumSends;i++)
|
|
|
|
WetGainHF[i] *= powf(RoomAirAbsorption[i], meters);
|
2011-10-01 00:51:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Calculate directional soundcones */
|
2017-05-04 18:09:45 +00:00
|
|
|
if(props->InnerAngle < 360.0f)
|
2009-10-19 20:25:40 +00:00
|
|
|
{
|
2016-05-17 05:42:41 +00:00
|
|
|
ALfloat ConeVolume;
|
|
|
|
ALfloat ConeHF;
|
|
|
|
ALfloat Angle;
|
|
|
|
ALfloat scale;
|
2008-01-16 05:57:50 +00:00
|
|
|
|
2016-05-17 05:42:41 +00:00
|
|
|
Angle = RAD2DEG(acosf(aluDotproduct(&Direction, &SourceToListener)) * ConeScale) * 2.0f;
|
2017-05-04 18:09:45 +00:00
|
|
|
if(Angle > props->InnerAngle)
|
2016-05-17 05:42:41 +00:00
|
|
|
{
|
2017-05-04 18:09:45 +00:00
|
|
|
if(Angle < props->OuterAngle)
|
2016-05-17 05:42:41 +00:00
|
|
|
{
|
2017-05-04 18:09:45 +00:00
|
|
|
scale = (Angle-props->InnerAngle) / (props->OuterAngle-props->InnerAngle);
|
2017-03-08 11:38:28 +00:00
|
|
|
ConeVolume = lerp(1.0f, props->OuterGain, scale);
|
|
|
|
ConeHF = lerp(1.0f, props->OuterGainHF, scale);
|
2016-05-17 05:42:41 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-03-08 11:38:28 +00:00
|
|
|
ConeVolume = props->OuterGain;
|
|
|
|
ConeHF = props->OuterGainHF;
|
2016-05-17 05:42:41 +00:00
|
|
|
}
|
|
|
|
DryGain *= ConeVolume;
|
2017-05-04 18:09:45 +00:00
|
|
|
if(props->DryGainHFAuto)
|
2016-05-17 05:42:41 +00:00
|
|
|
DryGainHF *= ConeHF;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Wet path uses the total area of the cone emitter (the room will
|
|
|
|
* receive the same amount of sound regardless of its direction).
|
|
|
|
*/
|
2017-05-04 18:09:45 +00:00
|
|
|
scale = (asinf(maxf((props->OuterAngle-props->InnerAngle)/360.0f, 0.0f)) / F_PI) +
|
|
|
|
(props->InnerAngle/360.0f);
|
|
|
|
if(props->WetGainAuto)
|
2016-05-17 05:42:41 +00:00
|
|
|
{
|
2017-03-08 11:38:28 +00:00
|
|
|
ConeVolume = lerp(1.0f, props->OuterGain, scale);
|
2016-05-17 05:42:41 +00:00
|
|
|
for(i = 0;i < NumSends;i++)
|
|
|
|
WetGain[i] *= ConeVolume;
|
|
|
|
}
|
2017-05-04 18:09:45 +00:00
|
|
|
if(props->WetGainHFAuto)
|
2016-05-17 05:42:41 +00:00
|
|
|
{
|
2017-03-08 11:38:28 +00:00
|
|
|
ConeHF = lerp(1.0f, props->OuterGainHF, scale);
|
2016-05-17 05:42:41 +00:00
|
|
|
for(i = 0;i < NumSends;i++)
|
|
|
|
WetGainHF[i] *= ConeHF;
|
|
|
|
}
|
2011-07-05 18:00:52 +00:00
|
|
|
}
|
2009-12-08 22:18:07 +00:00
|
|
|
|
2012-04-26 07:59:17 +00:00
|
|
|
/* Apply gain and frequency filters */
|
2017-05-04 18:09:45 +00:00
|
|
|
DryGain = clampf(DryGain, props->MinGain, props->MaxGain);
|
|
|
|
DryGain *= props->Direct.Gain * Listener->Params.Gain;
|
2016-08-27 13:28:04 +00:00
|
|
|
DryGain = minf(DryGain, GAIN_MIX_MAX);
|
2017-03-08 11:38:28 +00:00
|
|
|
DryGainHF *= props->Direct.GainHF;
|
|
|
|
DryGainLF *= props->Direct.GainLF;
|
2011-07-05 18:00:52 +00:00
|
|
|
for(i = 0;i < NumSends;i++)
|
|
|
|
{
|
2017-05-04 18:09:45 +00:00
|
|
|
WetGain[i] = clampf(WetGain[i], props->MinGain, props->MaxGain);
|
|
|
|
WetGain[i] *= props->Send[i].Gain * Listener->Params.Gain;
|
2016-08-27 13:28:04 +00:00
|
|
|
WetGain[i] = minf(WetGain[i], GAIN_MIX_MAX);
|
2017-03-08 11:38:28 +00:00
|
|
|
WetGainHF[i] *= props->Send[i].GainHF;
|
|
|
|
WetGainLF[i] *= props->Send[i].GainLF;
|
2007-11-14 02:02:18 +00:00
|
|
|
}
|
2008-01-19 08:49:05 +00:00
|
|
|
|
2012-04-26 07:59:17 +00:00
|
|
|
/* Calculate velocity-based doppler effect */
|
2017-05-04 18:09:45 +00:00
|
|
|
DopplerFactor = props->DopplerFactor * Listener->Params.DopplerFactor;
|
2012-03-18 15:20:08 +00:00
|
|
|
if(DopplerFactor > 0.0f)
|
2009-12-01 11:32:04 +00:00
|
|
|
{
|
2016-05-09 18:26:49 +00:00
|
|
|
const aluVector *lvelocity = &Listener->Params.Velocity;
|
2017-05-04 18:09:45 +00:00
|
|
|
ALfloat SpeedOfSound = Listener->Params.SpeedOfSound;
|
2010-10-10 11:00:50 +00:00
|
|
|
ALfloat VSS, VLS;
|
2012-03-09 02:19:15 +00:00
|
|
|
|
2012-03-18 15:20:08 +00:00
|
|
|
if(SpeedOfSound < 1.0f)
|
|
|
|
{
|
|
|
|
DopplerFactor *= 1.0f/SpeedOfSound;
|
|
|
|
SpeedOfSound = 1.0f;
|
|
|
|
}
|
|
|
|
|
2014-12-16 18:36:44 +00:00
|
|
|
VSS = aluDotproduct(&Velocity, &SourceToListener) * DopplerFactor;
|
|
|
|
VLS = aluDotproduct(lvelocity, &SourceToListener) * DopplerFactor;
|
2012-03-09 02:19:15 +00:00
|
|
|
|
2012-03-10 06:38:26 +00:00
|
|
|
Pitch *= clampf(SpeedOfSound-VLS, 1.0f, SpeedOfSound*2.0f - 1.0f) /
|
|
|
|
clampf(SpeedOfSound-VSS, 1.0f, SpeedOfSound*2.0f - 1.0f);
|
2009-12-01 11:32:04 +00:00
|
|
|
}
|
2010-08-07 07:38:02 +00:00
|
|
|
|
2016-05-09 21:22:26 +00:00
|
|
|
/* Calculate fixed-point stepping value, based on the pitch, buffer
|
|
|
|
* frequency, and output frequency.
|
|
|
|
*/
|
2017-05-04 18:09:45 +00:00
|
|
|
Pitch *= (ALfloat)ALBuffer->Frequency/(ALfloat)Device->Frequency * props->Pitch;
|
2016-05-09 21:22:26 +00:00
|
|
|
if(Pitch > (ALfloat)MAX_PITCH)
|
|
|
|
voice->Step = MAX_PITCH<<FRACTIONBITS;
|
|
|
|
else
|
|
|
|
voice->Step = maxi(fastf2i(Pitch*FRACTIONONE + 0.5f), 1);
|
2017-02-13 19:29:32 +00:00
|
|
|
BsincPrepare(voice->Step, &voice->ResampleState.bsinc);
|
2017-04-21 07:06:40 +00:00
|
|
|
voice->Resampler = SelectResampler(props->Resampler);
|
2009-12-01 11:32:04 +00:00
|
|
|
|
2017-05-04 18:09:45 +00:00
|
|
|
if(Distance > FLT_EPSILON)
|
2014-11-23 18:49:54 +00:00
|
|
|
{
|
2017-05-04 18:09:45 +00:00
|
|
|
dir[0] = -SourceToListener.v[0];
|
|
|
|
/* Clamp Y, in case rounding errors caused it to end up outside of
|
|
|
|
* -1...+1.
|
2015-10-24 03:16:11 +00:00
|
|
|
*/
|
2017-05-04 18:09:45 +00:00
|
|
|
dir[1] = clampf(-SourceToListener.v[1], -1.0f, 1.0f);
|
|
|
|
dir[2] = -SourceToListener.v[2] * ZScale;
|
2014-11-23 18:49:54 +00:00
|
|
|
}
|
|
|
|
else
|
2009-10-19 20:25:40 +00:00
|
|
|
{
|
2017-05-04 18:09:45 +00:00
|
|
|
dir[0] = 0.0f;
|
|
|
|
dir[1] = 0.0f;
|
|
|
|
dir[2] = -1.0f;
|
2007-11-14 02:02:18 +00:00
|
|
|
}
|
2017-05-04 18:09:45 +00:00
|
|
|
if(props->Radius > Distance)
|
|
|
|
spread = F_TAU - Distance/props->Radius*F_PI;
|
|
|
|
else if(Distance > FLT_EPSILON)
|
|
|
|
spread = asinf(props->Radius / Distance) * 2.0f;
|
|
|
|
else
|
|
|
|
spread = 0.0f;
|
2009-12-09 15:21:59 +00:00
|
|
|
|
2017-05-04 18:09:45 +00:00
|
|
|
CalcPanningAndFilters(voice, Distance, dir, spread, DryGain, DryGainHF, DryGainLF, WetGain,
|
|
|
|
WetGainLF, WetGainHF, SendSlots, ALBuffer, props, Listener, Device);
|
2007-11-14 02:02:18 +00:00
|
|
|
}
|
|
|
|
|
2017-04-18 04:16:01 +00:00
|
|
|
static void CalcSourceParams(ALvoice *voice, ALCcontext *context, ALboolean force)
|
2016-05-16 21:46:06 +00:00
|
|
|
{
|
2017-04-21 23:58:55 +00:00
|
|
|
ALbufferlistitem *BufferListItem;
|
2017-04-18 04:16:01 +00:00
|
|
|
struct ALvoiceProps *props;
|
2016-05-16 21:46:06 +00:00
|
|
|
|
2017-04-18 04:16:01 +00:00
|
|
|
props = ATOMIC_EXCHANGE_PTR(&voice->Update, NULL, almemory_order_acq_rel);
|
2016-08-24 09:17:55 +00:00
|
|
|
if(!props && !force) return;
|
|
|
|
|
|
|
|
if(props)
|
2016-08-24 01:56:01 +00:00
|
|
|
{
|
2017-02-15 03:59:39 +00:00
|
|
|
memcpy(voice->Props, props,
|
2017-04-18 21:11:15 +00:00
|
|
|
FAM_SIZE(struct ALvoiceProps, Send, context->Device->NumAuxSends)
|
2017-02-15 03:59:39 +00:00
|
|
|
);
|
2016-08-24 01:56:01 +00:00
|
|
|
|
2017-04-18 04:16:01 +00:00
|
|
|
ATOMIC_REPLACE_HEAD(struct ALvoiceProps*, &voice->FreeList, props);
|
2016-08-24 01:56:01 +00:00
|
|
|
}
|
2017-05-04 19:17:50 +00:00
|
|
|
props = voice->Props;
|
2016-08-24 09:17:55 +00:00
|
|
|
|
2017-04-18 04:16:01 +00:00
|
|
|
BufferListItem = ATOMIC_LOAD(&voice->current_buffer, almemory_order_relaxed);
|
2016-08-24 09:17:55 +00:00
|
|
|
while(BufferListItem != NULL)
|
|
|
|
{
|
|
|
|
const ALbuffer *buffer;
|
|
|
|
if((buffer=BufferListItem->buffer) != NULL)
|
|
|
|
{
|
2017-05-04 19:17:50 +00:00
|
|
|
if(props->SpatializeMode == SpatializeOn ||
|
|
|
|
(props->SpatializeMode == SpatializeAuto && buffer->FmtChannels == FmtMono))
|
|
|
|
CalcAttnSourceParams(voice, props, buffer, context);
|
2016-08-24 09:17:55 +00:00
|
|
|
else
|
2017-05-04 19:17:50 +00:00
|
|
|
CalcNonAttnSourceParams(voice, props, buffer, context);
|
2016-08-24 09:17:55 +00:00
|
|
|
break;
|
|
|
|
}
|
2017-04-20 02:54:17 +00:00
|
|
|
BufferListItem = ATOMIC_LOAD(&BufferListItem->next, almemory_order_acquire);
|
2016-08-24 09:17:55 +00:00
|
|
|
}
|
2016-05-16 21:46:06 +00:00
|
|
|
}
|
|
|
|
|
2009-08-27 02:15:17 +00:00
|
|
|
|
2017-03-28 06:16:23 +00:00
|
|
|
static void UpdateContextSources(ALCcontext *ctx, const struct ALeffectslotArray *slots)
|
2015-09-18 07:48:43 +00:00
|
|
|
{
|
2017-02-21 19:17:47 +00:00
|
|
|
ALvoice **voice, **voice_end;
|
2015-09-18 07:48:43 +00:00
|
|
|
ALsource *source;
|
2017-03-28 06:16:23 +00:00
|
|
|
ALsizei i;
|
2015-09-18 07:48:43 +00:00
|
|
|
|
2016-05-16 00:14:58 +00:00
|
|
|
IncrementRef(&ctx->UpdateCount);
|
2016-12-21 04:49:37 +00:00
|
|
|
if(!ATOMIC_LOAD(&ctx->HoldUpdates, almemory_order_acquire))
|
2016-05-16 00:14:58 +00:00
|
|
|
{
|
2016-08-24 01:56:01 +00:00
|
|
|
ALboolean force = CalcListenerParams(ctx);
|
2017-03-28 06:16:23 +00:00
|
|
|
for(i = 0;i < slots->count;i++)
|
|
|
|
force |= CalcEffectSlotParams(slots->slot[i], ctx->Device);
|
2016-05-13 01:26:33 +00:00
|
|
|
|
2016-05-16 00:14:58 +00:00
|
|
|
voice = ctx->Voices;
|
|
|
|
voice_end = voice + ctx->VoiceCount;
|
|
|
|
for(;voice != voice_end;++voice)
|
|
|
|
{
|
2017-03-05 12:50:27 +00:00
|
|
|
source = ATOMIC_LOAD(&(*voice)->Source, almemory_order_acquire);
|
2017-04-18 04:16:01 +00:00
|
|
|
if(source) CalcSourceParams(*voice, ctx, force);
|
2016-05-16 00:14:58 +00:00
|
|
|
}
|
2015-09-18 07:48:43 +00:00
|
|
|
}
|
2016-05-16 00:14:58 +00:00
|
|
|
IncrementRef(&ctx->UpdateCount);
|
2015-09-18 07:48:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-05-09 18:50:25 +00:00
|
|
|
static_assert(LIMITER_VALUE_MAX < (UINT_MAX/LIMITER_WINDOW_SIZE), "LIMITER_VALUE_MAX is too big");
|
|
|
|
|
2017-05-05 14:38:26 +00:00
|
|
|
static void ApplyLimiter(struct OutputLimiter *Limiter,
|
|
|
|
ALfloat (*restrict OutBuffer)[BUFFERSIZE], const ALsizei NumChans,
|
|
|
|
const ALfloat AttackRate, const ALfloat ReleaseRate,
|
|
|
|
ALfloat *restrict Values, const ALsizei SamplesToDo)
|
2017-04-27 01:38:09 +00:00
|
|
|
{
|
|
|
|
bool do_limit = false;
|
|
|
|
ALsizei c, i;
|
|
|
|
|
|
|
|
OutBuffer = ASSUME_ALIGNED(OutBuffer, 16);
|
2017-05-05 14:38:26 +00:00
|
|
|
Values = ASSUME_ALIGNED(Values, 16);
|
2017-04-27 01:38:09 +00:00
|
|
|
|
|
|
|
for(i = 0;i < SamplesToDo;i++)
|
2017-05-05 14:38:26 +00:00
|
|
|
Values[i] = 0.0f;
|
2017-04-27 01:38:09 +00:00
|
|
|
|
2017-05-05 14:38:26 +00:00
|
|
|
/* First, find the maximum amplitude (squared) for each sample position in each channel. */
|
2017-04-27 01:38:09 +00:00
|
|
|
for(c = 0;c < NumChans;c++)
|
|
|
|
{
|
|
|
|
for(i = 0;i < SamplesToDo;i++)
|
|
|
|
{
|
2017-05-09 18:50:25 +00:00
|
|
|
ALfloat amp = OutBuffer[c][i];
|
|
|
|
Values[i] = maxf(Values[i], amp*amp);
|
2017-05-05 14:38:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Next, calculate the gains needed to limit the output. */
|
|
|
|
{
|
|
|
|
ALfloat lastgain = Limiter->Gain;
|
|
|
|
ALsizei wpos = Limiter->Pos;
|
2017-05-08 23:23:16 +00:00
|
|
|
ALuint sum = Limiter->SquaredSum;
|
2017-05-09 18:50:25 +00:00
|
|
|
ALfloat gain, rms;
|
2017-05-05 14:38:26 +00:00
|
|
|
|
|
|
|
for(i = 0;i < SamplesToDo;i++)
|
|
|
|
{
|
|
|
|
sum -= Limiter->Window[wpos];
|
2017-05-08 23:23:16 +00:00
|
|
|
Limiter->Window[wpos] = fastf2u(minf(Values[i]*65536.0f, LIMITER_VALUE_MAX));
|
|
|
|
sum += Limiter->Window[wpos];
|
2017-05-05 14:38:26 +00:00
|
|
|
|
2017-05-09 18:50:25 +00:00
|
|
|
rms = sqrtf((ALfloat)sum / ((ALfloat)LIMITER_WINDOW_SIZE*65536.0f));
|
|
|
|
|
|
|
|
/* Clamp the minimum RMS to 0dB. The uint used for the squared sum
|
|
|
|
* inherently limits the maximum RMS to about 21dB, thus the gain
|
|
|
|
* ranges from 0dB to -21dB.
|
|
|
|
*/
|
|
|
|
gain = 1.0f / maxf(rms, 1.0f);
|
2017-04-27 01:38:09 +00:00
|
|
|
if(lastgain >= gain)
|
|
|
|
lastgain = maxf(lastgain*AttackRate, gain);
|
|
|
|
else
|
|
|
|
lastgain = minf(lastgain/ReleaseRate, gain);
|
|
|
|
do_limit |= (lastgain < 1.0f);
|
2017-05-05 14:38:26 +00:00
|
|
|
Values[i] = lastgain;
|
2017-04-27 01:38:09 +00:00
|
|
|
|
2017-05-05 14:38:26 +00:00
|
|
|
wpos = (wpos+1)&LIMITER_WINDOW_MASK;
|
2017-04-27 01:38:09 +00:00
|
|
|
}
|
2017-05-05 14:38:26 +00:00
|
|
|
|
|
|
|
Limiter->Gain = lastgain;
|
|
|
|
Limiter->Pos = wpos;
|
2017-05-08 23:23:16 +00:00
|
|
|
Limiter->SquaredSum = sum;
|
2017-04-27 01:38:09 +00:00
|
|
|
}
|
|
|
|
if(do_limit)
|
|
|
|
{
|
2017-05-05 14:38:26 +00:00
|
|
|
/* Finally, apply the gains to each channel. */
|
2017-04-27 01:38:09 +00:00
|
|
|
for(c = 0;c < NumChans;c++)
|
|
|
|
{
|
|
|
|
for(i = 0;i < SamplesToDo;i++)
|
2017-05-05 14:38:26 +00:00
|
|
|
OutBuffer[c][i] *= Values[i];
|
2017-04-27 01:38:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-05-29 05:27:07 +00:00
|
|
|
static inline ALfloat aluF2F(ALfloat val)
|
2013-04-22 07:52:50 +00:00
|
|
|
{ return val; }
|
2015-09-07 10:27:25 +00:00
|
|
|
|
2017-03-31 16:11:28 +00:00
|
|
|
#define S25_MAX_NORM (16777215.0f/16777216.0f)
|
2013-05-29 05:27:07 +00:00
|
|
|
static inline ALint aluF2I(ALfloat val)
|
2015-09-07 10:27:25 +00:00
|
|
|
{
|
2017-03-31 16:11:28 +00:00
|
|
|
/* Floats only have a 24-bit mantissa, so [-16777216, +16777216] is the max
|
|
|
|
* integer range normalized floats can be safely converted to (a bit of the
|
|
|
|
* exponent helps out, effectively giving 25 bits).
|
2015-09-07 10:27:25 +00:00
|
|
|
*/
|
2017-03-31 16:11:28 +00:00
|
|
|
return fastf2i(clampf(val, -1.0f, S25_MAX_NORM)*16777216.0f)<<7;
|
2015-09-07 10:27:25 +00:00
|
|
|
}
|
2013-05-29 05:27:07 +00:00
|
|
|
static inline ALuint aluF2UI(ALfloat val)
|
2012-02-14 19:44:57 +00:00
|
|
|
{ return aluF2I(val)+2147483648u; }
|
2015-09-07 10:27:25 +00:00
|
|
|
|
2017-03-31 16:11:28 +00:00
|
|
|
#define S16_MAX_NORM (32767.0f/32768.0f)
|
2013-05-29 05:27:07 +00:00
|
|
|
static inline ALshort aluF2S(ALfloat val)
|
2017-03-31 16:11:28 +00:00
|
|
|
{ return fastf2i(clampf(val, -1.0f, S16_MAX_NORM)*32768.0f); }
|
2013-05-29 05:27:07 +00:00
|
|
|
static inline ALushort aluF2US(ALfloat val)
|
2011-08-17 09:33:25 +00:00
|
|
|
{ return aluF2S(val)+32768; }
|
2015-09-07 10:27:25 +00:00
|
|
|
|
2017-03-31 16:11:28 +00:00
|
|
|
#define S8_MAX_NORM (127.0f/128.0f)
|
2013-05-29 05:27:07 +00:00
|
|
|
static inline ALbyte aluF2B(ALfloat val)
|
2017-03-31 16:11:28 +00:00
|
|
|
{ return fastf2i(clampf(val, -1.0f, S8_MAX_NORM)*128.0f); }
|
2013-05-29 05:27:07 +00:00
|
|
|
static inline ALubyte aluF2UB(ALfloat val)
|
2012-02-14 19:44:57 +00:00
|
|
|
{ return aluF2B(val)+128; }
|
2010-11-21 10:51:18 +00:00
|
|
|
|
2012-09-11 13:41:24 +00:00
|
|
|
#define DECL_TEMPLATE(T, func) \
|
2017-02-20 06:47:59 +00:00
|
|
|
static void Write_##T(const ALfloatBUFFERSIZE *InBuffer, ALvoid *OutBuffer, \
|
|
|
|
DistanceComp *distcomp, ALsizei SamplesToDo, \
|
|
|
|
ALsizei numchans) \
|
2010-12-02 05:50:49 +00:00
|
|
|
{ \
|
2017-02-10 14:20:16 +00:00
|
|
|
ALsizei i, j; \
|
2014-11-05 10:54:11 +00:00
|
|
|
for(j = 0;j < numchans;j++) \
|
2010-12-02 05:50:49 +00:00
|
|
|
{ \
|
2017-04-01 08:08:18 +00:00
|
|
|
const ALfloat *restrict in = ASSUME_ALIGNED(InBuffer[j], 16); \
|
2014-11-08 00:00:07 +00:00
|
|
|
T *restrict out = (T*)OutBuffer + j; \
|
2017-02-20 06:47:59 +00:00
|
|
|
const ALfloat gain = distcomp[j].Gain; \
|
|
|
|
const ALsizei base = distcomp[j].Length; \
|
2017-03-01 05:01:13 +00:00
|
|
|
ALfloat *restrict distbuf = ASSUME_ALIGNED(distcomp[j].Buffer, 16); \
|
2017-02-20 06:47:59 +00:00
|
|
|
if(base > 0 || gain != 1.0f) \
|
|
|
|
{ \
|
|
|
|
if(SamplesToDo >= base) \
|
|
|
|
{ \
|
|
|
|
for(i = 0;i < base;i++) \
|
2017-03-01 05:01:13 +00:00
|
|
|
out[i*numchans] = func(distbuf[i]*gain); \
|
2017-02-20 06:47:59 +00:00
|
|
|
for(;i < SamplesToDo;i++) \
|
|
|
|
out[i*numchans] = func(in[i-base]*gain); \
|
2017-03-01 05:01:13 +00:00
|
|
|
memcpy(distbuf, &in[SamplesToDo-base], base*sizeof(ALfloat)); \
|
2017-02-20 06:47:59 +00:00
|
|
|
} \
|
|
|
|
else \
|
|
|
|
{ \
|
|
|
|
for(i = 0;i < SamplesToDo;i++) \
|
2017-03-01 05:01:13 +00:00
|
|
|
out[i*numchans] = func(distbuf[i]*gain); \
|
|
|
|
memmove(distbuf, distbuf+SamplesToDo, \
|
2017-02-20 06:47:59 +00:00
|
|
|
(base-SamplesToDo)*sizeof(ALfloat)); \
|
2017-03-01 05:01:13 +00:00
|
|
|
memcpy(distbuf+base-SamplesToDo, in, \
|
2017-02-20 06:47:59 +00:00
|
|
|
SamplesToDo*sizeof(ALfloat)); \
|
|
|
|
} \
|
|
|
|
} \
|
|
|
|
else for(i = 0;i < SamplesToDo;i++) \
|
2014-09-10 23:52:54 +00:00
|
|
|
out[i*numchans] = func(in[i]); \
|
2010-12-02 05:50:49 +00:00
|
|
|
} \
|
|
|
|
}
|
|
|
|
|
2012-09-11 13:41:24 +00:00
|
|
|
DECL_TEMPLATE(ALfloat, aluF2F)
|
|
|
|
DECL_TEMPLATE(ALuint, aluF2UI)
|
|
|
|
DECL_TEMPLATE(ALint, aluF2I)
|
|
|
|
DECL_TEMPLATE(ALushort, aluF2US)
|
|
|
|
DECL_TEMPLATE(ALshort, aluF2S)
|
|
|
|
DECL_TEMPLATE(ALubyte, aluF2UB)
|
|
|
|
DECL_TEMPLATE(ALbyte, aluF2B)
|
2010-12-03 00:36:37 +00:00
|
|
|
|
2010-12-02 05:50:49 +00:00
|
|
|
#undef DECL_TEMPLATE
|
|
|
|
|
|
|
|
|
2017-01-18 15:19:43 +00:00
|
|
|
void aluMixData(ALCdevice *device, ALvoid *buffer, ALsizei size)
|
2010-11-21 10:51:18 +00:00
|
|
|
{
|
2017-02-10 14:20:16 +00:00
|
|
|
ALsizei SamplesToDo;
|
2017-02-21 19:17:47 +00:00
|
|
|
ALvoice **voice, **voice_end;
|
2015-09-13 06:36:24 +00:00
|
|
|
ALeffectslot *slot;
|
|
|
|
ALsource *source;
|
2011-08-29 02:28:41 +00:00
|
|
|
ALCcontext *ctx;
|
2012-09-16 08:35:16 +00:00
|
|
|
FPUCtl oldMode;
|
2017-01-18 15:13:23 +00:00
|
|
|
ALsizei i, c;
|
2010-11-21 10:51:18 +00:00
|
|
|
|
2012-09-16 08:35:16 +00:00
|
|
|
SetMixerFPUMode(&oldMode);
|
2010-11-21 10:51:18 +00:00
|
|
|
|
|
|
|
while(size > 0)
|
|
|
|
{
|
2017-02-10 14:20:16 +00:00
|
|
|
SamplesToDo = mini(size, BUFFERSIZE);
|
2016-07-05 21:18:17 +00:00
|
|
|
for(c = 0;c < device->Dry.NumChannels;c++)
|
|
|
|
memset(device->Dry.Buffer[c], 0, SamplesToDo*sizeof(ALfloat));
|
2016-03-23 19:53:36 +00:00
|
|
|
if(device->Dry.Buffer != device->FOAOut.Buffer)
|
|
|
|
for(c = 0;c < device->FOAOut.NumChannels;c++)
|
|
|
|
memset(device->FOAOut.Buffer[c], 0, SamplesToDo*sizeof(ALfloat));
|
2017-02-20 01:45:27 +00:00
|
|
|
if(device->Dry.Buffer != device->RealOut.Buffer)
|
|
|
|
for(c = 0;c < device->RealOut.NumChannels;c++)
|
|
|
|
memset(device->RealOut.Buffer[c], 0, SamplesToDo*sizeof(ALfloat));
|
2010-11-21 10:51:18 +00:00
|
|
|
|
2016-05-23 08:03:37 +00:00
|
|
|
IncrementRef(&device->MixCount);
|
2015-09-13 06:36:24 +00:00
|
|
|
|
|
|
|
if((slot=device->DefaultSlot) != NULL)
|
|
|
|
{
|
2016-05-13 01:26:33 +00:00
|
|
|
CalcEffectSlotParams(device->DefaultSlot, device);
|
2017-03-28 06:16:23 +00:00
|
|
|
for(c = 0;c < slot->NumChannels;c++)
|
|
|
|
memset(slot->WetBuffer[c], 0, SamplesToDo*sizeof(ALfloat));
|
2015-09-13 06:36:24 +00:00
|
|
|
}
|
2013-11-28 02:52:56 +00:00
|
|
|
|
2016-12-21 04:49:37 +00:00
|
|
|
ctx = ATOMIC_LOAD(&device->ContextList, almemory_order_acquire);
|
2011-08-29 02:28:41 +00:00
|
|
|
while(ctx)
|
2010-11-21 10:51:18 +00:00
|
|
|
{
|
2017-03-28 06:16:23 +00:00
|
|
|
const struct ALeffectslotArray *auxslots;
|
2016-05-29 08:40:16 +00:00
|
|
|
|
2017-03-28 06:16:23 +00:00
|
|
|
auxslots = ATOMIC_LOAD(&ctx->ActiveAuxSlots, almemory_order_acquire);
|
|
|
|
UpdateContextSources(ctx, auxslots);
|
2016-05-29 08:40:16 +00:00
|
|
|
|
2017-03-28 06:16:23 +00:00
|
|
|
for(i = 0;i < auxslots->count;i++)
|
2016-05-29 08:40:16 +00:00
|
|
|
{
|
2017-03-28 06:16:23 +00:00
|
|
|
ALeffectslot *slot = auxslots->slot[i];
|
|
|
|
for(c = 0;c < slot->NumChannels;c++)
|
|
|
|
memset(slot->WetBuffer[c], 0, SamplesToDo*sizeof(ALfloat));
|
2016-05-29 08:40:16 +00:00
|
|
|
}
|
2012-10-09 13:19:36 +00:00
|
|
|
|
2012-04-26 07:59:17 +00:00
|
|
|
/* source processing */
|
2014-08-21 10:24:48 +00:00
|
|
|
voice = ctx->Voices;
|
|
|
|
voice_end = voice + ctx->VoiceCount;
|
2015-09-13 06:36:24 +00:00
|
|
|
for(;voice != voice_end;++voice)
|
2010-11-21 10:51:18 +00:00
|
|
|
{
|
2017-03-05 12:50:27 +00:00
|
|
|
source = ATOMIC_LOAD(&(*voice)->Source, almemory_order_acquire);
|
2017-03-02 08:49:03 +00:00
|
|
|
if(source && ATOMIC_LOAD(&(*voice)->Playing, almemory_order_relaxed) &&
|
|
|
|
(*voice)->Step > 0)
|
2017-02-26 00:46:30 +00:00
|
|
|
{
|
|
|
|
if(!MixSource(*voice, source, device, SamplesToDo))
|
2017-03-02 08:49:03 +00:00
|
|
|
{
|
2017-03-05 12:50:27 +00:00
|
|
|
ATOMIC_STORE(&(*voice)->Source, NULL, almemory_order_relaxed);
|
2017-03-02 08:49:03 +00:00
|
|
|
ATOMIC_STORE(&(*voice)->Playing, false, almemory_order_release);
|
|
|
|
}
|
2017-02-26 00:46:30 +00:00
|
|
|
}
|
2010-11-21 10:51:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* effect slot processing */
|
2017-03-28 06:16:23 +00:00
|
|
|
for(i = 0;i < auxslots->count;i++)
|
2016-01-27 16:16:47 +00:00
|
|
|
{
|
2017-04-01 09:38:44 +00:00
|
|
|
const ALeffectslot *slot = auxslots->slot[i];
|
2016-10-04 23:25:43 +00:00
|
|
|
ALeffectState *state = slot->Params.EffectState;
|
2017-04-01 09:38:44 +00:00
|
|
|
V(state,process)(SamplesToDo, slot->WetBuffer, state->OutBuffer,
|
|
|
|
state->OutChannels);
|
2016-01-27 16:16:47 +00:00
|
|
|
}
|
2010-11-21 10:51:18 +00:00
|
|
|
|
2011-08-29 02:28:41 +00:00
|
|
|
ctx = ctx->next;
|
2010-11-21 10:51:18 +00:00
|
|
|
}
|
2012-01-20 03:30:03 +00:00
|
|
|
|
2016-01-27 16:16:47 +00:00
|
|
|
if(device->DefaultSlot != NULL)
|
|
|
|
{
|
|
|
|
const ALeffectslot *slot = device->DefaultSlot;
|
2016-05-13 01:26:33 +00:00
|
|
|
ALeffectState *state = slot->Params.EffectState;
|
2016-03-17 17:10:26 +00:00
|
|
|
V(state,process)(SamplesToDo, slot->WetBuffer, state->OutBuffer,
|
|
|
|
state->OutChannels);
|
2016-01-27 16:16:47 +00:00
|
|
|
}
|
2014-02-02 00:37:11 +00:00
|
|
|
|
|
|
|
/* Increment the clock time. Every second's worth of samples is
|
|
|
|
* converted and added to clock base so that large sample counts don't
|
|
|
|
* overflow during conversion. This also guarantees an exact, stable
|
|
|
|
* conversion. */
|
|
|
|
device->SamplesDone += SamplesToDo;
|
|
|
|
device->ClockBase += (device->SamplesDone/device->Frequency) * DEVICE_CLOCK_RES;
|
|
|
|
device->SamplesDone %= device->Frequency;
|
2016-05-23 08:03:37 +00:00
|
|
|
IncrementRef(&device->MixCount);
|
2010-11-21 10:51:18 +00:00
|
|
|
|
2017-03-10 18:47:43 +00:00
|
|
|
if(device->HrtfHandle)
|
2014-11-22 12:20:17 +00:00
|
|
|
{
|
2017-01-18 00:49:26 +00:00
|
|
|
HrtfDirectMixerFunc HrtfMix;
|
2017-03-10 18:47:43 +00:00
|
|
|
DirectHrtfState *state;
|
2017-01-18 00:49:26 +00:00
|
|
|
int lidx, ridx;
|
2017-01-15 21:57:22 +00:00
|
|
|
|
|
|
|
if(device->AmbiUp)
|
|
|
|
ambiup_process(device->AmbiUp,
|
|
|
|
device->Dry.Buffer, device->Dry.NumChannels,
|
|
|
|
SAFE_CONST(ALfloatBUFFERSIZE*,device->FOAOut.Buffer), SamplesToDo
|
|
|
|
);
|
|
|
|
|
2017-01-18 00:49:26 +00:00
|
|
|
lidx = GetChannelIdxByName(device->RealOut, FrontLeft);
|
|
|
|
ridx = GetChannelIdxByName(device->RealOut, FrontRight);
|
|
|
|
assert(lidx != -1 && ridx != -1);
|
|
|
|
|
|
|
|
HrtfMix = SelectHrtfMixer();
|
2017-03-10 18:47:43 +00:00
|
|
|
state = device->Hrtf;
|
2017-01-18 00:49:26 +00:00
|
|
|
for(c = 0;c < device->Dry.NumChannels;c++)
|
2016-02-14 11:23:06 +00:00
|
|
|
{
|
2017-01-18 00:49:26 +00:00
|
|
|
HrtfMix(device->RealOut.Buffer[lidx], device->RealOut.Buffer[ridx],
|
2017-03-10 18:47:43 +00:00
|
|
|
device->Dry.Buffer[c], state->Offset, state->IrSize,
|
2017-03-12 02:04:06 +00:00
|
|
|
SAFE_CONST(ALfloat2*,state->Chan[c].Coeffs),
|
|
|
|
state->Chan[c].Values, SamplesToDo
|
2017-01-18 00:49:26 +00:00
|
|
|
);
|
2016-02-14 11:23:06 +00:00
|
|
|
}
|
2017-03-10 18:47:43 +00:00
|
|
|
state->Offset += SamplesToDo;
|
2014-11-22 12:20:17 +00:00
|
|
|
}
|
2016-03-15 12:08:05 +00:00
|
|
|
else if(device->AmbiDecoder)
|
|
|
|
{
|
2016-07-05 21:18:17 +00:00
|
|
|
if(device->Dry.Buffer != device->FOAOut.Buffer)
|
2016-03-23 19:53:36 +00:00
|
|
|
bformatdec_upSample(device->AmbiDecoder,
|
2016-10-04 23:25:43 +00:00
|
|
|
device->Dry.Buffer, SAFE_CONST(ALfloatBUFFERSIZE*,device->FOAOut.Buffer),
|
2016-03-23 19:53:36 +00:00
|
|
|
device->FOAOut.NumChannels, SamplesToDo
|
|
|
|
);
|
2016-03-15 12:08:05 +00:00
|
|
|
bformatdec_process(device->AmbiDecoder,
|
|
|
|
device->RealOut.Buffer, device->RealOut.NumChannels,
|
2016-10-04 23:25:43 +00:00
|
|
|
SAFE_CONST(ALfloatBUFFERSIZE*,device->Dry.Buffer), SamplesToDo
|
2016-03-15 12:08:05 +00:00
|
|
|
);
|
|
|
|
}
|
2016-07-30 16:29:21 +00:00
|
|
|
else if(device->AmbiUp)
|
|
|
|
{
|
|
|
|
ambiup_process(device->AmbiUp,
|
|
|
|
device->RealOut.Buffer, device->RealOut.NumChannels,
|
2016-10-04 23:25:43 +00:00
|
|
|
SAFE_CONST(ALfloatBUFFERSIZE*,device->FOAOut.Buffer), SamplesToDo
|
2016-07-30 16:29:21 +00:00
|
|
|
);
|
|
|
|
}
|
2016-07-14 06:08:11 +00:00
|
|
|
else if(device->Uhj_Encoder)
|
2010-11-21 10:51:18 +00:00
|
|
|
{
|
2016-07-14 06:08:11 +00:00
|
|
|
int lidx = GetChannelIdxByName(device->RealOut, FrontLeft);
|
|
|
|
int ridx = GetChannelIdxByName(device->RealOut, FrontRight);
|
|
|
|
if(lidx != -1 && ridx != -1)
|
2012-03-03 17:41:16 +00:00
|
|
|
{
|
2016-07-14 06:08:11 +00:00
|
|
|
/* Encode to stereo-compatible 2-channel UHJ output. */
|
|
|
|
EncodeUhj2(device->Uhj_Encoder,
|
|
|
|
device->RealOut.Buffer[lidx], device->RealOut.Buffer[ridx],
|
|
|
|
device->Dry.Buffer, SamplesToDo
|
|
|
|
);
|
2016-02-27 00:09:06 +00:00
|
|
|
}
|
2016-07-14 06:08:11 +00:00
|
|
|
}
|
|
|
|
else if(device->Bs2b)
|
|
|
|
{
|
|
|
|
int lidx = GetChannelIdxByName(device->RealOut, FrontLeft);
|
|
|
|
int ridx = GetChannelIdxByName(device->RealOut, FrontRight);
|
|
|
|
if(lidx != -1 && ridx != -1)
|
2016-02-27 00:09:06 +00:00
|
|
|
{
|
|
|
|
/* Apply binaural/crossfeed filter */
|
2016-07-14 06:08:11 +00:00
|
|
|
bs2b_cross_feed(device->Bs2b, device->RealOut.Buffer[lidx],
|
|
|
|
device->RealOut.Buffer[ridx], SamplesToDo);
|
2011-07-30 12:43:47 +00:00
|
|
|
}
|
2010-11-21 10:51:18 +00:00
|
|
|
}
|
|
|
|
|
2011-08-12 22:42:36 +00:00
|
|
|
if(buffer)
|
2010-11-21 10:51:18 +00:00
|
|
|
{
|
2016-03-10 06:57:38 +00:00
|
|
|
ALfloat (*OutBuffer)[BUFFERSIZE] = device->RealOut.Buffer;
|
2017-02-10 14:20:16 +00:00
|
|
|
ALsizei OutChannels = device->RealOut.NumChannels;
|
2017-05-05 14:38:26 +00:00
|
|
|
struct OutputLimiter *Limiter = device->Limiter;
|
2017-04-27 01:38:09 +00:00
|
|
|
DistanceComp *DistComp;
|
|
|
|
|
2017-05-05 14:38:26 +00:00
|
|
|
if(Limiter)
|
2017-04-27 01:38:09 +00:00
|
|
|
{
|
2017-05-05 14:38:26 +00:00
|
|
|
const ALfloat AttackRate = powf(0.0001f, 1.0f/(device->Frequency*Limiter->AttackRate));
|
|
|
|
const ALfloat ReleaseRate = powf(0.0001f, 1.0f/(device->Frequency*Limiter->ReleaseRate));
|
|
|
|
|
|
|
|
/* Use NFCtrlData for temp value storage. */
|
|
|
|
ApplyLimiter(Limiter, OutBuffer, OutChannels,
|
|
|
|
AttackRate, ReleaseRate, device->NFCtrlData, SamplesToDo
|
2017-04-27 01:38:09 +00:00
|
|
|
);
|
|
|
|
}
|
2016-03-10 06:57:38 +00:00
|
|
|
|
2017-04-27 01:38:09 +00:00
|
|
|
DistComp = device->ChannelDelay;
|
2017-02-20 06:47:59 +00:00
|
|
|
#define WRITE(T, a, b, c, d, e) do { \
|
|
|
|
Write_##T(SAFE_CONST(ALfloatBUFFERSIZE*,(a)), (b), (c), (d), (e)); \
|
|
|
|
buffer = (T*)buffer + (d)*(e); \
|
2014-11-24 07:45:30 +00:00
|
|
|
} while(0)
|
2011-08-12 22:42:36 +00:00
|
|
|
switch(device->FmtType)
|
|
|
|
{
|
|
|
|
case DevFmtByte:
|
2017-02-20 06:47:59 +00:00
|
|
|
WRITE(ALbyte, OutBuffer, buffer, DistComp, SamplesToDo, OutChannels);
|
2011-08-12 22:42:36 +00:00
|
|
|
break;
|
|
|
|
case DevFmtUByte:
|
2017-02-20 06:47:59 +00:00
|
|
|
WRITE(ALubyte, OutBuffer, buffer, DistComp, SamplesToDo, OutChannels);
|
2011-08-12 22:42:36 +00:00
|
|
|
break;
|
|
|
|
case DevFmtShort:
|
2017-02-20 06:47:59 +00:00
|
|
|
WRITE(ALshort, OutBuffer, buffer, DistComp, SamplesToDo, OutChannels);
|
2011-08-12 22:42:36 +00:00
|
|
|
break;
|
|
|
|
case DevFmtUShort:
|
2017-02-20 06:47:59 +00:00
|
|
|
WRITE(ALushort, OutBuffer, buffer, DistComp, SamplesToDo, OutChannels);
|
2012-02-14 19:44:57 +00:00
|
|
|
break;
|
|
|
|
case DevFmtInt:
|
2017-02-20 06:47:59 +00:00
|
|
|
WRITE(ALint, OutBuffer, buffer, DistComp, SamplesToDo, OutChannels);
|
2012-02-14 19:44:57 +00:00
|
|
|
break;
|
|
|
|
case DevFmtUInt:
|
2017-02-20 06:47:59 +00:00
|
|
|
WRITE(ALuint, OutBuffer, buffer, DistComp, SamplesToDo, OutChannels);
|
2011-08-12 22:42:36 +00:00
|
|
|
break;
|
|
|
|
case DevFmtFloat:
|
2017-02-20 06:47:59 +00:00
|
|
|
WRITE(ALfloat, OutBuffer, buffer, DistComp, SamplesToDo, OutChannels);
|
2011-08-12 22:42:36 +00:00
|
|
|
break;
|
|
|
|
}
|
2014-11-24 07:45:30 +00:00
|
|
|
#undef WRITE
|
2010-11-21 10:51:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
size -= SamplesToDo;
|
|
|
|
}
|
|
|
|
|
2012-09-16 08:35:16 +00:00
|
|
|
RestoreFPUMode(&oldMode);
|
2010-11-21 10:51:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-01-18 15:19:43 +00:00
|
|
|
void aluHandleDisconnect(ALCdevice *device)
|
2009-08-27 02:15:17 +00:00
|
|
|
{
|
2011-08-29 02:28:41 +00:00
|
|
|
ALCcontext *Context;
|
2009-10-20 18:54:04 +00:00
|
|
|
|
2011-09-11 02:22:46 +00:00
|
|
|
device->Connected = ALC_FALSE;
|
|
|
|
|
2016-12-21 04:49:37 +00:00
|
|
|
Context = ATOMIC_LOAD_SEQ(&device->ContextList);
|
2011-08-29 02:28:41 +00:00
|
|
|
while(Context)
|
2009-08-27 02:15:17 +00:00
|
|
|
{
|
2017-02-21 19:17:47 +00:00
|
|
|
ALvoice **voice, **voice_end;
|
2009-08-27 02:15:17 +00:00
|
|
|
|
2014-08-21 10:24:48 +00:00
|
|
|
voice = Context->Voices;
|
|
|
|
voice_end = voice + Context->VoiceCount;
|
|
|
|
while(voice != voice_end)
|
2009-08-27 02:15:17 +00:00
|
|
|
{
|
2017-04-15 00:47:55 +00:00
|
|
|
ALsource *source = ATOMIC_EXCHANGE_PTR(&(*voice)->Source, NULL,
|
|
|
|
almemory_order_acq_rel);
|
2017-03-02 08:49:03 +00:00
|
|
|
ATOMIC_STORE(&(*voice)->Playing, false, almemory_order_release);
|
2014-08-21 04:35:18 +00:00
|
|
|
|
2017-02-27 23:35:15 +00:00
|
|
|
if(source)
|
2009-08-27 02:15:17 +00:00
|
|
|
{
|
2017-02-27 23:35:15 +00:00
|
|
|
ALenum playing = AL_PLAYING;
|
2017-04-15 00:47:55 +00:00
|
|
|
(void)(ATOMIC_COMPARE_EXCHANGE_STRONG_SEQ(&source->state, &playing, AL_STOPPED));
|
2009-08-27 02:15:17 +00:00
|
|
|
}
|
2014-08-21 04:35:18 +00:00
|
|
|
|
2014-08-21 10:24:48 +00:00
|
|
|
voice++;
|
2009-08-27 02:15:17 +00:00
|
|
|
}
|
2014-08-21 10:24:48 +00:00
|
|
|
Context->VoiceCount = 0;
|
2011-08-29 02:28:41 +00:00
|
|
|
|
|
|
|
Context = Context->next;
|
2009-08-27 02:15:17 +00:00
|
|
|
}
|
|
|
|
}
|