diff options
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) }; |