Date: Tue, 18 May 1999 01:22:06 +0300 (EEST) From: Vladimir Kushnir <kushn@mail.kar.net> To: Leif Neland <root@neland.dk> Cc: freebsd-current@FreeBSD.ORG Subject: Re: rplayd: mixer not installed Message-ID: <Pine.BSF.4.05.9905180113310.2396-200000@kushnir.kiev.ua> In-Reply-To: <Pine.BSF.4.05.9905170220260.335-100000@gina.neland.dk>
next in thread | previous in thread | raw e-mail | index | archive | help
[-- Attachment #1 --]
Hi,
This message has absolutely nothing to do with FreeBSD sound driver. It
looks like it's a (bug/typo) in rplay. Try to change SOUND_MIXER_PCM in
audio_FreeBSD.c to SOUND_MASK_PCM (patch attached, but it's for
rplay-3.3.1, which has some another typos as well :-()
On Mon, 17 May 1999, Leif Neland wrote:
> At boot I get this message:
> /usr/local/sbin/rplayd: rplay_audio_get_volume: pcm mixer device not
> installed.
>
> However, /dev/mixer is installed, and works.
>
> I'm using current, Luiqi's pcm and a ESS soundcard.
>
> Leif
>
>
Hope this helps,
Vladimir
===========================|=======================
Vladimir Kushnir |
kushn@mail.kar.net, | Powered by FreeBSD
kushnir@ap3.bitp.kiev.ua |
[-- Attachment #2 --]
*** audio_FreeBSD.c.old Thu Sep 3 09:08:44 1998
--- audio_FreeBSD.c Tue May 18 01:00:26 1999
***************
*** 353,359 ****
return (-1);
}
! if (!(mxdevmask & SOUND_MIXER_PCM))
{
report (REPORT_ERROR, "rplay_audio_get_volume: pcm mixer device not installed\n");
close (mx);
--- 353,359 ----
return (-1);
}
! if (!(mxdevmask & SOUND_MASK_PCM))
{
report (REPORT_ERROR, "rplay_audio_get_volume: pcm mixer device not installed\n");
close (mx);
***************
*** 417,423 ****
return (-1);
}
! if (!(mxdevmask & SOUND_MIXER_PCM))
{
report (REPORT_ERROR, "rplay_audio_set_volume: pcm mixer device not installed\n");
close (mx);
--- 417,423 ----
return (-1);
}
! if (!(mxdevmask & SOUND_MASK_PCM))
{
report (REPORT_ERROR, "rplay_audio_set_volume: pcm mixer device not installed\n");
close (mx);
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?Pine.BSF.4.05.9905180113310.2396-200000>
