public inbox for alsa-devel@alsa-project.org
 help / color / mirror / Atom feed
From: Takashi Iwai <tiwai@suse.de>
To: Jon Smirl <jonsmirl@gmail.com>
Cc: alsa-devel mailing list <alsa-devel@alsa-project.org>
Subject: Re: SNDRV_PCM_TRIGGER_STOP and audio still queued in the driver
Date: Wed, 19 Aug 2009 17:33:03 +0200	[thread overview]
Message-ID: <s5h4os3rf80.wl%tiwai@suse.de> (raw)
In-Reply-To: <9e4733910908190819l19d99236xbf27106d742a54a6@mail.gmail.com>

At Wed, 19 Aug 2009 11:19:45 -0400,
Jon Smirl wrote:
> 
> On Wed, Aug 19, 2009 at 11:12 AM, Takashi Iwai<tiwai@suse.de> wrote:
> > At Wed, 19 Aug 2009 11:02:31 -0400,
> > Jon Smirl wrote:
> >>
> >> On Wed, Aug 19, 2009 at 8:14 AM, Takashi Iwai<tiwai@suse.de> wrote:
> >> > At Sat, 15 Aug 2009 23:40:36 -0400,
> >> > Jon Smirl wrote:
> >> >>
> >> >> On Sat, Aug 15, 2009 at 11:53 AM, Jon Smirl<jonsmirl@gmail.com> wrote:
> >> >> > void
> >> >> > bfio_synch_stop(void)
> >> >> > {
> >> >> >    int n;
> >> >> >
> >> >> >    if (base_handle == NULL) {
> >> >> >        return;
> >> >> >    }
> >> >> >    FOR_IN_AND_OUT {
> >> >> >        for (n = 0; n < n_handles[IO]; n++) {
> >> >>
> >> >> I added:
> >> >> snd_pcm_nonblock(handles[IO][n], 0)
> >> >> snd_pcm_drain(handles[IO][n])
> >> >> snd_pcm_nonblock(handles[IO][n], SND_PCM_NONBLOCK )
> >> >>
> >> >> >            snd_pcm_close(handles[IO][n]);
> >> >> >        }
> >> >> >    }
> >> >> > }
> >> >>
> >> >> This is not working correctly.
> >> >> snd_pcm_nonblock(handles[IO][n], 0)
> >> >> It does not remove O_NONBLOCK for some unknown reason.
> >> >>
> >> >> I added printf() to snd_pcm_hw_nonblock()
> >> >> The fcntl is not getting an error.
> >> >>       if (fcntl(fd, F_SETFL, flags) < 0) {
> >> >> Flags being set are 2 (O_RDWR).
> >> >>
> >> >> But when I get over to snd_pcm_pre_drain_init(), I get the -EAGAIN error.
> >> >> static int snd_pcm_pre_drain_init(struct snd_pcm_substream *substream,
> >> >> int state)
> >> >> {
> >> >>       printk("snd_pcm_pre_drain_init\n");
> >> >>       if (substream->f_flags & O_NONBLOCK)
> >> >>               return -EAGAIN;
> >> >>       printk("snd_pcm_pre_drain_init 1\n");
> >> >>       substream->runtime->trigger_master = substream;
> >> >>       return 0;
> >> >> }
> >> >> So I have to conclude that fcntl(fd, F_SETFL, flags) is not removing
> >> >> the O_NONBLOCK flag.
> >> >
> >> > Yeah, you found a long-standing bug :)
> >> >
> >> > Honestly, I think the current designed behavior is just annoying.
> >> > An ioctl may be blocked, thus there is no real merit to return -EAGAIN
> >> > with DRAIN ioctl.
> >>
> >> Brutefir is a server type app, so pulseaudio should be having trouble
> >> with this too.
> >
> > Maybe not.  Otherwise we've got already many bug reports.
> >
> > The difference is how to wait until all data is out.  PA would likely
> > wait using its own timer stuff without sleeping in drain ioctl.
> 
> Can you implement a polled drain by checking if state is RUNNING and
> the looking for the transition to STOPPED?

Could you elaborate?

> Is there anything special about being in state DRAINING?

Yes.  The drain needs the following active procedure:

1. app notifies the driver that the stream is drained.
2. app go to sleep (in drain ioctl)
3. the driver marks the PCM state DRAIN
4. when the all data has been sent out, the driver stops the stream,
  wakes up the sleeper
5. app returns

Without the explicit notification, the driver cannot know whether
the stream is supposed to be stopped successfully or just get an
XRUN.

I guess you think that ioctl(DRAIN) just marks and returns, then
app does poll() to wait until all data sent out.  This would work,
too, after some amount of work.  But, just fixing the existing DRAIN
ioctl is far less work in the end...


Takashi
_______________________________________________
Alsa-devel mailing list
Alsa-devel@alsa-project.org
http://mailman.alsa-project.org/mailman/listinfo/alsa-devel

  reply	other threads:[~2009-08-19 15:33 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-08-15 15:06 SNDRV_PCM_TRIGGER_STOP and audio still queued in the driver Jon Smirl
2009-08-15 15:53 ` Jon Smirl
2009-08-16  3:40   ` Jon Smirl
2009-08-19 12:14     ` Takashi Iwai
2009-08-19 15:02       ` Jon Smirl
2009-08-19 15:12         ` Takashi Iwai
2009-08-19 15:19           ` Jon Smirl
2009-08-19 15:33             ` Takashi Iwai [this message]
2009-08-19 16:50               ` Jon Smirl
2009-08-19 18:02                 ` Takashi Iwai
2009-08-20 14:52                   ` Takashi Iwai
2009-08-28  6:50                     ` Takashi Iwai

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=s5h4os3rf80.wl%tiwai@suse.de \
    --to=tiwai@suse.de \
    --cc=alsa-devel@alsa-project.org \
    --cc=jonsmirl@gmail.com \
    /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