diff options
author | Chris Robinson <[email protected]> | 2021-03-31 05:37:56 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2021-03-31 05:37:56 -0700 |
commit | 8793055e666d2019dd48422c2e4ece1d3118e2f7 (patch) | |
tree | b9157843ca82fc9d6a244cef6f5ca4eeec09d9bb /alc/inprogext.h | |
parent | 051d6fb243c3d6843b5f5b24684cc9324cdc1de1 (diff) |
Start an interface for providing UHJ audio
Currently only 2-channel UHJ, which gets treated as stereo.
Diffstat (limited to 'alc/inprogext.h')
-rw-r--r-- | alc/inprogext.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/alc/inprogext.h b/alc/inprogext.h index bb16531a..a3319ff7 100644 --- a/alc/inprogext.h +++ b/alc/inprogext.h @@ -76,6 +76,13 @@ ALCboolean ALC_APIENTRY alcReopenDeviceSOFT(ALCdevice *device, const ALCchar *de #endif #endif +#ifndef AL_SOFT_UHJ +#define AL_SOFT_UHJ +#define AL_FORMAT_UHJ2CHN8 0x19A2 +#define AL_FORMAT_UHJ2CHN16 0x19A3 +#define AL_FORMAT_UHJ2CHN_FLOAT32 0x19A4 +#endif + #ifdef __cplusplus } /* extern "C" */ #endif |