aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/uhjfilter.h
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2016-03-10 22:56:44 -0800
committerChris Robinson <[email protected]>2016-03-10 22:56:44 -0800
commit859cc703e75c2699531f041ccd3e8169d44bea50 (patch)
tree193eb51b9d99fe4e4b0173619711ca16b7716f7a /Alc/uhjfilter.h
parentd648486bcd431b34ad68b76db400ff7e963c72e2 (diff)
Use the proper left and right channels for UHJ output
Diffstat (limited to 'Alc/uhjfilter.h')
-rw-r--r--Alc/uhjfilter.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/uhjfilter.h b/Alc/uhjfilter.h
index a5aa9275..14572bc3 100644
--- a/Alc/uhjfilter.h
+++ b/Alc/uhjfilter.h
@@ -43,6 +43,6 @@ typedef struct Uhj2Encoder {
/* Encodes a 2-channel UHJ (stereo-compatible) signal from a B-Format input
* signal. */
-void EncodeUhj2(Uhj2Encoder *enc, ALfloat (*restrict OutBuffer)[BUFFERSIZE], ALfloat (*restrict InSamples)[BUFFERSIZE], ALuint SamplesToDo);
+void EncodeUhj2(Uhj2Encoder *enc, ALfloat *restrict LeftOut, ALfloat *restrict RightOut, ALfloat (*restrict InSamples)[BUFFERSIZE], ALuint SamplesToDo);
#endif /* UHJFILTER_H */