Re: [Alsa-user] How to set default MIDI port?

2008-09-24 Thread Arthur Marsh
Tomek Lorek wrote, on 2008-09-21 22:05: > Hi there, > Whare can I set the default MIDI port which in my case should be > Emu10k1 WaveTable? > I have the following ports: > $ pmidi -l > Port Client name Port name > 14:0 Midi Through Midi Through P

Re: [Alsa-user] ALC888 Static/Stutter Problem

2008-09-24 Thread Vedran Miletić
Well, ALC888 as a codec should work with older ALSA versions (it does on my ASROCK nForce 570 SLI-based board), but this specific motherboard might break. It could be a problem of HDA NVidia driver too, so again trying lastest version can help. 2008/9/23 Florin Andrei <[EMAIL PROTECTED]>: > David

Re: [Alsa-user] How to set default MIDI port?

2008-09-24 Thread Tomek Lorek
2008/9/24 Arthur Marsh <[EMAIL PROTECTED]>: > Tomek Lorek wrote, on 2008-09-21 22:05: >> Hi there, >> Whare can I set the default MIDI port which in my case should be >> Emu10k1 WaveTable? >> I have the following ports: >> $ pmidi -l >> Port Client name Port name >> 14:0

[Alsa-user] SPDIF not working with AD1989B (Asus P5Q-E motherboard)

2008-09-24 Thread Jason Tackaberry
Hi, I recently built a system with an Asus P5Q-E motherboard, whose product specifications indicate the audio chipset is ADI AD2000B, and which ALSA says is AD1989B. The driver is snd_hda_intel. (I am not passing any module options; passing model=6stack-dig seems to have no effect.) The analog

Re: [Alsa-user] Welcome to the "Alsa-user" mailing list

2008-09-24 Thread soosho
Hi All, Thanks a lot for the mailing list. I've just downloaded an Alsa package and confronted the following error during the compilation. Could anybody help, please? Or at least does anybody know exactly, what is the meaning of the following error message, plz? Any help would be appreciated!

Re: [Alsa-user] Welcome to the "Alsa-user" mailing list

2008-09-24 Thread Robert Vincent Krakora
Hello soosho: I ran into the same problem yesterday. I grabbed the needed function from a website and stuck it into the file in error and was able to compile. The function is below. This is a "hack" and only a temporary fix until somebody with more alsa experience jumps into the fray with a

Re: [Alsa-user] Welcome to the "Alsa-user" mailing list

2008-09-24 Thread Robert Vincent Krakora
#ifndef _LINUX_CTYPE_H #define _LINUX_CTYPE_H /* * NOTE! This ctype does not handle EOF like the standard C * library is required to. */ #define _U 0x01 /* upper */ #define _L 0x02 /* lower */ #define _D 0x04 /* digit */ #define _C 0x08 /* cntrl */ #define _P 0x10 /* punct */ #define _S 0x20 /* w

Re: [Alsa-user] Welcome to the "Alsa-user" mailing list

2008-09-24 Thread Robert Vincent Krakora
Robert Vincent Krakora wrote: > #ifndef _LINUX_CTYPE_H > #define _LINUX_CTYPE_H > > /* > * NOTE! This ctype does not handle EOF like the standard C > * library is required to. > */ > > #define _U 0x01 /* upper */ > #define _L 0x02 /* lower */ > #define _D 0x04 /* digit */ > #define _C 0x08 /* cntrl

Re: [Alsa-user] ALC888 Static/Stutter Problem

2008-09-24 Thread David Rees
On Wed, Sep 24, 2008 at 2:26 AM, Vedran Miletić <[EMAIL PROTECTED]> wrote: > Well, ALC888 as a codec should work with older ALSA versions (it does > on my ASROCK nForce 570 SLI-based board), but this specific > motherboard might break. > > It could be a problem of HDA NVidia driver too, so again tr

Re: [Alsa-user] ALC888 Static/Stutter Problem

2008-09-24 Thread Florin Andrei
David Rees wrote: > > Thanks, I'll try to see if I can get the latest drivers installed to > see if they help or not. Do I need a matching user-space as well? I compiled and installed alsa-driver, alsa-lib and alsa-utils. Here's a HOWTO, it's Ubuntu-centric but I guess it can be applied to other

[Alsa-user] A problem during compilation

2008-09-24 Thread soosho
Hi All, Thanks a lot for the mailing list. I've just downloaded an Alsa package and confronted the following error during the compilation. Could anybody help, please? Or at least does anybody know exactly, what is the meaning of the following error message, plz? error: implicit declaration of

Re: [Alsa-user] A problem during compilation

2008-09-24 Thread Robert Vincent Krakora
Place this in the problematic file as a static function...it's a hack, but it will work...I ran into the same problem yesterday... :-) ifndef _LINUX_CTYPE_H #define _LINUX_CTYPE_H /* * NOTE! This ctype does not handle EOF like the standard C * library is required to. */ #define _U 0x01 /*