From: Lee Revell <rlrevell@joe-job.com>
To: William <walsac3@orthoset.com>
Cc: alsa-devel <alsa-devel@lists.sourceforge.net>
Subject: Re: [PATCH] emu10k1 multichannel support
Date: Wed, 19 Jan 2005 11:59:26 -0500 [thread overview]
Message-ID: <1106153966.3082.2.camel@krustophenia.net> (raw)
In-Reply-To: <200501191438.OAA11750@orthoset.com>
On Wed, 2005-01-19 at 14:38 +0000, William wrote:
> Lee Revell wrote:
> >
> > As promised, here's an updated patch to add real multichannel playback
> > support (and improved multichannel capture) to the emu10k1 driver.
> >
> > http://www.alsa-project.org/~rlrevell/emu10k1-multichannel-v001.patch
> >
> > Please test it and report any problems.
>
> I tested it on 2.6.10 with alsa 1.0.8 and have found what looks like
> a possible problem with the emu10k1 synth support.
> Soundfonts still load ok but despite mixer levels being ok
> ("Music=Master=...etc...=100%") there is no sound at all when using the
> emu10k1 wavetable synth, e.g. with aplaymidi.
Ok, found the bug. snd_emu10k1_voice_alloc now takes the number of
voices as the third parameter, previously it took 1 or 0 depending on
whether 1 or 2 voices were needed.
Does this fix the problem?
Lee
Index: alsa-cvs/alsa-kernel/pci/emu10k1/emu10k1_callback.c
===================================================================
RCS file: /cvsroot/alsa/alsa-kernel/pci/emu10k1/emu10k1_callback.c,v
retrieving revision 1.12
diff -u -r1.12 emu10k1_callback.c
--- alsa-cvs/alsa-kernel/pci/emu10k1/emu10k1_callback.c 29 Jun 2004 16:10:33 -0000 1.12
+++ alsa-cvs/alsa-kernel/pci/emu10k1/emu10k1_callback.c 19 Jan 2005 16:57:06 -0000
@@ -291,7 +291,7 @@
if (vp->ch < 0) {
/* allocate a voice */
emu10k1_voice_t *hwvoice;
- if (snd_emu10k1_voice_alloc(hw, EMU10K1_SYNTH, 0, &hwvoice) < 0 || hwvoice == NULL)
+ if (snd_emu10k1_voice_alloc(hw, EMU10K1_SYNTH, 1, &hwvoice) < 0 || hwvoice == NULL)
continue;
vp->ch = hwvoice->number;
emu->num_voices++;
-------------------------------------------------------
The SF.Net email is sponsored by: Beat the post-holiday blues
Get a FREE limited edition SourceForge.net t-shirt from ThinkGeek.
It's fun and FREE -- well, almost....http://www.thinkgeek.com/sfshirt
next prev parent reply other threads:[~2005-01-19 16:59 UTC|newest]
Thread overview: 51+ messages / expand[flat|nested] mbox.gz Atom feed top
2005-01-18 23:31 [PATCH] emu10k1 multichannel support Lee Revell
2005-01-19 14:38 ` William
2005-01-19 16:10 ` Lee Revell
2005-01-19 16:59 ` Lee Revell [this message]
2005-01-19 17:49 ` William
2005-01-19 18:20 ` William
2005-01-19 18:24 ` Lee Revell
2005-01-19 16:48 ` Takashi Iwai
2005-01-19 19:10 ` Lee Revell
2005-01-21 21:45 ` Lee Revell
2005-01-23 0:49 ` James Courtier-Dutton
2005-01-26 18:05 ` Lee Revell
2005-01-23 20:05 ` Lee Revell
2005-01-29 3:54 ` Lee Revell
2005-01-31 16:09 ` Bug in " Mikael Magnusson
2005-02-10 22:17 ` Lee Revell
2005-02-10 23:26 ` Mikael Magnusson
2005-02-11 1:55 ` Lee Revell
2005-02-11 18:41 ` Lee Revell
2005-02-11 20:32 ` Mikael Magnusson
2005-02-10 23:33 ` Shayne O'Connor
2005-02-11 0:59 ` Lee Revell
2005-02-11 1:35 ` Shayne O'Connor
2005-02-11 1:33 ` Lee Revell
2005-02-11 2:31 ` Shayne O'Connor
2005-02-11 3:55 ` Lee Revell
2005-02-11 9:54 ` Takashi Iwai
2005-01-19 19:51 ` [Alsa-user] [PATCH] " Alexander Samad
2005-01-19 21:11 ` Lee Revell
2005-01-19 21:25 ` Alexander Samad
2005-01-19 22:16 ` Alexander Samad
2005-01-19 22:19 ` Alexander Samad
2005-01-19 22:54 ` [Alsa-user] " Lee Revell
2005-01-21 21:41 ` Lee Revell
2005-01-22 0:49 ` James Courtier-Dutton
2005-01-23 20:31 ` [Alsa-devel] " Alexander Samad
2005-01-25 17:09 ` Brian L Scipioni
2005-01-25 18:43 ` [Alsa-user] " Lee Revell
[not found] ` <1106743059.30763.21.camel@radium.gaugetheory.org>
[not found] ` <1106756424.2935.1.camel@krustophenia.net>
[not found] ` <s5hu0p3nimh.wl@alsa2.suse.de>
2005-01-27 18:41 ` [Alsa-user] emu10k1 alsamixer items Lee Revell
2005-01-28 15:33 ` Takashi Iwai
[not found] ` <1108148365.4267.22.camel@radium.gaugetheory.org>
2005-02-11 19:41 ` [PATCH] emu10k1 multichannel support Lee Revell
2005-02-11 20:11 ` Brian L Scipioni
2005-02-11 20:14 ` [Alsa-user] " Lee Revell
2005-02-15 14:20 ` Brian L Scipioni
[not found] ` <1108148630.4267.28.camel@radium.gaugetheory.org>
2005-02-11 19:44 ` emu10k1 MIDI record Lee Revell
2005-02-11 20:06 ` Brian L Scipioni
2005-02-11 20:12 ` [Alsa-user] " Lee Revell
2005-02-12 15:34 ` Brian L Scipioni
2005-02-12 23:51 ` [Alsa-user] " Lee Revell
2005-02-15 14:44 ` Brian L Scipioni
2005-01-25 21:33 ` [Alsa-user] [PATCH] emu10k1 multichannel support Lee Revell
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1106153966.3082.2.camel@krustophenia.net \
--to=rlrevell@joe-job.com \
--cc=alsa-devel@lists.sourceforge.net \
--cc=walsac3@orthoset.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox