Sound - Alsa registry settings

Open forum for end-user questions about Wine. Before asking questions, check out the Wiki as a first step.
Forum Rules
Locked
jschellhaass
Newbie
Newbie
Posts: 1
Joined: Sat Feb 06, 2010 11:43 am

Sound - Alsa registry settings

Post by jschellhaass »

Does anyone know what format the registry settings should take for DeviceCTLn and DevicePCMn? The wiki isn't real clear on what format they should in, i.e, should it be an actual device (/dev/snd/controlC1 and /dev/snd/pcmc1d0p) or in some other form.

I am trying to direct the output of wine to a second sound card.

I have already googled and searched these forums. Any relevant hits point me back to Useful Registry Keys page on the wiki and don't give any examples.

Thanks,
Jeff
vitamin
Moderator
Moderator
Posts: 6605
Joined: Sat Feb 23, 2008 2:29 pm

Re: Sound - Alsa registry settings

Post by vitamin »

jschellhaass wrote:Does anyone know what format the registry settings should take for DeviceCTLn and DevicePCMn? The wiki isn't real clear on what format they should in, i.e, should it be an actual device (/dev/snd/controlC1 and /dev/snd/pcmc1d0p) or in some other form.

I am trying to direct the output of wine to a second sound card.
They should be alsa device names. You probably want something like this:

Code: Select all

"AutoScanCards"="no"
"DeviceCount"="1"
"DeviceCTL1"="hw:2"
"DevicePCM1"="hw:2"
Locked