Re: [Alsa-devel] C++ and kernel development

2002-09-19 Thread Jaroslav Kysela
On Thu, 19 Sep 2002, Haroldo Gamal wrote: Hi Sirs, with the great help from my new friend Alfonso Acosta, who lend me a machine installed with a Darla 24. I started to develop a driver for this card. I heard some time before about the difficulties of programming kernel modules

Re: [Alsa-devel] ES1938 - ESS Solo1 - 3 Cards mounted

2002-09-19 Thread Francesco Rossi
I believe it may sound weird, but I have successfully ran 3 cards recording at 32.000 Hz each stereo, 16 bits. I left it running for 24hours to check if it was just luck and it never crashed! The configuration I have used with three cards sums up to 384K per second running on the PCI bus. Now

Re: [Alsa-devel] ES1938 - ESS Solo1 - 3 Cards mounted

2002-09-19 Thread Jaroslav Kysela
On 19 Sep 2002, Francesco Rossi wrote: I believe it may sound weird, but I have successfully ran 3 cards recording at 32.000 Hz each stereo, 16 bits. I left it running for 24hours to check if it was just luck and it never crashed! The configuration I have used with three cards sums up to

[Alsa-devel] Re: [Alsa-user] ess maestro 2E problems...

2002-09-19 Thread Takashi Iwai
At Wed, 18 Sep 2002 23:43:10 fr, [EMAIL PROTECTED] wrote: Hi, I have an Ess maestro 2E soundcard - it works with OSS/Free - with alsa I can play sounds with no problems but when I try to record something (with DAP) th vu-meters go into the red even when every inputs are muted (cd,

[Alsa-devel] PATCH: Via82xx driver

2002-09-19 Thread Sander van Leeuwen
Hi, Below is a patch that fixes heap corruption in the via driver if the app uses a large nr of periods ( 128). dev-idx_table is a snd_via_sg_table array, not an integer array. --- via82xx.c Fri Sep 13 13:22:46 2002 +++ via82xx.cn Thu Sep 19 14:41:56 2002 @@ -217,7 +217,7 @@

[Alsa-devel] Testers of M-Audio Delta/Audiophile cards wanted

2002-09-19 Thread Takashi Iwai
Hi, can M-Audio Delta or Audiophile users test the latest ice1712 driver? i'd like to confirm that the new one works fine before removing the old code. the ice1712 codes are split to several files for better readability, and now located under alsa-kernel/pci/ice1712 directory on cvs. there is

Re: [Alsa-devel] ES1938 - ESS Solo1 - 3 Cards mounted

2002-09-19 Thread Francesco Rossi
Do you think that the SoundBlaster Live would do the trick ? Or can you suggest me any hardware able to do it ? Thank you in advance, Franc On Thu, 2002-09-19 at 10:41, Jaroslav Kysela wrote: On 19 Sep 2002, Francesco Rossi wrote: I believe it may sound weird, but I have

Re: [Alsa-devel] Testers of M-Audio Delta/Audiophile cards wanted

2002-09-19 Thread Tim Goetze
Takashi Iwai wrote: since the old ice1712.c is still compiled as default, you'll have to run make on alsa-driver/pci/ice1712. the new files are not compiled otherwise. [~/audio/alsa-cvs/alsa-driver] make -C pci/ice1712 make: Entering directory `/home/tim/audio/alsa-cvs/alsa-driver/pci/ice1712'

Re: [Alsa-devel] Testers of M-Audio Delta/Audiophile cards wanted

2002-09-19 Thread Takashi Iwai
At Thu, 19 Sep 2002 16:35:19 +0200 (CEST), Tim Goetze wrote: Takashi Iwai wrote: since the old ice1712.c is still compiled as default, you'll have to run make on alsa-driver/pci/ice1712. the new files are not compiled otherwise. [~/audio/alsa-cvs/alsa-driver] make -C pci/ice1712

Re: [Alsa-devel] Testers of M-Audio Delta/Audiophile cards wanted

2002-09-19 Thread Tim Goetze
Takashi Iwai wrote: At Thu, 19 Sep 2002 16:35:19 +0200 (CEST), Tim Goetze wrote: [ak4524_t undefined ...] make: *** [ews.o] Error 1 make: Leaving directory `/home/tim/audio/alsa-cvs/alsa-driver/pci/ice1712' could you check whether ice1712.h exists on alsa-kernel/pci/ice1712? also, please

Re: [Alsa-devel] Testers of M-Audio Delta/Audiophile cards wanted

2002-09-19 Thread Takashi Iwai
At Thu, 19 Sep 2002 16:50:13 +0200 (CEST), Tim Goetze wrote: Takashi Iwai wrote: At Thu, 19 Sep 2002 16:35:19 +0200 (CEST), Tim Goetze wrote: [ak4524_t undefined ...] make: *** [ews.o] Error 1 make: Leaving directory `/home/tim/audio/alsa-cvs/alsa-driver/pci/ice1712' could

Re: [Alsa-devel] Testers of M-Audio Delta/Audiophile cards wanted

2002-09-19 Thread Takashi Iwai
At Thu, 19 Sep 2002 17:06:08 +0200 (CEST), Tim Goetze wrote: much simpler. you did a c++ style auto variable allocation, declare 'ak' at the start of snd_ice1712_ews_init and it compiles cleanly. oops, never noticed that. i relied too much upon the compiler. well, this means that gcc-3.2

Re: [Alsa-devel] Testers of M-Audio Delta/Audiophile cards wanted

2002-09-19 Thread Tim Goetze
Takashi Iwai wrote: At Thu, 19 Sep 2002 17:06:08 +0200 (CEST), Tim Goetze wrote: much simpler. you did a c++ style auto variable allocation, declare 'ak' at the start of snd_ice1712_ews_init and it compiles cleanly. oops, never noticed that. i relied too much upon the compiler. well, this

Re: [Alsa-devel] Testers of M-Audio Delta/Audiophile cards wanted

2002-09-19 Thread Tim Goetze
Takashi Iwai wrote: At Thu, 19 Sep 2002 16:50:13 +0200 (CEST), Tim Goetze wrote: Takashi Iwai wrote: At Thu, 19 Sep 2002 16:35:19 +0200 (CEST), Tim Goetze wrote: [ak4524_t undefined ...] make: *** [ews.o] Error 1 make: Leaving directory

Re: [Alsa-devel] Testers of M-Audio Delta/Audiophile cards wanted

2002-09-19 Thread Jaroslav Kysela
On Thu, 19 Sep 2002, Takashi Iwai wrote: At Thu, 19 Sep 2002 17:06:08 +0200 (CEST), Tim Goetze wrote: much simpler. you did a c++ style auto variable allocation, declare 'ak' at the start of snd_ice1712_ews_init and it compiles cleanly. oops, never noticed that. i relied too much

Re: [Alsa-devel] PATCH: Via82xx driver

2002-09-19 Thread Takashi Iwai
At Thu, 19 Sep 2002 14:50:06 +0200 (CDT), Sander van Leeuwen wrote: Hi, Below is a patch that fixes heap corruption in the via driver if the app uses a large nr of periods ( 128). dev-idx_table is a snd_via_sg_table array, not an integer array. thanks, fixed now on cvs. Takashi

[Alsa-devel] update of known bugs list

2002-09-19 Thread Takashi Iwai
Hi Patrick, the following is the update of known bugs list on the web. could you update the page? * OSS emulation on WINE -- works the following workaround is necessary on some cards/chips, which support only 16bit samples. you need to set the operation mode by writing a configuration

Re: [Alsa-devel] Testers of M-Audio Delta/Audiophile cards wanted

2002-09-19 Thread James Tappin
On Thu, 19 Sep 2002 14:49:19 +0200 Takashi Iwai [EMAIL PROTECTED] wrote: Hi, can M-Audio Delta or Audiophile users test the latest ice1712 driver? i'd like to confirm that the new one works fine before removing the old code. the ice1712 codes are split to several files for better

Re: [Alsa-devel] new in-compatible alsa-lib PCM API

2002-09-19 Thread Jack O'Quin
Jaroslav Kysela [EMAIL PROTECTED] writes: your almost all negative messages persuaded me to wait awhile with new function prototypes. Thanks for listening, Jaroslav. :-) I intended my comments to be negative only in the narrow sense (let's don't do this), and not in the broader

[Alsa-devel] snd-powermac in CVS busted?

2002-09-19 Thread Josh Huber
I've finally decided to switch from using OSS to ALSA, and everything works great, except I don't get any sound output! I'm sending this to the devel list since I'm dealing with the CVS version of the driver. Using alsamixer I tried setting the Master channel at 100% as well as the PC Speaker

Re: [Alsa-devel] problems with external MIDI port

2002-09-19 Thread Ivan Middleton
--- Takashi Iwai [EMAIL PROTECTED] wrote: Hi, At Wed, 18 Sep 2002 14:10:19 -0700 (PDT), Ivan Middleton wrote: Hi all, I'm having a problem with the ALSA sequencer. First I was using 0.9.0rc2, and then I switched to cvs, hoping that things would be fixed there. But alas, the

[Alsa-devel] snd-usb-midi fails to load w/current CVS

2002-09-19 Thread Josh Huber
I've got a USB midi device (MidiSport 2x2), but the snd-usb-midi driver from current CVS does not load for me: mystic:/home/huber# modprobe snd-usb-midi /lib/modules/2.4.19/kernel/sound/acore/seq/snd-seq-virmidi.o: unresolved symbol snd_rawmidi_set_ops_Rc01247d9