diff options
author | malc <av1474@comtv.ru> | 2009-09-18 08:16:03 +0400 |
---|---|---|
committer | malc <av1474@comtv.ru> | 2009-09-18 14:04:36 +0400 |
commit | 4f4cc0efde875ec9fce206c365597878fc4921e7 (patch) | |
tree | b57773b376d9ee7c2b8071847f05c59e1ab78293 /hw/sb16.c | |
parent | 68f6dc7ebd377ce92abd1f3a991c792143af23b0 (diff) | |
download | qemu-4f4cc0efde875ec9fce206c365597878fc4921e7.tar.gz qemu-4f4cc0efde875ec9fce206c365597878fc4921e7.tar.bz2 qemu-4f4cc0efde875ec9fce206c365597878fc4921e7.zip |
audio: use muldiv64 where it makes sense
Signed-off-by: malc <av1474@comtv.ru>
Diffstat (limited to 'hw/sb16.c')
-rw-r--r-- | hw/sb16.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -758,8 +758,8 @@ static void complete (SB16State *s) freq = s->freq > 0 ? s->freq : 11025; samples = dsp_get_lohi (s) + 1; bytes = samples << s->fmt_stereo << (s->fmt_bits == 16); - ticks = (bytes * get_ticks_per_sec()) / freq; - if (ticks < get_ticks_per_sec() / 1024) { + ticks = muldiv64 (bytes, get_ticks_per_sec (), freq); + if (ticks < get_ticks_per_sec () / 1024) { qemu_irq_raise (s->pic); } else { |