Increase the max elevation and azimuth count for HRTFs

This commit is contained in:
Chris Robinson
2019-10-21 11:30:39 -07:00
parent f58167e72d
commit fcde56e1fc
2 changed files with 5 additions and 5 deletions
+2 -2
View File
@@ -88,10 +88,10 @@ using HrtfHandlePtr = std::unique_ptr<HrtfHandle>;
#define MAX_FD_DISTANCE (2.5f)
#define MIN_EV_COUNT (5)
#define MAX_EV_COUNT (128)
#define MAX_EV_COUNT (181)
#define MIN_AZ_COUNT (1)
#define MAX_AZ_COUNT (128)
#define MAX_AZ_COUNT (360)
#define MAX_HRIR_DELAY (HRTF_HISTORY_LENGTH-1)
+3 -3
View File
@@ -11,13 +11,13 @@
// The limit to the number of 'distances' listed in the data set definition.
#define MAX_FD_COUNT (16)
// The limits to the number of 'azimuths' listed in the data set definition.
// The limits to the number of 'elevations' listed in the data set definition.
#define MIN_EV_COUNT (5)
#define MAX_EV_COUNT (128)
#define MAX_EV_COUNT (181)
// The limits for each of the 'azimuths' listed in the data set definition.
#define MIN_AZ_COUNT (1)
#define MAX_AZ_COUNT (128)
#define MAX_AZ_COUNT (360)
// The limits for the 'distance' from source to listener for each field in
// the definition file.