Community Forums Today's Posts     Member List     Archive    
Page 2 of 2 FirstFirst 12
Results 16 to 16 of 16
  1. #16
    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

  1. TeamSpeak 2 Anti-Flood Daemon
    By ScP in forum [TeamSpeak 2] Addons & Scripts
    Replies: 193
    Last Post: 07-09-2009, 18:27
  2. Linux server dependecies
    By nwerensteijn in forum [TeamSpeak 2] Server Support
    Replies: 79
    Last Post: 05-09-2007, 21:23
  3. Teamspeak verursacht Bildfehler bei mpeg-Videos
    By IrascibleMan in forum [TeamSpeak 2] Client Support
    Replies: 3
    Last Post: 12-07-2006, 15:22
  4. TeamSpeak and Enemy Territory :/
    By m00h in forum [TeamSpeak 2] Client Support
    Replies: 2
    Last Post: 28-12-2004, 16:05
  5. Enemy territory and linux
    By McQuaid in forum [TeamSpeak 2] Client Support
    Replies: 2
    Last Post: 30-04-2004, 16:18

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •