Merge pull request #540 from raven02/master

Get rid of channel buffer underrun by setting hwBlockSize to 64
This commit is contained in:
Henrik Rydgård 2013-01-30 07:39:40 -08:00
commit 6accbf81a3

View File

@ -35,7 +35,7 @@ int eventHostAudioUpdate = -1;
int mixFrequency = 44100;
const int hwSampleRate = 44100;
const int hwBlockSize = 60;
const int hwBlockSize = 64;
const int hostAttemptBlockSize = 256;
const int audioIntervalUs = (int)(1000000ULL * hwBlockSize / hwSampleRate);
const int audioHostIntervalUs = (int)(1000000ULL * hostAttemptBlockSize / hwSampleRate);