From: Markus Schoder <markus_schoder@yahoo.de>
To: alsa-devel@alsa-project.org
Subject: cmipci random noise + Makefile patch
Date: Sat, 25 May 2002 22:04:16 +0200 [thread overview]
Message-ID: <200205252204.16801.markus_schoder@yahoo.de> (raw)
When playing .wav files with aplay sometimes random noise is appended to the
actual sample. It does not happen with e.g. playwave which uses OSS
emulation. I think this never worked correctly with the cmipci driver.
Another problem I see is that with the current CVS alsa drivers (2002-05-25) I
get the following message when doing a depmod -ae
depmod: *** Unresolved symbols in
/lib/modules/2.4.19-pre8-ac5/kernel/drivers/sound/alsa/snd-seq-midi.o
depmod: snd_midi_event_decode
depmod: snd_midi_event_free
depmod: snd_midi_event_new
depmod: snd_midi_event_encode
depmod: snd_midi_event_reset_decode
The following patch solved it for me
--- alsa/alsa-kernel/core/seq/Makefile.old Fri May 24 20:56:10 2002
+++ alsa/alsa-kernel/core/seq/Makefile Sat May 25 21:28:21 2002
@@ -34,7 +34,9 @@
snd-seq-virmidi-objs := seq_virmidi.o
obj-$(CONFIG_SND_SEQUENCER) += snd-seq.o snd-seq-device.o
-obj-$(CONFIG_SND_SEQUENCER_OSS) += snd-seq-midi-event.o
+ifeq ($(CONFIG_SND_SEQUENCER_OSS),y)
+obj-$(CONFIG_SND_SEQUENCER) += snd-seq-midi-event.o
+endif
obj-$(CONFIG_SND_SEQ_DUMMY) += snd-seq-dummy.o
# Toplevel Module Dependency
--
Markus
_______________________________________________________________
Don't miss the 2002 Sprint PCS Application Developer's Conference
August 25-28 in Las Vegas -- http://devcon.sprintpcs.com/adp/index.cfm
reply other threads:[~2002-05-25 20:05 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
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=200205252204.16801.markus_schoder@yahoo.de \
--to=markus_schoder@yahoo.de \
--cc=alsa-devel@alsa-project.org \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.