diff options
author | Chris Robinson <[email protected]> | 2017-04-30 04:21:48 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2017-04-30 04:21:48 -0700 |
commit | fc2afa1eaab1dd29833c74e720210d54a6a449bd (patch) | |
tree | 12ee43c47ae5a50a14e77a13df1c32e7f0a3289a | |
parent | 9767f4f9c3d61729e56699756c1c390547faf1df (diff) |
Start an extension to toggle the output limiter
-rw-r--r-- | Alc/ALc.c | 23 | ||||
-rw-r--r-- | OpenAL32/Include/alMain.h | 5 |
2 files changed, 23 insertions, 5 deletions
@@ -364,6 +364,8 @@ static const struct { DECL(ALC_N3D_SOFT), DECL(ALC_SN3D_SOFT), + DECL(ALC_OUTPUT_LIMITER_SOFT), + DECL(ALC_NO_ERROR), DECL(ALC_INVALID_DEVICE), DECL(ALC_INVALID_CONTEXT), @@ -777,7 +779,7 @@ static const ALCchar alcExtensionList[] = "ALC_ENUMERATE_ALL_EXT ALC_ENUMERATION_EXT ALC_EXT_CAPTURE " "ALC_EXT_DEDICATED ALC_EXT_disconnect ALC_EXT_EFX " "ALC_EXT_thread_local_context ALC_SOFTX_device_clock ALC_SOFT_HRTF " - "ALC_SOFT_loopback ALC_SOFT_pause_device"; + "ALC_SOFT_loopback ALC_SOFTX_output_limiter ALC_SOFT_pause_device"; static const ALCint alcMajorVersion = 1; static const ALCint alcMinorVersion = 1; @@ -1757,6 +1759,7 @@ static ALCenum UpdateDeviceParams(ALCdevice *device, const ALCint *attrList) { enum HrtfRequestMode hrtf_userreq = Hrtf_Default; enum HrtfRequestMode hrtf_appreq = Hrtf_Default; + ALCenum gainLimiter = (device->LimiterGain > 0.0f); const ALsizei old_sends = device->NumAuxSends; ALsizei new_sends = device->NumAuxSends; enum DevFmtChannels oldChans; @@ -1768,6 +1771,7 @@ static ALCenum UpdateDeviceParams(ALCdevice *device, const ALCint *attrList) FPUCtl oldMode; size_t size; ALCsizei i; + int val; // Check for attributes if(device->Type == Loopback) @@ -1871,6 +1875,11 @@ static ALCenum UpdateDeviceParams(ALCdevice *device, const ALCint *attrList) TRACE_ATTR(ALC_HRTF_ID_SOFT, hrtf_id); break; + case ALC_OUTPUT_LIMITER_SOFT: + gainLimiter = attrList[attrIdx + 1]; + TRACE_ATTR(ALC_OUTPUT_LIMITER_SOFT, gainLimiter); + break; + default: TRACE("Loopback 0x%04X = %d (0x%x)\n", attrList[attrIdx], attrList[attrIdx + 1], attrList[attrIdx + 1]); @@ -1993,6 +2002,11 @@ static ALCenum UpdateDeviceParams(ALCdevice *device, const ALCint *attrList) TRACE_ATTR(ALC_HRTF_ID_SOFT, hrtf_id); break; + case ALC_OUTPUT_LIMITER_SOFT: + gainLimiter = attrList[attrIdx + 1]; + TRACE_ATTR(ALC_OUTPUT_LIMITER_SOFT, gainLimiter); + break; + default: TRACE("0x%04X = %d (0x%x)\n", attrList[attrIdx], attrList[attrIdx + 1], attrList[attrIdx + 1]); @@ -2197,10 +2211,9 @@ static ALCenum UpdateDeviceParams(ALCdevice *device, const ALCint *attrList) device->SourcesMax, device->NumMonoSources, device->NumStereoSources, device->AuxiliaryEffectSlotMax, device->NumAuxSends); - if(GetConfigValueBool(alstr_get_cstr(device->DeviceName), NULL, "output-limiter", 1)) - device->LimiterGain = 1.0f; - else - device->LimiterGain = 0.0f; + if(ConfigValueBool(alstr_get_cstr(device->DeviceName), NULL, "output-limiter", &val)) + gainLimiter = val; + device->LimiterGain = gainLimiter ? 1.0f : 0.0f; /* Need to delay returning failure until replacement Send arrays have been * allocated with the appropriate size. diff --git a/OpenAL32/Include/alMain.h b/OpenAL32/Include/alMain.h index 52c9465c..32865cae 100644 --- a/OpenAL32/Include/alMain.h +++ b/OpenAL32/Include/alMain.h @@ -152,6 +152,11 @@ AL_API const ALchar* AL_APIENTRY alGetStringiSOFT(ALenum pname, ALsizei index); #endif #endif +#ifndef ALC_SOFT_output_limiter +#define ALC_SOFT_output_limiter +#define ALC_OUTPUT_LIMITER_SOFT 0x199A +#endif + #if defined(_WIN64) #define SZFMT "%I64u" |