From: Hans de Goede Date: Wed, 9 Oct 2013 19:38:32 +0000 (+0200) Subject: audio: Lower default wakeup rate to 100 times / second X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=40a814b0b1789b94c483190b3208729b5182e5bd;p=qemu.git audio: Lower default wakeup rate to 100 times / second This is more then plenty to keep audio card fifos filles / emptied. This drops host cpu-load for audio playback inside a linux vm from 13% to 9%. Signed-off-by: Hans de Goede Signed-off-by: Gerd Hoffmann --- diff --git a/audio/audio.c b/audio/audio.c index b3db67979d..fc775110af 100644 --- a/audio/audio.c +++ b/audio/audio.c @@ -95,7 +95,7 @@ static struct { } }, - .period = { .hertz = 250 }, + .period = { .hertz = 100 }, .plive = 0, .log_to_monitor = 0, .try_poll_in = 1,