From d0b2b559f5e4a6ead077e4e0dce3bf74b4664bab Mon Sep 17 00:00:00 2001 From: David McPaul Date: Thu, 30 Oct 2008 11:59:14 +0000 Subject: [PATCH] match default buffer size to Mixer default git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@28379 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/kits/game/GameProducer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/kits/game/GameProducer.cpp b/src/kits/game/GameProducer.cpp index 573985cc1b..557f654763 100644 --- a/src/kits/game/GameProducer.cpp +++ b/src/kits/game/GameProducer.cpp @@ -200,7 +200,7 @@ GameProducer::PrepareToConnect(const media_source& what, const media_destination // check the buffer size, which may still be wildcarded if (format->u.raw_audio.buffer_size == media_raw_audio_format::wildcard.buffer_size) - format->u.raw_audio.buffer_size = 2048; // pick something comfortable to suggest + format->u.raw_audio.buffer_size = 4096; // pick something comfortable to suggest // Now reserve the connection, and return information about it fOutput.destination = where;