diff options
author | Chris Robinson <[email protected]> | 2016-11-10 21:51:45 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2016-11-10 21:51:45 -0800 |
commit | 9ef7719734505d04d093ee85fb39b4777816d6ed (patch) | |
tree | 8ece745296b0bb5fde55ecb6d41efc9d4a0b9af1 /Alc/hrtf.c | |
parent | 0532acdf94c9a63d4d8d9b8f634063e2e63879b6 (diff) |
Try to make embedded HRTF data sets work on OSX
Diffstat (limited to 'Alc/hrtf.c')
-rw-r--r-- | Alc/hrtf.c | 25 |
1 files changed, 25 insertions, 0 deletions
@@ -908,6 +908,31 @@ static const ALubyte *GetResource(int name, size_t *size) return LockResource(res); } +#elif defined(__APPLE__) + +#include <Availability.h> +#include <mach-o/getsect.h> + +static const ALubyte *GetResource(int name, size_t *size) +{ +#if defined(__MAC_OS_X_VERSION_MAX_ALLOWED) && (__MAC_OS_X_VERSION_MAX_ALLOWED >= 1070) + /* NOTE: OSX 10.7 and up need to call getsectiondata(&_mh_execute_header, ...). However, that + * call requires 10.7. + */ + if(name == IDR_DEFAULT_44100_MHR) + return getsectiondata(&_mh_execute_header, "binary", "default_44100_mhr", size); + if(name == IDR_DEFAULT_48000_MHR) + return getsectiondata(&_mh_execute_header, "binary", "default_48000_mhr", size); +#else + if(name == IDR_DEFAULT_44100_MHR) + return getsectdata("binary", "default_44100_mhr", size); + if(name == IDR_DEFAULT_48000_MHR) + return getsectdata("binary", "default_48000_mhr", size); +#endif + *size = 0; + return NULL; +} + #else extern const ALubyte _binary_default_44100_mhr_start[] HIDDEN_DECL; |