Index: src/pcm/pcm_ladspa.c
===
RCS file: /cvsroot/alsa/alsa-lib/src/pcm/pcm_ladspa.c,v
retrieving revision 1.16
diff -u -r1.16 pcm_ladspa.c
--- src/pcm/pcm_ladspa.c25 Feb 2004 11:24:30 - 1.16
+++ src/pcm/pcm_ladspa.c
On Fri, 23 Apr 2004, Erik Inge Bolsø wrote:
>See subject. Has anyone got this working? I've followed the examples and
>got a few different filters working (chorus, delay), but am having trouble
>with more complex ones - and suspect a bug in alsa-lib.
>
>Current ALSA CVS version, as of a few hours a
Just wanted to mention that I was able to do this yesterday . I had to
find all the mixer groups. Their params told me that only Mic-In was being
captured, both channels. If I started capturing both channels of Line-In, I
could not capture Mic-In at all as mentioned by clemens. But to my delight I
After a lot of cleanups and coding style changes, my driver still has some
things that must be fixed properly. Busy-waits are one of those.
The most used busy-waits have a timeout of 10ms and 100ms and they are
called with a spinlock_irq held or from the irq handler. With my card
the longest wai
Clemens Ladisch wrote:
Caleb Crome wrote:
pcm.file {
type file
slave {
pcm "hw:0,0"
}
file "/tmp/file.raw"
}
Alright, I did what you suggested, and real player comes up and connects
to the dummy sound card (I had to do a modprobe snd-pcm-oss and
snd-mixer-oss). However, I
On 28-Apr-2004 Clemens Ladisch wrote:
> Steve deRosier wrote:
>> Is there any way for a program to query the alsa-lib to determine
>> the version number?
>
> The function snd_asoundlib_version() won't be available before 1.0.5.
> For earlier versions, you can try to test if the symbols listed in
>
Steve deRosier wrote:
> Is there any way for a program to query the alsa-lib to determine
> the version number?
The function snd_asoundlib_version() won't be available before 1.0.5.
For earlier versions, you can try to test if the symbols listed in
alsa-lib/src/Versions are available.
HTH
Clemen