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-08-16 18:09:53 -07:00
|
|
|
const ALfloat *Resample_copy_C(const InterpState *state, const ALfloat *restrict src, ALsizei frac, ALint increment, ALfloat *restrict dst, ALsizei dstlen);
|
|
|
|
const ALfloat *Resample_point_C(const InterpState *state, const ALfloat *restrict src, ALsizei frac, ALint increment, ALfloat *restrict dst, ALsizei dstlen);
|
|
|
|
const ALfloat *Resample_lerp_C(const InterpState *state, const ALfloat *restrict src, ALsizei frac, ALint increment, ALfloat *restrict dst, ALsizei dstlen);
|
2018-01-07 05:32:07 -08:00
|
|
|
const ALfloat *Resample_cubic_C(const InterpState *state, const ALfloat *restrict src, ALsizei frac, ALint increment, ALfloat *restrict dst, ALsizei dstlen);
|
2017-08-16 18:09:53 -07:00
|
|
|
const ALfloat *Resample_bsinc_C(const InterpState *state, const ALfloat *restrict src, ALsizei 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-03-11 18:04:06 -08:00
|
|
|
const ALfloat *data, ALsizei Offset, ALsizei OutPos,
|
|
|
|
const ALsizei IrSize, struct MixHrtfParams *hrtfparams,
|
2017-01-16 07:45:07 -08:00
|
|
|
struct HrtfState *hrtfstate, ALsizei BufferSize);
|
2017-05-03 03:29:21 -07:00
|
|
|
void MixHrtfBlend_C(ALfloat *restrict LeftOut, ALfloat *restrict RightOut,
|
|
|
|
const ALfloat *data, ALsizei Offset, ALsizei OutPos,
|
|
|
|
const ALsizei IrSize, const HrtfParams *oldparams,
|
|
|
|
MixHrtfParams *newparams, 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,
|
2017-03-11 18:04:06 -08:00
|
|
|
const 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-03-11 18:04:06 -08:00
|
|
|
const ALfloat *data, ALsizei Offset, ALsizei OutPos,
|
|
|
|
const ALsizei IrSize, struct MixHrtfParams *hrtfparams,
|
2017-01-16 07:45:07 -08:00
|
|
|
struct HrtfState *hrtfstate, ALsizei BufferSize);
|
2017-05-03 03:29:21 -07:00
|
|
|
void MixHrtfBlend_SSE(ALfloat *restrict LeftOut, ALfloat *restrict RightOut,
|
|
|
|
const ALfloat *data, ALsizei Offset, ALsizei OutPos,
|
|
|
|
const ALsizei IrSize, const HrtfParams *oldparams,
|
|
|
|
MixHrtfParams *newparams, 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,
|
2017-03-11 18:04:06 -08:00
|
|
|
const 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-04-08 14:29:08 -07:00
|
|
|
inline void InitiatePositionArrays(ALsizei frac, ALint increment, ALsizei *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-08-16 18:09:53 -07:00
|
|
|
const ALfloat *Resample_lerp_SSE2(const InterpState *state, const ALfloat *restrict src,
|
|
|
|
ALsizei frac, ALint increment, ALfloat *restrict dst,
|
|
|
|
ALsizei numsamples);
|
|
|
|
const ALfloat *Resample_lerp_SSE41(const InterpState *state, const ALfloat *restrict src,
|
|
|
|
ALsizei frac, ALint increment, ALfloat *restrict dst,
|
|
|
|
ALsizei numsamples);
|
2014-06-04 02:57:13 -07:00
|
|
|
|
2017-08-16 18:09:53 -07:00
|
|
|
const ALfloat *Resample_bsinc_SSE(const InterpState *state, const ALfloat *restrict src,
|
|
|
|
ALsizei frac, ALint increment, ALfloat *restrict dst,
|
|
|
|
ALsizei dstlen);
|
2017-02-12 21:03:30 -08: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-03-11 18:04:06 -08:00
|
|
|
const ALfloat *data, ALsizei Offset, ALsizei OutPos,
|
|
|
|
const ALsizei IrSize, struct MixHrtfParams *hrtfparams,
|
2017-01-16 07:45:07 -08:00
|
|
|
struct HrtfState *hrtfstate, ALsizei BufferSize);
|
2017-05-03 03:29:21 -07:00
|
|
|
void MixHrtfBlend_Neon(ALfloat *restrict LeftOut, ALfloat *restrict RightOut,
|
|
|
|
const ALfloat *data, ALsizei Offset, ALsizei OutPos,
|
|
|
|
const ALsizei IrSize, const HrtfParams *oldparams,
|
|
|
|
MixHrtfParams *newparams, 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,
|
2017-03-11 18:04:06 -08:00
|
|
|
const 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
|
|
|
|
2017-02-12 21:03:30 -08:00
|
|
|
/* Neon resamplers */
|
2017-08-16 18:09:53 -07:00
|
|
|
const ALfloat *Resample_lerp_Neon(const InterpState *state, const ALfloat *restrict src,
|
|
|
|
ALsizei frac, ALint increment, ALfloat *restrict dst,
|
|
|
|
ALsizei numsamples);
|
|
|
|
const ALfloat *Resample_bsinc_Neon(const InterpState *state, const ALfloat *restrict src,
|
|
|
|
ALsizei frac, ALint increment, ALfloat *restrict dst,
|
|
|
|
ALsizei dstlen);
|
2017-02-12 21:03:30 -08:00
|
|
|
|
2012-08-15 01:01:55 -07:00
|
|
|
#endif /* MIXER_DEFS_H */
|