From: "Nobin Mathew" <nobin.mathew@gmail.com>
To: Eliot Blennerhassett <linux@audioscience.com>
Cc: alsa-devel@alsa-project.org
Subject: Re: Testing/forcing XRUN
Date: Fri, 8 Jun 2007 12:49:32 +0530 [thread overview]
Message-ID: <8d6898730706080019g44b671d3n55f04076746f2b50@mail.gmail.com> (raw)
In-Reply-To: <200706081759.06021.linux@audioscience.com>
This will be OK to test XRUN condition in driver.
XRUN will be reported in either of these functions
static inline int snd_pcm_update_hw_ptr_interrupt(struct
snd_pcm_substream *substream)
or
static inline int snd_pcm_update_hw_ptr_post(struct snd_pcm_substream
*substream, struct snd_pcm_runtime *runtime)
or you can put some Debug logs in
static void xrun(struct snd_pcm_substream *substream)
All these functions are in sound/core/pcm_lib.c
When we stop the application by issuing Ctrl-Z then onwards
application will not write/read data from device. So driver will go to
XRUN state, when driver detects XRUN it stops the substream by calling
snd_pcm_stop() (inside xrun()). But application cannot detect this
because he is not active. But when we activate application (fg) then
it detects -EPIPE (stopped substream), then application prepare it
snd_pcm_prepare() and starts the playback(substream) again.
Nobin
On 6/8/07, Eliot Blennerhassett <linux@audioscience.com> wrote:
> Hi,
>
> I want to test my driver behaviour when an xrun happens.
>
> I have tried using aplay/arecord, and suspending (ctrl-Z) them while
> playing/recording but this doesn't have the desired effect. (I don't see my
> driver code detecting an xrun). Instead I see a trigger-stop command to the
> driver.
>
> The apps do report an overrun when they are restarted though.
>
> Can anyone answer these:
>
> 1) Is this a valid way to simulate an xrun due to application not keeping up?
>
> 1.1) If not, what is? Do I have to write an app that deliberately starves the
> streams?
>
> 2) Where is the xrun being detected if my driver doesnt see it? Where does
> the trigger-stop command come from when I suspend the app?
>
> thanks
>
> Eliot Blennerhassett
> AudioScience Inc.
> _______________________________________________
> Alsa-devel mailing list
> Alsa-devel@alsa-project.org
> http://mailman.alsa-project.org/mailman/listinfo/alsa-devel
>
prev parent reply other threads:[~2007-06-08 7:19 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-06-08 5:59 Testing/forcing XRUN Eliot Blennerhassett
2007-06-08 7:19 ` Nobin Mathew [this message]
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=8d6898730706080019g44b671d3n55f04076746f2b50@mail.gmail.com \
--to=nobin.mathew@gmail.com \
--cc=alsa-devel@alsa-project.org \
--cc=linux@audioscience.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;
as well as URLs for NNTP newsgroup(s).