Updated high/low watermarks to lower values. This should fix problems in DJ MAX series and Hatsune Miku: Project Diva.

This commit is contained in:
bagnz0r 2013-07-06 01:32:11 +02:00
parent 25392cd408
commit 36051cd174

View File

@ -44,8 +44,8 @@ const int audioHostIntervalUs = (int)(1000000ULL * hostAttemptBlockSize / hwSamp
// High and low watermarks, basically. For perfect emulation, the correct values are 0 and 1, respectively.
// TODO: Tweak
const int chanQueueMaxSizeFactor = 2;
const int chanQueueMinSizeFactor = 1;
const int chanQueueMaxSizeFactor = 1;
const int chanQueueMinSizeFactor = 0;
// TODO: Need to replace this with something lockless. Mutexes in the audio pipeline
// is bad mojo.