aboutsummaryrefslogtreecommitdiffstats
path: root/alc/uhjfilter.h
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2020-04-08 10:15:43 -0700
committerChris Robinson <[email protected]>2020-04-08 10:15:43 -0700
commitd67cba99bd97d42e7e52c6dfd7a08c288b1539c0 (patch)
tree014425832a37173da8d9c3b2377526ce41d58d36 /alc/uhjfilter.h
parent8a5153ce0dee072c283b04ff5a61faa764f81743 (diff)
Clean up some more unnecessary uses of AL types
Diffstat (limited to 'alc/uhjfilter.h')
-rw-r--r--alc/uhjfilter.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/alc/uhjfilter.h b/alc/uhjfilter.h
index 88d30351..e88048e1 100644
--- a/alc/uhjfilter.h
+++ b/alc/uhjfilter.h
@@ -8,7 +8,7 @@
struct AllPassState {
- ALfloat z[2]{0.0f, 0.0f};
+ float z[2]{0.0f, 0.0f};
};
/* Encoding 2-channel UHJ from B-Format is done as:
@@ -40,7 +40,7 @@ struct Uhj2Encoder {
AllPassState mFilter1_Y[4];
AllPassState mFilter2_WX[4];
AllPassState mFilter1_WX[4];
- ALfloat mLastY{0.0f}, mLastWX{0.0f};
+ float mLastY{0.0f}, mLastWX{0.0f};
/* Encodes a 2-channel UHJ (stereo-compatible) signal from a B-Format input
* signal. The input must use FuMa channel ordering and scaling.