Re: [Alsa-user] softvol + dmix
Brought to you by:
perex
|
From: Takashi I. <ti...@su...> - 2005-04-11 14:12:44
|
At Thu, 07 Apr 2005 02:51:16 +0200,
Elias Pschernig wrote:
>
> I'm trying to get both the softvol and dmix plugins, but I can't figure
> out from the docs and examples how to apply 2 plugins. This is what I
> have:
>
> pcm.mydev {
> type plug
> slave.pcm "softvol"
> slave.pcm "dmix"
> }
Define the slaves in a cascade:
pcm.mydev {
type plug
slave.pcm {
type softvol
slave.pcm "dmix"
}
}
Takashi
|