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
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
* 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"
|
|
|
|
#include "AL/al.h"
|
|
|
|
#include "AL/alc.h"
|
2007-12-31 09:09:57 +00:00
|
|
|
#include "alSource.h"
|
|
|
|
#include "alBuffer.h"
|
|
|
|
#include "alThunk.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"
|
2007-11-14 02:02:18 +00:00
|
|
|
|
|
|
|
#if defined(HAVE_STDINT_H)
|
|
|
|
#include <stdint.h>
|
|
|
|
typedef int64_t ALint64;
|
|
|
|
#elif defined(HAVE___INT64)
|
|
|
|
typedef __int64 ALint64;
|
|
|
|
#elif (SIZEOF_LONG == 8)
|
|
|
|
typedef long ALint64;
|
|
|
|
#elif (SIZEOF_LONG_LONG == 8)
|
|
|
|
typedef long long ALint64;
|
|
|
|
#endif
|
|
|
|
|
2007-12-31 09:16:13 +00:00
|
|
|
#define FRACTIONBITS 14
|
|
|
|
#define FRACTIONMASK ((1L<<FRACTIONBITS)-1)
|
2008-10-09 09:50:00 +00:00
|
|
|
#define MAX_PITCH 65536
|
2007-12-31 09:47:10 +00:00
|
|
|
|
2008-08-14 12:43:52 +00:00
|
|
|
/* Minimum ramp length in milliseconds. The value below was chosen to
|
|
|
|
* adequately reduce clicks and pops from harsh gain changes. */
|
|
|
|
#define MIN_RAMP_LENGTH 16
|
2007-12-31 09:16:13 +00:00
|
|
|
|
2008-02-07 06:18:50 +00:00
|
|
|
ALboolean DuplicateStereo = AL_FALSE;
|
|
|
|
|
2007-11-14 02:02:18 +00:00
|
|
|
|
2009-08-15 20:20:35 +00:00
|
|
|
static __inline ALfloat aluF2F(ALfloat Value)
|
|
|
|
{
|
2009-10-20 16:48:09 +00:00
|
|
|
if(Value < 0.f) return Value/32768.f;
|
|
|
|
if(Value > 0.f) return Value/32767.f;
|
|
|
|
return 0.f;
|
2009-08-15 20:20:35 +00:00
|
|
|
}
|
|
|
|
|
2007-11-14 02:02:18 +00:00
|
|
|
static __inline ALshort aluF2S(ALfloat Value)
|
|
|
|
{
|
|
|
|
ALint i;
|
|
|
|
|
2008-02-09 05:03:48 +00:00
|
|
|
i = (ALint)Value;
|
2007-11-14 02:02:18 +00:00
|
|
|
i = __min( 32767, i);
|
|
|
|
i = __max(-32768, i);
|
|
|
|
return ((ALshort)i);
|
|
|
|
}
|
|
|
|
|
2009-08-15 18:33:38 +00:00
|
|
|
static __inline ALubyte aluF2UB(ALfloat Value)
|
|
|
|
{
|
|
|
|
ALshort i = aluF2S(Value);
|
|
|
|
return (i>>8)+128;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-03-14 06:08:15 +00:00
|
|
|
static __inline ALvoid aluCrossproduct(const ALfloat *inVector1, const ALfloat *inVector2, ALfloat *outVector)
|
2007-11-14 02:02:18 +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];
|
|
|
|
}
|
|
|
|
|
2009-03-14 06:08:15 +00:00
|
|
|
static __inline ALfloat aluDotproduct(const ALfloat *inVector1, const ALfloat *inVector2)
|
2007-11-14 02:02:18 +00:00
|
|
|
{
|
|
|
|
return inVector1[0]*inVector2[0] + inVector1[1]*inVector2[1] +
|
|
|
|
inVector1[2]*inVector2[2];
|
|
|
|
}
|
|
|
|
|
|
|
|
static __inline ALvoid aluNormalize(ALfloat *inVector)
|
|
|
|
{
|
|
|
|
ALfloat length, inverse_length;
|
|
|
|
|
2008-02-09 05:01:05 +00:00
|
|
|
length = aluSqrt(aluDotproduct(inVector, inVector));
|
|
|
|
if(length != 0.0f)
|
2007-11-14 02:02:18 +00:00
|
|
|
{
|
|
|
|
inverse_length = 1.0f/length;
|
|
|
|
inVector[0] *= inverse_length;
|
|
|
|
inVector[1] *= inverse_length;
|
|
|
|
inVector[2] *= inverse_length;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static __inline ALvoid aluMatrixVector(ALfloat *vector,ALfloat matrix[3][3])
|
|
|
|
{
|
|
|
|
ALfloat result[3];
|
|
|
|
|
|
|
|
result[0] = vector[0]*matrix[0][0] + vector[1]*matrix[1][0] + vector[2]*matrix[2][0];
|
|
|
|
result[1] = vector[0]*matrix[0][1] + vector[1]*matrix[1][1] + vector[2]*matrix[2][1];
|
|
|
|
result[2] = vector[0]*matrix[0][2] + vector[1]*matrix[1][2] + vector[2]*matrix[2][2];
|
|
|
|
memcpy(vector, result, sizeof(result));
|
|
|
|
}
|
|
|
|
|
2009-01-26 03:20:47 +00:00
|
|
|
static ALvoid SetSpeakerArrangement(const char *name, ALfloat SpeakerAngle[OUTPUTCHANNELS],
|
|
|
|
ALint Speaker2Chan[OUTPUTCHANNELS], ALint chans)
|
|
|
|
{
|
|
|
|
const char *confkey;
|
|
|
|
const char *next;
|
|
|
|
const char *sep;
|
|
|
|
const char *end;
|
|
|
|
int i, val;
|
|
|
|
|
|
|
|
confkey = GetConfigValue(NULL, name, "");
|
|
|
|
next = confkey;
|
|
|
|
while(next && *next)
|
|
|
|
{
|
|
|
|
confkey = next;
|
|
|
|
next = strchr(confkey, ',');
|
|
|
|
if(next)
|
|
|
|
{
|
|
|
|
do {
|
|
|
|
next++;
|
|
|
|
} while(isspace(*next));
|
|
|
|
}
|
|
|
|
|
|
|
|
sep = strchr(confkey, '=');
|
|
|
|
if(!sep || confkey == sep)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
end = sep - 1;
|
|
|
|
while(isspace(*end) && end != confkey)
|
|
|
|
end--;
|
2009-07-03 03:31:36 +00:00
|
|
|
end++;
|
2009-01-26 03:20:47 +00:00
|
|
|
|
|
|
|
if(strncmp(confkey, "fl", end-confkey) == 0)
|
|
|
|
val = FRONT_LEFT;
|
|
|
|
else if(strncmp(confkey, "fr", end-confkey) == 0)
|
|
|
|
val = FRONT_RIGHT;
|
|
|
|
else if(strncmp(confkey, "fc", end-confkey) == 0)
|
|
|
|
val = FRONT_CENTER;
|
|
|
|
else if(strncmp(confkey, "bl", end-confkey) == 0)
|
|
|
|
val = BACK_LEFT;
|
|
|
|
else if(strncmp(confkey, "br", end-confkey) == 0)
|
|
|
|
val = BACK_RIGHT;
|
|
|
|
else if(strncmp(confkey, "bc", end-confkey) == 0)
|
|
|
|
val = BACK_CENTER;
|
|
|
|
else if(strncmp(confkey, "sl", end-confkey) == 0)
|
|
|
|
val = SIDE_LEFT;
|
|
|
|
else if(strncmp(confkey, "sr", end-confkey) == 0)
|
|
|
|
val = SIDE_RIGHT;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
AL_PRINT("Unknown speaker for %s: \"%c%c\"\n", name, confkey[0], confkey[1]);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
sep++;
|
|
|
|
while(isspace(*sep))
|
|
|
|
sep++;
|
|
|
|
|
|
|
|
for(i = 0;i < chans;i++)
|
|
|
|
{
|
|
|
|
if(Speaker2Chan[i] == val)
|
|
|
|
{
|
|
|
|
val = strtol(sep, NULL, 10);
|
|
|
|
if(val >= -180 && val <= 180)
|
|
|
|
SpeakerAngle[i] = val * M_PI/180.0f;
|
|
|
|
else
|
|
|
|
AL_PRINT("Invalid angle for speaker \"%c%c\": %d\n", confkey[0], confkey[1], val);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for(i = 1;i < chans;i++)
|
|
|
|
{
|
|
|
|
if(SpeakerAngle[i] <= SpeakerAngle[i-1])
|
|
|
|
{
|
|
|
|
AL_PRINT("Speaker %d of %d does not follow previous: %f > %f\n", i, chans,
|
|
|
|
SpeakerAngle[i-1] * 180.0f/M_PI, SpeakerAngle[i] * 180.0f/M_PI);
|
|
|
|
SpeakerAngle[i] = SpeakerAngle[i-1] + 1 * 180.0f/M_PI;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-01-24 18:38:04 +00:00
|
|
|
static __inline ALfloat aluLUTpos2Angle(ALint pos)
|
|
|
|
{
|
|
|
|
if(pos < QUADRANT_NUM)
|
|
|
|
return aluAtan((ALfloat)pos / (ALfloat)(QUADRANT_NUM - pos));
|
|
|
|
if(pos < 2 * QUADRANT_NUM)
|
|
|
|
return M_PI_2 + aluAtan((ALfloat)(pos - QUADRANT_NUM) / (ALfloat)(2 * QUADRANT_NUM - pos));
|
|
|
|
if(pos < 3 * QUADRANT_NUM)
|
|
|
|
return aluAtan((ALfloat)(pos - 2 * QUADRANT_NUM) / (ALfloat)(3 * QUADRANT_NUM - pos)) - M_PI;
|
|
|
|
return aluAtan((ALfloat)(pos - 3 * QUADRANT_NUM) / (ALfloat)(4 * QUADRANT_NUM - pos)) - M_PI_2;
|
|
|
|
}
|
|
|
|
|
|
|
|
ALvoid aluInitPanning(ALCcontext *Context)
|
|
|
|
{
|
|
|
|
ALint pos, offset, s;
|
|
|
|
ALfloat Alpha, Theta;
|
|
|
|
ALfloat SpeakerAngle[OUTPUTCHANNELS];
|
|
|
|
ALint Speaker2Chan[OUTPUTCHANNELS];
|
|
|
|
|
2009-01-26 06:11:07 +00:00
|
|
|
for(s = 0;s < OUTPUTCHANNELS;s++)
|
|
|
|
{
|
|
|
|
int s2;
|
|
|
|
for(s2 = 0;s2 < OUTPUTCHANNELS;s2++)
|
|
|
|
Context->ChannelMatrix[s][s2] = ((s==s2) ? 1.0f : 0.0f);
|
|
|
|
}
|
|
|
|
|
2009-01-24 18:38:04 +00:00
|
|
|
switch(Context->Device->Format)
|
|
|
|
{
|
|
|
|
/* Mono is rendered as stereo, then downmixed during post-process */
|
|
|
|
case AL_FORMAT_MONO8:
|
|
|
|
case AL_FORMAT_MONO16:
|
|
|
|
case AL_FORMAT_MONO_FLOAT32:
|
2009-01-26 06:11:07 +00:00
|
|
|
Context->ChannelMatrix[FRONT_CENTER][FRONT_LEFT] = aluSqrt(0.5);
|
|
|
|
Context->ChannelMatrix[FRONT_CENTER][FRONT_RIGHT] = aluSqrt(0.5);
|
|
|
|
Context->ChannelMatrix[SIDE_LEFT][FRONT_LEFT] = 1.0f;
|
|
|
|
Context->ChannelMatrix[SIDE_RIGHT][FRONT_RIGHT] = 1.0f;
|
|
|
|
Context->ChannelMatrix[BACK_LEFT][FRONT_LEFT] = 1.0f;
|
|
|
|
Context->ChannelMatrix[BACK_RIGHT][FRONT_RIGHT] = 1.0f;
|
|
|
|
Context->ChannelMatrix[BACK_CENTER][FRONT_LEFT] = aluSqrt(0.5);
|
|
|
|
Context->ChannelMatrix[BACK_CENTER][FRONT_RIGHT] = aluSqrt(0.5);
|
2009-01-26 03:33:52 +00:00
|
|
|
Context->NumChan = 2;
|
|
|
|
Speaker2Chan[0] = FRONT_LEFT;
|
|
|
|
Speaker2Chan[1] = FRONT_RIGHT;
|
|
|
|
SpeakerAngle[0] = -90.0f * M_PI/180.0f;
|
|
|
|
SpeakerAngle[1] = 90.0f * M_PI/180.0f;
|
|
|
|
break;
|
|
|
|
|
2009-01-24 18:38:04 +00:00
|
|
|
case AL_FORMAT_STEREO8:
|
|
|
|
case AL_FORMAT_STEREO16:
|
|
|
|
case AL_FORMAT_STEREO_FLOAT32:
|
2009-01-26 06:11:07 +00:00
|
|
|
Context->ChannelMatrix[FRONT_CENTER][FRONT_LEFT] = aluSqrt(0.5);
|
|
|
|
Context->ChannelMatrix[FRONT_CENTER][FRONT_RIGHT] = aluSqrt(0.5);
|
|
|
|
Context->ChannelMatrix[SIDE_LEFT][FRONT_LEFT] = 1.0f;
|
|
|
|
Context->ChannelMatrix[SIDE_RIGHT][FRONT_RIGHT] = 1.0f;
|
|
|
|
Context->ChannelMatrix[BACK_LEFT][FRONT_LEFT] = 1.0f;
|
|
|
|
Context->ChannelMatrix[BACK_RIGHT][FRONT_RIGHT] = 1.0f;
|
|
|
|
Context->ChannelMatrix[BACK_CENTER][FRONT_LEFT] = aluSqrt(0.5);
|
|
|
|
Context->ChannelMatrix[BACK_CENTER][FRONT_RIGHT] = aluSqrt(0.5);
|
2009-01-24 18:38:04 +00:00
|
|
|
Context->NumChan = 2;
|
|
|
|
Speaker2Chan[0] = FRONT_LEFT;
|
|
|
|
Speaker2Chan[1] = FRONT_RIGHT;
|
|
|
|
SpeakerAngle[0] = -90.0f * M_PI/180.0f;
|
|
|
|
SpeakerAngle[1] = 90.0f * M_PI/180.0f;
|
2009-01-26 03:20:47 +00:00
|
|
|
SetSpeakerArrangement("layout_STEREO", SpeakerAngle, Speaker2Chan, Context->NumChan);
|
|
|
|
break;
|
2009-01-24 18:38:04 +00:00
|
|
|
|
|
|
|
case AL_FORMAT_QUAD8:
|
|
|
|
case AL_FORMAT_QUAD16:
|
|
|
|
case AL_FORMAT_QUAD32:
|
2009-01-26 06:11:07 +00:00
|
|
|
Context->ChannelMatrix[FRONT_CENTER][FRONT_LEFT] = aluSqrt(0.5);
|
|
|
|
Context->ChannelMatrix[FRONT_CENTER][FRONT_RIGHT] = aluSqrt(0.5);
|
|
|
|
Context->ChannelMatrix[SIDE_LEFT][FRONT_LEFT] = aluSqrt(0.5);
|
|
|
|
Context->ChannelMatrix[SIDE_LEFT][BACK_LEFT] = aluSqrt(0.5);
|
|
|
|
Context->ChannelMatrix[SIDE_RIGHT][FRONT_RIGHT] = aluSqrt(0.5);
|
|
|
|
Context->ChannelMatrix[SIDE_RIGHT][BACK_RIGHT] = aluSqrt(0.5);
|
|
|
|
Context->ChannelMatrix[BACK_CENTER][BACK_LEFT] = aluSqrt(0.5);
|
|
|
|
Context->ChannelMatrix[BACK_CENTER][BACK_RIGHT] = aluSqrt(0.5);
|
2009-01-24 18:38:04 +00:00
|
|
|
Context->NumChan = 4;
|
|
|
|
Speaker2Chan[0] = BACK_LEFT;
|
|
|
|
Speaker2Chan[1] = FRONT_LEFT;
|
|
|
|
Speaker2Chan[2] = FRONT_RIGHT;
|
|
|
|
Speaker2Chan[3] = BACK_RIGHT;
|
|
|
|
SpeakerAngle[0] = -135.0f * M_PI/180.0f;
|
|
|
|
SpeakerAngle[1] = -45.0f * M_PI/180.0f;
|
|
|
|
SpeakerAngle[2] = 45.0f * M_PI/180.0f;
|
|
|
|
SpeakerAngle[3] = 135.0f * M_PI/180.0f;
|
2009-01-26 03:20:47 +00:00
|
|
|
SetSpeakerArrangement("layout_QUAD", SpeakerAngle, Speaker2Chan, Context->NumChan);
|
2009-01-24 18:38:04 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case AL_FORMAT_51CHN8:
|
|
|
|
case AL_FORMAT_51CHN16:
|
|
|
|
case AL_FORMAT_51CHN32:
|
2009-01-26 06:11:07 +00:00
|
|
|
Context->ChannelMatrix[SIDE_LEFT][FRONT_LEFT] = aluSqrt(0.5);
|
|
|
|
Context->ChannelMatrix[SIDE_LEFT][BACK_LEFT] = aluSqrt(0.5);
|
|
|
|
Context->ChannelMatrix[SIDE_RIGHT][FRONT_RIGHT] = aluSqrt(0.5);
|
|
|
|
Context->ChannelMatrix[SIDE_RIGHT][BACK_RIGHT] = aluSqrt(0.5);
|
|
|
|
Context->ChannelMatrix[BACK_CENTER][BACK_LEFT] = aluSqrt(0.5);
|
|
|
|
Context->ChannelMatrix[BACK_CENTER][BACK_RIGHT] = aluSqrt(0.5);
|
2009-01-24 18:38:04 +00:00
|
|
|
Context->NumChan = 5;
|
|
|
|
Speaker2Chan[0] = BACK_LEFT;
|
|
|
|
Speaker2Chan[1] = FRONT_LEFT;
|
2009-01-24 23:13:14 +00:00
|
|
|
Speaker2Chan[2] = FRONT_CENTER;
|
2009-01-24 18:38:04 +00:00
|
|
|
Speaker2Chan[3] = FRONT_RIGHT;
|
|
|
|
Speaker2Chan[4] = BACK_RIGHT;
|
|
|
|
SpeakerAngle[0] = -110.0f * M_PI/180.0f;
|
|
|
|
SpeakerAngle[1] = -30.0f * M_PI/180.0f;
|
|
|
|
SpeakerAngle[2] = 0.0f * M_PI/180.0f;
|
|
|
|
SpeakerAngle[3] = 30.0f * M_PI/180.0f;
|
|
|
|
SpeakerAngle[4] = 110.0f * M_PI/180.0f;
|
2009-01-26 03:20:47 +00:00
|
|
|
SetSpeakerArrangement("layout_51CHN", SpeakerAngle, Speaker2Chan, Context->NumChan);
|
2009-01-24 18:38:04 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case AL_FORMAT_61CHN8:
|
|
|
|
case AL_FORMAT_61CHN16:
|
|
|
|
case AL_FORMAT_61CHN32:
|
2009-01-26 06:11:07 +00:00
|
|
|
Context->ChannelMatrix[BACK_LEFT][BACK_CENTER] = aluSqrt(0.5);
|
|
|
|
Context->ChannelMatrix[BACK_LEFT][SIDE_LEFT] = aluSqrt(0.5);
|
|
|
|
Context->ChannelMatrix[BACK_RIGHT][BACK_CENTER] = aluSqrt(0.5);
|
|
|
|
Context->ChannelMatrix[BACK_RIGHT][SIDE_RIGHT] = aluSqrt(0.5);
|
2009-01-24 18:38:04 +00:00
|
|
|
Context->NumChan = 6;
|
2009-01-24 23:13:14 +00:00
|
|
|
Speaker2Chan[0] = SIDE_LEFT;
|
|
|
|
Speaker2Chan[1] = FRONT_LEFT;
|
|
|
|
Speaker2Chan[2] = FRONT_CENTER;
|
2009-01-24 18:38:04 +00:00
|
|
|
Speaker2Chan[3] = FRONT_RIGHT;
|
|
|
|
Speaker2Chan[4] = SIDE_RIGHT;
|
2009-01-24 23:13:14 +00:00
|
|
|
Speaker2Chan[5] = BACK_CENTER;
|
|
|
|
SpeakerAngle[0] = -90.0f * M_PI/180.0f;
|
|
|
|
SpeakerAngle[1] = -30.0f * M_PI/180.0f;
|
|
|
|
SpeakerAngle[2] = 0.0f * M_PI/180.0f;
|
|
|
|
SpeakerAngle[3] = 30.0f * M_PI/180.0f;
|
|
|
|
SpeakerAngle[4] = 90.0f * M_PI/180.0f;
|
|
|
|
SpeakerAngle[5] = 180.0f * M_PI/180.0f;
|
2009-01-26 03:20:47 +00:00
|
|
|
SetSpeakerArrangement("layout_61CHN", SpeakerAngle, Speaker2Chan, Context->NumChan);
|
2009-01-24 18:38:04 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case AL_FORMAT_71CHN8:
|
|
|
|
case AL_FORMAT_71CHN16:
|
|
|
|
case AL_FORMAT_71CHN32:
|
2009-01-26 06:11:07 +00:00
|
|
|
Context->ChannelMatrix[BACK_CENTER][BACK_LEFT] = aluSqrt(0.5);
|
|
|
|
Context->ChannelMatrix[BACK_CENTER][BACK_RIGHT] = aluSqrt(0.5);
|
2009-01-24 18:38:04 +00:00
|
|
|
Context->NumChan = 7;
|
|
|
|
Speaker2Chan[0] = BACK_LEFT;
|
|
|
|
Speaker2Chan[1] = SIDE_LEFT;
|
|
|
|
Speaker2Chan[2] = FRONT_LEFT;
|
2009-01-24 23:13:14 +00:00
|
|
|
Speaker2Chan[3] = FRONT_CENTER;
|
2009-01-24 18:38:04 +00:00
|
|
|
Speaker2Chan[4] = FRONT_RIGHT;
|
|
|
|
Speaker2Chan[5] = SIDE_RIGHT;
|
|
|
|
Speaker2Chan[6] = BACK_RIGHT;
|
|
|
|
SpeakerAngle[0] = -150.0f * M_PI/180.0f;
|
|
|
|
SpeakerAngle[1] = -90.0f * M_PI/180.0f;
|
|
|
|
SpeakerAngle[2] = -30.0f * M_PI/180.0f;
|
|
|
|
SpeakerAngle[3] = 0.0f * M_PI/180.0f;
|
|
|
|
SpeakerAngle[4] = 30.0f * M_PI/180.0f;
|
|
|
|
SpeakerAngle[5] = 90.0f * M_PI/180.0f;
|
|
|
|
SpeakerAngle[6] = 150.0f * M_PI/180.0f;
|
2009-01-26 03:20:47 +00:00
|
|
|
SetSpeakerArrangement("layout_71CHN", SpeakerAngle, Speaker2Chan, Context->NumChan);
|
2009-01-24 18:38:04 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
assert(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
for(pos = 0; pos < LUT_NUM; pos++)
|
|
|
|
{
|
|
|
|
/* source angle */
|
|
|
|
Theta = aluLUTpos2Angle(pos);
|
|
|
|
|
|
|
|
/* clear all values */
|
|
|
|
offset = OUTPUTCHANNELS * pos;
|
|
|
|
for(s = 0; s < OUTPUTCHANNELS; s++)
|
|
|
|
Context->PanningLUT[offset+s] = 0.0f;
|
|
|
|
|
|
|
|
/* set panning values */
|
|
|
|
for(s = 0; s < Context->NumChan - 1; s++)
|
|
|
|
{
|
|
|
|
if(Theta >= SpeakerAngle[s] && Theta < SpeakerAngle[s+1])
|
|
|
|
{
|
|
|
|
/* source between speaker s and speaker s+1 */
|
|
|
|
Alpha = M_PI_2 * (Theta-SpeakerAngle[s]) /
|
|
|
|
(SpeakerAngle[s+1]-SpeakerAngle[s]);
|
|
|
|
Context->PanningLUT[offset + Speaker2Chan[s]] = cos(Alpha);
|
|
|
|
Context->PanningLUT[offset + Speaker2Chan[s+1]] = sin(Alpha);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(s == Context->NumChan - 1)
|
|
|
|
{
|
|
|
|
/* source between last and first speaker */
|
|
|
|
if(Theta < SpeakerAngle[0])
|
|
|
|
Theta += 2.0f * M_PI;
|
|
|
|
Alpha = M_PI_2 * (Theta-SpeakerAngle[s]) /
|
|
|
|
(2.0f * M_PI + SpeakerAngle[0]-SpeakerAngle[s]);
|
|
|
|
Context->PanningLUT[offset + Speaker2Chan[s]] = cos(Alpha);
|
|
|
|
Context->PanningLUT[offset + Speaker2Chan[0]] = sin(Alpha);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-10-21 22:31:21 +00:00
|
|
|
static ALvoid CalcSourceParams(const ALCcontext *ALContext, ALsource *ALSource,
|
|
|
|
ALboolean isMono)
|
2007-11-14 02:02:18 +00:00
|
|
|
{
|
2009-04-12 03:04:46 +00:00
|
|
|
ALfloat InnerAngle,OuterAngle,Angle,Distance,DryMix;
|
2008-01-16 05:57:50 +00:00
|
|
|
ALfloat Direction[3],Position[3],SourceToListener[3];
|
2007-12-18 05:56:31 +00:00
|
|
|
ALfloat MinVolume,MaxVolume,MinDist,MaxDist,Rolloff,OuterGainHF;
|
2009-04-13 09:50:40 +00:00
|
|
|
ALfloat ConeVolume,ConeHF,SourceVolume,ListenerGain;
|
2007-11-14 02:02:18 +00:00
|
|
|
ALfloat U[3],V[3],N[3];
|
2009-10-20 18:03:16 +00:00
|
|
|
ALfloat DopplerFactor, DopplerVelocity, flSpeedOfSound;
|
2007-11-14 02:02:18 +00:00
|
|
|
ALfloat Matrix[3][3];
|
|
|
|
ALfloat flAttenuation;
|
2009-04-12 03:04:46 +00:00
|
|
|
ALfloat RoomAttenuation[MAX_SENDS];
|
2007-12-18 03:40:43 +00:00
|
|
|
ALfloat MetersPerUnit;
|
2009-04-12 03:04:46 +00:00
|
|
|
ALfloat RoomRolloff[MAX_SENDS];
|
2007-12-18 05:56:31 +00:00
|
|
|
ALfloat DryGainHF = 1.0f;
|
2009-10-21 22:31:21 +00:00
|
|
|
ALfloat WetGain[MAX_SENDS];
|
2009-10-21 20:08:50 +00:00
|
|
|
ALfloat WetGainHF[MAX_SENDS];
|
2009-01-24 18:38:04 +00:00
|
|
|
ALfloat DirGain, AmbientGain;
|
2009-05-16 10:54:16 +00:00
|
|
|
ALfloat length;
|
2009-01-24 18:38:04 +00:00
|
|
|
const ALfloat *SpeakerGain;
|
2009-10-21 20:08:50 +00:00
|
|
|
ALuint Frequency;
|
2009-04-14 03:33:41 +00:00
|
|
|
ALint NumSends;
|
2009-04-12 03:04:46 +00:00
|
|
|
ALint pos, s, i;
|
2009-10-21 20:08:50 +00:00
|
|
|
ALfloat cw, a, g;
|
2007-11-14 02:02:18 +00:00
|
|
|
|
|
|
|
//Get context properties
|
2008-07-15 09:33:05 +00:00
|
|
|
DopplerFactor = ALContext->DopplerFactor * ALSource->DopplerFactor;
|
2007-11-14 02:02:18 +00:00
|
|
|
DopplerVelocity = ALContext->DopplerVelocity;
|
|
|
|
flSpeedOfSound = ALContext->flSpeedOfSound;
|
2009-07-06 10:09:01 +00:00
|
|
|
NumSends = ALContext->Device->NumAuxSends;
|
2009-10-21 20:08:50 +00:00
|
|
|
Frequency = ALContext->Device->Frequency;
|
2007-11-14 02:02:18 +00:00
|
|
|
|
|
|
|
//Get listener properties
|
|
|
|
ListenerGain = ALContext->Listener.Gain;
|
2007-12-18 03:40:43 +00:00
|
|
|
MetersPerUnit = ALContext->Listener.MetersPerUnit;
|
2007-11-14 02:02:18 +00:00
|
|
|
|
|
|
|
//Get source properties
|
|
|
|
SourceVolume = ALSource->flGain;
|
|
|
|
memcpy(Position, ALSource->vPosition, sizeof(ALSource->vPosition));
|
|
|
|
memcpy(Direction, ALSource->vOrientation, sizeof(ALSource->vOrientation));
|
|
|
|
MinVolume = ALSource->flMinGain;
|
|
|
|
MaxVolume = ALSource->flMaxGain;
|
|
|
|
MinDist = ALSource->flRefDistance;
|
|
|
|
MaxDist = ALSource->flMaxDistance;
|
|
|
|
Rolloff = ALSource->flRollOffFactor;
|
|
|
|
InnerAngle = ALSource->flInnerAngle;
|
|
|
|
OuterAngle = ALSource->flOuterAngle;
|
2007-12-19 00:54:22 +00:00
|
|
|
OuterGainHF = ALSource->OuterGainHF;
|
2007-11-14 02:02:18 +00:00
|
|
|
|
|
|
|
//Only apply 3D calculations for mono buffers
|
2009-10-19 20:25:40 +00:00
|
|
|
if(isMono == AL_FALSE)
|
2007-11-14 02:02:18 +00:00
|
|
|
{
|
2009-10-19 20:25:40 +00:00
|
|
|
//1. Multi-channel buffers always play "normal"
|
2009-10-21 22:31:21 +00:00
|
|
|
ALSource->Params.Pitch = ALSource->flPitch;
|
2009-10-19 20:25:40 +00:00
|
|
|
|
|
|
|
DryMix = SourceVolume;
|
|
|
|
DryMix = __min(DryMix,MaxVolume);
|
|
|
|
DryMix = __max(DryMix,MinVolume);
|
|
|
|
|
|
|
|
switch(ALSource->DirectFilter.type)
|
2008-07-03 10:13:43 +00:00
|
|
|
{
|
2009-10-19 20:25:40 +00:00
|
|
|
case AL_FILTER_LOWPASS:
|
|
|
|
DryMix *= ALSource->DirectFilter.Gain;
|
|
|
|
DryGainHF *= ALSource->DirectFilter.GainHF;
|
|
|
|
break;
|
2008-07-03 10:13:43 +00:00
|
|
|
}
|
2007-11-14 02:02:18 +00:00
|
|
|
|
2009-10-21 22:31:21 +00:00
|
|
|
ALSource->Params.DryGains[FRONT_LEFT] = DryMix * ListenerGain;
|
|
|
|
ALSource->Params.DryGains[FRONT_RIGHT] = DryMix * ListenerGain;
|
|
|
|
ALSource->Params.DryGains[SIDE_LEFT] = DryMix * ListenerGain;
|
|
|
|
ALSource->Params.DryGains[SIDE_RIGHT] = DryMix * ListenerGain;
|
|
|
|
ALSource->Params.DryGains[BACK_LEFT] = DryMix * ListenerGain;
|
|
|
|
ALSource->Params.DryGains[BACK_RIGHT] = DryMix * ListenerGain;
|
|
|
|
ALSource->Params.DryGains[FRONT_CENTER] = DryMix * ListenerGain;
|
|
|
|
ALSource->Params.DryGains[BACK_CENTER] = DryMix * ListenerGain;
|
|
|
|
ALSource->Params.DryGains[LFE] = DryMix * ListenerGain;
|
2009-04-12 03:04:46 +00:00
|
|
|
for(i = 0;i < MAX_SENDS;i++)
|
2009-10-21 22:31:21 +00:00
|
|
|
ALSource->Params.WetGains[i] = 0.0f;
|
2009-10-21 20:08:50 +00:00
|
|
|
|
|
|
|
/* Update filter coefficients. Calculations based on the I3DL2
|
|
|
|
* spec. */
|
|
|
|
cw = cos(2.0*M_PI * LOWPASSFREQCUTOFF / Frequency);
|
|
|
|
/* We use two chained one-pole filters, so we need to take the
|
|
|
|
* square root of the squared gain, which is the same as the base
|
|
|
|
* gain. */
|
|
|
|
g = __max(DryGainHF, 0.01f);
|
|
|
|
a = 0.0f;
|
|
|
|
/* Be careful with gains < 0.0001, as that causes the coefficient
|
|
|
|
* head towards 1, which will flatten the signal */
|
|
|
|
if(g < 0.9999f) /* 1-epsilon */
|
|
|
|
a = (1 - g*cw - aluSqrt(2*g*(1-cw) - g*g*(1 - cw*cw))) /
|
|
|
|
(1 - g);
|
2009-10-21 22:31:21 +00:00
|
|
|
ALSource->Params.iirFilter.coeff = a;
|
2009-10-21 20:08:50 +00:00
|
|
|
for(i = 0;i < MAX_SENDS;i++)
|
2009-10-21 22:31:21 +00:00
|
|
|
ALSource->Params.Send[i].iirFilter.coeff = 0.0f;
|
Implement AL_EFFECT_REVERB
Here is a quick description of how the reverb effect works:
+--->---+*(4)
| V new sample
+-----+---+---+ |
|extra|ltr|ref| <- +*(1)
+-----+---+---+
(3,5)*| |*(2)
+-->|
V
out sample
1) Apply master reverb gain to incoming sample and place it at the head of the
buffer. The master reverb gainhf was already applied when the source was
initially mixed.
2) Copy the delayed reflection sample to an output sample and apply the
reflection gain.
3) Apply the late reverb gain to the late reverb sample
4) Copy the end of the buffer, applying a decay gain and the decay hf ratio,
and add to the late reverb.
5) Copy the late reverb sample, adding to the output sample.
Then the head and sampling points are shifted forward, and done again for each
new sample. The extra buffer length is determined by the Reverb Density
property. A value of 0 gives a length of 0.1 seconds (long, with fairly
distinct echos) , and 1 gives 0.075 seconds (short, indistinct echos).
The decay gain is calculated such that after a number of loops to satisfy the
Decay Time, a sample will be 1/32768th as powerful (virtually insignificant to
the resulting output, and only getting further reduced). It is calculated as:
DecayGain = pow(1.0f/32768.0f, 1.0/(DecayTime/ExtraLength));
Things to note: Reverb Diffusion is not currently handled, nor is Decay HF
Limit. Decay HF Ratios above 1 probably give incorrect results. Also, this
method likely sucks, but it's the best I can come up with before release. :)
2008-01-19 05:25:40 +00:00
|
|
|
|
2009-10-19 20:25:40 +00:00
|
|
|
return;
|
|
|
|
}
|
2007-11-14 02:02:18 +00:00
|
|
|
|
2009-10-19 20:25:40 +00:00
|
|
|
//1. Translate Listener to origin (convert to head relative)
|
|
|
|
// Note that Direction and SourceToListener are *not* transformed.
|
|
|
|
// SourceToListener is used with the source and listener velocities,
|
|
|
|
// which are untransformed, and Direction is used with SourceToListener
|
|
|
|
// for the sound cone
|
|
|
|
if(ALSource->bHeadRelative==AL_FALSE)
|
|
|
|
{
|
|
|
|
// Build transform matrix
|
|
|
|
aluCrossproduct(ALContext->Listener.Forward, ALContext->Listener.Up, U); // Right-vector
|
|
|
|
aluNormalize(U); // Normalized Right-vector
|
|
|
|
memcpy(V, ALContext->Listener.Up, sizeof(V)); // Up-vector
|
|
|
|
aluNormalize(V); // Normalized Up-vector
|
|
|
|
memcpy(N, ALContext->Listener.Forward, sizeof(N)); // At-vector
|
|
|
|
aluNormalize(N); // Normalized At-vector
|
|
|
|
Matrix[0][0] = U[0]; Matrix[0][1] = V[0]; Matrix[0][2] = -N[0];
|
|
|
|
Matrix[1][0] = U[1]; Matrix[1][1] = V[1]; Matrix[1][2] = -N[1];
|
|
|
|
Matrix[2][0] = U[2]; Matrix[2][1] = V[2]; Matrix[2][2] = -N[2];
|
|
|
|
|
|
|
|
// Translate source position into listener space
|
|
|
|
Position[0] -= ALContext->Listener.Position[0];
|
|
|
|
Position[1] -= ALContext->Listener.Position[1];
|
|
|
|
Position[2] -= ALContext->Listener.Position[2];
|
|
|
|
|
|
|
|
SourceToListener[0] = -Position[0];
|
|
|
|
SourceToListener[1] = -Position[1];
|
|
|
|
SourceToListener[2] = -Position[2];
|
|
|
|
|
|
|
|
// Transform source position into listener space
|
|
|
|
aluMatrixVector(Position, Matrix);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
SourceToListener[0] = -Position[0];
|
|
|
|
SourceToListener[1] = -Position[1];
|
|
|
|
SourceToListener[2] = -Position[2];
|
|
|
|
}
|
|
|
|
aluNormalize(SourceToListener);
|
|
|
|
aluNormalize(Direction);
|
2007-11-14 02:02:18 +00:00
|
|
|
|
2009-10-19 20:25:40 +00:00
|
|
|
//2. Calculate distance attenuation
|
|
|
|
Distance = aluSqrt(aluDotproduct(Position, Position));
|
|
|
|
|
|
|
|
flAttenuation = 1.0f;
|
|
|
|
for(i = 0;i < MAX_SENDS;i++)
|
|
|
|
{
|
|
|
|
RoomAttenuation[i] = 1.0f;
|
|
|
|
|
|
|
|
RoomRolloff[i] = ALSource->RoomRolloffFactor;
|
|
|
|
if(ALSource->Send[i].Slot &&
|
|
|
|
ALSource->Send[i].Slot->effect.type == AL_EFFECT_REVERB)
|
|
|
|
RoomRolloff[i] += ALSource->Send[i].Slot->effect.Reverb.RoomRolloffFactor;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch(ALSource->DistanceModel)
|
|
|
|
{
|
|
|
|
case AL_INVERSE_DISTANCE_CLAMPED:
|
|
|
|
Distance=__max(Distance,MinDist);
|
|
|
|
Distance=__min(Distance,MaxDist);
|
|
|
|
if(MaxDist < MinDist)
|
|
|
|
break;
|
|
|
|
//fall-through
|
|
|
|
case AL_INVERSE_DISTANCE:
|
|
|
|
if(MinDist > 0.0f)
|
|
|
|
{
|
|
|
|
if((MinDist + (Rolloff * (Distance - MinDist))) > 0.0f)
|
|
|
|
flAttenuation = MinDist / (MinDist + (Rolloff * (Distance - MinDist)));
|
|
|
|
for(i = 0;i < NumSends;i++)
|
2007-12-19 03:03:40 +00:00
|
|
|
{
|
2009-10-19 20:25:40 +00:00
|
|
|
if((MinDist + (RoomRolloff[i] * (Distance - MinDist))) > 0.0f)
|
|
|
|
RoomAttenuation[i] = MinDist / (MinDist + (RoomRolloff[i] * (Distance - MinDist)));
|
2007-12-19 03:03:40 +00:00
|
|
|
}
|
2009-10-19 20:25:40 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case AL_LINEAR_DISTANCE_CLAMPED:
|
|
|
|
Distance=__max(Distance,MinDist);
|
|
|
|
Distance=__min(Distance,MaxDist);
|
|
|
|
if(MaxDist < MinDist)
|
2007-11-14 02:02:18 +00:00
|
|
|
break;
|
2009-10-19 20:25:40 +00:00
|
|
|
//fall-through
|
|
|
|
case AL_LINEAR_DISTANCE:
|
|
|
|
Distance=__min(Distance,MaxDist);
|
|
|
|
if(MaxDist != MinDist)
|
|
|
|
{
|
|
|
|
flAttenuation = 1.0f - (Rolloff*(Distance-MinDist)/(MaxDist - MinDist));
|
|
|
|
for(i = 0;i < NumSends;i++)
|
|
|
|
RoomAttenuation[i] = 1.0f - (RoomRolloff[i]*(Distance-MinDist)/(MaxDist - MinDist));
|
|
|
|
}
|
|
|
|
break;
|
2007-11-14 02:02:18 +00:00
|
|
|
|
2009-10-19 20:25:40 +00:00
|
|
|
case AL_EXPONENT_DISTANCE_CLAMPED:
|
|
|
|
Distance=__max(Distance,MinDist);
|
|
|
|
Distance=__min(Distance,MaxDist);
|
|
|
|
if(MaxDist < MinDist)
|
2007-11-14 02:02:18 +00:00
|
|
|
break;
|
2009-10-19 20:25:40 +00:00
|
|
|
//fall-through
|
|
|
|
case AL_EXPONENT_DISTANCE:
|
|
|
|
if(Distance > 0.0f && MinDist > 0.0f)
|
|
|
|
{
|
|
|
|
flAttenuation = (ALfloat)pow(Distance/MinDist, -Rolloff);
|
|
|
|
for(i = 0;i < NumSends;i++)
|
|
|
|
RoomAttenuation[i] = (ALfloat)pow(Distance/MinDist, -RoomRolloff[i]);
|
|
|
|
}
|
|
|
|
break;
|
2007-11-14 02:02:18 +00:00
|
|
|
|
2009-10-19 20:25:40 +00:00
|
|
|
case AL_NONE:
|
|
|
|
break;
|
|
|
|
}
|
2009-04-12 03:27:55 +00:00
|
|
|
|
2009-10-19 20:25:40 +00:00
|
|
|
// Source Gain + Attenuation and clamp to Min/Max Gain
|
|
|
|
DryMix = SourceVolume * flAttenuation;
|
|
|
|
DryMix = __min(DryMix,MaxVolume);
|
|
|
|
DryMix = __max(DryMix,MinVolume);
|
2009-04-12 03:27:55 +00:00
|
|
|
|
2009-10-19 20:25:40 +00:00
|
|
|
for(i = 0;i < NumSends;i++)
|
|
|
|
{
|
|
|
|
ALfloat WetMix = SourceVolume * RoomAttenuation[i];
|
|
|
|
WetMix = __min(WetMix,MaxVolume);
|
2009-10-21 22:31:21 +00:00
|
|
|
WetGain[i] = __max(WetMix,MinVolume);
|
2009-10-21 20:08:50 +00:00
|
|
|
WetGainHF[i] = 1.0f;
|
2009-10-19 20:25:40 +00:00
|
|
|
}
|
2008-09-16 14:36:48 +00:00
|
|
|
|
2009-10-19 20:25:40 +00:00
|
|
|
// Distance-based air absorption
|
|
|
|
if(ALSource->AirAbsorptionFactor > 0.0f && ALSource->DistanceModel != AL_NONE)
|
|
|
|
{
|
|
|
|
ALfloat dist = Distance-MinDist;
|
|
|
|
ALfloat absorb;
|
|
|
|
|
|
|
|
if(dist < 0.0f) dist = 0.0f;
|
|
|
|
// Absorption calculation is done in dB
|
|
|
|
absorb = (ALSource->AirAbsorptionFactor*AIRABSORBGAINDBHF) *
|
|
|
|
(dist*MetersPerUnit);
|
|
|
|
// Convert dB to linear gain before applying
|
|
|
|
absorb = pow(10.0, absorb/20.0);
|
|
|
|
DryGainHF *= absorb;
|
|
|
|
for(i = 0;i < MAX_SENDS;i++)
|
2009-10-21 20:08:50 +00:00
|
|
|
WetGainHF[i] *= absorb;
|
2009-10-19 20:25:40 +00:00
|
|
|
}
|
2007-11-14 02:02:18 +00:00
|
|
|
|
2009-10-19 20:25:40 +00:00
|
|
|
//3. Apply directional soundcones
|
|
|
|
Angle = aluAcos(aluDotproduct(Direction,SourceToListener)) * 180.0f/M_PI;
|
|
|
|
if(Angle >= InnerAngle && Angle <= OuterAngle)
|
|
|
|
{
|
|
|
|
ALfloat scale = (Angle-InnerAngle) / (OuterAngle-InnerAngle);
|
|
|
|
ConeVolume = (1.0f+(ALSource->flOuterGain-1.0f)*scale);
|
|
|
|
ConeHF = (1.0f+(OuterGainHF-1.0f)*scale);
|
|
|
|
DryMix *= ConeVolume;
|
|
|
|
if(ALSource->DryGainHFAuto)
|
|
|
|
DryGainHF *= ConeHF;
|
|
|
|
}
|
|
|
|
else if(Angle > OuterAngle)
|
|
|
|
{
|
|
|
|
ConeVolume = (1.0f+(ALSource->flOuterGain-1.0f));
|
|
|
|
ConeHF = (1.0f+(OuterGainHF-1.0f));
|
|
|
|
DryMix *= ConeVolume;
|
|
|
|
if(ALSource->DryGainHFAuto)
|
|
|
|
DryGainHF *= ConeHF;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ConeVolume = 1.0f;
|
|
|
|
ConeHF = 1.0f;
|
|
|
|
}
|
2008-01-16 05:57:50 +00:00
|
|
|
|
2009-10-19 20:25:40 +00:00
|
|
|
//4. Calculate Velocity
|
|
|
|
if(DopplerFactor != 0.0f)
|
|
|
|
{
|
|
|
|
ALfloat flVSS, flVLS = 0.0f;
|
2009-10-20 18:03:16 +00:00
|
|
|
ALfloat flMaxVelocity = (DopplerVelocity * flSpeedOfSound) /
|
|
|
|
DopplerFactor;
|
2007-11-14 02:02:18 +00:00
|
|
|
|
2009-10-19 20:25:40 +00:00
|
|
|
flVSS = aluDotproduct(ALSource->vVelocity, SourceToListener);
|
|
|
|
if(flVSS >= flMaxVelocity)
|
|
|
|
flVSS = (flMaxVelocity - 1.0f);
|
|
|
|
else if(flVSS <= -flMaxVelocity)
|
|
|
|
flVSS = -flMaxVelocity + 1.0f;
|
2007-11-14 02:02:18 +00:00
|
|
|
|
2009-10-20 18:03:16 +00:00
|
|
|
if(ALSource->bHeadRelative == AL_FALSE)
|
|
|
|
{
|
|
|
|
flVLS = aluDotproduct(ALContext->Listener.Velocity, SourceToListener);
|
|
|
|
if(flVLS >= flMaxVelocity)
|
|
|
|
flVLS = (flMaxVelocity - 1.0f);
|
|
|
|
else if(flVLS <= -flMaxVelocity)
|
|
|
|
flVLS = -flMaxVelocity + 1.0f;
|
|
|
|
}
|
2007-11-14 02:02:18 +00:00
|
|
|
|
2009-10-21 22:31:21 +00:00
|
|
|
ALSource->Params.Pitch = ALSource->flPitch *
|
|
|
|
((flSpeedOfSound * DopplerVelocity) - (DopplerFactor * flVLS)) /
|
|
|
|
((flSpeedOfSound * DopplerVelocity) - (DopplerFactor * flVSS));
|
2009-10-19 20:25:40 +00:00
|
|
|
}
|
|
|
|
else
|
2009-10-21 22:31:21 +00:00
|
|
|
ALSource->Params.Pitch = ALSource->flPitch;
|
2009-04-13 09:50:40 +00:00
|
|
|
|
2009-10-19 20:25:40 +00:00
|
|
|
for(i = 0;i < NumSends;i++)
|
|
|
|
{
|
|
|
|
if(ALSource->Send[i].Slot &&
|
|
|
|
ALSource->Send[i].Slot->effect.type != AL_EFFECT_NULL)
|
|
|
|
{
|
|
|
|
if(ALSource->Send[i].Slot->AuxSendAuto)
|
|
|
|
{
|
2009-10-21 22:31:21 +00:00
|
|
|
if(ALSource->WetGainAuto)
|
|
|
|
WetGain[i] *= ConeVolume;
|
|
|
|
if(ALSource->WetGainHFAuto)
|
|
|
|
WetGainHF[i] *= ConeHF;
|
|
|
|
|
2009-10-19 20:25:40 +00:00
|
|
|
// Apply minimal attenuation in place of missing
|
|
|
|
// statistical reverb model.
|
2009-10-21 22:31:21 +00:00
|
|
|
WetGain[i] *= pow(DryMix, 1.0f / 2.0f);
|
2008-11-16 08:29:49 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2009-10-19 20:25:40 +00:00
|
|
|
// 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
|
2009-10-21 22:31:21 +00:00
|
|
|
WetGain[i] = DryMix;
|
2009-10-21 20:08:50 +00:00
|
|
|
WetGainHF[i] = DryGainHF;
|
2008-09-16 14:36:48 +00:00
|
|
|
}
|
2009-10-19 20:25:40 +00:00
|
|
|
|
|
|
|
switch(ALSource->Send[i].WetFilter.type)
|
|
|
|
{
|
|
|
|
case AL_FILTER_LOWPASS:
|
2009-10-21 22:31:21 +00:00
|
|
|
WetGain[i] *= ALSource->Send[i].WetFilter.Gain;
|
2009-10-21 20:08:50 +00:00
|
|
|
WetGainHF[i] *= ALSource->Send[i].WetFilter.GainHF;
|
2009-10-19 20:25:40 +00:00
|
|
|
break;
|
|
|
|
}
|
2009-10-21 22:31:21 +00:00
|
|
|
ALSource->Params.WetGains[i] = WetGain[i] * ListenerGain;
|
2008-01-19 05:39:09 +00:00
|
|
|
}
|
2009-10-19 20:25:40 +00:00
|
|
|
else
|
2009-04-14 03:33:41 +00:00
|
|
|
{
|
2009-10-21 22:31:21 +00:00
|
|
|
ALSource->Params.WetGains[i] = 0.0f;
|
2009-10-21 20:08:50 +00:00
|
|
|
WetGainHF[i] = 1.0f;
|
2009-04-14 03:33:41 +00:00
|
|
|
}
|
2007-11-14 02:02:18 +00:00
|
|
|
}
|
2009-10-19 20:25:40 +00:00
|
|
|
for(i = NumSends;i < MAX_SENDS;i++)
|
2007-11-14 02:02:18 +00:00
|
|
|
{
|
2009-10-21 22:31:21 +00:00
|
|
|
ALSource->Params.WetGains[i] = 0.0f;
|
2009-10-21 20:08:50 +00:00
|
|
|
WetGainHF[i] = 1.0f;
|
2009-10-19 20:25:40 +00:00
|
|
|
}
|
2008-01-19 08:49:05 +00:00
|
|
|
|
2009-10-19 20:25:40 +00:00
|
|
|
//5. Apply filter gains and filters
|
|
|
|
switch(ALSource->DirectFilter.type)
|
|
|
|
{
|
|
|
|
case AL_FILTER_LOWPASS:
|
|
|
|
DryMix *= ALSource->DirectFilter.Gain;
|
|
|
|
DryGainHF *= ALSource->DirectFilter.GainHF;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
DryMix *= ListenerGain;
|
2008-12-10 19:54:13 +00:00
|
|
|
|
2009-10-19 20:25:40 +00:00
|
|
|
// Use energy-preserving panning algorithm for multi-speaker playback
|
|
|
|
length = aluSqrt(Position[0]*Position[0] + Position[1]*Position[1] +
|
|
|
|
Position[2]*Position[2]);
|
|
|
|
length = __max(length, MinDist);
|
|
|
|
if(length > 0.0f)
|
|
|
|
{
|
|
|
|
ALfloat invlen = 1.0f/length;
|
|
|
|
Position[0] *= invlen;
|
|
|
|
Position[1] *= invlen;
|
|
|
|
Position[2] *= invlen;
|
|
|
|
}
|
2008-12-10 19:54:13 +00:00
|
|
|
|
2009-10-19 20:25:40 +00:00
|
|
|
pos = aluCart2LUTpos(-Position[2], Position[0]);
|
|
|
|
SpeakerGain = &ALContext->PanningLUT[OUTPUTCHANNELS * pos];
|
2008-12-10 19:54:13 +00:00
|
|
|
|
2009-10-19 20:25:40 +00:00
|
|
|
DirGain = aluSqrt(Position[0]*Position[0] + Position[2]*Position[2]);
|
|
|
|
// elevation adjustment for directional gain. this sucks, but
|
|
|
|
// has low complexity
|
|
|
|
AmbientGain = 1.0/aluSqrt(ALContext->NumChan) * (1.0-DirGain);
|
|
|
|
for(s = 0; s < OUTPUTCHANNELS; s++)
|
|
|
|
{
|
|
|
|
ALfloat gain = SpeakerGain[s]*DirGain + AmbientGain;
|
2009-10-21 22:31:21 +00:00
|
|
|
ALSource->Params.DryGains[s] = DryMix * gain;
|
2007-11-14 02:02:18 +00:00
|
|
|
}
|
2009-10-21 20:08:50 +00:00
|
|
|
|
|
|
|
/* Update filter coefficients. */
|
|
|
|
cw = cos(2.0*M_PI * LOWPASSFREQCUTOFF / Frequency);
|
|
|
|
/* Spatialized sources use four chained one-pole filters, so we need to
|
|
|
|
* take the fourth root of the squared gain, which is the same as the
|
|
|
|
* square root of the base gain. */
|
|
|
|
g = aluSqrt(__max(DryGainHF, 0.0001f));
|
|
|
|
a = 0.0f;
|
|
|
|
if(g < 0.9999f) /* 1-epsilon */
|
|
|
|
a = (1 - g*cw - aluSqrt(2*g*(1-cw) - g*g*(1 - cw*cw))) /
|
|
|
|
(1 - g);
|
2009-10-21 22:31:21 +00:00
|
|
|
ALSource->Params.iirFilter.coeff = a;
|
2009-10-21 20:08:50 +00:00
|
|
|
|
|
|
|
for(i = 0;i < NumSends;i++)
|
|
|
|
{
|
|
|
|
/* The wet path uses two chained one-pole filters, so take the
|
|
|
|
* base gain (square root of the squared gain) */
|
|
|
|
g = __max(WetGainHF[i], 0.01f);
|
|
|
|
a = 0.0f;
|
|
|
|
if(g < 0.9999f) /* 1-epsilon */
|
|
|
|
a = (1 - g*cw - aluSqrt(2*g*(1-cw) - g*g*(1 - cw*cw))) /
|
|
|
|
(1 - g);
|
2009-10-21 22:31:21 +00:00
|
|
|
ALSource->Params.Send[i].iirFilter.coeff = a;
|
2009-10-21 20:08:50 +00:00
|
|
|
}
|
2007-11-14 02:02:18 +00:00
|
|
|
}
|
|
|
|
|
2008-10-03 06:53:46 +00:00
|
|
|
static __inline ALshort lerp(ALshort val1, ALshort val2, ALint frac)
|
|
|
|
{
|
2008-10-09 09:32:47 +00:00
|
|
|
return val1 + (((val2-val1)*frac)>>FRACTIONBITS);
|
2008-10-03 06:53:46 +00:00
|
|
|
}
|
|
|
|
|
2009-09-16 00:56:31 +00:00
|
|
|
static void MixSomeSources(ALCcontext *ALContext, float (*DryBuffer)[OUTPUTCHANNELS], ALuint SamplesToDo)
|
2007-11-14 02:02:18 +00:00
|
|
|
{
|
2009-04-12 00:04:55 +00:00
|
|
|
static float DummyBuffer[BUFFERSIZE];
|
2009-04-12 03:04:46 +00:00
|
|
|
ALfloat *WetBuffer[MAX_SENDS];
|
2009-01-26 06:11:07 +00:00
|
|
|
ALfloat (*Matrix)[OUTPUTCHANNELS] = ALContext->ChannelMatrix;
|
2009-10-21 21:25:54 +00:00
|
|
|
ALfloat DrySend[OUTPUTCHANNELS];
|
2008-08-14 12:43:52 +00:00
|
|
|
ALfloat dryGainStep[OUTPUTCHANNELS];
|
2009-04-12 03:04:46 +00:00
|
|
|
ALfloat wetGainStep[MAX_SENDS];
|
2009-09-16 00:56:31 +00:00
|
|
|
ALuint i, j, k, out;
|
|
|
|
ALsource *ALSource;
|
2007-11-14 02:02:18 +00:00
|
|
|
ALfloat value;
|
|
|
|
ALbufferlistitem *BufferListItem;
|
|
|
|
ALint64 DataSize64,DataPos64;
|
2009-04-12 03:04:46 +00:00
|
|
|
FILTER *DryFilter, *WetFilter[MAX_SENDS];
|
2009-09-16 00:56:31 +00:00
|
|
|
ALfloat WetSend[MAX_SENDS];
|
|
|
|
ALuint rampLength;
|
2009-10-25 13:26:19 +00:00
|
|
|
ALuint DeviceFreq;
|
2009-09-16 00:56:31 +00:00
|
|
|
ALint increment;
|
2009-10-25 11:39:36 +00:00
|
|
|
ALuint DataPosInt, DataPosFrac;
|
2009-10-25 12:03:22 +00:00
|
|
|
ALuint Channels, Bytes;
|
2009-10-25 13:26:19 +00:00
|
|
|
ALuint Frequency;
|
2009-10-25 11:39:36 +00:00
|
|
|
ALuint BuffersPlayed;
|
2009-10-25 12:03:22 +00:00
|
|
|
ALfloat Pitch;
|
2009-10-25 11:39:36 +00:00
|
|
|
ALenum State;
|
2007-11-14 02:02:18 +00:00
|
|
|
|
2009-09-16 00:56:31 +00:00
|
|
|
if(!(ALSource=ALContext->Source))
|
|
|
|
return;
|
2008-08-08 14:32:21 +00:00
|
|
|
|
2009-10-25 13:26:19 +00:00
|
|
|
DeviceFreq = ALContext->Device->Frequency;
|
2009-10-20 20:47:55 +00:00
|
|
|
|
2009-10-25 13:26:19 +00:00
|
|
|
rampLength = DeviceFreq * MIN_RAMP_LENGTH / 1000;
|
2009-09-16 00:56:31 +00:00
|
|
|
rampLength = max(rampLength, SamplesToDo);
|
2007-11-14 02:02:18 +00:00
|
|
|
|
2009-09-16 00:56:31 +00:00
|
|
|
another_source:
|
|
|
|
State = ALSource->state;
|
2009-10-25 11:39:36 +00:00
|
|
|
if(State != AL_PLAYING)
|
|
|
|
{
|
|
|
|
if((ALSource=ALSource->next) != NULL)
|
|
|
|
goto another_source;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
j = 0;
|
|
|
|
|
2009-10-25 13:26:19 +00:00
|
|
|
/* Find buffer format */
|
|
|
|
Frequency = 0;
|
|
|
|
Channels = 0;
|
|
|
|
Bytes = 0;
|
|
|
|
BufferListItem = ALSource->queue;
|
|
|
|
while(BufferListItem != NULL)
|
|
|
|
{
|
|
|
|
ALbuffer *ALBuffer;
|
|
|
|
if((ALBuffer=BufferListItem->buffer) != NULL)
|
|
|
|
{
|
|
|
|
Channels = aluChannelsFromFormat(ALBuffer->format);
|
|
|
|
Bytes = aluBytesFromFormat(ALBuffer->format);
|
|
|
|
Frequency = ALBuffer->frequency;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
BufferListItem = BufferListItem->next;
|
|
|
|
}
|
|
|
|
|
2009-10-25 11:39:36 +00:00
|
|
|
/* Get source info */
|
|
|
|
BuffersPlayed = ALSource->BuffersPlayed;
|
|
|
|
DataPosInt = ALSource->position;
|
|
|
|
DataPosFrac = ALSource->position_fraction;
|
|
|
|
|
2009-10-25 12:03:22 +00:00
|
|
|
CalcSourceParams(ALContext, ALSource, (Channels==1)?AL_TRUE:AL_FALSE);
|
2009-10-25 13:16:21 +00:00
|
|
|
|
2009-10-25 12:34:47 +00:00
|
|
|
/* Compute 18.14 fixed point step */
|
2009-10-25 13:26:19 +00:00
|
|
|
Pitch = (ALSource->Params.Pitch*Frequency) / DeviceFreq;
|
2009-10-25 12:34:47 +00:00
|
|
|
if(Pitch > (float)MAX_PITCH) Pitch = (float)MAX_PITCH;
|
|
|
|
increment = (ALint)(Pitch*(ALfloat)(1L<<FRACTIONBITS));
|
|
|
|
if(increment <= 0) increment = (1<<FRACTIONBITS);
|
2009-10-25 12:03:22 +00:00
|
|
|
|
|
|
|
/* Compute the gain steps for each output channel */
|
|
|
|
if(ALSource->FirstStart)
|
|
|
|
{
|
|
|
|
for(i = 0;i < OUTPUTCHANNELS;i++)
|
|
|
|
DrySend[i] = ALSource->Params.DryGains[i];
|
|
|
|
for(i = 0;i < MAX_SENDS;i++)
|
|
|
|
WetSend[i] = ALSource->Params.WetGains[i];
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
for(i = 0;i < OUTPUTCHANNELS;i++)
|
|
|
|
DrySend[i] = ALSource->DryGains[i];
|
|
|
|
for(i = 0;i < MAX_SENDS;i++)
|
|
|
|
WetSend[i] = ALSource->WetGains[i];
|
|
|
|
}
|
2009-10-25 11:39:36 +00:00
|
|
|
|
|
|
|
DryFilter = &ALSource->Params.iirFilter;
|
|
|
|
for(i = 0;i < MAX_SENDS;i++)
|
|
|
|
{
|
|
|
|
WetFilter[i] = &ALSource->Params.Send[i].iirFilter;
|
|
|
|
WetBuffer[i] = (ALSource->Send[i].Slot ?
|
|
|
|
ALSource->Send[i].Slot->WetBuffer :
|
|
|
|
DummyBuffer);
|
|
|
|
}
|
|
|
|
|
2009-10-25 12:34:47 +00:00
|
|
|
if(DuplicateStereo && Channels == 2)
|
|
|
|
{
|
|
|
|
Matrix[FRONT_LEFT][SIDE_LEFT] = 1.0f;
|
|
|
|
Matrix[FRONT_RIGHT][SIDE_RIGHT] = 1.0f;
|
|
|
|
Matrix[FRONT_LEFT][BACK_LEFT] = 1.0f;
|
|
|
|
Matrix[FRONT_RIGHT][BACK_RIGHT] = 1.0f;
|
|
|
|
}
|
|
|
|
else if(DuplicateStereo)
|
|
|
|
{
|
|
|
|
Matrix[FRONT_LEFT][SIDE_LEFT] = 0.0f;
|
|
|
|
Matrix[FRONT_RIGHT][SIDE_RIGHT] = 0.0f;
|
|
|
|
Matrix[FRONT_LEFT][BACK_LEFT] = 0.0f;
|
|
|
|
Matrix[FRONT_RIGHT][BACK_RIGHT] = 0.0f;
|
|
|
|
}
|
|
|
|
|
2009-10-25 13:26:19 +00:00
|
|
|
/* Get current buffer queue item */
|
2009-10-25 11:39:36 +00:00
|
|
|
BufferListItem = ALSource->queue;
|
|
|
|
for(i = 0;i < BuffersPlayed && BufferListItem;i++)
|
|
|
|
BufferListItem = BufferListItem->next;
|
|
|
|
|
2009-09-16 00:56:31 +00:00
|
|
|
while(State == AL_PLAYING && j < SamplesToDo)
|
2008-01-21 22:54:15 +00:00
|
|
|
{
|
2009-09-16 00:56:31 +00:00
|
|
|
ALuint DataSize = 0;
|
|
|
|
ALbuffer *ALBuffer;
|
2009-10-25 11:39:36 +00:00
|
|
|
ALshort *Data;
|
2009-09-16 00:56:31 +00:00
|
|
|
ALuint BufferSize;
|
|
|
|
|
|
|
|
/* Get buffer info */
|
2009-10-25 11:39:36 +00:00
|
|
|
if((ALBuffer=BufferListItem->buffer) != NULL)
|
2008-08-14 12:43:52 +00:00
|
|
|
{
|
2009-10-25 11:39:36 +00:00
|
|
|
Data = ALBuffer->data;
|
|
|
|
DataSize = ALBuffer->size;
|
|
|
|
DataSize /= Channels * Bytes;
|
2008-08-14 12:43:52 +00:00
|
|
|
}
|
2009-10-25 11:39:36 +00:00
|
|
|
if(DataPosInt >= DataSize)
|
|
|
|
goto skipmix;
|
2008-01-21 22:54:15 +00:00
|
|
|
|
2009-10-25 11:39:36 +00:00
|
|
|
if(BufferListItem->next)
|
2009-09-16 00:56:31 +00:00
|
|
|
{
|
2009-10-25 11:39:36 +00:00
|
|
|
ALbuffer *NextBuf = BufferListItem->next->buffer;
|
|
|
|
if(NextBuf && NextBuf->data)
|
2009-09-16 00:56:31 +00:00
|
|
|
{
|
2009-10-25 15:31:28 +00:00
|
|
|
ALint ulExtraSamples = BUFFER_PADDING*Channels*Bytes;
|
|
|
|
ulExtraSamples = min(NextBuf->size, ulExtraSamples);
|
2009-10-25 11:39:36 +00:00
|
|
|
memcpy(&Data[DataSize*Channels], NextBuf->data, ulExtraSamples);
|
2009-09-16 00:56:31 +00:00
|
|
|
}
|
2009-10-25 11:39:36 +00:00
|
|
|
}
|
|
|
|
else if(ALSource->bLooping)
|
|
|
|
{
|
|
|
|
ALbuffer *NextBuf = ALSource->queue->buffer;
|
|
|
|
if(NextBuf && NextBuf->data)
|
2009-09-16 00:56:31 +00:00
|
|
|
{
|
2009-10-25 15:31:28 +00:00
|
|
|
ALint ulExtraSamples = BUFFER_PADDING*Channels*Bytes;
|
|
|
|
ulExtraSamples = min(NextBuf->size, ulExtraSamples);
|
2009-10-25 11:39:36 +00:00
|
|
|
memcpy(&Data[DataSize*Channels], NextBuf->data, ulExtraSamples);
|
2009-09-16 00:56:31 +00:00
|
|
|
}
|
|
|
|
}
|
2009-10-25 11:39:36 +00:00
|
|
|
else
|
2009-10-25 15:31:28 +00:00
|
|
|
memset(&Data[DataSize*Channels], 0, (BUFFER_PADDING*Channels*Bytes));
|
2008-07-24 07:41:25 +00:00
|
|
|
|
2009-10-25 13:16:21 +00:00
|
|
|
/* Compute the gain steps for each output channel */
|
|
|
|
for(i = 0;i < OUTPUTCHANNELS;i++)
|
|
|
|
dryGainStep[i] = (ALSource->Params.DryGains[i]-
|
|
|
|
DrySend[i]) / rampLength;
|
|
|
|
for(i = 0;i < MAX_SENDS;i++)
|
|
|
|
wetGainStep[i] = (ALSource->Params.WetGains[i]-
|
|
|
|
WetSend[i]) / rampLength;
|
|
|
|
|
2009-10-25 12:34:47 +00:00
|
|
|
/* Figure out how many samples we can mix. */
|
|
|
|
DataSize64 = DataSize;
|
|
|
|
DataSize64 <<= FRACTIONBITS;
|
|
|
|
DataPos64 = DataPosInt;
|
|
|
|
DataPos64 <<= FRACTIONBITS;
|
|
|
|
DataPos64 += DataPosFrac;
|
|
|
|
BufferSize = (ALuint)((DataSize64-DataPos64+(increment-1)) / increment);
|
|
|
|
|
|
|
|
BufferSize = min(BufferSize, (SamplesToDo-j));
|
2009-10-25 11:39:36 +00:00
|
|
|
|
2009-09-16 00:56:31 +00:00
|
|
|
/* Actual sample mixing loop */
|
|
|
|
k = 0;
|
|
|
|
Data += DataPosInt*Channels;
|
2007-11-14 02:02:18 +00:00
|
|
|
|
2009-09-16 00:56:31 +00:00
|
|
|
if(Channels == 1) /* Mono */
|
|
|
|
{
|
|
|
|
ALfloat outsamp;
|
2009-01-24 21:57:01 +00:00
|
|
|
|
2009-09-16 00:56:31 +00:00
|
|
|
while(BufferSize--)
|
|
|
|
{
|
|
|
|
for(i = 0;i < OUTPUTCHANNELS;i++)
|
|
|
|
DrySend[i] += dryGainStep[i];
|
|
|
|
for(i = 0;i < MAX_SENDS;i++)
|
|
|
|
WetSend[i] += wetGainStep[i];
|
|
|
|
|
|
|
|
/* First order interpolator */
|
|
|
|
value = lerp(Data[k], Data[k+1], DataPosFrac);
|
|
|
|
|
|
|
|
/* Direct path final mix buffer and panning */
|
|
|
|
outsamp = lpFilter4P(DryFilter, 0, value);
|
|
|
|
DryBuffer[j][FRONT_LEFT] += outsamp*DrySend[FRONT_LEFT];
|
|
|
|
DryBuffer[j][FRONT_RIGHT] += outsamp*DrySend[FRONT_RIGHT];
|
|
|
|
DryBuffer[j][SIDE_LEFT] += outsamp*DrySend[SIDE_LEFT];
|
|
|
|
DryBuffer[j][SIDE_RIGHT] += outsamp*DrySend[SIDE_RIGHT];
|
|
|
|
DryBuffer[j][BACK_LEFT] += outsamp*DrySend[BACK_LEFT];
|
|
|
|
DryBuffer[j][BACK_RIGHT] += outsamp*DrySend[BACK_RIGHT];
|
|
|
|
DryBuffer[j][FRONT_CENTER] += outsamp*DrySend[FRONT_CENTER];
|
|
|
|
DryBuffer[j][BACK_CENTER] += outsamp*DrySend[BACK_CENTER];
|
|
|
|
|
|
|
|
/* Room path final mix buffer and panning */
|
|
|
|
for(i = 0;i < MAX_SENDS;i++)
|
|
|
|
{
|
|
|
|
outsamp = lpFilter2P(WetFilter[i], 0, value);
|
|
|
|
WetBuffer[i][j] += outsamp*WetSend[i];
|
|
|
|
}
|
2008-08-14 12:43:52 +00:00
|
|
|
|
2009-09-16 00:56:31 +00:00
|
|
|
DataPosFrac += increment;
|
|
|
|
k += DataPosFrac>>FRACTIONBITS;
|
|
|
|
DataPosFrac &= FRACTIONMASK;
|
|
|
|
j++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if(Channels == 2) /* Stereo */
|
|
|
|
{
|
|
|
|
const int chans[] = {
|
|
|
|
FRONT_LEFT, FRONT_RIGHT
|
|
|
|
};
|
2009-01-24 21:57:01 +00:00
|
|
|
|
|
|
|
#define DO_MIX() do { \
|
2009-04-12 03:04:46 +00:00
|
|
|
for(i = 0;i < MAX_SENDS;i++) \
|
|
|
|
WetSend[i] += wetGainStep[i]*BufferSize; \
|
2009-01-24 21:57:01 +00:00
|
|
|
while(BufferSize--) \
|
|
|
|
{ \
|
|
|
|
for(i = 0;i < OUTPUTCHANNELS;i++) \
|
|
|
|
DrySend[i] += dryGainStep[i]; \
|
|
|
|
\
|
|
|
|
for(i = 0;i < Channels;i++) \
|
|
|
|
{ \
|
|
|
|
value = lerp(Data[k*Channels + i], Data[(k+1)*Channels + i], DataPosFrac); \
|
2009-09-24 15:52:51 +00:00
|
|
|
value = lpFilter2P(DryFilter, chans[i]*2, value)*DrySend[chans[i]]; \
|
|
|
|
for(out = 0;out < OUTPUTCHANNELS;out++) \
|
|
|
|
DryBuffer[j][out] += value*Matrix[chans[i]][out]; \
|
2009-01-24 21:57:01 +00:00
|
|
|
} \
|
|
|
|
\
|
|
|
|
DataPosFrac += increment; \
|
|
|
|
k += DataPosFrac>>FRACTIONBITS; \
|
|
|
|
DataPosFrac &= FRACTIONMASK; \
|
|
|
|
j++; \
|
|
|
|
} \
|
|
|
|
} while(0)
|
|
|
|
|
2009-09-16 00:56:31 +00:00
|
|
|
DO_MIX();
|
|
|
|
}
|
|
|
|
else if(Channels == 4) /* Quad */
|
|
|
|
{
|
|
|
|
const int chans[] = {
|
|
|
|
FRONT_LEFT, FRONT_RIGHT,
|
|
|
|
BACK_LEFT, BACK_RIGHT
|
|
|
|
};
|
2009-01-26 06:11:07 +00:00
|
|
|
|
2009-09-16 00:56:31 +00:00
|
|
|
DO_MIX();
|
|
|
|
}
|
|
|
|
else if(Channels == 6) /* 5.1 */
|
|
|
|
{
|
|
|
|
const int chans[] = {
|
|
|
|
FRONT_LEFT, FRONT_RIGHT,
|
|
|
|
FRONT_CENTER, LFE,
|
|
|
|
BACK_LEFT, BACK_RIGHT
|
|
|
|
};
|
2009-01-24 21:57:01 +00:00
|
|
|
|
2009-09-16 00:56:31 +00:00
|
|
|
DO_MIX();
|
|
|
|
}
|
|
|
|
else if(Channels == 7) /* 6.1 */
|
|
|
|
{
|
|
|
|
const int chans[] = {
|
|
|
|
FRONT_LEFT, FRONT_RIGHT,
|
|
|
|
FRONT_CENTER, LFE,
|
|
|
|
BACK_CENTER,
|
|
|
|
SIDE_LEFT, SIDE_RIGHT
|
|
|
|
};
|
|
|
|
|
|
|
|
DO_MIX();
|
|
|
|
}
|
|
|
|
else if(Channels == 8) /* 7.1 */
|
|
|
|
{
|
|
|
|
const int chans[] = {
|
|
|
|
FRONT_LEFT, FRONT_RIGHT,
|
|
|
|
FRONT_CENTER, LFE,
|
|
|
|
BACK_LEFT, BACK_RIGHT,
|
|
|
|
SIDE_LEFT, SIDE_RIGHT
|
|
|
|
};
|
|
|
|
|
|
|
|
DO_MIX();
|
2009-01-24 21:57:01 +00:00
|
|
|
#undef DO_MIX
|
2009-09-16 00:56:31 +00:00
|
|
|
}
|
|
|
|
else /* Unknown? */
|
|
|
|
{
|
|
|
|
for(i = 0;i < OUTPUTCHANNELS;i++)
|
|
|
|
DrySend[i] += dryGainStep[i]*BufferSize;
|
|
|
|
for(i = 0;i < MAX_SENDS;i++)
|
|
|
|
WetSend[i] += wetGainStep[i]*BufferSize;
|
|
|
|
while(BufferSize--)
|
|
|
|
{
|
|
|
|
DataPosFrac += increment;
|
|
|
|
k += DataPosFrac>>FRACTIONBITS;
|
|
|
|
DataPosFrac &= FRACTIONMASK;
|
|
|
|
j++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
DataPosInt += k;
|
|
|
|
|
|
|
|
skipmix:
|
|
|
|
/* Handle looping sources */
|
2009-10-25 11:39:36 +00:00
|
|
|
if(DataPosInt >= DataSize)
|
2009-09-16 00:56:31 +00:00
|
|
|
{
|
2009-10-25 11:39:36 +00:00
|
|
|
if(BuffersPlayed < (ALSource->BuffersInQueue-1))
|
2009-09-16 00:56:31 +00:00
|
|
|
{
|
2009-10-25 11:39:36 +00:00
|
|
|
BufferListItem = BufferListItem->next;
|
|
|
|
BuffersPlayed++;
|
|
|
|
DataPosInt -= DataSize;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if(!ALSource->bLooping)
|
2009-09-16 00:56:31 +00:00
|
|
|
{
|
2009-10-25 11:39:36 +00:00
|
|
|
State = AL_STOPPED;
|
2009-09-16 00:56:31 +00:00
|
|
|
BufferListItem = ALSource->queue;
|
2009-10-25 11:39:36 +00:00
|
|
|
BuffersPlayed = ALSource->BuffersInQueue;
|
|
|
|
DataPosInt = 0;
|
|
|
|
DataPosFrac = 0;
|
2008-01-21 22:54:15 +00:00
|
|
|
}
|
2009-09-16 00:56:31 +00:00
|
|
|
else
|
2008-01-21 22:54:15 +00:00
|
|
|
{
|
2009-10-25 11:39:36 +00:00
|
|
|
BufferListItem = ALSource->queue;
|
|
|
|
BuffersPlayed = 0;
|
2009-10-25 13:16:21 +00:00
|
|
|
if(ALSource->BuffersInQueue == 1)
|
2009-10-25 11:39:36 +00:00
|
|
|
DataPosInt %= DataSize;
|
2009-09-16 00:56:31 +00:00
|
|
|
else
|
2009-10-25 11:39:36 +00:00
|
|
|
DataPosInt -= DataSize;
|
2007-11-14 02:02:18 +00:00
|
|
|
}
|
|
|
|
}
|
2008-01-21 22:54:15 +00:00
|
|
|
}
|
2009-09-16 00:56:31 +00:00
|
|
|
}
|
|
|
|
|
2009-10-25 11:39:36 +00:00
|
|
|
/* Update source info */
|
|
|
|
ALSource->state = State;
|
|
|
|
ALSource->BuffersPlayed = BuffersPlayed;
|
|
|
|
ALSource->position = DataPosInt;
|
|
|
|
ALSource->position_fraction = DataPosFrac;
|
|
|
|
ALSource->Buffer = BufferListItem->buffer;
|
|
|
|
|
|
|
|
for(i = 0;i < OUTPUTCHANNELS;i++)
|
|
|
|
ALSource->DryGains[i] = DrySend[i];
|
|
|
|
for(i = 0;i < MAX_SENDS;i++)
|
|
|
|
ALSource->WetGains[i] = WetSend[i];
|
|
|
|
|
2009-10-25 12:03:22 +00:00
|
|
|
ALSource->FirstStart = AL_FALSE;
|
2009-10-25 11:39:36 +00:00
|
|
|
|
2009-09-16 00:56:31 +00:00
|
|
|
if((ALSource=ALSource->next) != NULL)
|
|
|
|
goto another_source;
|
|
|
|
}
|
|
|
|
|
2009-09-16 02:30:27 +00:00
|
|
|
ALvoid aluMixData(ALCdevice *device, ALvoid *buffer, ALsizei size)
|
2009-09-16 00:56:31 +00:00
|
|
|
{
|
2009-10-09 08:06:33 +00:00
|
|
|
float (*DryBuffer)[OUTPUTCHANNELS];
|
2009-09-16 00:56:31 +00:00
|
|
|
ALuint SamplesToDo;
|
|
|
|
ALeffectslot *ALEffectSlot;
|
2009-09-16 02:30:27 +00:00
|
|
|
ALCcontext *ALContext;
|
2009-09-16 00:56:31 +00:00
|
|
|
int fpuState;
|
2009-10-20 18:54:04 +00:00
|
|
|
ALuint i, c;
|
2009-09-16 00:56:31 +00:00
|
|
|
|
2009-09-16 02:30:27 +00:00
|
|
|
SuspendContext(NULL);
|
2009-09-16 00:56:31 +00:00
|
|
|
|
|
|
|
#if defined(HAVE_FESETROUND)
|
|
|
|
fpuState = fegetround();
|
|
|
|
fesetround(FE_TOWARDZERO);
|
|
|
|
#elif defined(HAVE__CONTROLFP)
|
|
|
|
fpuState = _controlfp(0, 0);
|
|
|
|
_controlfp(_RC_CHOP, _MCW_RC);
|
|
|
|
#else
|
|
|
|
(void)fpuState;
|
|
|
|
#endif
|
|
|
|
|
2009-10-09 08:06:33 +00:00
|
|
|
DryBuffer = device->DryBuffer;
|
2009-09-16 00:56:31 +00:00
|
|
|
while(size > 0)
|
|
|
|
{
|
|
|
|
/* Setup variables */
|
|
|
|
SamplesToDo = min(size, BUFFERSIZE);
|
|
|
|
|
|
|
|
/* Clear mixing buffer */
|
|
|
|
memset(DryBuffer, 0, SamplesToDo*OUTPUTCHANNELS*sizeof(ALfloat));
|
|
|
|
|
2009-10-20 18:54:04 +00:00
|
|
|
for(c = 0;c < device->NumContexts;c++)
|
2008-01-21 22:54:15 +00:00
|
|
|
{
|
2009-10-20 18:54:04 +00:00
|
|
|
ALContext = device->Contexts[c];
|
2009-10-20 20:38:02 +00:00
|
|
|
SuspendContext(ALContext);
|
|
|
|
|
2009-09-16 00:56:31 +00:00
|
|
|
MixSomeSources(ALContext, DryBuffer, SamplesToDo);
|
|
|
|
|
|
|
|
/* effect slot processing */
|
|
|
|
ALEffectSlot = ALContext->AuxiliaryEffectSlot;
|
|
|
|
while(ALEffectSlot)
|
|
|
|
{
|
|
|
|
if(ALEffectSlot->EffectState)
|
|
|
|
ALEffect_Process(ALEffectSlot->EffectState, ALEffectSlot, SamplesToDo, ALEffectSlot->WetBuffer, DryBuffer);
|
Implement AL_EFFECT_REVERB
Here is a quick description of how the reverb effect works:
+--->---+*(4)
| V new sample
+-----+---+---+ |
|extra|ltr|ref| <- +*(1)
+-----+---+---+
(3,5)*| |*(2)
+-->|
V
out sample
1) Apply master reverb gain to incoming sample and place it at the head of the
buffer. The master reverb gainhf was already applied when the source was
initially mixed.
2) Copy the delayed reflection sample to an output sample and apply the
reflection gain.
3) Apply the late reverb gain to the late reverb sample
4) Copy the end of the buffer, applying a decay gain and the decay hf ratio,
and add to the late reverb.
5) Copy the late reverb sample, adding to the output sample.
Then the head and sampling points are shifted forward, and done again for each
new sample. The extra buffer length is determined by the Reverb Density
property. A value of 0 gives a length of 0.1 seconds (long, with fairly
distinct echos) , and 1 gives 0.075 seconds (short, indistinct echos).
The decay gain is calculated such that after a number of loops to satisfy the
Decay Time, a sample will be 1/32768th as powerful (virtually insignificant to
the resulting output, and only getting further reduced). It is calculated as:
DecayGain = pow(1.0f/32768.0f, 1.0/(DecayTime/ExtraLength));
Things to note: Reverb Diffusion is not currently handled, nor is Decay HF
Limit. Decay HF Ratios above 1 probably give incorrect results. Also, this
method likely sucks, but it's the best I can come up with before release. :)
2008-01-19 05:25:40 +00:00
|
|
|
|
2009-09-16 00:56:31 +00:00
|
|
|
for(i = 0;i < SamplesToDo;i++)
|
|
|
|
ALEffectSlot->WetBuffer[i] = 0.0f;
|
|
|
|
ALEffectSlot = ALEffectSlot->next;
|
|
|
|
}
|
2009-10-20 20:38:02 +00:00
|
|
|
ProcessContext(ALContext);
|
2008-01-21 22:54:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//Post processing loop
|
2009-09-16 02:30:27 +00:00
|
|
|
switch(device->Format)
|
2008-01-21 22:54:15 +00:00
|
|
|
{
|
2009-08-15 20:20:35 +00:00
|
|
|
#define CHECK_WRITE_FORMAT(bits, type, func, isWin) \
|
|
|
|
case AL_FORMAT_MONO##bits: \
|
|
|
|
for(i = 0;i < SamplesToDo;i++) \
|
|
|
|
{ \
|
|
|
|
((type*)buffer)[0] = (func)(DryBuffer[i][FRONT_LEFT] + \
|
|
|
|
DryBuffer[i][FRONT_RIGHT]); \
|
|
|
|
buffer = ((type*)buffer) + 1; \
|
|
|
|
} \
|
|
|
|
break; \
|
|
|
|
case AL_FORMAT_STEREO##bits: \
|
2009-09-16 02:30:27 +00:00
|
|
|
if(device->Bs2b) \
|
2009-08-15 20:20:35 +00:00
|
|
|
{ \
|
|
|
|
for(i = 0;i < SamplesToDo;i++) \
|
|
|
|
{ \
|
|
|
|
float samples[2]; \
|
|
|
|
samples[0] = DryBuffer[i][FRONT_LEFT]; \
|
|
|
|
samples[1] = DryBuffer[i][FRONT_RIGHT]; \
|
2009-09-16 02:30:27 +00:00
|
|
|
bs2b_cross_feed(device->Bs2b, samples); \
|
2009-08-15 20:20:35 +00:00
|
|
|
((type*)buffer)[0] = (func)(samples[0]); \
|
|
|
|
((type*)buffer)[1] = (func)(samples[1]); \
|
|
|
|
buffer = ((type*)buffer) + 2; \
|
|
|
|
} \
|
|
|
|
} \
|
|
|
|
else \
|
|
|
|
{ \
|
|
|
|
for(i = 0;i < SamplesToDo;i++) \
|
|
|
|
{ \
|
|
|
|
((type*)buffer)[0] = (func)(DryBuffer[i][FRONT_LEFT]); \
|
|
|
|
((type*)buffer)[1] = (func)(DryBuffer[i][FRONT_RIGHT]); \
|
|
|
|
buffer = ((type*)buffer) + 2; \
|
|
|
|
} \
|
|
|
|
} \
|
|
|
|
break; \
|
|
|
|
case AL_FORMAT_QUAD##bits: \
|
|
|
|
for(i = 0;i < SamplesToDo;i++) \
|
|
|
|
{ \
|
|
|
|
((type*)buffer)[0] = (func)(DryBuffer[i][FRONT_LEFT]); \
|
|
|
|
((type*)buffer)[1] = (func)(DryBuffer[i][FRONT_RIGHT]); \
|
|
|
|
((type*)buffer)[2] = (func)(DryBuffer[i][BACK_LEFT]); \
|
|
|
|
((type*)buffer)[3] = (func)(DryBuffer[i][BACK_RIGHT]); \
|
|
|
|
buffer = ((type*)buffer) + 4; \
|
|
|
|
} \
|
|
|
|
break; \
|
|
|
|
case AL_FORMAT_51CHN##bits: \
|
|
|
|
for(i = 0;i < SamplesToDo;i++) \
|
|
|
|
{ \
|
|
|
|
((type*)buffer)[0] = (func)(DryBuffer[i][FRONT_LEFT]); \
|
|
|
|
((type*)buffer)[1] = (func)(DryBuffer[i][FRONT_RIGHT]); \
|
|
|
|
if(isWin) { \
|
|
|
|
/* Of course, Windows can't use the same ordering... */ \
|
|
|
|
((type*)buffer)[2] = (func)(DryBuffer[i][FRONT_CENTER]); \
|
|
|
|
((type*)buffer)[3] = (func)(DryBuffer[i][LFE]); \
|
|
|
|
((type*)buffer)[4] = (func)(DryBuffer[i][BACK_LEFT]); \
|
|
|
|
((type*)buffer)[5] = (func)(DryBuffer[i][BACK_RIGHT]); \
|
|
|
|
} else { \
|
|
|
|
((type*)buffer)[2] = (func)(DryBuffer[i][BACK_LEFT]); \
|
|
|
|
((type*)buffer)[3] = (func)(DryBuffer[i][BACK_RIGHT]); \
|
|
|
|
((type*)buffer)[4] = (func)(DryBuffer[i][FRONT_CENTER]); \
|
|
|
|
((type*)buffer)[5] = (func)(DryBuffer[i][LFE]); \
|
|
|
|
} \
|
|
|
|
buffer = ((type*)buffer) + 6; \
|
|
|
|
} \
|
|
|
|
break; \
|
|
|
|
case AL_FORMAT_61CHN##bits: \
|
|
|
|
for(i = 0;i < SamplesToDo;i++) \
|
|
|
|
{ \
|
|
|
|
((type*)buffer)[0] = (func)(DryBuffer[i][FRONT_LEFT]); \
|
|
|
|
((type*)buffer)[1] = (func)(DryBuffer[i][FRONT_RIGHT]); \
|
|
|
|
((type*)buffer)[2] = (func)(DryBuffer[i][FRONT_CENTER]); \
|
|
|
|
((type*)buffer)[3] = (func)(DryBuffer[i][LFE]); \
|
|
|
|
((type*)buffer)[4] = (func)(DryBuffer[i][BACK_CENTER]); \
|
|
|
|
((type*)buffer)[5] = (func)(DryBuffer[i][SIDE_LEFT]); \
|
|
|
|
((type*)buffer)[6] = (func)(DryBuffer[i][SIDE_RIGHT]); \
|
|
|
|
buffer = ((type*)buffer) + 7; \
|
|
|
|
} \
|
|
|
|
break; \
|
|
|
|
case AL_FORMAT_71CHN##bits: \
|
|
|
|
for(i = 0;i < SamplesToDo;i++) \
|
|
|
|
{ \
|
|
|
|
((type*)buffer)[0] = (func)(DryBuffer[i][FRONT_LEFT]); \
|
|
|
|
((type*)buffer)[1] = (func)(DryBuffer[i][FRONT_RIGHT]); \
|
|
|
|
if(isWin) { \
|
|
|
|
((type*)buffer)[2] = (func)(DryBuffer[i][FRONT_CENTER]); \
|
|
|
|
((type*)buffer)[3] = (func)(DryBuffer[i][LFE]); \
|
|
|
|
((type*)buffer)[4] = (func)(DryBuffer[i][BACK_LEFT]); \
|
|
|
|
((type*)buffer)[5] = (func)(DryBuffer[i][BACK_RIGHT]); \
|
|
|
|
} else { \
|
|
|
|
((type*)buffer)[2] = (func)(DryBuffer[i][BACK_LEFT]); \
|
|
|
|
((type*)buffer)[3] = (func)(DryBuffer[i][BACK_RIGHT]); \
|
|
|
|
((type*)buffer)[4] = (func)(DryBuffer[i][FRONT_CENTER]); \
|
|
|
|
((type*)buffer)[5] = (func)(DryBuffer[i][LFE]); \
|
|
|
|
} \
|
2009-09-30 23:02:49 +00:00
|
|
|
((type*)buffer)[6] = (func)(DryBuffer[i][SIDE_LEFT]); \
|
|
|
|
((type*)buffer)[7] = (func)(DryBuffer[i][SIDE_RIGHT]); \
|
2009-08-15 20:20:35 +00:00
|
|
|
buffer = ((type*)buffer) + 8; \
|
|
|
|
} \
|
|
|
|
break;
|
2007-12-31 11:29:14 +00:00
|
|
|
|
2009-08-15 20:20:35 +00:00
|
|
|
#define AL_FORMAT_MONO32 AL_FORMAT_MONO_FLOAT32
|
|
|
|
#define AL_FORMAT_STEREO32 AL_FORMAT_STEREO_FLOAT32
|
2008-01-27 15:04:13 +00:00
|
|
|
#ifdef _WIN32
|
2009-08-15 20:20:35 +00:00
|
|
|
CHECK_WRITE_FORMAT(8, ALubyte, aluF2UB, 1)
|
|
|
|
CHECK_WRITE_FORMAT(16, ALshort, aluF2S, 1)
|
|
|
|
CHECK_WRITE_FORMAT(32, ALfloat, aluF2F, 1)
|
2008-01-27 15:04:13 +00:00
|
|
|
#else
|
2009-08-15 20:20:35 +00:00
|
|
|
CHECK_WRITE_FORMAT(8, ALubyte, aluF2UB, 0)
|
|
|
|
CHECK_WRITE_FORMAT(16, ALshort, aluF2S, 0)
|
|
|
|
CHECK_WRITE_FORMAT(32, ALfloat, aluF2F, 0)
|
2008-01-27 15:04:13 +00:00
|
|
|
#endif
|
2009-08-15 20:20:35 +00:00
|
|
|
#undef AL_FORMAT_STEREO32
|
|
|
|
#undef AL_FORMAT_MONO32
|
|
|
|
#undef CHECK_WRITE_FORMAT
|
2007-11-14 02:02:18 +00:00
|
|
|
|
2008-01-21 22:54:15 +00:00
|
|
|
default:
|
|
|
|
break;
|
2007-11-14 02:02:18 +00:00
|
|
|
}
|
2008-01-21 22:54:15 +00:00
|
|
|
|
|
|
|
size -= SamplesToDo;
|
2007-11-14 02:02:18 +00:00
|
|
|
}
|
|
|
|
|
2008-08-08 14:32:21 +00:00
|
|
|
#if defined(HAVE_FESETROUND)
|
|
|
|
fesetround(fpuState);
|
|
|
|
#elif defined(HAVE__CONTROLFP)
|
|
|
|
_controlfp(fpuState, 0xfffff);
|
|
|
|
#endif
|
|
|
|
|
2009-09-16 02:30:27 +00:00
|
|
|
ProcessContext(NULL);
|
2007-11-14 02:02:18 +00:00
|
|
|
}
|
2009-08-27 02:15:17 +00:00
|
|
|
|
|
|
|
ALvoid aluHandleDisconnect(ALCdevice *device)
|
|
|
|
{
|
2009-10-20 18:54:04 +00:00
|
|
|
ALuint i;
|
|
|
|
|
2009-11-01 17:29:20 +00:00
|
|
|
SuspendContext(NULL);
|
2009-10-20 18:54:04 +00:00
|
|
|
for(i = 0;i < device->NumContexts;i++)
|
2009-08-27 02:15:17 +00:00
|
|
|
{
|
2009-09-22 06:31:04 +00:00
|
|
|
ALsource *source;
|
2009-08-27 02:15:17 +00:00
|
|
|
|
2009-10-20 18:54:04 +00:00
|
|
|
SuspendContext(device->Contexts[i]);
|
2009-08-27 02:15:17 +00:00
|
|
|
|
2009-10-20 18:54:04 +00:00
|
|
|
source = device->Contexts[i]->Source;
|
2009-08-27 02:15:17 +00:00
|
|
|
while(source)
|
|
|
|
{
|
|
|
|
if(source->state == AL_PLAYING)
|
|
|
|
{
|
|
|
|
source->state = AL_STOPPED;
|
|
|
|
source->BuffersPlayed = source->BuffersInQueue;
|
|
|
|
source->position = 0;
|
|
|
|
source->position_fraction = 0;
|
|
|
|
}
|
|
|
|
source = source->next;
|
|
|
|
}
|
2009-10-20 18:54:04 +00:00
|
|
|
ProcessContext(device->Contexts[i]);
|
2009-08-27 02:15:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
device->Connected = ALC_FALSE;
|
2009-11-01 17:29:20 +00:00
|
|
|
ProcessContext(NULL);
|
2009-08-27 02:15:17 +00:00
|
|
|
}
|