From: Lee Revell <rlrevell@joe-job.com>
To: Adrian McMenamin <adrian@mcmen.demon.co.uk>
Cc: alsa-devel@alsa-project.org
Subject: Re: Can anyone help?
Date: Sun, 12 Feb 2006 19:28:28 -0500 [thread overview]
Message-ID: <1139790508.2739.24.camel@mindpipe> (raw)
In-Reply-To: <1139526455.9296.5.camel@localhost.localdomain>
On Thu, 2006-02-09 at 23:07 +0000, Adrian McMenamin wrote:
> I cannot get aplay to work on my architecture (afaics anyway) eg
>
> / # aplay -D hw:0,0 /bin/busybox
> aplay: pcm.c: 2119: snd_pcm_open: Assertion `pcmp && name' failed.
> Aborted
>
Try this patch:
--- /home/rlrevell/cvs/alsa/alsa-lib/src/pcm/pcm.c~ 2006-01-12 20:00:54.000000000 -0500
+++ /home/rlrevell/cvs/alsa/alsa-lib/src/pcm/pcm.c 2006-02-12 19:27:08.000000000 -0500
@@ -2124,7 +2124,8 @@
snd_pcm_stream_t stream, int mode)
{
int err;
- assert(pcmp && name);
+ assert(pcmp);
+ assert(name);
err = snd_config_update();
if (err < 0)
return err;
to see if it's the PCM handle or name that's not set.
Lee
-------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems? Stop! Download the new AJAX search engine that makes
searching your log files as easy as surfing the web. DOWNLOAD SPLUNK!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=103432&bid=230486&dat=121642
next prev parent reply other threads:[~2006-02-13 0:28 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2006-02-09 23:07 Can anyone help? Adrian McMenamin
2006-02-09 23:19 ` Lee Revell
2006-02-09 23:33 ` Adrian McMenamin
2006-02-09 23:39 ` Lee Revell
2006-02-13 0:04 ` Adrian McMenamin
2006-02-13 0:25 ` Lee Revell
2006-02-13 0:34 ` Lee Revell
2006-02-09 23:42 ` Lee Revell
2006-02-13 0:28 ` Lee Revell [this message]
2006-02-13 0:42 ` Adrian McMenamin
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=1139790508.2739.24.camel@mindpipe \
--to=rlrevell@joe-job.com \
--cc=adrian@mcmen.demon.co.uk \
--cc=alsa-devel@alsa-project.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.