Mark Rutherford wrote: > I have the following configuration: > dsp -> adsp0 > adsp -> dsp0 > > this way quake3 uses the read only device adsp0, and teamspeak can use > the full duplex device at dsp0 > > I came across a post on the teamspeak fourum regarding this issue, and > these commands were supposed to resolve it: > % echo "quake 0 0 direct" > /proc/asound/card0/pcm0p/oss > % echo "quake 0 0 disable" > /proc/asound/card0/pcm0c/oss > > these do nothing for me.
/dev/dsp0 is card 0, device 0, while /dev/asdp0 is card 0, device 1. Change the lines above to: % echo "quake 0 0 direct" > /proc/asound/card0/pcm1p/oss % echo "quake 0 0 disable" > /proc/asound/card0/pcm1c/oss (When adsp0 is write-only, you won't have the capture device pcm1c.) HTH Clemens ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The best thread debugger on the planet. Designed with thread debugging features you've never dreamed of, try TotalView 6 free at www.etnus.com. _______________________________________________ Alsa-user mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/alsa-user
