diff options
author | Chris Robinson <[email protected]> | 2012-01-17 15:38:36 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2012-01-17 15:38:36 -0800 |
commit | 09258ca5c1e6b19392f3657b817c6328ef5b569a (patch) | |
tree | 02c2f9b80e330c70e7a8992d120fb96005b7f188 | |
parent | e0966d99a199ec1b4673609e2f91c5ebc7b776af (diff) |
Change the default output format to 32-bit float
-rw-r--r-- | Alc/ALc.c | 2 | ||||
-rw-r--r-- | alsoftrc.sample | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -2440,7 +2440,7 @@ ALC_API ALCdevice* ALC_APIENTRY alcOpenDevice(const ALCchar *deviceName) device->Flags |= DEVICE_FREQUENCY_REQUEST; device->Frequency = maxu(device->Frequency, 8000); - fmt = "AL_FORMAT_STEREO16"; + fmt = "AL_FORMAT_STEREO32"; if(ConfigValueStr(NULL, "format", &fmt)) device->Flags |= DEVICE_CHANNELS_REQUEST; GetFormatFromString(fmt, &device->FmtChans, &device->FmtType); diff --git a/alsoftrc.sample b/alsoftrc.sample index c62a1e4b..1d294203 100644 --- a/alsoftrc.sample +++ b/alsoftrc.sample @@ -33,7 +33,7 @@ # AL_FORMAT_51CHN32 (32-bit float 5.1 output) # AL_FORMAT_61CHN32 (32-bit float 6.1 output) # AL_FORMAT_71CHN32 (32-bit float 7.1 output) -#format = AL_FORMAT_STEREO16 +#format = AL_FORMAT_STEREO32 ## hrtf: # Enables HRTF filters. These filters provide for better sound spatialization |