diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2013-12-02 10:49:13 +0100 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2013-12-09 09:19:26 +0100 |
commit | 0e8ae611bda0dfb038da2d865801d8adbd692bad (patch) | |
tree | 2667dacba9577e68109894da4cbb9b6c72f610ff /audio | |
parent | 40a814b0b1789b94c483190b3208729b5182e5bd (diff) | |
download | qemu-0e8ae611bda0dfb038da2d865801d8adbd692bad.tar.gz qemu-0e8ae611bda0dfb038da2d865801d8adbd692bad.tar.bz2 qemu-0e8ae611bda0dfb038da2d865801d8adbd692bad.zip |
audio: adjust pulse to 100Hz wakeup rate
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'audio')
-rw-r--r-- | audio/paaudio.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/audio/paaudio.c b/audio/paaudio.c index 8b69778ad9..90ff24500b 100644 --- a/audio/paaudio.c +++ b/audio/paaudio.c @@ -547,11 +547,11 @@ static int qpa_init_out (HWVoiceOut *hw, struct audsettings *as) ss.rate = as->freq; /* - * qemu audio tick runs at 250 Hz (by default), so processing - * data chunks worth 4 ms of sound should be a good fit. + * qemu audio tick runs at 100 Hz (by default), so processing + * data chunks worth 10 ms of sound should be a good fit. */ - ba.tlength = pa_usec_to_bytes (4 * 1000, &ss); - ba.minreq = pa_usec_to_bytes (2 * 1000, &ss); + ba.tlength = pa_usec_to_bytes (10 * 1000, &ss); + ba.minreq = pa_usec_to_bytes (5 * 1000, &ss); ba.maxlength = -1; ba.prebuf = -1; |