Results 16 to 16 of 16
Thread: Enemy Territory & TeamSpeak
-
01-08-2003, 14:08 #16
-= TeamSpeak Addict =-
- Join Date
- Jul 2002
- Location
- Netherlands
- Posts
- 498
There is a patch out for pcm_oss emulation and alsa :
Index: pcm_oss.c
================================================== =================
RCS file: /cvsroot/alsa/alsa-kernel/core/oss/pcm_oss.c,v
retrieving revision 1.45
diff -u -r1.45 pcm_oss.c
--- pcm_oss.c 24 Jul 2003 21:02:45 -0000 1.45
+++ pcm_oss.c 31 Jul 2003 12:44:49 -0000
@@ -1614,8 +1614,12 @@
if ((f_mode & FMODE_READ) && !(csetup && csetup->disable)) {
if ((err = snd_pcm_open_substream(pcm, SNDRV_PCM_STREAM_CAPTURE,
&csubstream)) < 0) {
- snd_pcm_oss_release_file(pcm_oss_file);
- return err;
+ if (!(f_mode & FMODE_WRITE) || err != -ENODEV) {
+ snd_pcm_oss_release_file(pcm_oss_file);
+ return err;
+ } else {
+ csubstream = NULL;
+ }
}
pcm_oss_file->streams[SNDRV_PCM_STREAM_CAPTURE] = csubstream;
}
Dunno how it exactly works but I do know that this patch tells that there REALLY is no capture device ... It should take care of the problems people have with the no such device error in quake engine games in linux. Maybe someone can shed a light on how to patch the alsa-driver package with this patch and what steps to take? It was taken off the alsa mailing list and written by an official developer of ALSA (before you all start worrying ).Last edited by woutur; 01-08-2003 at 14:11.
Thread Information
Users Browsing this Thread
There are currently 1 users browsing this thread. (0 members and 1 guests)
Similar Threads
-
TeamSpeak 2 Anti-Flood Daemon
By ScP in forum [TeamSpeak 2] Addons & ScriptsReplies: 193Last Post: 07-09-2009, 18:27 -
Linux server dependecies
By nwerensteijn in forum [TeamSpeak 2] Server SupportReplies: 79Last Post: 05-09-2007, 21:23 -
Teamspeak verursacht Bildfehler bei mpeg-Videos
By IrascibleMan in forum [TeamSpeak 2] Client SupportReplies: 3Last Post: 12-07-2006, 15:22 -
TeamSpeak and Enemy Territory :/
By m00h in forum [TeamSpeak 2] Client SupportReplies: 2Last Post: 28-12-2004, 16:05 -
Enemy territory and linux
By McQuaid in forum [TeamSpeak 2] Client SupportReplies: 2Last Post: 30-04-2004, 16:18


Reply With Quote