2012-08-15 01:01:55 -07:00
|
|
|
#ifndef MIXER_DEFS_H
|
|
|
|
#define MIXER_DEFS_H
|
|
|
|
|
|
|
|
#include "AL/alc.h"
|
|
|
|
#include "AL/al.h"
|
|
|
|
#include "alMain.h"
|
2014-06-06 01:52:53 -07:00
|
|
|
#include "alu.h"
|
2012-08-15 01:01:55 -07:00
|
|
|
|
2014-05-18 10:24:07 -07:00
|
|
|
struct MixGains;
|
|
|
|
|
2016-02-14 03:23:06 -08:00
|
|
|
struct MixHrtfParams;
|
2014-05-18 09:31:08 -07:00
|
|
|
struct HrtfState;
|
|
|
|
|
2012-09-14 04:13:18 -07:00
|
|
|
/* C resamplers */
|
2017-01-16 08:54:30 -08:00
|
|
|
const ALfloat *Resample_copy32_C(const BsincState *state, const ALfloat *restrict src, ALuint frac, ALint increment, ALfloat *restrict dst, ALsizei dstlen);
|
|
|
|
const ALfloat *Resample_point32_C(const BsincState *state, const ALfloat *restrict src, ALuint frac, ALint increment, ALfloat *restrict dst, ALsizei dstlen);
|
|
|
|
const ALfloat *Resample_lerp32_C(const BsincState *state, const ALfloat *restrict src, ALuint frac, ALint increment, ALfloat *restrict dst, ALsizei dstlen);
|
|
|
|
const ALfloat *Resample_fir4_32_C(const BsincState *state, const ALfloat *restrict src, ALuint frac, ALint increment, ALfloat *restrict dst, ALsizei dstlen);
|
|
|
|
const ALfloat *Resample_fir8_32_C(const BsincState *state, const ALfloat *restrict src, ALuint frac, ALint increment, ALfloat *restrict dst, ALsizei dstlen);
|
|
|
|
const ALfloat *Resample_bsinc32_C(const BsincState *state, const ALfloat *restrict src, ALuint frac, ALint increment, ALfloat *restrict dst, ALsizei dstlen);
|
2012-09-14 04:13:18 -07:00
|
|
|
|
|
|
|
|
2012-08-15 01:01:55 -07:00
|
|
|
/* C mixers */
|
2017-01-17 16:49:26 -08:00
|
|
|
void MixHrtf_C(ALfloat *restrict LeftOut, ALfloat *restrict RightOut,
|
2017-01-16 07:45:07 -08:00
|
|
|
const ALfloat *data, ALsizei Counter, ALsizei Offset, ALsizei OutPos,
|
|
|
|
const ALsizei IrSize, const struct MixHrtfParams *hrtfparams,
|
|
|
|
struct HrtfState *hrtfstate, ALsizei BufferSize);
|
2017-01-17 16:49:26 -08:00
|
|
|
void MixDirectHrtf_C(ALfloat *restrict LeftOut, ALfloat *restrict RightOut,
|
2017-01-16 07:45:07 -08:00
|
|
|
const ALfloat *data, ALsizei Offset, const ALsizei IrSize,
|
2016-08-12 05:26:36 -07:00
|
|
|
ALfloat (*restrict Coeffs)[2], ALfloat (*restrict Values)[2],
|
2017-01-16 07:45:07 -08:00
|
|
|
ALsizei BufferSize);
|
|
|
|
void Mix_C(const ALfloat *data, ALsizei OutChans, ALfloat (*restrict OutBuffer)[BUFFERSIZE],
|
|
|
|
ALfloat *CurrentGains, const ALfloat *TargetGains, ALsizei Counter, ALsizei OutPos,
|
|
|
|
ALsizei BufferSize);
|
2016-10-04 16:25:43 -07:00
|
|
|
void MixRow_C(ALfloat *OutBuffer, const ALfloat *Gains,
|
2017-01-16 07:45:07 -08:00
|
|
|
const ALfloat (*restrict data)[BUFFERSIZE], ALsizei InChans,
|
|
|
|
ALsizei InPos, ALsizei BufferSize);
|
2012-08-15 01:01:55 -07:00
|
|
|
|
|
|
|
/* SSE mixers */
|
2017-01-17 16:49:26 -08:00
|
|
|
void MixHrtf_SSE(ALfloat *restrict LeftOut, ALfloat *restrict RightOut,
|
2017-01-16 07:45:07 -08:00
|
|
|
const ALfloat *data, ALsizei Counter, ALsizei Offset, ALsizei OutPos,
|
|
|
|
const ALsizei IrSize, const struct MixHrtfParams *hrtfparams,
|
|
|
|
struct HrtfState *hrtfstate, ALsizei BufferSize);
|
2017-01-17 16:49:26 -08:00
|
|
|
void MixDirectHrtf_SSE(ALfloat *restrict LeftOut, ALfloat *restrict RightOut,
|
2017-01-16 07:45:07 -08:00
|
|
|
const ALfloat *data, ALsizei Offset, const ALsizei IrSize,
|
2016-08-12 05:26:36 -07:00
|
|
|
ALfloat (*restrict Coeffs)[2], ALfloat (*restrict Values)[2],
|
2017-01-16 07:45:07 -08:00
|
|
|
ALsizei BufferSize);
|
|
|
|
void Mix_SSE(const ALfloat *data, ALsizei OutChans, ALfloat (*restrict OutBuffer)[BUFFERSIZE],
|
|
|
|
ALfloat *CurrentGains, const ALfloat *TargetGains, ALsizei Counter, ALsizei OutPos,
|
|
|
|
ALsizei BufferSize);
|
2016-10-04 16:25:43 -07:00
|
|
|
void MixRow_SSE(ALfloat *OutBuffer, const ALfloat *Gains,
|
2017-01-16 07:45:07 -08:00
|
|
|
const ALfloat (*restrict data)[BUFFERSIZE], ALsizei InChans,
|
|
|
|
ALsizei InPos, ALsizei BufferSize);
|
2012-08-15 01:01:55 -07:00
|
|
|
|
2014-06-04 02:57:13 -07:00
|
|
|
/* SSE resamplers */
|
2017-01-16 08:54:30 -08:00
|
|
|
inline void InitiatePositionArrays(ALuint frac, ALint increment, ALuint *restrict frac_arr, ALint *restrict pos_arr, ALsizei size)
|
2014-06-06 01:52:53 -07:00
|
|
|
{
|
2017-01-16 08:54:30 -08:00
|
|
|
ALsizei i;
|
2014-06-06 01:52:53 -07:00
|
|
|
|
|
|
|
pos_arr[0] = 0;
|
|
|
|
frac_arr[0] = frac;
|
|
|
|
for(i = 1;i < size;i++)
|
|
|
|
{
|
2017-01-16 08:54:30 -08:00
|
|
|
ALint frac_tmp = frac_arr[i-1] + increment;
|
2014-06-06 01:52:53 -07:00
|
|
|
pos_arr[i] = pos_arr[i-1] + (frac_tmp>>FRACTIONBITS);
|
|
|
|
frac_arr[i] = frac_tmp&FRACTIONMASK;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-01-16 08:54:30 -08:00
|
|
|
const ALfloat *Resample_bsinc32_SSE(const BsincState *state, const ALfloat *restrict src,
|
|
|
|
ALuint frac, ALint increment, ALfloat *restrict dst,
|
|
|
|
ALsizei dstlen);
|
2015-11-05 09:42:08 -08:00
|
|
|
|
2016-10-06 01:39:18 -07:00
|
|
|
const ALfloat *Resample_lerp32_SSE2(const BsincState *state, const ALfloat *restrict src,
|
2017-01-16 08:54:30 -08:00
|
|
|
ALuint frac, ALint increment, ALfloat *restrict dst,
|
|
|
|
ALsizei numsamples);
|
2016-10-06 01:39:18 -07:00
|
|
|
const ALfloat *Resample_lerp32_SSE41(const BsincState *state, const ALfloat *restrict src,
|
2017-01-16 08:54:30 -08:00
|
|
|
ALuint frac, ALint increment, ALfloat *restrict dst,
|
|
|
|
ALsizei numsamples);
|
2014-06-04 02:57:13 -07:00
|
|
|
|
2016-10-06 01:39:18 -07:00
|
|
|
const ALfloat *Resample_fir4_32_SSE3(const BsincState *state, const ALfloat *restrict src,
|
2017-01-16 08:54:30 -08:00
|
|
|
ALuint frac, ALint increment, ALfloat *restrict dst,
|
|
|
|
ALsizei numsamples);
|
2016-10-06 01:39:18 -07:00
|
|
|
const ALfloat *Resample_fir4_32_SSE41(const BsincState *state, const ALfloat *restrict src,
|
2017-01-16 08:54:30 -08:00
|
|
|
ALuint frac, ALint increment, ALfloat *restrict dst,
|
|
|
|
ALsizei numsamples);
|
2014-12-15 13:58:41 -08:00
|
|
|
|
2016-10-06 01:39:18 -07:00
|
|
|
const ALfloat *Resample_fir8_32_SSE3(const BsincState *state, const ALfloat *restrict src,
|
2017-01-16 08:54:30 -08:00
|
|
|
ALuint frac, ALint increment, ALfloat *restrict dst,
|
|
|
|
ALsizei numsamples);
|
2016-10-06 01:39:18 -07:00
|
|
|
const ALfloat *Resample_fir8_32_SSE41(const BsincState *state, const ALfloat *restrict src,
|
2017-01-16 08:54:30 -08:00
|
|
|
ALuint frac, ALint increment, ALfloat *restrict dst,
|
|
|
|
ALsizei numsamples);
|
2015-10-11 07:37:22 -07:00
|
|
|
|
2012-08-15 01:01:55 -07:00
|
|
|
/* Neon mixers */
|
2017-01-17 16:49:26 -08:00
|
|
|
void MixHrtf_Neon(ALfloat *restrict LeftOut, ALfloat *restrict RightOut,
|
2017-01-16 07:45:07 -08:00
|
|
|
const ALfloat *data, ALsizei Counter, ALsizei Offset, ALsizei OutPos,
|
|
|
|
const ALsizei IrSize, const struct MixHrtfParams *hrtfparams,
|
|
|
|
struct HrtfState *hrtfstate, ALsizei BufferSize);
|
2017-01-17 16:49:26 -08:00
|
|
|
void MixDirectHrtf_Neon(ALfloat *restrict LeftOut, ALfloat *restrict RightOut,
|
2017-01-16 07:45:07 -08:00
|
|
|
const ALfloat *data, ALsizei Offset, const ALsizei IrSize,
|
2016-08-12 05:26:36 -07:00
|
|
|
ALfloat (*restrict Coeffs)[2], ALfloat (*restrict Values)[2],
|
2017-01-16 07:45:07 -08:00
|
|
|
ALsizei BufferSize);
|
|
|
|
void Mix_Neon(const ALfloat *data, ALsizei OutChans, ALfloat (*restrict OutBuffer)[BUFFERSIZE],
|
|
|
|
ALfloat *CurrentGains, const ALfloat *TargetGains, ALsizei Counter, ALsizei OutPos,
|
|
|
|
ALsizei BufferSize);
|
2016-10-04 16:25:43 -07:00
|
|
|
void MixRow_Neon(ALfloat *OutBuffer, const ALfloat *Gains,
|
2017-01-16 07:45:07 -08:00
|
|
|
const ALfloat (*restrict data)[BUFFERSIZE], ALsizei InChans,
|
|
|
|
ALsizei InPos, ALsizei BufferSize);
|
2012-08-15 01:01:55 -07:00
|
|
|
|
|
|
|
#endif /* MIXER_DEFS_H */
|