diff options
author | Chris Robinson <[email protected]> | 2019-10-21 11:30:39 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2019-10-21 11:30:39 -0700 |
commit | fcde56e1fc2e16b2ac461fdc2e97a89adb82c6c6 (patch) | |
tree | 29851a3957b1c6228356a89388337088c0423857 /utils/makemhr | |
parent | f58167e72dbc2844a06358ccd78d579feb17532a (diff) |
Increase the max elevation and azimuth count for HRTFs
Diffstat (limited to 'utils/makemhr')
-rw-r--r-- | utils/makemhr/makemhr.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/utils/makemhr/makemhr.h b/utils/makemhr/makemhr.h index 24520bd2..5125b43c 100644 --- a/utils/makemhr/makemhr.h +++ b/utils/makemhr/makemhr.h @@ -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. |