aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/hrtf.c
diff options
context:
space:
mode:
Diffstat (limited to 'Alc/hrtf.c')
-rw-r--r--Alc/hrtf.c13
1 files changed, 8 insertions, 5 deletions
diff --git a/Alc/hrtf.c b/Alc/hrtf.c
index e7fe0f68..999b838e 100644
--- a/Alc/hrtf.c
+++ b/Alc/hrtf.c
@@ -312,7 +312,10 @@ ALuint GetMovingHrtfCoeffs(const struct Hrtf *Hrtf, ALfloat elevation, ALfloat a
}
-/* Calculates HRTF coefficients for B-Format channels (only up to first-order). */
+/* Calculates HRTF coefficients for B-Format channels (only up to first-order).
+ * Note that these will decode a B-Format output mix, which uses FuMa ordering
+ * and scaling, not N3D!
+ */
void GetBFormatHrtfCoeffs(const struct Hrtf *Hrtf, const ALuint num_chans, ALfloat (**coeffs_list)[2], ALuint **delay_list)
{
ALuint elev_idx, azi_idx;
@@ -366,10 +369,10 @@ void GetBFormatHrtfCoeffs(const struct Hrtf *Hrtf, const ALuint num_chans, ALflo
y = sinf(-az) * cosf(elev);
z = sinf(elev);
- ambi_coeffs[0] = 1.0f;
- ambi_coeffs[1] = 0.5774f * y;
- ambi_coeffs[2] = 0.5774f * z;
- ambi_coeffs[3] = 0.5774f * x;
+ ambi_coeffs[0] = 1.4142f;
+ ambi_coeffs[1] = x;
+ ambi_coeffs[2] = y;
+ ambi_coeffs[3] = z;
for(c = 0;c < num_chans;c++)
{