diff options
author | Chris Robinson <[email protected]> | 2017-02-22 15:56:09 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2017-02-22 15:56:09 -0800 |
commit | 55e3b840b351d59e9e746080ab0eac93fea93e04 (patch) | |
tree | e18ba2c15c945e170a5ab19b95f2b8164802cecd | |
parent | 2e1f1449bc7bd9f50822298577be203693deca7f (diff) |
Reduce the default period count to 3
-rw-r--r-- | Alc/ALc.c | 2 | ||||
-rw-r--r-- | alsoftrc.sample | 2 | ||||
-rw-r--r-- | utils/alsoft-config/mainwindow.ui | 2 |
3 files changed, 3 insertions, 3 deletions
@@ -3639,7 +3639,7 @@ ALC_API ALCdevice* ALC_APIENTRY alcOpenDevice(const ALCchar *deviceName) device->Frequency = DEFAULT_OUTPUT_RATE; device->IsHeadphones = AL_FALSE; device->AmbiFmt = AmbiFormat_Default; - device->NumUpdates = 4; + device->NumUpdates = 3; device->UpdateSize = 1024; if(!PlaybackBackend.getFactory) diff --git a/alsoftrc.sample b/alsoftrc.sample index 3cc205b0..df6bb326 100644 --- a/alsoftrc.sample +++ b/alsoftrc.sample @@ -81,7 +81,7 @@ # which helps protect against skips when the CPU is under load, but increases # the delay between a sound getting mixed and being heard. Acceptable values # range between 2 and 16. -#periods = 4 +#periods = 3 ## stereo-mode: # Specifies if stereo output is treated as being headphones or speakers. With diff --git a/utils/alsoft-config/mainwindow.ui b/utils/alsoft-config/mainwindow.ui index e074d63b..4db93c36 100644 --- a/utils/alsoft-config/mainwindow.ui +++ b/utils/alsoft-config/mainwindow.ui @@ -343,7 +343,7 @@ mixed and being heard.</string> </rect> </property> <property name="placeholderText"> - <string>4</string> + <string>3</string> </property> </widget> </widget> |