#ifndef ALC_HRTF_H #define ALC_HRTF_H #include #include #include #include #include "AL/al.h" #include "almalloc.h" #include "alspan.h" #include "ambidefs.h" #include "atomic.h" #include "vector.h" #define HRTF_HISTORY_BITS (6) #define HRTF_HISTORY_LENGTH (1<; using HrirArray = std::array; struct HrtfState { alignas(16) std::array History; }; struct HrtfFilter { alignas(16) HrirArray Coeffs; ALsizei Delay[2]; ALfloat Gain; }; struct DirectHrtfState { /* HRTF filter state for dry buffer content */ ALuint IrSize{0}; al::FlexArray Coeffs; DirectHrtfState(size_t numchans) : Coeffs{numchans} { } static std::unique_ptr Create(size_t num_chans); DEF_FAM_NEWDEL(DirectHrtfState, Coeffs) }; struct ElevRadius { float value; }; struct AzimRadius { float value; }; struct AngularPoint { ElevRadius Elev; AzimRadius Azim; }; al::vector EnumerateHrtf(const char *devname); HrtfStore *GetLoadedHrtf(const std::string &name); void GetHrtfCoeffs(const HrtfStore *Hrtf, ALfloat elevation, ALfloat azimuth, ALfloat distance, ALfloat spread, HrirArray &coeffs, ALsizei (&delays)[2]); /** * Produces HRTF filter coefficients for decoding B-Format, given a set of * virtual speaker positions, a matching decoding matrix, and per-order high- * frequency gains for the decoder. The calculated impulse responses are * ordered and scaled according to the matrix input. */ void BuildBFormatHrtf(const HrtfStore *Hrtf, DirectHrtfState *state, const al::span AmbiPoints, const ALfloat (*AmbiMatrix)[MAX_AMBI_CHANNELS], const ALfloat *AmbiOrderHFGain); #endif /* ALC_HRTF_H */