diff options
author | Chris Robinson <[email protected]> | 2019-01-05 22:31:13 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2019-01-05 22:31:13 -0800 |
commit | 3b91010e21f607196a3927f617164c4fdb68b5e6 (patch) | |
tree | 182d2fec05cffa36b28b748d7ec9b5fd6728a1c4 /Alc/bformatdec.h | |
parent | aa29bf593342643906514fc4497a4428ec1828ab (diff) |
Pass the normalized crossover frequency to the reset method
Diffstat (limited to 'Alc/bformatdec.h')
-rw-r--r-- | Alc/bformatdec.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/bformatdec.h b/Alc/bformatdec.h index ea9c7317..153882c4 100644 --- a/Alc/bformatdec.h +++ b/Alc/bformatdec.h @@ -42,7 +42,7 @@ private: public: void reset(const AmbDecConf *conf, bool allow_2band, ALsizei inchans, ALuint srate, const ALsizei (&chanmap)[MAX_OUTPUT_CHANNELS]); - void reset(ALsizei inchans, ALuint srate, ALsizei chancount, const ChannelDec (&chancoeffs)[MAX_OUTPUT_CHANNELS], const ALsizei (&chanmap)[MAX_OUTPUT_CHANNELS]); + void reset(const ALsizei inchans, const ALfloat xover_norm, const ALsizei chancount, const ChannelDec (&chancoeffs)[MAX_OUTPUT_CHANNELS], const ALsizei (&chanmap)[MAX_OUTPUT_CHANNELS]); /* Decodes the ambisonic input to the given output channels. */ void process(ALfloat (*OutBuffer)[BUFFERSIZE], const ALsizei OutChannels, const ALfloat (*InSamples)[BUFFERSIZE], const ALsizei SamplesToDo); |