diff options
author | malc <av1474@comtv.ru> | 2012-08-12 18:39:27 -0500 |
---|---|---|
committer | Doug Goldstein <cardoe@cardoe.com> | 2012-08-12 18:39:27 -0500 |
commit | b2d0149c309dcee010492304139a70b72136d1a0 (patch) | |
tree | aa3caf4833168a427b1c029044dc6924f7259b5a | |
parent | usb-ehci: Fix an assert whenever isoc transfers are used (diff) | |
download | qemu-kvm-b2d0149c309dcee010492304139a70b72136d1a0.tar.gz qemu-kvm-b2d0149c309dcee010492304139a70b72136d1a0.tar.bz2 qemu-kvm-b2d0149c309dcee010492304139a70b72136d1a0.zip |
audio: Unbreak capturing in mixemu caseqemu-kvm-1.1.1-gentoo-3qemu-kvm-1.1.1-gentoo
audio: Unbreak capturing in mixemu case
-rw-r--r-- | audio/audio.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/audio/audio.c b/audio/audio.c index 583ee51ea..1c7738930 100644 --- a/audio/audio.c +++ b/audio/audio.c @@ -818,6 +818,7 @@ static int audio_attach_capture (HWVoiceOut *hw) sw->active = hw->enabled; sw->conv = noop_conv; sw->ratio = ((int64_t) hw_cap->info.freq << 32) / sw->info.freq; + sw->vol = nominal_volume; sw->rate = st_rate_start (sw->info.freq, hw_cap->info.freq); if (!sw->rate) { dolog ("Could not start rate conversion for `%s'\n", SW_NAME (sw)); |