diff options
Diffstat (limited to 'alc/uhjfilter.h')
-rw-r--r-- | alc/uhjfilter.h | 4 |
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. |