diff options
author | Chris Robinson <[email protected]> | 2019-05-28 16:22:36 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2019-05-28 16:22:36 -0700 |
commit | c80ee5b7014d12675e2c615574c9f3f3354ffd1b (patch) | |
tree | 75ac5c7197ab7d8994854455c7261a9d42a99c82 /Alc/uhjfilter.h | |
parent | 7ce2b632f51292c26014ad2efeb4b5429c3bf04f (diff) |
Use std::array for most mixing buffer arrays
Diffstat (limited to 'Alc/uhjfilter.h')
-rw-r--r-- | Alc/uhjfilter.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Alc/uhjfilter.h b/Alc/uhjfilter.h index 1351491b..181e036a 100644 --- a/Alc/uhjfilter.h +++ b/Alc/uhjfilter.h @@ -45,7 +45,8 @@ struct Uhj2Encoder { /* Encodes a 2-channel UHJ (stereo-compatible) signal from a B-Format input * signal. The input must use FuMa channel ordering and scaling. */ - void encode(ALfloat *LeftOut, ALfloat *RightOut, ALfloat (*InSamples)[BUFFERSIZE], const ALsizei SamplesToDo); + void encode(FloatBufferLine &LeftOut, FloatBufferLine &RightOut, FloatBufferLine *InSamples, + const ALsizei SamplesToDo); DEF_NEWDEL(Uhj2Encoder) }; |