2010-08-03 23:19:36 -07: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 14:11:03 +02:00
|
|
|
* Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
2010-08-03 23:19:36 -07:00
|
|
|
* Or go to http://www.gnu.org/copyleft/lgpl.html
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
2019-07-28 11:28:36 -07:00
|
|
|
#include <algorithm>
|
|
|
|
#include <array>
|
|
|
|
#include <atomic>
|
|
|
|
#include <cassert>
|
|
|
|
#include <climits>
|
|
|
|
#include <cstddef>
|
|
|
|
#include <cstdint>
|
2019-01-09 19:42:40 +01:00
|
|
|
#include <cstring>
|
2019-07-28 11:28:36 -07:00
|
|
|
#include <iterator>
|
|
|
|
#include <memory>
|
|
|
|
#include <new>
|
2018-12-20 07:10:09 -08:00
|
|
|
#include <numeric>
|
2019-07-28 11:28:36 -07:00
|
|
|
#include <string>
|
|
|
|
#include <utility>
|
2018-12-20 07:10:09 -08:00
|
|
|
|
2010-08-03 23:19:36 -07:00
|
|
|
#include "AL/al.h"
|
|
|
|
#include "AL/alc.h"
|
2018-11-17 23:02:27 -08:00
|
|
|
|
2019-07-29 17:54:07 -07:00
|
|
|
#include "al/buffer.h"
|
|
|
|
#include "al/event.h"
|
|
|
|
#include "al/source.h"
|
2019-07-28 18:33:29 -07:00
|
|
|
#include "alcmain.h"
|
2019-07-28 11:28:36 -07:00
|
|
|
#include "albyte.h"
|
2018-01-11 07:56:54 -08:00
|
|
|
#include "alconfig.h"
|
2019-07-28 11:28:36 -07:00
|
|
|
#include "alcontext.h"
|
|
|
|
#include "alnumeric.h"
|
|
|
|
#include "aloptional.h"
|
|
|
|
#include "alspan.h"
|
|
|
|
#include "alu.h"
|
2018-01-11 07:19:19 -08:00
|
|
|
#include "cpu_caps.h"
|
2019-08-05 18:36:39 -07:00
|
|
|
#include "devformat.h"
|
2019-07-28 11:28:36 -07:00
|
|
|
#include "filters/biquad.h"
|
|
|
|
#include "filters/nfc.h"
|
|
|
|
#include "filters/splitter.h"
|
|
|
|
#include "hrtf.h"
|
|
|
|
#include "inprogext.h"
|
|
|
|
#include "logging.h"
|
2018-03-22 05:06:15 -07:00
|
|
|
#include "mixer/defs.h"
|
2019-07-28 11:28:36 -07:00
|
|
|
#include "opthelpers.h"
|
|
|
|
#include "ringbuffer.h"
|
|
|
|
#include "threads.h"
|
|
|
|
#include "vector.h"
|
2019-05-26 19:41:11 -07:00
|
|
|
|
2011-05-06 00:20:40 -07:00
|
|
|
|
2015-09-26 11:11:04 -07:00
|
|
|
static_assert((INT_MAX>>FRACTIONBITS)/MAX_PITCH > BUFFERSIZE,
|
|
|
|
"MAX_PITCH and/or BUFFERSIZE are too large for FRACTIONBITS!");
|
|
|
|
|
2017-12-29 16:28:49 -08:00
|
|
|
/* BSinc24 requires up to 23 extra samples before the current position, and 24 after. */
|
2018-01-09 23:55:59 -08:00
|
|
|
static_assert(MAX_RESAMPLE_PADDING >= 24, "MAX_RESAMPLE_PADDING must be at least 24!");
|
2015-10-01 00:34:13 -07:00
|
|
|
|
|
|
|
|
2018-12-24 19:29:01 -08:00
|
|
|
Resampler ResamplerDefault = LinearResampler;
|
2017-04-20 23:21:46 -07:00
|
|
|
|
2019-01-23 11:21:03 -08:00
|
|
|
MixerFunc MixSamples = Mix_<CTag>;
|
|
|
|
RowMixerFunc MixRowSamples = MixRow_<CTag>;
|
2019-01-23 12:23:05 -08:00
|
|
|
static HrtfMixerFunc MixHrtfSamples = MixHrtf_<CTag>;
|
|
|
|
static HrtfMixerBlendFunc MixHrtfBlendSamples = MixHrtfBlend_<CTag>;
|
2014-06-06 01:52:53 -07:00
|
|
|
|
2019-01-09 19:43:54 +01:00
|
|
|
static MixerFunc SelectMixer()
|
2014-11-23 10:49:54 -08:00
|
|
|
{
|
|
|
|
#ifdef HAVE_NEON
|
|
|
|
if((CPUCapFlags&CPU_CAP_NEON))
|
2019-01-23 11:21:03 -08:00
|
|
|
return Mix_<NEONTag>;
|
2014-11-23 10:49:54 -08:00
|
|
|
#endif
|
2017-04-20 20:58:32 -07:00
|
|
|
#ifdef HAVE_SSE
|
|
|
|
if((CPUCapFlags&CPU_CAP_SSE))
|
2019-01-23 11:21:03 -08:00
|
|
|
return Mix_<SSETag>;
|
2017-04-20 20:58:32 -07:00
|
|
|
#endif
|
2019-01-23 11:21:03 -08:00
|
|
|
return Mix_<CTag>;
|
2014-11-23 10:49:54 -08:00
|
|
|
}
|
|
|
|
|
2019-01-09 19:43:54 +01:00
|
|
|
static RowMixerFunc SelectRowMixer()
|
2016-10-04 16:25:43 -07:00
|
|
|
{
|
|
|
|
#ifdef HAVE_NEON
|
|
|
|
if((CPUCapFlags&CPU_CAP_NEON))
|
2019-01-23 11:21:03 -08:00
|
|
|
return MixRow_<NEONTag>;
|
2017-04-20 20:58:32 -07:00
|
|
|
#endif
|
|
|
|
#ifdef HAVE_SSE
|
|
|
|
if((CPUCapFlags&CPU_CAP_SSE))
|
2019-01-23 11:21:03 -08:00
|
|
|
return MixRow_<SSETag>;
|
2016-10-04 16:25:43 -07:00
|
|
|
#endif
|
2019-01-23 11:21:03 -08:00
|
|
|
return MixRow_<CTag>;
|
2016-10-04 16:25:43 -07:00
|
|
|
}
|
|
|
|
|
2019-01-09 19:43:54 +01:00
|
|
|
static inline HrtfMixerFunc SelectHrtfMixer()
|
2014-06-13 16:07:25 -07:00
|
|
|
{
|
|
|
|
#ifdef HAVE_NEON
|
|
|
|
if((CPUCapFlags&CPU_CAP_NEON))
|
2019-01-23 12:23:05 -08:00
|
|
|
return MixHrtf_<NEONTag>;
|
2014-06-13 16:07:25 -07:00
|
|
|
#endif
|
2017-03-14 19:16:59 -07:00
|
|
|
#ifdef HAVE_SSE
|
|
|
|
if((CPUCapFlags&CPU_CAP_SSE))
|
2019-01-23 12:23:05 -08:00
|
|
|
return MixHrtf_<SSETag>;
|
2017-03-14 19:16:59 -07:00
|
|
|
#endif
|
2019-01-23 12:23:05 -08:00
|
|
|
return MixHrtf_<CTag>;
|
2014-06-13 16:07:25 -07:00
|
|
|
}
|
|
|
|
|
2019-01-09 19:43:54 +01:00
|
|
|
static inline HrtfMixerBlendFunc SelectHrtfBlendMixer()
|
2017-05-03 03:29:21 -07:00
|
|
|
{
|
|
|
|
#ifdef HAVE_NEON
|
|
|
|
if((CPUCapFlags&CPU_CAP_NEON))
|
2019-01-23 12:23:05 -08:00
|
|
|
return MixHrtfBlend_<NEONTag>;
|
2017-05-03 03:29:21 -07:00
|
|
|
#endif
|
|
|
|
#ifdef HAVE_SSE
|
|
|
|
if((CPUCapFlags&CPU_CAP_SSE))
|
2019-01-23 12:23:05 -08:00
|
|
|
return MixHrtfBlend_<SSETag>;
|
2017-05-03 03:29:21 -07:00
|
|
|
#endif
|
2019-01-23 12:23:05 -08:00
|
|
|
return MixHrtfBlend_<CTag>;
|
2017-05-03 03:29:21 -07:00
|
|
|
}
|
|
|
|
|
2018-12-24 19:29:01 -08:00
|
|
|
ResamplerFunc SelectResampler(Resampler resampler)
|
2014-06-13 16:07:25 -07:00
|
|
|
{
|
2014-11-02 00:27:26 -07:00
|
|
|
switch(resampler)
|
2014-06-13 16:07:25 -07:00
|
|
|
{
|
|
|
|
case PointResampler:
|
2019-01-23 11:11:41 -08:00
|
|
|
return Resample_<PointTag,CTag>;
|
2014-06-13 16:07:25 -07:00
|
|
|
case LinearResampler:
|
2017-02-12 21:03:30 -08:00
|
|
|
#ifdef HAVE_NEON
|
|
|
|
if((CPUCapFlags&CPU_CAP_NEON))
|
2019-01-23 11:11:41 -08:00
|
|
|
return Resample_<LerpTag,NEONTag>;
|
2017-02-12 21:03:30 -08:00
|
|
|
#endif
|
2014-06-13 16:07:25 -07:00
|
|
|
#ifdef HAVE_SSE4_1
|
|
|
|
if((CPUCapFlags&CPU_CAP_SSE4_1))
|
2019-01-23 11:11:41 -08:00
|
|
|
return Resample_<LerpTag,SSE4Tag>;
|
2014-06-13 16:07:25 -07:00
|
|
|
#endif
|
|
|
|
#ifdef HAVE_SSE2
|
|
|
|
if((CPUCapFlags&CPU_CAP_SSE2))
|
2019-01-23 11:11:41 -08:00
|
|
|
return Resample_<LerpTag,SSE2Tag>;
|
2014-06-13 16:07:25 -07:00
|
|
|
#endif
|
2019-01-23 11:11:41 -08:00
|
|
|
return Resample_<LerpTag,CTag>;
|
2015-09-27 23:52:16 -07:00
|
|
|
case FIR4Resampler:
|
2019-01-23 11:11:41 -08:00
|
|
|
return Resample_<CubicTag,CTag>;
|
2017-08-25 05:52:19 -07:00
|
|
|
case BSinc12Resampler:
|
2017-08-27 10:16:36 -07:00
|
|
|
case BSinc24Resampler:
|
2017-02-12 21:03:30 -08:00
|
|
|
#ifdef HAVE_NEON
|
|
|
|
if((CPUCapFlags&CPU_CAP_NEON))
|
2019-01-23 11:11:41 -08:00
|
|
|
return Resample_<BSincTag,NEONTag>;
|
2017-02-12 21:03:30 -08:00
|
|
|
#endif
|
2015-11-05 09:42:08 -08:00
|
|
|
#ifdef HAVE_SSE
|
|
|
|
if((CPUCapFlags&CPU_CAP_SSE))
|
2019-01-23 11:11:41 -08:00
|
|
|
return Resample_<BSincTag,SSETag>;
|
2015-11-05 09:42:08 -08:00
|
|
|
#endif
|
2019-01-23 11:11:41 -08:00
|
|
|
return Resample_<BSincTag,CTag>;
|
2014-06-13 16:07:25 -07:00
|
|
|
}
|
|
|
|
|
2019-01-23 11:11:41 -08:00
|
|
|
return Resample_<PointTag,CTag>;
|
2014-06-13 16:07:25 -07:00
|
|
|
}
|
|
|
|
|
2015-11-04 06:40:54 -08:00
|
|
|
|
2019-01-09 19:43:54 +01:00
|
|
|
void aluInitMixer()
|
2015-09-27 20:55:39 -07:00
|
|
|
{
|
2019-06-30 16:15:15 -07:00
|
|
|
if(auto resopt = ConfigValueStr(nullptr, nullptr, "resampler"))
|
2015-10-01 00:34:13 -07:00
|
|
|
{
|
2019-06-30 16:15:15 -07:00
|
|
|
const char *str{resopt->c_str()};
|
2015-10-01 00:34:13 -07:00
|
|
|
if(strcasecmp(str, "point") == 0 || strcasecmp(str, "none") == 0)
|
2017-04-20 23:21:46 -07:00
|
|
|
ResamplerDefault = PointResampler;
|
2015-10-01 00:34:13 -07:00
|
|
|
else if(strcasecmp(str, "linear") == 0)
|
2017-04-20 23:21:46 -07:00
|
|
|
ResamplerDefault = LinearResampler;
|
2018-01-07 05:32:07 -08:00
|
|
|
else if(strcasecmp(str, "cubic") == 0)
|
2017-04-20 23:21:46 -07:00
|
|
|
ResamplerDefault = FIR4Resampler;
|
2017-08-27 10:16:36 -07:00
|
|
|
else if(strcasecmp(str, "bsinc12") == 0)
|
|
|
|
ResamplerDefault = BSinc12Resampler;
|
|
|
|
else if(strcasecmp(str, "bsinc24") == 0)
|
|
|
|
ResamplerDefault = BSinc24Resampler;
|
2015-11-05 09:42:08 -08:00
|
|
|
else if(strcasecmp(str, "bsinc") == 0)
|
2017-08-27 10:16:36 -07:00
|
|
|
{
|
|
|
|
WARN("Resampler option \"%s\" is deprecated, using bsinc12\n", str);
|
2017-08-25 05:52:19 -07:00
|
|
|
ResamplerDefault = BSinc12Resampler;
|
2017-08-27 10:16:36 -07:00
|
|
|
}
|
2018-01-07 05:32:07 -08:00
|
|
|
else if(strcasecmp(str, "sinc4") == 0 || strcasecmp(str, "sinc8") == 0)
|
2015-10-01 00:34:13 -07:00
|
|
|
{
|
2018-01-07 05:32:07 -08:00
|
|
|
WARN("Resampler option \"%s\" is deprecated, using cubic\n", str);
|
2017-04-20 23:21:46 -07:00
|
|
|
ResamplerDefault = FIR4Resampler;
|
2015-10-01 00:34:13 -07:00
|
|
|
}
|
|
|
|
else
|
2019-08-04 17:29:55 -07:00
|
|
|
ERR("Invalid resampler: %s\n", str);
|
2015-10-01 00:34:13 -07:00
|
|
|
}
|
|
|
|
|
2017-05-03 03:29:21 -07:00
|
|
|
MixHrtfBlendSamples = SelectHrtfBlendMixer();
|
2015-09-27 20:55:39 -07:00
|
|
|
MixHrtfSamples = SelectHrtfMixer();
|
|
|
|
MixSamples = SelectMixer();
|
2018-01-16 12:18:59 -08:00
|
|
|
MixRowSamples = SelectRowMixer();
|
2015-09-27 20:55:39 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-11-20 02:59:02 -08:00
|
|
|
namespace {
|
|
|
|
|
2019-05-24 12:06:52 -07:00
|
|
|
/* A quick'n'dirty lookup table to decode a muLaw-encoded byte sample into a
|
|
|
|
* signed 16-bit sample */
|
|
|
|
constexpr ALshort muLawDecompressionTable[256] = {
|
|
|
|
-32124,-31100,-30076,-29052,-28028,-27004,-25980,-24956,
|
|
|
|
-23932,-22908,-21884,-20860,-19836,-18812,-17788,-16764,
|
|
|
|
-15996,-15484,-14972,-14460,-13948,-13436,-12924,-12412,
|
|
|
|
-11900,-11388,-10876,-10364, -9852, -9340, -8828, -8316,
|
|
|
|
-7932, -7676, -7420, -7164, -6908, -6652, -6396, -6140,
|
|
|
|
-5884, -5628, -5372, -5116, -4860, -4604, -4348, -4092,
|
|
|
|
-3900, -3772, -3644, -3516, -3388, -3260, -3132, -3004,
|
|
|
|
-2876, -2748, -2620, -2492, -2364, -2236, -2108, -1980,
|
|
|
|
-1884, -1820, -1756, -1692, -1628, -1564, -1500, -1436,
|
|
|
|
-1372, -1308, -1244, -1180, -1116, -1052, -988, -924,
|
|
|
|
-876, -844, -812, -780, -748, -716, -684, -652,
|
|
|
|
-620, -588, -556, -524, -492, -460, -428, -396,
|
|
|
|
-372, -356, -340, -324, -308, -292, -276, -260,
|
|
|
|
-244, -228, -212, -196, -180, -164, -148, -132,
|
|
|
|
-120, -112, -104, -96, -88, -80, -72, -64,
|
|
|
|
-56, -48, -40, -32, -24, -16, -8, 0,
|
|
|
|
32124, 31100, 30076, 29052, 28028, 27004, 25980, 24956,
|
|
|
|
23932, 22908, 21884, 20860, 19836, 18812, 17788, 16764,
|
|
|
|
15996, 15484, 14972, 14460, 13948, 13436, 12924, 12412,
|
|
|
|
11900, 11388, 10876, 10364, 9852, 9340, 8828, 8316,
|
|
|
|
7932, 7676, 7420, 7164, 6908, 6652, 6396, 6140,
|
|
|
|
5884, 5628, 5372, 5116, 4860, 4604, 4348, 4092,
|
|
|
|
3900, 3772, 3644, 3516, 3388, 3260, 3132, 3004,
|
|
|
|
2876, 2748, 2620, 2492, 2364, 2236, 2108, 1980,
|
|
|
|
1884, 1820, 1756, 1692, 1628, 1564, 1500, 1436,
|
|
|
|
1372, 1308, 1244, 1180, 1116, 1052, 988, 924,
|
|
|
|
876, 844, 812, 780, 748, 716, 684, 652,
|
|
|
|
620, 588, 556, 524, 492, 460, 428, 396,
|
|
|
|
372, 356, 340, 324, 308, 292, 276, 260,
|
|
|
|
244, 228, 212, 196, 180, 164, 148, 132,
|
|
|
|
120, 112, 104, 96, 88, 80, 72, 64,
|
|
|
|
56, 48, 40, 32, 24, 16, 8, 0
|
|
|
|
};
|
|
|
|
|
|
|
|
/* A quick'n'dirty lookup table to decode an aLaw-encoded byte sample into a
|
|
|
|
* signed 16-bit sample */
|
|
|
|
constexpr ALshort aLawDecompressionTable[256] = {
|
|
|
|
-5504, -5248, -6016, -5760, -4480, -4224, -4992, -4736,
|
|
|
|
-7552, -7296, -8064, -7808, -6528, -6272, -7040, -6784,
|
|
|
|
-2752, -2624, -3008, -2880, -2240, -2112, -2496, -2368,
|
|
|
|
-3776, -3648, -4032, -3904, -3264, -3136, -3520, -3392,
|
|
|
|
-22016,-20992,-24064,-23040,-17920,-16896,-19968,-18944,
|
|
|
|
-30208,-29184,-32256,-31232,-26112,-25088,-28160,-27136,
|
|
|
|
-11008,-10496,-12032,-11520, -8960, -8448, -9984, -9472,
|
|
|
|
-15104,-14592,-16128,-15616,-13056,-12544,-14080,-13568,
|
|
|
|
-344, -328, -376, -360, -280, -264, -312, -296,
|
|
|
|
-472, -456, -504, -488, -408, -392, -440, -424,
|
|
|
|
-88, -72, -120, -104, -24, -8, -56, -40,
|
|
|
|
-216, -200, -248, -232, -152, -136, -184, -168,
|
|
|
|
-1376, -1312, -1504, -1440, -1120, -1056, -1248, -1184,
|
|
|
|
-1888, -1824, -2016, -1952, -1632, -1568, -1760, -1696,
|
|
|
|
-688, -656, -752, -720, -560, -528, -624, -592,
|
|
|
|
-944, -912, -1008, -976, -816, -784, -880, -848,
|
|
|
|
5504, 5248, 6016, 5760, 4480, 4224, 4992, 4736,
|
|
|
|
7552, 7296, 8064, 7808, 6528, 6272, 7040, 6784,
|
|
|
|
2752, 2624, 3008, 2880, 2240, 2112, 2496, 2368,
|
|
|
|
3776, 3648, 4032, 3904, 3264, 3136, 3520, 3392,
|
|
|
|
22016, 20992, 24064, 23040, 17920, 16896, 19968, 18944,
|
|
|
|
30208, 29184, 32256, 31232, 26112, 25088, 28160, 27136,
|
|
|
|
11008, 10496, 12032, 11520, 8960, 8448, 9984, 9472,
|
|
|
|
15104, 14592, 16128, 15616, 13056, 12544, 14080, 13568,
|
|
|
|
344, 328, 376, 360, 280, 264, 312, 296,
|
|
|
|
472, 456, 504, 488, 408, 392, 440, 424,
|
|
|
|
88, 72, 120, 104, 24, 8, 56, 40,
|
|
|
|
216, 200, 248, 232, 152, 136, 184, 168,
|
|
|
|
1376, 1312, 1504, 1440, 1120, 1056, 1248, 1184,
|
|
|
|
1888, 1824, 2016, 1952, 1632, 1568, 1760, 1696,
|
|
|
|
688, 656, 752, 720, 560, 528, 624, 592,
|
|
|
|
944, 912, 1008, 976, 816, 784, 880, 848
|
|
|
|
};
|
|
|
|
|
2019-08-04 17:45:46 -07:00
|
|
|
template<FmtType T>
|
|
|
|
struct FmtTypeTraits { };
|
|
|
|
|
|
|
|
template<>
|
|
|
|
struct FmtTypeTraits<FmtUByte> {
|
|
|
|
using Type = ALubyte;
|
|
|
|
static constexpr ALfloat to_float(const Type val) { return (val-128) * (1.0f/128.0f); }
|
|
|
|
};
|
|
|
|
template<>
|
|
|
|
struct FmtTypeTraits<FmtShort> {
|
|
|
|
using Type = ALshort;
|
|
|
|
static constexpr ALfloat to_float(const Type val) { return val * (1.0f/32768.0f); }
|
|
|
|
};
|
|
|
|
template<>
|
|
|
|
struct FmtTypeTraits<FmtFloat> {
|
|
|
|
using Type = ALfloat;
|
|
|
|
static constexpr ALfloat to_float(const Type val) { return val; }
|
|
|
|
};
|
|
|
|
template<>
|
|
|
|
struct FmtTypeTraits<FmtDouble> {
|
|
|
|
using Type = ALdouble;
|
|
|
|
static constexpr ALfloat to_float(const Type val) { return static_cast<ALfloat>(val); }
|
|
|
|
};
|
|
|
|
template<>
|
|
|
|
struct FmtTypeTraits<FmtMulaw> {
|
|
|
|
using Type = ALubyte;
|
|
|
|
static constexpr ALfloat to_float(const Type val)
|
|
|
|
{ return muLawDecompressionTable[val] * (1.0f/32768.0f); }
|
|
|
|
};
|
|
|
|
template<>
|
|
|
|
struct FmtTypeTraits<FmtAlaw> {
|
|
|
|
using Type = ALubyte;
|
|
|
|
static constexpr ALfloat to_float(const Type val)
|
|
|
|
{ return aLawDecompressionTable[val] * (1.0f/32768.0f); }
|
|
|
|
};
|
|
|
|
|
2019-05-24 12:06:52 -07:00
|
|
|
|
2019-03-09 16:48:07 -08:00
|
|
|
void SendSourceStoppedEvent(ALCcontext *context, ALuint id)
|
|
|
|
{
|
2019-07-30 09:05:54 -07:00
|
|
|
RingBuffer *ring{context->mAsyncEvents.get()};
|
2019-03-09 16:48:07 -08:00
|
|
|
auto evt_vec = ring->getWriteVector();
|
|
|
|
if(evt_vec.first.len < 1) return;
|
|
|
|
|
|
|
|
AsyncEvent *evt{new (evt_vec.first.buf) AsyncEvent{EventType_SourceStateChange}};
|
|
|
|
evt->u.srcstate.id = id;
|
|
|
|
evt->u.srcstate.state = AL_STOPPED;
|
|
|
|
|
|
|
|
ring->writeAdvance(1);
|
2019-07-30 09:05:54 -07:00
|
|
|
context->mEventSem.post();
|
2019-03-09 16:48:07 -08:00
|
|
|
}
|
|
|
|
|
2019-04-12 19:19:24 -07:00
|
|
|
|
2019-06-24 21:18:25 -07:00
|
|
|
const ALfloat *DoFilters(BiquadFilter *lpfilter, BiquadFilter *hpfilter, ALfloat *dst,
|
2019-08-20 05:26:51 -07:00
|
|
|
const ALfloat *src, const size_t numsamples, int type)
|
2019-04-12 19:19:24 -07:00
|
|
|
{
|
|
|
|
switch(type)
|
|
|
|
{
|
|
|
|
case AF_None:
|
2019-06-24 21:18:25 -07:00
|
|
|
lpfilter->clear();
|
|
|
|
hpfilter->clear();
|
2019-04-12 19:19:24 -07:00
|
|
|
break;
|
|
|
|
|
|
|
|
case AF_LowPass:
|
|
|
|
lpfilter->process(dst, src, numsamples);
|
2019-06-24 21:18:25 -07:00
|
|
|
hpfilter->clear();
|
2019-04-12 19:19:24 -07:00
|
|
|
return dst;
|
|
|
|
case AF_HighPass:
|
2019-06-24 21:18:25 -07:00
|
|
|
lpfilter->clear();
|
2019-04-12 19:19:24 -07:00
|
|
|
hpfilter->process(dst, src, numsamples);
|
|
|
|
return dst;
|
|
|
|
|
|
|
|
case AF_BandPass:
|
2019-06-24 21:18:25 -07:00
|
|
|
lpfilter->process(dst, src, numsamples);
|
|
|
|
hpfilter->process(dst, dst, numsamples);
|
2019-04-12 19:19:24 -07:00
|
|
|
return dst;
|
|
|
|
}
|
|
|
|
return src;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-11-20 02:59:02 -08:00
|
|
|
template<FmtType T>
|
2019-05-24 06:12:20 -07:00
|
|
|
inline void LoadSampleArray(ALfloat *RESTRICT dst, const al::byte *src, ALint srcstep,
|
2019-08-18 15:37:39 -07:00
|
|
|
const size_t samples)
|
2018-11-20 02:59:02 -08:00
|
|
|
{
|
|
|
|
using SampleType = typename FmtTypeTraits<T>::Type;
|
2011-10-04 09:47:08 -07:00
|
|
|
|
2019-05-24 06:12:20 -07:00
|
|
|
const SampleType *RESTRICT ssrc{reinterpret_cast<const SampleType*>(src)};
|
2019-08-18 15:37:39 -07:00
|
|
|
for(size_t i{0u};i < samples;i++)
|
2019-08-11 03:34:35 -07:00
|
|
|
dst[i] = FmtTypeTraits<T>::to_float(ssrc[i*srcstep]);
|
2018-11-20 02:59:02 -08:00
|
|
|
}
|
2011-10-04 09:47:08 -07:00
|
|
|
|
2019-05-24 06:12:20 -07:00
|
|
|
void LoadSamples(ALfloat *RESTRICT dst, const al::byte *src, ALint srcstep, FmtType srctype,
|
2019-08-18 15:37:39 -07:00
|
|
|
const size_t samples)
|
2011-10-04 09:47:08 -07:00
|
|
|
{
|
2019-04-12 19:19:24 -07:00
|
|
|
#define HANDLE_FMT(T) case T: LoadSampleArray<T>(dst, src, srcstep, samples); break
|
2011-10-04 09:47:08 -07:00
|
|
|
switch(srctype)
|
|
|
|
{
|
2018-11-20 02:59:02 -08:00
|
|
|
HANDLE_FMT(FmtUByte);
|
|
|
|
HANDLE_FMT(FmtShort);
|
|
|
|
HANDLE_FMT(FmtFloat);
|
|
|
|
HANDLE_FMT(FmtDouble);
|
|
|
|
HANDLE_FMT(FmtMulaw);
|
|
|
|
HANDLE_FMT(FmtAlaw);
|
2011-10-04 09:47:08 -07:00
|
|
|
}
|
2018-01-17 08:49:49 -08:00
|
|
|
#undef HANDLE_FMT
|
2011-10-04 09:47:08 -07:00
|
|
|
}
|
|
|
|
|
2019-04-12 16:24:11 -07:00
|
|
|
ALfloat *LoadBufferStatic(ALbufferlistitem *BufferListItem, ALbufferlistitem *&BufferLoopItem,
|
2019-07-31 09:20:53 -07:00
|
|
|
const ALsizei NumChannels, const ALsizei SampleSize, const ALsizei chan, ALuint DataPosInt,
|
2019-06-25 17:10:46 -07:00
|
|
|
al::span<ALfloat> SrcBuffer)
|
2019-03-09 21:32:14 -08:00
|
|
|
{
|
2019-08-11 03:34:35 -07:00
|
|
|
const ALbuffer *Buffer{BufferListItem->mBuffer};
|
|
|
|
const ALuint LoopStart{Buffer->LoopStart};
|
|
|
|
const ALuint LoopEnd{Buffer->LoopEnd};
|
2019-03-09 21:32:14 -08:00
|
|
|
ASSUME(LoopEnd > LoopStart);
|
|
|
|
|
|
|
|
/* If current pos is beyond the loop range, do not loop */
|
|
|
|
if(!BufferLoopItem || DataPosInt >= LoopEnd)
|
|
|
|
{
|
|
|
|
BufferLoopItem = nullptr;
|
|
|
|
|
2019-08-11 03:34:35 -07:00
|
|
|
/* Load what's left to play from the buffer */
|
|
|
|
const size_t DataSize{minz(SrcBuffer.size(), Buffer->SampleLen-DataPosInt)};
|
|
|
|
|
|
|
|
const al::byte *Data{Buffer->mData.data()};
|
|
|
|
Data += (DataPosInt*NumChannels + chan)*SampleSize;
|
|
|
|
|
|
|
|
LoadSamples(SrcBuffer.data(), Data, NumChannels, Buffer->mFmtType, DataSize);
|
|
|
|
SrcBuffer = SrcBuffer.subspan(DataSize);
|
2019-03-09 21:32:14 -08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2019-08-11 03:34:35 -07:00
|
|
|
/* Load what's left of this loop iteration */
|
|
|
|
const size_t DataSize{minz(SrcBuffer.size(), LoopEnd-DataPosInt)};
|
2019-03-09 21:32:14 -08:00
|
|
|
|
2019-08-11 03:34:35 -07:00
|
|
|
const al::byte *Data{Buffer->mData.data()};
|
|
|
|
Data += (DataPosInt*NumChannels + chan)*SampleSize;
|
2019-03-09 21:32:14 -08:00
|
|
|
|
2019-08-11 03:34:35 -07:00
|
|
|
LoadSamples(SrcBuffer.data(), Data, NumChannels, Buffer->mFmtType, DataSize);
|
|
|
|
SrcBuffer = SrcBuffer.subspan(DataSize);
|
2019-03-09 21:32:14 -08:00
|
|
|
|
2019-08-11 03:34:35 -07:00
|
|
|
/* Load any repeats of the loop we can to fill the buffer. */
|
2019-06-25 17:10:46 -07:00
|
|
|
const auto LoopSize = static_cast<size_t>(LoopEnd - LoopStart);
|
|
|
|
while(!SrcBuffer.empty())
|
2019-03-09 21:32:14 -08:00
|
|
|
{
|
2019-08-11 03:34:35 -07:00
|
|
|
const size_t DataSize{minz(SrcBuffer.size(), LoopSize)};
|
2019-03-09 21:32:14 -08:00
|
|
|
|
2019-08-11 03:34:35 -07:00
|
|
|
const al::byte *Data{Buffer->mData.data()};
|
|
|
|
Data += (LoopStart*NumChannels + chan)*SampleSize;
|
2019-04-12 16:24:11 -07:00
|
|
|
|
2019-08-11 03:34:35 -07:00
|
|
|
LoadSamples(SrcBuffer.data(), Data, NumChannels, Buffer->mFmtType, DataSize);
|
|
|
|
SrcBuffer = SrcBuffer.subspan(DataSize);
|
2019-03-09 21:32:14 -08:00
|
|
|
}
|
|
|
|
}
|
2019-06-25 17:10:46 -07:00
|
|
|
return SrcBuffer.begin();
|
2019-03-09 21:32:14 -08:00
|
|
|
}
|
|
|
|
|
2019-04-12 16:24:11 -07:00
|
|
|
ALfloat *LoadBufferQueue(ALbufferlistitem *BufferListItem, ALbufferlistitem *BufferLoopItem,
|
2019-07-31 09:20:53 -07:00
|
|
|
const ALsizei NumChannels, const ALsizei SampleSize, const ALsizei chan, ALuint DataPosInt,
|
2019-06-25 17:10:46 -07:00
|
|
|
al::span<ALfloat> SrcBuffer)
|
2019-03-09 21:32:14 -08:00
|
|
|
{
|
|
|
|
/* Crawl the buffer queue to fill in the temp buffer */
|
2019-06-25 17:10:46 -07:00
|
|
|
while(BufferListItem && !SrcBuffer.empty())
|
2019-03-09 21:32:14 -08:00
|
|
|
{
|
2019-08-11 03:34:35 -07:00
|
|
|
ALbuffer *Buffer{BufferListItem->mBuffer};
|
|
|
|
if(!(Buffer && DataPosInt < Buffer->SampleLen))
|
2019-03-09 21:32:14 -08:00
|
|
|
{
|
2019-08-11 03:34:35 -07:00
|
|
|
if(Buffer) DataPosInt -= Buffer->SampleLen;
|
2019-07-31 09:20:53 -07:00
|
|
|
BufferListItem = BufferListItem->mNext.load(std::memory_order_acquire);
|
2019-03-11 22:00:28 -07:00
|
|
|
if(!BufferListItem) BufferListItem = BufferLoopItem;
|
2019-03-09 21:32:14 -08:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2019-08-18 15:37:39 -07:00
|
|
|
const size_t DataSize{minz(SrcBuffer.size(), Buffer->SampleLen-DataPosInt)};
|
2019-03-09 21:32:14 -08:00
|
|
|
|
2019-08-11 03:34:35 -07:00
|
|
|
const al::byte *Data{Buffer->mData.data()};
|
|
|
|
Data += (DataPosInt*NumChannels + chan)*SampleSize;
|
2019-03-09 21:32:14 -08:00
|
|
|
|
2019-08-11 03:34:35 -07:00
|
|
|
LoadSamples(SrcBuffer.data(), Data, NumChannels, Buffer->mFmtType, DataSize);
|
|
|
|
SrcBuffer = SrcBuffer.subspan(DataSize);
|
|
|
|
if(SrcBuffer.empty()) break;
|
2019-03-09 21:32:14 -08:00
|
|
|
|
2019-03-11 22:00:28 -07:00
|
|
|
DataPosInt = 0;
|
2019-07-31 09:20:53 -07:00
|
|
|
BufferListItem = BufferListItem->mNext.load(std::memory_order_acquire);
|
2019-03-11 22:00:28 -07:00
|
|
|
if(!BufferListItem) BufferListItem = BufferLoopItem;
|
2019-03-09 21:32:14 -08:00
|
|
|
}
|
|
|
|
|
2019-06-25 17:10:46 -07:00
|
|
|
return SrcBuffer.begin();
|
2019-03-09 21:32:14 -08:00
|
|
|
}
|
|
|
|
|
2018-11-20 02:59:02 -08:00
|
|
|
} // namespace
|
2012-09-11 05:24:19 -07:00
|
|
|
|
2019-08-31 14:53:28 -07:00
|
|
|
void ALvoice::mix(State vstate, ALCcontext *Context, const ALuint SamplesToDo)
|
2010-09-22 09:38:24 -07:00
|
|
|
{
|
2019-03-09 18:34:00 -08:00
|
|
|
static constexpr ALfloat SilentTarget[MAX_OUTPUT_CHANNELS]{};
|
|
|
|
|
2018-11-25 13:19:01 -08:00
|
|
|
ASSUME(SamplesToDo > 0);
|
2010-09-22 09:38:24 -07:00
|
|
|
|
2019-03-11 20:00:14 -07:00
|
|
|
/* Get voice info */
|
2019-08-31 14:53:28 -07:00
|
|
|
const bool isstatic{(mFlags&VOICE_IS_STATIC) != 0};
|
|
|
|
ALuint DataPosInt{mPosition.load(std::memory_order_relaxed)};
|
2019-08-31 15:49:34 -07:00
|
|
|
ALuint DataPosFrac{mPositionFrac.load(std::memory_order_relaxed)};
|
2019-08-31 14:53:28 -07:00
|
|
|
ALbufferlistitem *BufferListItem{mCurrentBuffer.load(std::memory_order_relaxed)};
|
|
|
|
ALbufferlistitem *BufferLoopItem{mLoopBuffer.load(std::memory_order_relaxed)};
|
|
|
|
const ALsizei NumChannels{mNumChannels};
|
|
|
|
const ALsizei SampleSize{mSampleSize};
|
|
|
|
const ALint increment{mStep};
|
|
|
|
if(increment < 1) return;
|
2018-11-25 13:19:01 -08:00
|
|
|
|
|
|
|
ASSUME(NumChannels > 0);
|
|
|
|
ASSUME(SampleSize > 0);
|
|
|
|
ASSUME(increment > 0);
|
|
|
|
|
2019-08-01 19:44:09 -07:00
|
|
|
ALCdevice *Device{Context->mDevice.get()};
|
2019-06-03 22:24:26 -07:00
|
|
|
const ALsizei NumSends{Device->NumAuxSends};
|
2018-12-25 19:54:14 -08:00
|
|
|
const ALsizei IrSize{Device->mHrtf ? Device->mHrtf->irSize : 0};
|
|
|
|
|
2019-06-03 22:24:26 -07:00
|
|
|
ASSUME(NumSends >= 0);
|
2018-12-25 19:54:14 -08:00
|
|
|
ASSUME(IrSize >= 0);
|
2018-11-25 13:19:01 -08:00
|
|
|
|
|
|
|
ResamplerFunc Resample{(increment == FRACTIONONE && DataPosFrac == 0) ?
|
2019-08-31 14:53:28 -07:00
|
|
|
Resample_<CopyTag,CTag> : mResampler};
|
2018-11-25 13:19:01 -08:00
|
|
|
|
2019-08-31 14:53:28 -07:00
|
|
|
ALuint Counter{(mFlags&VOICE_IS_FADING) ? SamplesToDo : 0};
|
2018-12-25 19:54:14 -08:00
|
|
|
if(!Counter)
|
|
|
|
{
|
|
|
|
/* No fading, just overwrite the old/current params. */
|
|
|
|
for(ALsizei chan{0};chan < NumChannels;chan++)
|
|
|
|
{
|
2019-08-31 14:53:28 -07:00
|
|
|
ChannelData &chandata = mChans[chan];
|
2019-06-03 22:24:26 -07:00
|
|
|
DirectParams &parms = chandata.mDryParams;
|
2019-08-31 14:53:28 -07:00
|
|
|
if(!(mFlags&VOICE_HAS_HRTF))
|
2018-12-25 19:54:14 -08:00
|
|
|
std::copy(std::begin(parms.Gains.Target), std::end(parms.Gains.Target),
|
|
|
|
std::begin(parms.Gains.Current));
|
|
|
|
else
|
|
|
|
parms.Hrtf.Old = parms.Hrtf.Target;
|
2019-06-03 22:24:26 -07:00
|
|
|
for(ALsizei send{0};send < NumSends;++send)
|
2018-12-25 19:54:14 -08:00
|
|
|
{
|
2019-08-31 14:53:28 -07:00
|
|
|
if(mSend[send].Buffer.empty())
|
2019-06-03 22:24:26 -07:00
|
|
|
continue;
|
2018-12-25 19:54:14 -08:00
|
|
|
|
2019-06-24 13:21:06 -07:00
|
|
|
SendParams &parms = chandata.mWetParams[send];
|
2018-12-25 19:54:14 -08:00
|
|
|
std::copy(std::begin(parms.Gains.Target), std::end(parms.Gains.Target),
|
|
|
|
std::begin(parms.Gains.Current));
|
2019-06-03 22:24:26 -07:00
|
|
|
}
|
2018-12-25 19:54:14 -08:00
|
|
|
}
|
|
|
|
}
|
2019-08-31 14:53:28 -07:00
|
|
|
else if((mFlags&VOICE_HAS_HRTF))
|
2018-12-25 19:54:14 -08:00
|
|
|
{
|
|
|
|
for(ALsizei chan{0};chan < NumChannels;chan++)
|
|
|
|
{
|
2019-08-31 14:53:28 -07:00
|
|
|
DirectParams &parms = mChans[chan].mDryParams;
|
2018-12-25 19:54:14 -08:00
|
|
|
if(!(parms.Hrtf.Old.Gain > GAIN_SILENCE_THRESHOLD))
|
|
|
|
{
|
|
|
|
/* The old HRTF params are silent, so overwrite the old
|
|
|
|
* coefficients with the new, and reset the old gain to 0. The
|
|
|
|
* future mix will then fade from silence.
|
|
|
|
*/
|
|
|
|
parms.Hrtf.Old = parms.Hrtf.Target;
|
|
|
|
parms.Hrtf.Old.Gain = 0.0f;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-25 13:19:01 -08:00
|
|
|
ALsizei buffers_done{0};
|
2019-08-20 06:03:31 -07:00
|
|
|
ALuint OutPos{0u};
|
2010-09-22 09:38:24 -07:00
|
|
|
do {
|
2013-10-26 08:49:37 -07:00
|
|
|
/* Figure out how many buffer samples will be needed */
|
2019-08-20 06:03:31 -07:00
|
|
|
ALuint DstBufferSize{SamplesToDo - OutPos};
|
2018-12-01 13:47:56 -08:00
|
|
|
|
|
|
|
/* Calculate the last written dst sample pos. */
|
2019-08-20 06:03:31 -07:00
|
|
|
uint64_t DataSize64{DstBufferSize - 1};
|
2018-12-01 13:47:56 -08:00
|
|
|
/* Calculate the last read src sample pos. */
|
|
|
|
DataSize64 = (DataSize64*increment + DataPosFrac) >> FRACTIONBITS;
|
|
|
|
/* +1 to get the src sample count, include padding. */
|
|
|
|
DataSize64 += 1 + MAX_RESAMPLE_PADDING*2;
|
|
|
|
|
2019-05-26 19:41:11 -07:00
|
|
|
auto SrcBufferSize = static_cast<ALuint>(
|
2019-08-20 06:03:31 -07:00
|
|
|
minu64(DataSize64, BUFFERSIZE + MAX_RESAMPLE_PADDING*2 + 1));
|
2019-02-24 16:13:51 -08:00
|
|
|
if(SrcBufferSize > BUFFERSIZE + MAX_RESAMPLE_PADDING*2)
|
2018-12-01 13:47:56 -08:00
|
|
|
{
|
2019-02-24 16:13:51 -08:00
|
|
|
SrcBufferSize = BUFFERSIZE + MAX_RESAMPLE_PADDING*2;
|
2018-12-01 13:47:56 -08:00
|
|
|
/* If the source buffer got saturated, we can't fill the desired
|
|
|
|
* dst size. Figure out how many samples we can actually mix from
|
|
|
|
* this.
|
|
|
|
*/
|
|
|
|
DataSize64 = SrcBufferSize - MAX_RESAMPLE_PADDING*2;
|
|
|
|
DataSize64 = ((DataSize64<<FRACTIONBITS) - DataPosFrac + increment-1) / increment;
|
2019-08-20 06:03:31 -07:00
|
|
|
DstBufferSize = static_cast<ALuint>(minu64(DataSize64, DstBufferSize));
|
2018-12-01 13:47:56 -08:00
|
|
|
|
|
|
|
/* Some mixers like having a multiple of 4, so try to give that
|
|
|
|
* unless this is the last update.
|
|
|
|
*/
|
|
|
|
if(DstBufferSize < SamplesToDo-OutPos)
|
|
|
|
DstBufferSize &= ~3;
|
|
|
|
}
|
2012-09-26 17:16:25 -07:00
|
|
|
|
2019-08-03 13:05:42 -07:00
|
|
|
ASSUME(DstBufferSize > 0);
|
2018-11-25 13:19:01 -08:00
|
|
|
for(ALsizei chan{0};chan < NumChannels;chan++)
|
2010-09-22 09:38:24 -07:00
|
|
|
{
|
2019-08-31 14:53:28 -07:00
|
|
|
ChannelData &chandata = mChans[chan];
|
2019-05-26 19:41:11 -07:00
|
|
|
const al::span<ALfloat> SrcData{Device->SourceData, SrcBufferSize};
|
2015-10-15 07:29:25 -07:00
|
|
|
|
2019-08-11 03:34:35 -07:00
|
|
|
/* Load the previous samples into the source data first, then load
|
|
|
|
* what we can from the buffer queue.
|
|
|
|
*/
|
2019-06-24 13:33:09 -07:00
|
|
|
auto srciter = std::copy_n(chandata.mPrevSamples.begin(), MAX_RESAMPLE_PADDING,
|
|
|
|
SrcData.begin());
|
2010-11-25 11:16:19 -08:00
|
|
|
|
2019-08-04 11:59:14 -07:00
|
|
|
if UNLIKELY(!BufferListItem)
|
2019-06-24 13:33:09 -07:00
|
|
|
srciter = std::copy(chandata.mPrevSamples.begin()+MAX_RESAMPLE_PADDING,
|
|
|
|
chandata.mPrevSamples.end(), srciter);
|
2019-03-09 18:34:00 -08:00
|
|
|
else if(isstatic)
|
2019-04-12 16:24:11 -07:00
|
|
|
srciter = LoadBufferStatic(BufferListItem, BufferLoopItem, NumChannels,
|
2019-06-25 17:10:46 -07:00
|
|
|
SampleSize, chan, DataPosInt, {srciter, SrcData.end()});
|
2010-11-25 21:42:15 -08:00
|
|
|
else
|
2019-04-12 16:24:11 -07:00
|
|
|
srciter = LoadBufferQueue(BufferListItem, BufferLoopItem, NumChannels,
|
2019-06-25 17:10:46 -07:00
|
|
|
SampleSize, chan, DataPosInt, {srciter, SrcData.end()});
|
2010-11-25 11:16:19 -08:00
|
|
|
|
2019-08-04 11:59:14 -07:00
|
|
|
if UNLIKELY(srciter != SrcData.end())
|
2019-03-09 21:32:14 -08:00
|
|
|
{
|
2019-05-19 00:53:39 -07:00
|
|
|
/* If the source buffer wasn't filled, copy the last sample for
|
|
|
|
* the remaining buffer. Ideally it should have ended with
|
|
|
|
* silence, but if not the gain fading should help avoid clicks
|
|
|
|
* from sudden amplitude changes.
|
2019-03-09 21:32:14 -08:00
|
|
|
*/
|
2019-04-12 16:24:11 -07:00
|
|
|
const ALfloat sample{*(srciter-1)};
|
2019-05-26 19:41:11 -07:00
|
|
|
std::fill(srciter, SrcData.end(), sample);
|
2010-09-22 09:38:24 -07:00
|
|
|
}
|
|
|
|
|
2015-10-15 07:29:25 -07:00
|
|
|
/* Store the last source samples used for next time. */
|
2018-11-24 19:16:21 -08:00
|
|
|
std::copy_n(&SrcData[(increment*DstBufferSize + DataPosFrac)>>FRACTIONBITS],
|
2019-06-24 13:33:09 -07:00
|
|
|
chandata.mPrevSamples.size(), chandata.mPrevSamples.begin());
|
2015-10-15 07:29:25 -07:00
|
|
|
|
2019-02-21 17:48:08 -08:00
|
|
|
/* Resample, then apply ambisonic upsampling as needed. */
|
2019-08-31 14:53:28 -07:00
|
|
|
const ALfloat *ResampledData{Resample(&mResampleState,
|
2018-01-09 23:55:59 -08:00
|
|
|
&SrcData[MAX_RESAMPLE_PADDING], DataPosFrac, increment,
|
2019-08-20 08:46:12 -07:00
|
|
|
{Device->ResampledData, DstBufferSize})};
|
2019-08-31 14:53:28 -07:00
|
|
|
if((mFlags&VOICE_IS_AMBISONIC))
|
2019-02-21 17:48:08 -08:00
|
|
|
{
|
2019-06-24 13:33:09 -07:00
|
|
|
const ALfloat hfscale{chandata.mAmbiScale};
|
2019-03-10 10:30:33 -07:00
|
|
|
/* Beware the evil const_cast. It's safe since it's pointing to
|
2019-05-26 19:41:11 -07:00
|
|
|
* either SourceData or ResampledData (both non-const), but the
|
|
|
|
* resample method takes the source as const float* and may
|
|
|
|
* return it without copying to output, making it currently
|
2019-03-10 10:30:33 -07:00
|
|
|
* unavoidable.
|
|
|
|
*/
|
2019-06-24 13:33:09 -07:00
|
|
|
chandata.mAmbiSplitter.applyHfScale(const_cast<ALfloat*>(ResampledData), hfscale,
|
|
|
|
DstBufferSize);
|
2019-02-21 17:48:08 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Now filter and mix to the appropriate outputs. */
|
2012-09-26 17:16:25 -07:00
|
|
|
{
|
2019-06-24 13:33:09 -07:00
|
|
|
DirectParams &parms = chandata.mDryParams;
|
2018-12-25 19:54:14 -08:00
|
|
|
const ALfloat *samples{DoFilters(&parms.LowPass, &parms.HighPass,
|
2019-08-31 14:53:28 -07:00
|
|
|
Device->FilteredData, ResampledData, DstBufferSize, mDirect.FilterType)};
|
2012-09-14 04:13:18 -07:00
|
|
|
|
2019-08-31 14:53:28 -07:00
|
|
|
if((mFlags&VOICE_HAS_HRTF))
|
2016-02-14 01:22:01 -08:00
|
|
|
{
|
2019-04-02 15:53:27 -07:00
|
|
|
const int OutLIdx{GetChannelIdxByName(Device->RealOut, FrontLeft)};
|
|
|
|
const int OutRIdx{GetChannelIdxByName(Device->RealOut, FrontRight)};
|
|
|
|
ASSUME(OutLIdx >= 0 && OutRIdx >= 0);
|
|
|
|
|
2019-03-28 09:29:20 -07:00
|
|
|
auto &HrtfSamples = Device->HrtfSourceData;
|
2019-03-29 11:28:38 -07:00
|
|
|
auto &AccumSamples = Device->HrtfAccumData;
|
2019-03-10 12:50:38 -07:00
|
|
|
const ALfloat TargetGain{UNLIKELY(vstate == ALvoice::Stopping) ? 0.0f :
|
2019-03-09 18:34:00 -08:00
|
|
|
parms.Hrtf.Target.Gain};
|
2019-08-20 06:03:31 -07:00
|
|
|
ALuint fademix{0u};
|
2019-03-10 12:50:38 -07:00
|
|
|
|
2019-03-28 09:29:20 -07:00
|
|
|
/* Copy the HRTF history and new input samples into a temp
|
|
|
|
* buffer.
|
|
|
|
*/
|
|
|
|
auto src_iter = std::copy(parms.Hrtf.State.History.begin(),
|
|
|
|
parms.Hrtf.State.History.end(), std::begin(HrtfSamples));
|
|
|
|
std::copy_n(samples, DstBufferSize, src_iter);
|
|
|
|
/* Copy the last used samples back into the history buffer
|
|
|
|
* for later.
|
|
|
|
*/
|
|
|
|
std::copy_n(std::begin(HrtfSamples) + DstBufferSize,
|
|
|
|
parms.Hrtf.State.History.size(), parms.Hrtf.State.History.begin());
|
|
|
|
|
2019-03-29 11:28:38 -07:00
|
|
|
/* Copy the current filtered values being accumulated into
|
|
|
|
* the temp buffer.
|
|
|
|
*/
|
|
|
|
auto accum_iter = std::copy_n(parms.Hrtf.State.Values.begin(),
|
|
|
|
parms.Hrtf.State.Values.size(), std::begin(AccumSamples));
|
|
|
|
|
2019-04-09 22:42:45 -07:00
|
|
|
/* Clear the accumulation buffer that will start getting
|
|
|
|
* filled in.
|
|
|
|
*/
|
|
|
|
std::fill_n(accum_iter, DstBufferSize, float2{});
|
|
|
|
|
2018-12-25 19:54:14 -08:00
|
|
|
/* If fading, the old gain is not silence, and this is the
|
|
|
|
* first mixing pass, fade between the IRs.
|
|
|
|
*/
|
|
|
|
if(Counter && (parms.Hrtf.Old.Gain > GAIN_SILENCE_THRESHOLD) && OutPos == 0)
|
2016-02-14 03:23:06 -08:00
|
|
|
{
|
2019-08-20 06:03:31 -07:00
|
|
|
fademix = minu(DstBufferSize, 128);
|
2019-03-29 11:28:38 -07:00
|
|
|
|
2019-03-10 12:50:38 -07:00
|
|
|
ALfloat gain{TargetGain};
|
2016-03-11 20:59:12 -08:00
|
|
|
|
2017-03-11 18:04:06 -08:00
|
|
|
/* The new coefficients need to fade in completely
|
|
|
|
* since they're replacing the old ones. To keep the
|
2017-04-28 10:05:57 -07:00
|
|
|
* gain fading consistent, interpolate between the old
|
|
|
|
* and new target gains given how much of the fade time
|
|
|
|
* this mix handles.
|
2017-03-11 18:04:06 -08:00
|
|
|
*/
|
2019-08-04 11:59:14 -07:00
|
|
|
if LIKELY(Counter > fademix)
|
2019-03-10 12:50:38 -07:00
|
|
|
{
|
|
|
|
const ALfloat a{static_cast<ALfloat>(fademix) /
|
|
|
|
static_cast<ALfloat>(Counter)};
|
|
|
|
gain = lerp(parms.Hrtf.Old.Gain, TargetGain, a);
|
|
|
|
}
|
2019-06-18 06:20:35 -07:00
|
|
|
MixHrtfFilter hrtfparams;
|
2018-12-26 15:35:05 -08:00
|
|
|
hrtfparams.Coeffs = &parms.Hrtf.Target.Coeffs;
|
2018-12-25 19:54:14 -08:00
|
|
|
hrtfparams.Delay[0] = parms.Hrtf.Target.Delay[0];
|
|
|
|
hrtfparams.Delay[1] = parms.Hrtf.Target.Delay[1];
|
2017-03-11 18:04:06 -08:00
|
|
|
hrtfparams.Gain = 0.0f;
|
2019-01-08 19:42:44 +01:00
|
|
|
hrtfparams.GainStep = gain / static_cast<ALfloat>(fademix);
|
2017-05-03 03:29:21 -07:00
|
|
|
|
2019-08-31 14:53:28 -07:00
|
|
|
MixHrtfBlendSamples(mDirect.Buffer[OutLIdx], mDirect.Buffer[OutRIdx],
|
|
|
|
HrtfSamples, AccumSamples, OutPos, IrSize, &parms.Hrtf.Old,
|
|
|
|
&hrtfparams, fademix);
|
2017-03-11 18:04:06 -08:00
|
|
|
/* Update the old parameters with the result. */
|
2018-12-25 19:54:14 -08:00
|
|
|
parms.Hrtf.Old = parms.Hrtf.Target;
|
2017-04-28 10:05:57 -07:00
|
|
|
if(fademix < Counter)
|
2018-12-25 19:54:14 -08:00
|
|
|
parms.Hrtf.Old.Gain = hrtfparams.Gain;
|
2019-03-09 18:34:00 -08:00
|
|
|
else
|
|
|
|
parms.Hrtf.Old.Gain = TargetGain;
|
2017-03-11 18:04:06 -08:00
|
|
|
}
|
2017-04-28 10:05:57 -07:00
|
|
|
|
2019-08-04 11:59:14 -07:00
|
|
|
if LIKELY(fademix < DstBufferSize)
|
2017-04-28 10:05:57 -07:00
|
|
|
{
|
2019-08-20 06:03:31 -07:00
|
|
|
const ALuint todo{DstBufferSize - fademix};
|
2019-03-09 18:34:00 -08:00
|
|
|
ALfloat gain{TargetGain};
|
2017-04-28 10:05:57 -07:00
|
|
|
|
|
|
|
/* Interpolate the target gain if the gain fading lasts
|
|
|
|
* longer than this mix.
|
|
|
|
*/
|
|
|
|
if(Counter > DstBufferSize)
|
2019-03-10 12:50:38 -07:00
|
|
|
{
|
|
|
|
const ALfloat a{static_cast<ALfloat>(todo) /
|
|
|
|
static_cast<ALfloat>(Counter-fademix)};
|
|
|
|
gain = lerp(parms.Hrtf.Old.Gain, TargetGain, a);
|
|
|
|
}
|
2017-04-28 10:05:57 -07:00
|
|
|
|
2019-06-18 06:20:35 -07:00
|
|
|
MixHrtfFilter hrtfparams;
|
2018-12-26 15:35:05 -08:00
|
|
|
hrtfparams.Coeffs = &parms.Hrtf.Target.Coeffs;
|
2018-12-25 19:54:14 -08:00
|
|
|
hrtfparams.Delay[0] = parms.Hrtf.Target.Delay[0];
|
|
|
|
hrtfparams.Delay[1] = parms.Hrtf.Target.Delay[1];
|
|
|
|
hrtfparams.Gain = parms.Hrtf.Old.Gain;
|
2019-03-10 12:50:38 -07:00
|
|
|
hrtfparams.GainStep = (gain - parms.Hrtf.Old.Gain) /
|
|
|
|
static_cast<ALfloat>(todo);
|
2019-08-31 14:53:28 -07:00
|
|
|
MixHrtfSamples(mDirect.Buffer[OutLIdx], mDirect.Buffer[OutRIdx],
|
|
|
|
HrtfSamples+fademix, AccumSamples+fademix, OutPos+fademix, IrSize,
|
|
|
|
&hrtfparams, todo);
|
2017-04-28 10:05:57 -07:00
|
|
|
/* Store the interpolated gain or the final target gain
|
|
|
|
* depending if the fade is done.
|
|
|
|
*/
|
|
|
|
if(DstBufferSize < Counter)
|
2018-12-25 19:54:14 -08:00
|
|
|
parms.Hrtf.Old.Gain = gain;
|
2017-04-28 10:05:57 -07:00
|
|
|
else
|
2019-03-12 16:45:34 -07:00
|
|
|
parms.Hrtf.Old.Gain = TargetGain;
|
2017-04-28 10:05:57 -07:00
|
|
|
}
|
2019-03-29 11:28:38 -07:00
|
|
|
|
|
|
|
/* Copy the new in-progress accumulation values back for
|
|
|
|
* the next mix.
|
|
|
|
*/
|
|
|
|
std::copy_n(std::begin(AccumSamples) + DstBufferSize,
|
|
|
|
parms.Hrtf.State.Values.size(), parms.Hrtf.State.Values.begin());
|
2016-02-14 03:23:06 -08:00
|
|
|
}
|
2019-08-31 14:53:28 -07:00
|
|
|
else if((mFlags&VOICE_HAS_NFC))
|
2019-03-10 12:50:38 -07:00
|
|
|
{
|
|
|
|
const ALfloat *TargetGains{UNLIKELY(vstate == ALvoice::Stopping) ?
|
|
|
|
SilentTarget : parms.Gains.Target};
|
|
|
|
|
2019-06-05 23:00:28 -07:00
|
|
|
const size_t outcount{Device->NumChannelsPerOrder[0]};
|
2019-08-31 14:53:28 -07:00
|
|
|
MixSamples({samples, DstBufferSize}, mDirect.Buffer.first(outcount),
|
2019-08-20 06:03:31 -07:00
|
|
|
parms.Gains.Current, TargetGains, Counter, OutPos);
|
2019-03-10 12:50:38 -07:00
|
|
|
|
2019-08-20 06:03:31 -07:00
|
|
|
const al::span<float> nfcsamples{Device->NfcSampleData, DstBufferSize};
|
2019-05-29 21:58:37 -07:00
|
|
|
size_t chanoffset{outcount};
|
2019-08-20 05:26:51 -07:00
|
|
|
using FilterProc = void (NfcFilter::*)(float*,const float*,const size_t);
|
2019-08-31 14:53:28 -07:00
|
|
|
auto apply_nfc = [this,&parms,samples,TargetGains,Counter,OutPos,&chanoffset,nfcsamples](const FilterProc process, const size_t outcount) -> void
|
2019-03-10 12:50:38 -07:00
|
|
|
{
|
2019-05-29 21:58:37 -07:00
|
|
|
if(outcount < 1) return;
|
2019-08-20 05:26:51 -07:00
|
|
|
(parms.NFCtrlFilter.*process)(nfcsamples.data(), samples, nfcsamples.size());
|
2019-08-31 14:53:28 -07:00
|
|
|
MixSamples(nfcsamples, mDirect.Buffer.subspan(chanoffset, outcount),
|
2019-05-28 16:22:36 -07:00
|
|
|
parms.Gains.Current+chanoffset, TargetGains+chanoffset, Counter,
|
2019-08-20 04:16:44 -07:00
|
|
|
OutPos);
|
2019-05-29 21:58:37 -07:00
|
|
|
chanoffset += outcount;
|
2019-03-10 12:50:38 -07:00
|
|
|
};
|
2019-06-05 23:00:28 -07:00
|
|
|
apply_nfc(&NfcFilter::process1, Device->NumChannelsPerOrder[1]);
|
|
|
|
apply_nfc(&NfcFilter::process2, Device->NumChannelsPerOrder[2]);
|
|
|
|
apply_nfc(&NfcFilter::process3, Device->NumChannelsPerOrder[3]);
|
2019-03-10 12:50:38 -07:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
const ALfloat *TargetGains{UNLIKELY(vstate == ALvoice::Stopping) ?
|
|
|
|
SilentTarget : parms.Gains.Target};
|
2019-08-31 14:53:28 -07:00
|
|
|
MixSamples({samples, DstBufferSize}, mDirect.Buffer, parms.Gains.Current,
|
|
|
|
TargetGains, Counter, OutPos);
|
2019-03-10 12:50:38 -07:00
|
|
|
}
|
2012-09-26 17:16:25 -07:00
|
|
|
}
|
2012-09-11 05:24:19 -07:00
|
|
|
|
2019-03-02 23:41:26 -08:00
|
|
|
ALfloat (&FilterBuf)[BUFFERSIZE] = Device->FilteredData;
|
2019-06-03 22:24:26 -07:00
|
|
|
for(ALsizei send{0};send < NumSends;++send)
|
2012-09-08 21:34:36 -07:00
|
|
|
{
|
2019-08-31 14:53:28 -07:00
|
|
|
if(mSend[send].Buffer.empty())
|
2019-06-03 22:24:26 -07:00
|
|
|
continue;
|
2012-09-11 05:24:19 -07:00
|
|
|
|
2019-06-24 13:33:09 -07:00
|
|
|
SendParams &parms = chandata.mWetParams[send];
|
2018-12-25 19:54:14 -08:00
|
|
|
const ALfloat *samples{DoFilters(&parms.LowPass, &parms.HighPass,
|
2019-08-31 14:53:28 -07:00
|
|
|
FilterBuf, ResampledData, DstBufferSize, mSend[send].FilterType)};
|
2016-02-14 01:22:01 -08:00
|
|
|
|
2019-03-09 21:54:15 -08:00
|
|
|
const ALfloat *TargetGains{UNLIKELY(vstate==ALvoice::Stopping) ? SilentTarget :
|
|
|
|
parms.Gains.Target};
|
2019-08-31 14:53:28 -07:00
|
|
|
MixSamples({samples, DstBufferSize}, mSend[send].Buffer, parms.Gains.Current,
|
|
|
|
TargetGains, Counter, OutPos);
|
2018-12-02 13:35:07 -08:00
|
|
|
};
|
2012-04-27 23:46:51 -07:00
|
|
|
}
|
2012-09-26 17:16:25 -07:00
|
|
|
/* Update positions */
|
2014-06-02 19:19:22 -07:00
|
|
|
DataPosFrac += increment*DstBufferSize;
|
|
|
|
DataPosInt += DataPosFrac>>FRACTIONBITS;
|
|
|
|
DataPosFrac &= FRACTIONMASK;
|
|
|
|
|
2012-09-26 17:16:25 -07:00
|
|
|
OutPos += DstBufferSize;
|
2019-08-20 06:03:31 -07:00
|
|
|
Counter = maxu(DstBufferSize, Counter) - DstBufferSize;
|
2010-08-03 23:19:36 -07:00
|
|
|
|
2019-08-04 11:59:14 -07:00
|
|
|
if UNLIKELY(!BufferListItem)
|
2019-03-09 18:34:00 -08:00
|
|
|
{
|
2019-05-05 01:51:46 -07:00
|
|
|
/* Do nothing extra when there's no buffers. */
|
2019-03-09 18:34:00 -08:00
|
|
|
}
|
|
|
|
else if(isstatic)
|
2010-08-03 23:19:36 -07:00
|
|
|
{
|
2018-02-01 21:07:55 -08:00
|
|
|
if(BufferLoopItem)
|
2010-11-25 11:16:19 -08:00
|
|
|
{
|
2018-02-01 21:07:55 -08:00
|
|
|
/* Handle looping static source */
|
2019-08-11 03:34:35 -07:00
|
|
|
const ALbuffer *Buffer{BufferListItem->mBuffer};
|
2019-07-31 09:20:53 -07:00
|
|
|
const ALuint LoopStart{Buffer->LoopStart};
|
|
|
|
const ALuint LoopEnd{Buffer->LoopEnd};
|
2018-02-01 21:07:55 -08:00
|
|
|
if(DataPosInt >= LoopEnd)
|
|
|
|
{
|
|
|
|
assert(LoopEnd > LoopStart);
|
|
|
|
DataPosInt = ((DataPosInt-LoopStart)%(LoopEnd-LoopStart)) + LoopStart;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* Handle non-looping static source */
|
2019-08-11 03:34:35 -07:00
|
|
|
if(DataPosInt >= BufferListItem->mSampleLen)
|
2018-02-01 21:07:55 -08:00
|
|
|
{
|
2019-08-04 11:59:14 -07:00
|
|
|
if LIKELY(vstate == ALvoice::Playing)
|
2019-05-05 01:51:46 -07:00
|
|
|
vstate = ALvoice::Stopped;
|
2019-01-07 12:37:13 +01:00
|
|
|
BufferListItem = nullptr;
|
2018-02-01 21:07:55 -08:00
|
|
|
break;
|
|
|
|
}
|
2011-02-06 01:07:37 -08:00
|
|
|
}
|
2017-12-16 11:34:52 -08:00
|
|
|
}
|
|
|
|
else while(1)
|
|
|
|
{
|
2018-02-01 21:07:55 -08:00
|
|
|
/* Handle streaming source */
|
2019-08-11 03:34:35 -07:00
|
|
|
if(BufferListItem->mSampleLen > DataPosInt)
|
2011-02-06 01:07:37 -08:00
|
|
|
break;
|
|
|
|
|
2019-08-11 03:34:35 -07:00
|
|
|
DataPosInt -= BufferListItem->mSampleLen;
|
2018-09-16 17:38:55 -07:00
|
|
|
|
2019-08-11 03:34:35 -07:00
|
|
|
++buffers_done;
|
2019-07-31 09:20:53 -07:00
|
|
|
BufferListItem = BufferListItem->mNext.load(std::memory_order_relaxed);
|
2018-02-01 01:36:03 -08:00
|
|
|
if(!BufferListItem && !(BufferListItem=BufferLoopItem))
|
2010-08-03 23:19:36 -07:00
|
|
|
{
|
2019-08-04 11:59:14 -07:00
|
|
|
if LIKELY(vstate == ALvoice::Playing)
|
2019-05-05 01:51:46 -07:00
|
|
|
vstate = ALvoice::Stopped;
|
2018-02-01 01:36:03 -08:00
|
|
|
break;
|
2010-08-03 23:19:36 -07:00
|
|
|
}
|
|
|
|
}
|
2019-03-09 21:32:14 -08:00
|
|
|
} while(OutPos < SamplesToDo);
|
2010-08-03 23:19:36 -07:00
|
|
|
|
2019-08-31 14:53:28 -07:00
|
|
|
mFlags |= VOICE_IS_FADING;
|
2016-02-14 01:22:01 -08:00
|
|
|
|
2019-03-09 18:34:00 -08:00
|
|
|
/* Don't update positions and buffers if we were stopping. */
|
2019-08-04 11:59:14 -07:00
|
|
|
if UNLIKELY(vstate == ALvoice::Stopping)
|
2019-03-09 18:34:00 -08:00
|
|
|
{
|
2019-08-31 14:53:28 -07:00
|
|
|
mPlayState.store(ALvoice::Stopped, std::memory_order_release);
|
2019-03-09 18:34:00 -08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-08-31 14:53:28 -07:00
|
|
|
/* Capture the source ID in case it's reset for stopping. */
|
|
|
|
const ALuint SourceID{mSourceID.load(std::memory_order_relaxed)};
|
|
|
|
|
2019-03-11 20:00:14 -07:00
|
|
|
/* Update voice info */
|
2019-08-31 14:53:28 -07:00
|
|
|
mPosition.store(DataPosInt, std::memory_order_relaxed);
|
|
|
|
mPositionFrac.store(DataPosFrac, std::memory_order_relaxed);
|
|
|
|
mCurrentBuffer.store(BufferListItem, std::memory_order_relaxed);
|
2019-03-09 21:32:14 -08:00
|
|
|
if(vstate == ALvoice::Stopped)
|
|
|
|
{
|
2019-08-31 14:53:28 -07:00
|
|
|
mLoopBuffer.store(nullptr, std::memory_order_relaxed);
|
|
|
|
mSourceID.store(0u, std::memory_order_relaxed);
|
2019-03-09 21:32:14 -08:00
|
|
|
}
|
|
|
|
std::atomic_thread_fence(std::memory_order_release);
|
2018-02-01 01:36:03 -08:00
|
|
|
|
2018-02-01 21:07:55 -08:00
|
|
|
/* Send any events now, after the position/buffer info was updated. */
|
2019-08-31 14:53:28 -07:00
|
|
|
const ALbitfieldSOFT enabledevt{Context->mEnabledEvts.load(std::memory_order_acquire)};
|
2018-02-01 01:36:03 -08:00
|
|
|
if(buffers_done > 0 && (enabledevt&EventType_BufferCompleted))
|
2018-12-04 16:33:26 -08:00
|
|
|
{
|
2019-07-30 09:05:54 -07:00
|
|
|
RingBuffer *ring{Context->mAsyncEvents.get()};
|
2018-12-27 10:44:02 -08:00
|
|
|
auto evt_vec = ring->getWriteVector();
|
|
|
|
if(evt_vec.first.len > 0)
|
2018-12-25 09:32:38 -08:00
|
|
|
{
|
2018-12-27 10:44:02 -08:00
|
|
|
AsyncEvent *evt{new (evt_vec.first.buf) AsyncEvent{EventType_BufferCompleted}};
|
2018-12-25 09:32:38 -08:00
|
|
|
evt->u.bufcomp.id = SourceID;
|
|
|
|
evt->u.bufcomp.count = buffers_done;
|
2018-12-26 21:22:17 -08:00
|
|
|
ring->writeAdvance(1);
|
2019-07-30 09:05:54 -07:00
|
|
|
Context->mEventSem.post();
|
2018-12-25 09:32:38 -08:00
|
|
|
}
|
2018-12-04 16:33:26 -08:00
|
|
|
}
|
2018-02-01 01:36:03 -08:00
|
|
|
|
2019-03-09 16:48:07 -08:00
|
|
|
if(vstate == ALvoice::Stopped)
|
|
|
|
{
|
2019-03-09 21:32:14 -08:00
|
|
|
/* If the voice just ended, set it to Stopping so the next render
|
|
|
|
* ensures any residual noise fades to 0 amplitude.
|
|
|
|
*/
|
2019-08-31 14:53:28 -07:00
|
|
|
mPlayState.store(ALvoice::Stopping, std::memory_order_release);
|
|
|
|
if((enabledevt&EventType_SourceStateChange))
|
|
|
|
SendSourceStoppedEvent(Context, SourceID);
|
2019-03-09 16:48:07 -08:00
|
|
|
}
|
2010-08-03 23:19:36 -07:00
|
|
|
}
|