diff mbox

Questions on audio_atexit(), possibly bugs

Message ID Pine.LNX.4.64.0910010326510.26656@linmac.oyster.ru
State Superseded
Headers show

Commit Message

malc Sept. 30, 2009, 11:28 p.m. UTC
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 mbox

Patch

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 ();
 }