2010-08-04 06:19:36 +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.
|
2010-08-04 06:19:36 +00:00
|
|
|
* Or go to http://www.gnu.org/copyleft/lgpl.html
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include <math.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <ctype.h>
|
|
|
|
#include <assert.h>
|
|
|
|
|
|
|
|
#include "alMain.h"
|
|
|
|
#include "AL/al.h"
|
|
|
|
#include "AL/alc.h"
|
|
|
|
#include "alSource.h"
|
|
|
|
#include "alBuffer.h"
|
|
|
|
#include "alListener.h"
|
|
|
|
#include "alAuxEffectSlot.h"
|
|
|
|
#include "alu.h"
|
2014-06-13 23:07:25 +00:00
|
|
|
|
|
|
|
#include "mixer_defs.h"
|
2010-08-04 06:19:36 +00:00
|
|
|
|
2011-05-06 07:20:40 +00:00
|
|
|
|
2015-09-26 18:11:04 +00:00
|
|
|
static_assert((INT_MAX>>FRACTIONBITS)/MAX_PITCH > BUFFERSIZE,
|
|
|
|
"MAX_PITCH and/or BUFFERSIZE are too large for FRACTIONBITS!");
|
|
|
|
|
2017-04-08 21:29:08 +00:00
|
|
|
extern inline void InitiatePositionArrays(ALsizei frac, ALint increment, ALsizei *restrict frac_arr, ALint *restrict pos_arr, ALsizei size);
|
2014-06-06 08:52:53 +00:00
|
|
|
|
2014-12-15 20:23:28 +00:00
|
|
|
|
2017-02-19 22:36:06 +00:00
|
|
|
/* BSinc requires up to 11 extra samples before the current position, and 12 after. */
|
|
|
|
static_assert(MAX_PRE_SAMPLES >= 11, "MAX_PRE_SAMPLES must be at least 11!");
|
|
|
|
static_assert(MAX_POST_SAMPLES >= 12, "MAX_POST_SAMPLES must be at least 12!");
|
2015-10-01 07:34:13 +00:00
|
|
|
|
|
|
|
|
2015-09-28 03:55:39 +00:00
|
|
|
static MixerFunc MixSamples = Mix_C;
|
2016-09-06 20:21:11 +00:00
|
|
|
static HrtfMixerFunc MixHrtfSamples = MixHrtf_C;
|
2015-09-28 03:55:39 +00:00
|
|
|
static ResamplerFunc ResampleSamples = Resample_point32_C;
|
2014-06-06 08:52:53 +00:00
|
|
|
|
2016-09-06 20:21:11 +00:00
|
|
|
MixerFunc SelectMixer(void)
|
2014-11-23 18:49:54 +00:00
|
|
|
{
|
|
|
|
#ifdef HAVE_NEON
|
|
|
|
if((CPUCapFlags&CPU_CAP_NEON))
|
2016-09-06 20:21:11 +00:00
|
|
|
return Mix_Neon;
|
2014-11-23 18:49:54 +00:00
|
|
|
#endif
|
2017-04-21 03:58:32 +00:00
|
|
|
#ifdef HAVE_SSE
|
|
|
|
if((CPUCapFlags&CPU_CAP_SSE))
|
|
|
|
return Mix_SSE;
|
|
|
|
#endif
|
2016-09-06 20:21:11 +00:00
|
|
|
return Mix_C;
|
2014-11-23 18:49:54 +00:00
|
|
|
}
|
|
|
|
|
2016-10-04 23:25:43 +00:00
|
|
|
RowMixerFunc SelectRowMixer(void)
|
|
|
|
{
|
|
|
|
#ifdef HAVE_NEON
|
|
|
|
if((CPUCapFlags&CPU_CAP_NEON))
|
|
|
|
return MixRow_Neon;
|
2017-04-21 03:58:32 +00:00
|
|
|
#endif
|
|
|
|
#ifdef HAVE_SSE
|
|
|
|
if((CPUCapFlags&CPU_CAP_SSE))
|
|
|
|
return MixRow_SSE;
|
2016-10-04 23:25:43 +00:00
|
|
|
#endif
|
|
|
|
return MixRow_C;
|
|
|
|
}
|
|
|
|
|
2016-09-06 20:21:11 +00:00
|
|
|
static inline HrtfMixerFunc SelectHrtfMixer(void)
|
2014-06-13 23:07:25 +00:00
|
|
|
{
|
|
|
|
#ifdef HAVE_NEON
|
|
|
|
if((CPUCapFlags&CPU_CAP_NEON))
|
2016-09-06 20:21:11 +00:00
|
|
|
return MixHrtf_Neon;
|
2014-06-13 23:07:25 +00:00
|
|
|
#endif
|
2017-03-15 02:16:59 +00:00
|
|
|
#ifdef HAVE_SSE
|
|
|
|
if((CPUCapFlags&CPU_CAP_SSE))
|
|
|
|
return MixHrtf_SSE;
|
|
|
|
#endif
|
2014-06-13 23:07:25 +00:00
|
|
|
|
2016-09-06 20:21:11 +00:00
|
|
|
return MixHrtf_C;
|
2014-06-13 23:07:25 +00:00
|
|
|
}
|
|
|
|
|
2017-04-10 16:17:10 +00:00
|
|
|
ResamplerFunc SelectResampler(enum Resampler resampler)
|
2014-06-13 23:07:25 +00:00
|
|
|
{
|
2014-11-02 07:27:26 +00:00
|
|
|
switch(resampler)
|
2014-06-13 23:07:25 +00:00
|
|
|
{
|
|
|
|
case PointResampler:
|
|
|
|
return Resample_point32_C;
|
|
|
|
case LinearResampler:
|
2017-02-13 05:03:30 +00:00
|
|
|
#ifdef HAVE_NEON
|
|
|
|
if((CPUCapFlags&CPU_CAP_NEON))
|
|
|
|
return Resample_lerp32_Neon;
|
|
|
|
#endif
|
2014-06-13 23:07:25 +00:00
|
|
|
#ifdef HAVE_SSE4_1
|
|
|
|
if((CPUCapFlags&CPU_CAP_SSE4_1))
|
|
|
|
return Resample_lerp32_SSE41;
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_SSE2
|
|
|
|
if((CPUCapFlags&CPU_CAP_SSE2))
|
|
|
|
return Resample_lerp32_SSE2;
|
|
|
|
#endif
|
|
|
|
return Resample_lerp32_C;
|
2015-09-28 06:52:16 +00:00
|
|
|
case FIR4Resampler:
|
2017-02-13 05:03:30 +00:00
|
|
|
#ifdef HAVE_NEON
|
|
|
|
if((CPUCapFlags&CPU_CAP_NEON))
|
|
|
|
return Resample_fir4_32_Neon;
|
|
|
|
#endif
|
2014-12-15 21:58:41 +00:00
|
|
|
#ifdef HAVE_SSE4_1
|
|
|
|
if((CPUCapFlags&CPU_CAP_SSE4_1))
|
2015-09-28 06:52:16 +00:00
|
|
|
return Resample_fir4_32_SSE41;
|
2014-12-15 21:58:41 +00:00
|
|
|
#endif
|
2015-10-11 13:38:00 +00:00
|
|
|
#ifdef HAVE_SSE3
|
|
|
|
if((CPUCapFlags&CPU_CAP_SSE3))
|
|
|
|
return Resample_fir4_32_SSE3;
|
2014-12-15 21:58:41 +00:00
|
|
|
#endif
|
2015-09-28 06:52:16 +00:00
|
|
|
return Resample_fir4_32_C;
|
2015-11-05 17:42:08 +00:00
|
|
|
case BSincResampler:
|
2017-02-13 05:03:30 +00:00
|
|
|
#ifdef HAVE_NEON
|
|
|
|
if((CPUCapFlags&CPU_CAP_NEON))
|
|
|
|
return Resample_bsinc32_Neon;
|
|
|
|
#endif
|
2015-11-05 17:42:08 +00:00
|
|
|
#ifdef HAVE_SSE
|
|
|
|
if((CPUCapFlags&CPU_CAP_SSE))
|
|
|
|
return Resample_bsinc32_SSE;
|
|
|
|
#endif
|
|
|
|
return Resample_bsinc32_C;
|
2014-06-13 23:07:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return Resample_point32_C;
|
|
|
|
}
|
|
|
|
|
2015-11-04 14:40:54 +00:00
|
|
|
|
2015-09-28 03:55:39 +00:00
|
|
|
void aluInitMixer(void)
|
|
|
|
{
|
2015-10-15 22:13:19 +00:00
|
|
|
enum Resampler resampler = ResamplerDefault;
|
2015-10-01 07:34:13 +00:00
|
|
|
const char *str;
|
|
|
|
|
|
|
|
if(ConfigValueStr(NULL, NULL, "resampler", &str))
|
|
|
|
{
|
|
|
|
if(strcasecmp(str, "point") == 0 || strcasecmp(str, "none") == 0)
|
2015-10-15 22:13:19 +00:00
|
|
|
resampler = PointResampler;
|
2015-10-01 07:34:13 +00:00
|
|
|
else if(strcasecmp(str, "linear") == 0)
|
2015-10-15 22:13:19 +00:00
|
|
|
resampler = LinearResampler;
|
2015-10-01 07:34:13 +00:00
|
|
|
else if(strcasecmp(str, "sinc4") == 0)
|
2015-10-15 22:13:19 +00:00
|
|
|
resampler = FIR4Resampler;
|
2015-11-05 17:42:08 +00:00
|
|
|
else if(strcasecmp(str, "bsinc") == 0)
|
|
|
|
resampler = BSincResampler;
|
2017-02-19 22:36:06 +00:00
|
|
|
else if(strcasecmp(str, "cubic") == 0 || strcasecmp(str, "sinc8") == 0)
|
2015-10-01 07:34:13 +00:00
|
|
|
{
|
2017-02-19 22:36:06 +00:00
|
|
|
WARN("Resampler option \"%s\" is deprecated, using sinc4\n", str);
|
2015-10-15 22:13:19 +00:00
|
|
|
resampler = FIR4Resampler;
|
2015-10-01 07:34:13 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
char *end;
|
|
|
|
long n = strtol(str, &end, 0);
|
|
|
|
if(*end == '\0' && (n == PointResampler || n == LinearResampler || n == FIR4Resampler))
|
2015-10-15 22:13:19 +00:00
|
|
|
resampler = n;
|
2015-10-01 07:34:13 +00:00
|
|
|
else
|
|
|
|
WARN("Invalid resampler: %s\n", str);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-28 03:55:39 +00:00
|
|
|
MixHrtfSamples = SelectHrtfMixer();
|
|
|
|
MixSamples = SelectMixer();
|
2015-10-15 22:13:19 +00:00
|
|
|
ResampleSamples = SelectResampler(resampler);
|
2015-09-28 03:55:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-05-29 05:27:07 +00:00
|
|
|
static inline ALfloat Sample_ALbyte(ALbyte val)
|
2017-03-31 13:54:46 +00:00
|
|
|
{ return val * (1.0f/128.0f); }
|
2011-10-04 16:47:08 +00:00
|
|
|
|
2013-05-29 05:27:07 +00:00
|
|
|
static inline ALfloat Sample_ALshort(ALshort val)
|
2017-03-31 13:54:46 +00:00
|
|
|
{ return val * (1.0f/32768.0f); }
|
2011-10-04 16:47:08 +00:00
|
|
|
|
2013-05-29 05:27:07 +00:00
|
|
|
static inline ALfloat Sample_ALfloat(ALfloat val)
|
2011-10-04 16:47:08 +00:00
|
|
|
{ return val; }
|
|
|
|
|
|
|
|
#define DECL_TEMPLATE(T) \
|
2017-01-18 15:13:23 +00:00
|
|
|
static inline void Load_##T(ALfloat *dst, const T *src, ALint srcstep, ALsizei samples)\
|
2011-10-04 16:47:08 +00:00
|
|
|
{ \
|
2017-01-18 15:13:23 +00:00
|
|
|
ALsizei i; \
|
2011-10-04 16:47:08 +00:00
|
|
|
for(i = 0;i < samples;i++) \
|
2012-09-27 00:16:25 +00:00
|
|
|
dst[i] = Sample_##T(src[i*srcstep]); \
|
2011-10-04 16:47:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
DECL_TEMPLATE(ALbyte)
|
|
|
|
DECL_TEMPLATE(ALshort)
|
|
|
|
DECL_TEMPLATE(ALfloat)
|
|
|
|
|
|
|
|
#undef DECL_TEMPLATE
|
|
|
|
|
2017-01-18 15:13:23 +00:00
|
|
|
static void LoadSamples(ALfloat *dst, const ALvoid *src, ALint srcstep, enum FmtType srctype, ALsizei samples)
|
2011-10-04 16:47:08 +00:00
|
|
|
{
|
|
|
|
switch(srctype)
|
|
|
|
{
|
|
|
|
case FmtByte:
|
2012-09-27 00:16:25 +00:00
|
|
|
Load_ALbyte(dst, src, srcstep, samples);
|
2011-10-04 16:47:08 +00:00
|
|
|
break;
|
|
|
|
case FmtShort:
|
2012-09-27 00:16:25 +00:00
|
|
|
Load_ALshort(dst, src, srcstep, samples);
|
2011-10-04 16:47:08 +00:00
|
|
|
break;
|
|
|
|
case FmtFloat:
|
2012-09-27 00:16:25 +00:00
|
|
|
Load_ALfloat(dst, src, srcstep, samples);
|
2011-10-04 16:47:08 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-01-18 15:13:23 +00:00
|
|
|
static inline void SilenceSamples(ALfloat *dst, ALsizei samples)
|
2011-10-04 16:47:08 +00:00
|
|
|
{
|
2017-01-18 15:13:23 +00:00
|
|
|
ALsizei i;
|
2011-10-04 16:47:08 +00:00
|
|
|
for(i = 0;i < samples;i++)
|
|
|
|
dst[i] = 0.0f;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-05-19 08:54:52 +00:00
|
|
|
static const ALfloat *DoFilters(ALfilterState *lpfilter, ALfilterState *hpfilter,
|
|
|
|
ALfloat *restrict dst, const ALfloat *restrict src,
|
2017-01-18 15:13:23 +00:00
|
|
|
ALsizei numsamples, enum ActiveFilters type)
|
2012-09-11 12:24:19 +00:00
|
|
|
{
|
2017-01-18 15:13:23 +00:00
|
|
|
ALsizei i;
|
2014-05-17 14:17:48 +00:00
|
|
|
switch(type)
|
|
|
|
{
|
|
|
|
case AF_None:
|
2015-10-24 05:34:46 +00:00
|
|
|
ALfilterState_processPassthru(lpfilter, src, numsamples);
|
|
|
|
ALfilterState_processPassthru(hpfilter, src, numsamples);
|
2014-05-17 14:17:48 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case AF_LowPass:
|
2014-05-18 12:02:34 +00:00
|
|
|
ALfilterState_process(lpfilter, dst, src, numsamples);
|
2015-10-24 05:34:46 +00:00
|
|
|
ALfilterState_processPassthru(hpfilter, dst, numsamples);
|
2014-05-19 08:54:52 +00:00
|
|
|
return dst;
|
2014-05-17 14:54:25 +00:00
|
|
|
case AF_HighPass:
|
2015-10-24 05:34:46 +00:00
|
|
|
ALfilterState_processPassthru(lpfilter, src, numsamples);
|
2014-05-18 12:02:34 +00:00
|
|
|
ALfilterState_process(hpfilter, dst, src, numsamples);
|
2014-05-19 08:54:52 +00:00
|
|
|
return dst;
|
2014-05-17 14:54:25 +00:00
|
|
|
|
|
|
|
case AF_BandPass:
|
2014-05-18 12:02:34 +00:00
|
|
|
for(i = 0;i < numsamples;)
|
|
|
|
{
|
2014-12-18 17:23:55 +00:00
|
|
|
ALfloat temp[256];
|
2017-01-18 15:13:23 +00:00
|
|
|
ALsizei todo = mini(256, numsamples-i);
|
2014-05-18 12:02:34 +00:00
|
|
|
|
2014-05-21 21:59:21 +00:00
|
|
|
ALfilterState_process(lpfilter, temp, src+i, todo);
|
|
|
|
ALfilterState_process(hpfilter, dst+i, temp, todo);
|
2014-05-18 12:02:34 +00:00
|
|
|
i += todo;
|
|
|
|
}
|
2014-05-19 08:54:52 +00:00
|
|
|
return dst;
|
2014-05-17 14:17:48 +00:00
|
|
|
}
|
2014-05-19 08:54:52 +00:00
|
|
|
return src;
|
2012-09-11 12:24:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-02-26 00:46:30 +00:00
|
|
|
ALboolean MixSource(ALvoice *voice, ALsource *Source, ALCdevice *Device, ALsizei SamplesToDo)
|
2010-09-22 16:38:24 +00:00
|
|
|
{
|
|
|
|
ALbufferlistitem *BufferListItem;
|
2017-04-18 07:58:33 +00:00
|
|
|
ALbufferlistitem *BufferLoopItem;
|
2017-03-21 02:22:41 +00:00
|
|
|
ALsizei NumChannels, SampleSize;
|
|
|
|
ResamplerFunc Resample;
|
|
|
|
ALsizei DataPosInt;
|
2017-04-08 21:29:08 +00:00
|
|
|
ALsizei DataPosFrac;
|
2010-11-25 21:17:51 +00:00
|
|
|
ALint64 DataSize64;
|
2017-03-21 02:22:41 +00:00
|
|
|
ALint increment;
|
2017-01-18 15:13:23 +00:00
|
|
|
ALsizei Counter;
|
2017-03-21 02:22:41 +00:00
|
|
|
ALsizei OutPos;
|
2017-01-18 15:13:23 +00:00
|
|
|
ALsizei IrSize;
|
2017-03-21 02:22:41 +00:00
|
|
|
bool isplaying;
|
2017-03-12 02:04:06 +00:00
|
|
|
ALsizei chan;
|
2017-02-22 00:31:59 +00:00
|
|
|
ALsizei send;
|
2010-09-22 16:38:24 +00:00
|
|
|
|
|
|
|
/* Get source info */
|
2017-03-21 02:22:41 +00:00
|
|
|
isplaying = true; /* Will only be called while playing. */
|
2017-04-18 07:58:33 +00:00
|
|
|
DataPosInt = ATOMIC_LOAD(&voice->position, almemory_order_acquire);
|
2017-02-27 23:35:15 +00:00
|
|
|
DataPosFrac = ATOMIC_LOAD(&voice->position_fraction, almemory_order_relaxed);
|
|
|
|
BufferListItem = ATOMIC_LOAD(&voice->current_buffer, almemory_order_relaxed);
|
2017-04-18 07:58:33 +00:00
|
|
|
BufferLoopItem = ATOMIC_LOAD(&voice->loop_buffer, almemory_order_relaxed);
|
2017-03-07 06:58:04 +00:00
|
|
|
NumChannels = voice->NumChannels;
|
|
|
|
SampleSize = voice->SampleSize;
|
2014-11-02 07:27:26 +00:00
|
|
|
increment = voice->Step;
|
2010-09-22 16:38:24 +00:00
|
|
|
|
2017-03-10 18:47:43 +00:00
|
|
|
IrSize = (Device->HrtfHandle ? Device->HrtfHandle->irSize : 0);
|
2014-11-29 11:32:25 +00:00
|
|
|
|
2014-11-02 07:27:26 +00:00
|
|
|
Resample = ((increment == FRACTIONONE && DataPosFrac == 0) ?
|
2015-09-28 03:55:39 +00:00
|
|
|
Resample_copy32_C : ResampleSamples);
|
2010-09-22 16:38:24 +00:00
|
|
|
|
2017-03-11 14:26:05 +00:00
|
|
|
Counter = (voice->Flags&VOICE_IS_MOVING) ? SamplesToDo : 0;
|
2010-11-26 20:59:45 +00:00
|
|
|
OutPos = 0;
|
2010-09-22 16:38:24 +00:00
|
|
|
do {
|
2017-01-18 15:13:23 +00:00
|
|
|
ALsizei SrcBufferSize, DstBufferSize;
|
2010-09-22 16:38:24 +00:00
|
|
|
|
2013-10-26 15:49:37 +00:00
|
|
|
/* Figure out how many buffer samples will be needed */
|
2014-03-24 00:33:57 +00:00
|
|
|
DataSize64 = SamplesToDo-OutPos;
|
2010-11-25 19:16:19 +00:00
|
|
|
DataSize64 *= increment;
|
|
|
|
DataSize64 += DataPosFrac+FRACTIONMASK;
|
|
|
|
DataSize64 >>= FRACTIONBITS;
|
2015-10-15 22:13:19 +00:00
|
|
|
DataSize64 += MAX_POST_SAMPLES+MAX_PRE_SAMPLES;
|
2010-11-25 19:16:19 +00:00
|
|
|
|
2017-01-18 15:13:23 +00:00
|
|
|
SrcBufferSize = (ALsizei)mini64(DataSize64, BUFFERSIZE);
|
2010-11-25 19:16:19 +00:00
|
|
|
|
2012-09-27 00:16:25 +00:00
|
|
|
/* Figure out how many samples we can actually mix from this. */
|
|
|
|
DataSize64 = SrcBufferSize;
|
2015-10-15 22:13:19 +00:00
|
|
|
DataSize64 -= MAX_POST_SAMPLES+MAX_PRE_SAMPLES;
|
2012-09-27 00:16:25 +00:00
|
|
|
DataSize64 <<= FRACTIONBITS;
|
|
|
|
DataSize64 -= DataPosFrac;
|
|
|
|
|
2017-01-18 15:13:23 +00:00
|
|
|
DstBufferSize = (ALsizei)((DataSize64+(increment-1)) / increment);
|
|
|
|
DstBufferSize = mini(DstBufferSize, (SamplesToDo-OutPos));
|
2012-09-27 00:16:25 +00:00
|
|
|
|
|
|
|
/* Some mixers like having a multiple of 4, so try to give that unless
|
|
|
|
* this is the last update. */
|
|
|
|
if(OutPos+DstBufferSize < SamplesToDo)
|
|
|
|
DstBufferSize &= ~3;
|
|
|
|
|
|
|
|
for(chan = 0;chan < NumChannels;chan++)
|
2010-09-22 16:38:24 +00:00
|
|
|
{
|
2014-05-19 12:46:01 +00:00
|
|
|
const ALfloat *ResampledData;
|
|
|
|
ALfloat *SrcData = Device->SourceData;
|
2017-01-18 15:13:23 +00:00
|
|
|
ALsizei SrcDataSize;
|
2015-10-15 14:29:25 +00:00
|
|
|
|
|
|
|
/* Load the previous samples into the source data first. */
|
2015-10-15 22:13:19 +00:00
|
|
|
memcpy(SrcData, voice->PrevSamples[chan], MAX_PRE_SAMPLES*sizeof(ALfloat));
|
|
|
|
SrcDataSize = MAX_PRE_SAMPLES;
|
2010-11-25 19:16:19 +00:00
|
|
|
|
2012-09-27 00:16:25 +00:00
|
|
|
if(Source->SourceType == AL_STATIC)
|
2010-09-22 16:38:24 +00:00
|
|
|
{
|
2014-05-21 22:37:22 +00:00
|
|
|
const ALbuffer *ALBuffer = BufferListItem->buffer;
|
2012-09-27 00:16:25 +00:00
|
|
|
const ALubyte *Data = ALBuffer->data;
|
2017-01-18 15:13:23 +00:00
|
|
|
ALsizei DataSize;
|
2010-09-22 16:38:24 +00:00
|
|
|
|
2015-10-15 14:29:25 +00:00
|
|
|
/* Offset buffer data to current channel */
|
2014-12-18 16:42:03 +00:00
|
|
|
Data += chan*SampleSize;
|
|
|
|
|
2012-09-27 00:16:25 +00:00
|
|
|
/* If current pos is beyond the loop range, do not loop */
|
2017-04-18 07:58:33 +00:00
|
|
|
if(!BufferLoopItem || DataPosInt >= ALBuffer->LoopEnd)
|
2010-11-26 05:42:15 +00:00
|
|
|
{
|
2017-04-18 07:58:33 +00:00
|
|
|
BufferLoopItem = NULL;
|
2010-11-26 05:42:15 +00:00
|
|
|
|
2015-10-15 14:29:25 +00:00
|
|
|
/* Load what's left to play from the source buffer, and
|
|
|
|
* clear the rest of the temp buffer */
|
2016-11-02 03:49:50 +00:00
|
|
|
DataSize = minu(SrcBufferSize - SrcDataSize,
|
|
|
|
ALBuffer->SampleLen - DataPosInt);
|
2010-11-25 19:16:19 +00:00
|
|
|
|
2016-11-02 03:49:50 +00:00
|
|
|
LoadSamples(&SrcData[SrcDataSize], &Data[DataPosInt * NumChannels*SampleSize],
|
2014-06-29 09:04:05 +00:00
|
|
|
NumChannels, ALBuffer->FmtType, DataSize);
|
2012-09-27 00:16:25 +00:00
|
|
|
SrcDataSize += DataSize;
|
2010-11-25 19:16:19 +00:00
|
|
|
|
2014-06-29 09:04:05 +00:00
|
|
|
SilenceSamples(&SrcData[SrcDataSize], SrcBufferSize - SrcDataSize);
|
2012-09-27 00:16:25 +00:00
|
|
|
SrcDataSize += SrcBufferSize - SrcDataSize;
|
2010-11-26 05:42:15 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-01-18 15:13:23 +00:00
|
|
|
ALsizei LoopStart = ALBuffer->LoopStart;
|
|
|
|
ALsizei LoopEnd = ALBuffer->LoopEnd;
|
2010-11-26 05:42:15 +00:00
|
|
|
|
2015-10-15 14:29:25 +00:00
|
|
|
/* Load what's left of this loop iteration, then load
|
|
|
|
* repeats of the loop section */
|
2017-01-18 15:13:23 +00:00
|
|
|
DataSize = minu(SrcBufferSize - SrcDataSize, LoopEnd - DataPosInt);
|
2010-11-25 19:16:19 +00:00
|
|
|
|
2016-11-02 03:49:50 +00:00
|
|
|
LoadSamples(&SrcData[SrcDataSize], &Data[DataPosInt * NumChannels*SampleSize],
|
2014-06-29 09:04:05 +00:00
|
|
|
NumChannels, ALBuffer->FmtType, DataSize);
|
2010-11-25 19:16:19 +00:00
|
|
|
SrcDataSize += DataSize;
|
2012-09-27 00:16:25 +00:00
|
|
|
|
|
|
|
DataSize = LoopEnd-LoopStart;
|
|
|
|
while(SrcBufferSize > SrcDataSize)
|
|
|
|
{
|
2017-01-18 15:13:23 +00:00
|
|
|
DataSize = mini(SrcBufferSize - SrcDataSize, DataSize);
|
2012-09-27 00:16:25 +00:00
|
|
|
|
2014-12-18 16:42:03 +00:00
|
|
|
LoadSamples(&SrcData[SrcDataSize], &Data[LoopStart * NumChannels*SampleSize],
|
2014-06-29 09:04:05 +00:00
|
|
|
NumChannels, ALBuffer->FmtType, DataSize);
|
2012-09-27 00:16:25 +00:00
|
|
|
SrcDataSize += DataSize;
|
|
|
|
}
|
2010-11-25 19:16:19 +00:00
|
|
|
}
|
2010-09-22 16:38:24 +00:00
|
|
|
}
|
2010-11-26 05:42:15 +00:00
|
|
|
else
|
|
|
|
{
|
2012-09-27 00:16:25 +00:00
|
|
|
/* Crawl the buffer queue to fill in the temp buffer */
|
|
|
|
ALbufferlistitem *tmpiter = BufferListItem;
|
2017-03-21 02:22:41 +00:00
|
|
|
ALsizei pos = DataPosInt;
|
2010-11-25 19:16:19 +00:00
|
|
|
|
2012-09-27 00:16:25 +00:00
|
|
|
while(tmpiter && SrcBufferSize > SrcDataSize)
|
2010-11-25 19:16:19 +00:00
|
|
|
{
|
2012-09-27 00:16:25 +00:00
|
|
|
const ALbuffer *ALBuffer;
|
|
|
|
if((ALBuffer=tmpiter->buffer) != NULL)
|
2010-11-25 19:16:19 +00:00
|
|
|
{
|
2012-09-27 00:16:25 +00:00
|
|
|
const ALubyte *Data = ALBuffer->data;
|
2017-03-21 02:22:41 +00:00
|
|
|
ALsizei DataSize = ALBuffer->SampleLen;
|
2010-11-25 19:16:19 +00:00
|
|
|
|
2012-09-27 00:16:25 +00:00
|
|
|
/* Skip the data already played */
|
|
|
|
if(DataSize <= pos)
|
|
|
|
pos -= DataSize;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
Data += (pos*NumChannels + chan)*SampleSize;
|
|
|
|
DataSize -= pos;
|
|
|
|
pos -= pos;
|
|
|
|
|
|
|
|
DataSize = minu(SrcBufferSize - SrcDataSize, DataSize);
|
2014-06-29 09:04:05 +00:00
|
|
|
LoadSamples(&SrcData[SrcDataSize], Data, NumChannels,
|
|
|
|
ALBuffer->FmtType, DataSize);
|
2012-09-27 00:16:25 +00:00
|
|
|
SrcDataSize += DataSize;
|
|
|
|
}
|
|
|
|
}
|
2017-04-20 02:54:17 +00:00
|
|
|
tmpiter = ATOMIC_LOAD(&tmpiter->next, almemory_order_acquire);
|
2017-04-18 07:58:33 +00:00
|
|
|
if(!tmpiter && BufferLoopItem)
|
|
|
|
tmpiter = BufferLoopItem;
|
2012-09-27 00:16:25 +00:00
|
|
|
else if(!tmpiter)
|
|
|
|
{
|
2014-06-29 09:04:05 +00:00
|
|
|
SilenceSamples(&SrcData[SrcDataSize], SrcBufferSize - SrcDataSize);
|
2012-09-27 00:16:25 +00:00
|
|
|
SrcDataSize += SrcBufferSize - SrcDataSize;
|
2010-11-25 19:16:19 +00:00
|
|
|
}
|
|
|
|
}
|
2010-09-22 16:38:24 +00:00
|
|
|
}
|
|
|
|
|
2015-10-15 14:29:25 +00:00
|
|
|
/* Store the last source samples used for next time. */
|
|
|
|
memcpy(voice->PrevSamples[chan],
|
|
|
|
&SrcData[(increment*DstBufferSize + DataPosFrac)>>FRACTIONBITS],
|
2015-10-15 22:13:19 +00:00
|
|
|
MAX_PRE_SAMPLES*sizeof(ALfloat)
|
2015-10-15 14:29:25 +00:00
|
|
|
);
|
|
|
|
|
2012-09-27 00:16:25 +00:00
|
|
|
/* Now resample, then filter and mix to the appropriate outputs. */
|
2017-02-13 19:29:32 +00:00
|
|
|
ResampledData = Resample(&voice->ResampleState,
|
2015-10-15 22:13:19 +00:00
|
|
|
&SrcData[MAX_PRE_SAMPLES], DataPosFrac, increment,
|
2014-05-19 12:46:01 +00:00
|
|
|
Device->ResampledData, DstBufferSize
|
|
|
|
);
|
2012-09-27 00:16:25 +00:00
|
|
|
{
|
2017-02-16 01:40:26 +00:00
|
|
|
DirectParams *parms = &voice->Direct.Params[chan];
|
2014-05-19 08:54:52 +00:00
|
|
|
const ALfloat *samples;
|
2012-09-14 11:13:18 +00:00
|
|
|
|
2014-05-19 09:24:31 +00:00
|
|
|
samples = DoFilters(
|
2016-07-13 08:39:44 +00:00
|
|
|
&parms->LowPass, &parms->HighPass, Device->FilteredData,
|
|
|
|
ResampledData, DstBufferSize, parms->FilterType
|
2014-05-19 09:24:31 +00:00
|
|
|
);
|
2017-03-10 12:35:32 +00:00
|
|
|
if(!(voice->Flags&VOICE_IS_HRTF))
|
2016-02-14 09:22:01 +00:00
|
|
|
{
|
|
|
|
if(!Counter)
|
2016-10-06 03:33:45 +00:00
|
|
|
memcpy(parms->Gains.Current, parms->Gains.Target,
|
|
|
|
sizeof(parms->Gains.Current));
|
2017-03-10 12:35:32 +00:00
|
|
|
if(!(voice->Flags&VOICE_HAS_NFC))
|
|
|
|
MixSamples(samples, voice->Direct.Channels, voice->Direct.Buffer,
|
|
|
|
parms->Gains.Current, parms->Gains.Target, Counter, OutPos,
|
|
|
|
DstBufferSize
|
|
|
|
);
|
|
|
|
else
|
|
|
|
{
|
2017-03-26 06:48:57 +00:00
|
|
|
static void (*const NfcUpdate[MAX_AMBI_ORDER])(
|
|
|
|
NfcFilter*,float*,const float*,const int
|
|
|
|
) = {
|
|
|
|
NfcFilterUpdate1, NfcFilterUpdate2, NfcFilterUpdate3
|
|
|
|
};
|
2017-03-10 12:35:32 +00:00
|
|
|
ALfloat *nfcsamples = Device->NFCtrlData;
|
2017-03-26 06:48:57 +00:00
|
|
|
ALsizei ord, chanoffset = 0;
|
|
|
|
|
2017-03-10 12:35:32 +00:00
|
|
|
MixSamples(samples,
|
|
|
|
voice->Direct.ChannelsPerOrder[0], voice->Direct.Buffer,
|
|
|
|
parms->Gains.Current, parms->Gains.Target, Counter, OutPos,
|
|
|
|
DstBufferSize
|
|
|
|
);
|
|
|
|
chanoffset += voice->Direct.ChannelsPerOrder[0];
|
2017-03-26 06:48:57 +00:00
|
|
|
for(ord = 1;ord < MAX_AMBI_ORDER+1;ord++)
|
2017-03-10 12:35:32 +00:00
|
|
|
{
|
2017-03-26 06:48:57 +00:00
|
|
|
if(voice->Direct.ChannelsPerOrder[ord] <= 0)
|
|
|
|
break;
|
|
|
|
NfcUpdate[ord-1](&parms->NFCtrlFilter[ord-1], nfcsamples, samples,
|
2017-03-10 12:35:32 +00:00
|
|
|
DstBufferSize);
|
2017-03-26 06:48:57 +00:00
|
|
|
MixSamples(nfcsamples, voice->Direct.ChannelsPerOrder[ord],
|
|
|
|
voice->Direct.Buffer+chanoffset, parms->Gains.Current+chanoffset,
|
|
|
|
parms->Gains.Target+chanoffset, Counter, OutPos, DstBufferSize
|
2017-03-10 12:35:32 +00:00
|
|
|
);
|
2017-03-26 06:48:57 +00:00
|
|
|
chanoffset += voice->Direct.ChannelsPerOrder[ord];
|
2017-03-10 12:35:32 +00:00
|
|
|
}
|
|
|
|
}
|
2016-02-14 09:22:01 +00:00
|
|
|
}
|
2014-11-23 18:49:54 +00:00
|
|
|
else
|
2016-02-14 11:23:06 +00:00
|
|
|
{
|
|
|
|
MixHrtfParams hrtfparams;
|
2016-03-12 04:59:12 +00:00
|
|
|
int lidx, ridx;
|
|
|
|
|
2017-03-12 02:04:06 +00:00
|
|
|
lidx = GetChannelIdxByName(Device->RealOut, FrontLeft);
|
|
|
|
ridx = GetChannelIdxByName(Device->RealOut, FrontRight);
|
|
|
|
assert(lidx != -1 && ridx != -1);
|
|
|
|
|
2016-02-14 11:23:06 +00:00
|
|
|
if(!Counter)
|
|
|
|
{
|
2017-03-12 02:04:06 +00:00
|
|
|
parms->Hrtf.Old = parms->Hrtf.Target;
|
2017-03-12 13:58:27 +00:00
|
|
|
hrtfparams.Coeffs = SAFE_CONST(ALfloat2*,parms->Hrtf.Target.Coeffs);
|
|
|
|
hrtfparams.Delay[0] = parms->Hrtf.Target.Delay[0];
|
|
|
|
hrtfparams.Delay[1] = parms->Hrtf.Target.Delay[1];
|
2017-03-12 02:04:06 +00:00
|
|
|
hrtfparams.Gain = parms->Hrtf.Target.Gain;
|
|
|
|
hrtfparams.GainStep = 0.0f;
|
|
|
|
MixHrtfSamples(
|
|
|
|
voice->Direct.Buffer[lidx], voice->Direct.Buffer[ridx],
|
|
|
|
samples, voice->Offset, OutPos, IrSize, &hrtfparams,
|
|
|
|
&parms->Hrtf.State, DstBufferSize
|
|
|
|
);
|
2016-02-14 11:23:06 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-03-12 02:04:06 +00:00
|
|
|
HrtfState backupstate = parms->Hrtf.State;
|
|
|
|
ALfloat gain;
|
|
|
|
|
|
|
|
/* The old coefficients need to fade to silence
|
|
|
|
* completely since they'll be replaced after the mix.
|
|
|
|
* So it needs to fade out over DstBufferSize instead
|
|
|
|
* of Counter.
|
|
|
|
*/
|
2017-03-12 13:58:27 +00:00
|
|
|
hrtfparams.Coeffs = SAFE_CONST(ALfloat2*,parms->Hrtf.Old.Coeffs);
|
|
|
|
hrtfparams.Delay[0] = parms->Hrtf.Old.Delay[0];
|
|
|
|
hrtfparams.Delay[1] = parms->Hrtf.Old.Delay[1];
|
2017-03-12 02:04:06 +00:00
|
|
|
hrtfparams.Gain = parms->Hrtf.Old.Gain;
|
|
|
|
hrtfparams.GainStep = -hrtfparams.Gain /
|
|
|
|
(ALfloat)DstBufferSize;
|
|
|
|
MixHrtfSamples(
|
|
|
|
voice->Direct.Buffer[lidx], voice->Direct.Buffer[ridx],
|
|
|
|
samples, voice->Offset, OutPos, IrSize, &hrtfparams,
|
|
|
|
&backupstate, DstBufferSize
|
|
|
|
);
|
2016-03-12 04:59:12 +00:00
|
|
|
|
2017-03-12 02:04:06 +00:00
|
|
|
/* The new coefficients need to fade in completely
|
|
|
|
* since they're replacing the old ones. To keep the
|
|
|
|
* source gain fading consistent, interpolate between
|
|
|
|
* the old and new target gain given how much of the
|
|
|
|
* fade time this mix handles.
|
|
|
|
*/
|
|
|
|
gain = lerp(parms->Hrtf.Old.Gain, parms->Hrtf.Target.Gain,
|
2017-03-26 09:44:34 +00:00
|
|
|
(ALfloat)DstBufferSize/Counter);
|
2017-03-12 13:58:27 +00:00
|
|
|
hrtfparams.Coeffs = SAFE_CONST(ALfloat2*,parms->Hrtf.Target.Coeffs);
|
|
|
|
hrtfparams.Delay[0] = parms->Hrtf.Target.Delay[0];
|
|
|
|
hrtfparams.Delay[1] = parms->Hrtf.Target.Delay[1];
|
2017-03-12 02:04:06 +00:00
|
|
|
hrtfparams.Gain = 0.0f;
|
|
|
|
hrtfparams.GainStep = gain / (ALfloat)DstBufferSize;
|
|
|
|
MixHrtfSamples(
|
|
|
|
voice->Direct.Buffer[lidx], voice->Direct.Buffer[ridx],
|
|
|
|
samples, voice->Offset, OutPos, IrSize, &hrtfparams,
|
|
|
|
&parms->Hrtf.State, DstBufferSize
|
|
|
|
);
|
|
|
|
/* Update the old parameters with the result. */
|
|
|
|
parms->Hrtf.Old = parms->Hrtf.Target;
|
2017-03-26 09:44:34 +00:00
|
|
|
if(DstBufferSize < Counter)
|
2017-03-12 02:04:06 +00:00
|
|
|
parms->Hrtf.Old.Gain = hrtfparams.Gain;
|
|
|
|
}
|
2016-02-14 11:23:06 +00:00
|
|
|
}
|
2012-09-27 00:16:25 +00:00
|
|
|
}
|
2012-09-11 12:24:19 +00:00
|
|
|
|
2016-07-26 05:20:47 +00:00
|
|
|
for(send = 0;send < Device->NumAuxSends;send++)
|
2012-09-09 04:34:36 +00:00
|
|
|
{
|
2017-02-16 01:40:26 +00:00
|
|
|
SendParams *parms = &voice->Send[send].Params[chan];
|
2014-05-19 08:54:52 +00:00
|
|
|
const ALfloat *samples;
|
|
|
|
|
2017-02-16 01:40:26 +00:00
|
|
|
if(!voice->Send[send].Buffer)
|
2012-09-09 04:34:36 +00:00
|
|
|
continue;
|
2012-09-11 12:24:19 +00:00
|
|
|
|
2014-05-19 09:24:31 +00:00
|
|
|
samples = DoFilters(
|
2016-07-13 08:39:44 +00:00
|
|
|
&parms->LowPass, &parms->HighPass, Device->FilteredData,
|
|
|
|
ResampledData, DstBufferSize, parms->FilterType
|
2014-05-19 09:24:31 +00:00
|
|
|
);
|
2016-02-14 09:22:01 +00:00
|
|
|
|
|
|
|
if(!Counter)
|
2016-10-06 03:33:45 +00:00
|
|
|
memcpy(parms->Gains.Current, parms->Gains.Target,
|
|
|
|
sizeof(parms->Gains.Current));
|
2017-02-16 01:40:26 +00:00
|
|
|
MixSamples(samples, voice->Send[send].Channels, voice->Send[send].Buffer,
|
2016-10-06 03:33:45 +00:00
|
|
|
parms->Gains.Current, parms->Gains.Target, Counter, OutPos, DstBufferSize
|
2016-07-26 05:20:47 +00:00
|
|
|
);
|
2012-09-09 04:34:36 +00:00
|
|
|
}
|
2012-04-28 06:46:51 +00:00
|
|
|
}
|
2012-09-27 00:16:25 +00:00
|
|
|
/* Update positions */
|
2014-06-03 02:19:22 +00:00
|
|
|
DataPosFrac += increment*DstBufferSize;
|
|
|
|
DataPosInt += DataPosFrac>>FRACTIONBITS;
|
|
|
|
DataPosFrac &= FRACTIONMASK;
|
|
|
|
|
2012-09-27 00:16:25 +00:00
|
|
|
OutPos += DstBufferSize;
|
2014-08-21 10:24:48 +00:00
|
|
|
voice->Offset += DstBufferSize;
|
2017-01-18 15:13:23 +00:00
|
|
|
Counter = maxi(DstBufferSize, Counter) - DstBufferSize;
|
2010-08-04 06:19:36 +00:00
|
|
|
|
|
|
|
/* Handle looping sources */
|
2010-11-25 19:16:19 +00:00
|
|
|
while(1)
|
2010-08-04 06:19:36 +00:00
|
|
|
{
|
2010-11-25 19:16:19 +00:00
|
|
|
const ALbuffer *ALBuffer;
|
2017-01-18 15:13:23 +00:00
|
|
|
ALsizei DataSize = 0;
|
|
|
|
ALsizei LoopStart = 0;
|
|
|
|
ALsizei LoopEnd = 0;
|
2010-11-25 19:16:19 +00:00
|
|
|
|
|
|
|
if((ALBuffer=BufferListItem->buffer) != NULL)
|
|
|
|
{
|
2011-10-03 17:07:50 +00:00
|
|
|
DataSize = ALBuffer->SampleLen;
|
2010-11-25 19:16:19 +00:00
|
|
|
LoopStart = ALBuffer->LoopStart;
|
|
|
|
LoopEnd = ALBuffer->LoopEnd;
|
2017-03-21 02:22:41 +00:00
|
|
|
if(LoopEnd > DataPosInt)
|
2011-02-06 09:07:37 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2017-04-18 07:58:33 +00:00
|
|
|
if(BufferLoopItem && Source->SourceType == AL_STATIC)
|
2011-02-06 09:07:37 +00:00
|
|
|
{
|
2014-05-15 08:44:29 +00:00
|
|
|
assert(LoopEnd > LoopStart);
|
2011-02-06 09:07:37 +00:00
|
|
|
DataPosInt = ((DataPosInt-LoopStart)%(LoopEnd-LoopStart)) + LoopStart;
|
|
|
|
break;
|
2010-11-25 19:16:19 +00:00
|
|
|
}
|
|
|
|
|
2017-03-21 02:22:41 +00:00
|
|
|
if(DataSize > DataPosInt)
|
2011-02-06 09:07:37 +00:00
|
|
|
break;
|
|
|
|
|
2017-04-20 02:54:17 +00:00
|
|
|
BufferListItem = ATOMIC_LOAD(&BufferListItem->next, almemory_order_acquire);
|
|
|
|
if(!BufferListItem)
|
2010-08-04 06:19:36 +00:00
|
|
|
{
|
2017-04-20 02:54:17 +00:00
|
|
|
BufferListItem = BufferLoopItem;
|
|
|
|
if(!BufferListItem)
|
2014-07-31 14:20:36 +00:00
|
|
|
{
|
2017-03-20 23:53:41 +00:00
|
|
|
isplaying = false;
|
2014-07-31 14:20:36 +00:00
|
|
|
DataPosInt = 0;
|
|
|
|
DataPosFrac = 0;
|
|
|
|
break;
|
|
|
|
}
|
2010-08-04 06:19:36 +00:00
|
|
|
}
|
2010-11-25 19:16:19 +00:00
|
|
|
|
|
|
|
DataPosInt -= DataSize;
|
2010-08-04 06:19:36 +00:00
|
|
|
}
|
2017-03-20 23:53:41 +00:00
|
|
|
} while(isplaying && OutPos < SamplesToDo);
|
2010-08-04 06:19:36 +00:00
|
|
|
|
2017-03-11 14:26:05 +00:00
|
|
|
voice->Flags |= VOICE_IS_MOVING;
|
2016-02-14 09:22:01 +00:00
|
|
|
|
2010-08-04 06:19:36 +00:00
|
|
|
/* Update source info */
|
2017-02-27 23:35:15 +00:00
|
|
|
ATOMIC_STORE(&voice->position, DataPosInt, almemory_order_relaxed);
|
|
|
|
ATOMIC_STORE(&voice->position_fraction, DataPosFrac, almemory_order_relaxed);
|
|
|
|
ATOMIC_STORE(&voice->current_buffer, BufferListItem, almemory_order_release);
|
2017-03-20 23:53:41 +00:00
|
|
|
return isplaying;
|
2010-08-04 06:19:36 +00:00
|
|
|
}
|