diff options
author | malc <malc@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-07-09 19:25:24 +0000 |
---|---|---|
committer | malc <malc@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-07-09 19:25:24 +0000 |
commit | a7bb29ba877e4f80f0029b99256e974d87460cab (patch) | |
tree | 122e7467bf80bb2f94a6f8fbe959965482919149 /audio/alsaaudio.c | |
parent | 266910c4346a24dff83ec01c7e1fa87eb938243f (diff) |
Call proper function when trying to set period size
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4863 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'audio/alsaaudio.c')
-rw-r--r-- | audio/alsaaudio.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/audio/alsaaudio.c b/audio/alsaaudio.c index ba80deac1b..4d47aa006b 100644 --- a/audio/alsaaudio.c +++ b/audio/alsaaudio.c @@ -385,12 +385,14 @@ static int alsa_open (int in, struct alsa_params_req *req, obt = ptime; } else { + int dir = 0; snd_pcm_uframes_t psize = req->period_size; - err = snd_pcm_hw_params_set_buffer_size_near ( + err = snd_pcm_hw_params_set_period_size_near ( handle, hw_params, - &psize + &psize, + &dir ); obt = psize; } |