From 454a6000c5e90e4a890be6add0a71ca48ccf5979 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20Rydg=C3=A5rd?= Date: Sun, 9 Dec 2012 19:58:35 +0700 Subject: [PATCH] Let's try different audio buffer sizes --- Core/HLE/__sceAudio.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Core/HLE/__sceAudio.cpp b/Core/HLE/__sceAudio.cpp index 380f0ba778..c163efdfc4 100644 --- a/Core/HLE/__sceAudio.cpp +++ b/Core/HLE/__sceAudio.cpp @@ -46,8 +46,8 @@ const int audioIntervalUs = (int)(1000000ULL * hwBlockSize / hwSampleRate); const int audioHostIntervalUs = (int)(1000000ULL * hostAttemptBlockSize / hwSampleRate); // High and low watermarks, basically. -const int chanQueueMaxSizeFactor = 2; -const int chanQueueMinSizeFactor = 1; +const int chanQueueMaxSizeFactor = 4; +const int chanQueueMinSizeFactor = 2; FixedSizeQueue outAudioQueue;