From: malc <av1474@comtv.ru>
To: Markus Armbruster <armbru@redhat.com>
Cc: qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] Questions on audio_atexit(), possibly bugs
Date: Thu, 1 Oct 2009 03:28:23 +0400 (MSD) [thread overview]
Message-ID: <Pine.LNX.4.64.0910010326510.26656@linmac.oyster.ru> (raw)
In-Reply-To: <871vlo9gz5.fsf@pike.pond.sub.org>
On Thu, 1 Oct 2009, Markus Armbruster wrote:
> malc <av1474@comtv.ru> writes:
>
> > On Wed, 30 Sep 2009, Markus Armbruster wrote:
> >
[..snip..]
> >>
> >> Unrelated, but nearby: audio_vm_change_state_handler() calls the
> >> ctl_out() callback with three arguments:
> >>
> >> hwo->pcm_ops->ctl_out (hwo, op, conf.try_poll_out);
> >>
> >> (op is either VOICE_ENABLE or VOICE_DISABLE here), while audio_atexit()
> >> calls it with two:
> >>
> >> hwo->pcm_ops->ctl_out (hwo, VOICE_DISABLE);
> >>
> >> Same for ctl_in(). Doesn't look kosher. A quick check of oss_ctl_out()
> >> and oss_ctl_in() shows use of three parameters.
> >
> > Yes, not kosher, but harmless, conf.try_poll_out is only applicable to
> > VOICE_ENABLE and is simply ignored by the handler of VOICE_DISABLE, this
> > is a vararg function, so it's okay, though i'd probably change this to
> > avoid further confusion.
>
> Appreciated.
>
Just coded it and not sure whether it's worth it, what say you?
audio.c | 15 ++++++++++++---
1 file changed, 12 insertions(+), 3 deletions(-)
diff --git a/audio/audio.c b/audio/audio.c
index 80a717b..977261c 100644
--- a/audio/audio.c
+++ b/audio/audio.c
@@ -1739,15 +1739,24 @@ static void audio_vm_change_state_handler (void *opaque, int running,
AudioState *s = opaque;
HWVoiceOut *hwo = NULL;
HWVoiceIn *hwi = NULL;
- int op = running ? VOICE_ENABLE : VOICE_DISABLE;
s->vm_running = running;
while ((hwo = audio_pcm_hw_find_any_enabled_out (hwo))) {
- hwo->pcm_ops->ctl_out (hwo, op, conf.try_poll_out);
+ if (running) {
+ hwo->pcm_ops->ctl_out (hwo, VOICE_ENABLE, conf.try_poll_out);
+ }
+ else {
+ hwo->pcm_ops->ctl_out (hwo, VOICE_DISABLE);
+ }
}
while ((hwi = audio_pcm_hw_find_any_enabled_in (hwi))) {
- hwi->pcm_ops->ctl_in (hwi, op, conf.try_poll_in);
+ if (running) {
+ hwi->pcm_ops->ctl_in (hwi, VOICE_ENABLE, conf.try_poll_in);
+ }
+ else {
+ hwi->pcm_ops->ctl_in (hwi, VOICE_DISABLE);
+ }
}
audio_reset_timer ();
}
--
mailto:av1474@comtv.ru
next prev parent reply other threads:[~2009-09-30 23:28 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-09-30 21:39 [Qemu-devel] Questions on audio_atexit(), possibly bugs Markus Armbruster
2009-09-30 22:42 ` malc
2009-09-30 22:59 ` Markus Armbruster
2009-09-30 23:22 ` malc
2009-10-02 17:04 ` Markus Armbruster
2009-10-02 21:26 ` malc
2009-10-03 11:47 ` Markus Armbruster
2009-10-03 12:21 ` malc
2009-10-03 12:49 ` Markus Armbruster
2009-10-03 12:55 ` malc
2009-09-30 23:28 ` malc [this message]
2009-10-01 15:21 ` Markus Armbruster
2009-10-01 21:26 ` malc
2009-10-01 22:40 ` Markus Armbruster
2009-10-01 22:49 ` malc
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=Pine.LNX.4.64.0910010326510.26656@linmac.oyster.ru \
--to=av1474@comtv.ru \
--cc=armbru@redhat.com \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).