aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/hrtf.c
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2011-05-19 17:57:14 -0700
committerChris Robinson <[email protected]>2011-05-19 17:57:14 -0700
commit7396aaf2c28ef4e16c3f27d0cc3c06cc09134d41 (patch)
tree994c34cc602b4fd03d7eee2bc3ca3620c142a771 /Alc/hrtf.c
parent555ccce4eec6afbe3a14fe5a9de6d04e1e74fdcd (diff)
Fix HRTF elevation calculation
Diffstat (limited to 'Alc/hrtf.c')
-rw-r--r--Alc/hrtf.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/Alc/hrtf.c b/Alc/hrtf.c
index 09747209..da461dcf 100644
--- a/Alc/hrtf.c
+++ b/Alc/hrtf.c
@@ -53,14 +53,14 @@ static void get_angle_coeffs(const HrtfFilterCoeffs *elev, ALfloat angle, const
}
}
-void GetHrtfCoeffs(ALfloat azimuth, ALfloat angle, const ALshort **left, const ALshort **right)
+void GetHrtfCoeffs(ALfloat elevation, ALfloat angle, const ALshort **left, const ALshort **right)
{
int idx;
- if(azimuth > 90.f) azimuth = 90.f - (azimuth - 90.f);
- else if(azimuth < -90.f) azimuth = -90.f - (azimuth - -90.f);
+ if(elevation > 90.f) elevation = 90.f - (elevation - 90.f);
+ else if(elevation < -90.f) elevation = -90.f - (elevation - -90.f);
- idx = (int)(azimuth/10.0 + 0.5);
+ idx = (int)(elevation/10.0 + 0.5);
if(idx >= 9) return get_angle_coeffs(&Elev90, angle, left, right);
if(idx >= 8) return get_angle_coeffs(&Elev80, angle, left, right);
if(idx >= 7) return get_angle_coeffs(&Elev70, angle, left, right);