I have a HiFiberry miniamp and need to configure alsa to work with it. I need software volume control because I'm controlling volume through my code. However, I also need to use ALSA's plugequal equaliser as the sound sounds better that way.
Unfortunately, i can't get them to work at the same time.
My asound.conf looks like this:
Code: Select all
pcm.!default {
type plug
slave.pcm "hifiberry";
}
ctl.!default {
type hw card 0
}
ctl.equal {
type equal;
}
pcm.plugequal {
type equal;
slave.pcm "plughw:0,0";
}
pcm.equal {
type plug;
slave.pcm plugequal;
}
pcm.hifiberry {
type softvol
slave.pcm "plughw:0,0";
control.name "Master"
control.card 0
}
Is someone familiar with ALSA able to help me out here?
Thanks.