Android : Shorter sound delay

This commit is contained in:
raven02 2013-05-02 15:59:09 +08:00
parent a9529f831d
commit 79b9023461

View File

@ -51,8 +51,8 @@ const int audioHostIntervalUs = (int)(1000000ULL * hostAttemptBlockSize / hwSamp
// High and low watermarks, basically.
// TODO: Tweak
#ifdef ANDROID
const int chanQueueMaxSizeFactor = 8;
const int chanQueueMinSizeFactor = 4;
const int chanQueueMaxSizeFactor = 4;
const int chanQueueMinSizeFactor = 2;
#else
const int chanQueueMaxSizeFactor = 2;
const int chanQueueMinSizeFactor = 1;