Finally I've got help in FreeBSD forum.
In order to get it working one must expose to ALSA all the existent devices. It can be done by modifying the
/compat/linux/etc/alsa/pcm/pcm-oss.conf file. In my case the file modified is:
|
Code:
|
# PCBSD pcm-oss plugin configuration
pcm.oss {
type oss
device /dev/dsp
hint {
description "Open Sound System"
}
}
ctl.oss {
type oss
device /dev/mixer
hint {
description "Open Sound System"
}
}
pcm.oss0 {
type oss
device /dev/dsp0
hint {
description "Open Sound System dsp0"
}
}
ctl.oss0 {
type oss
device /dev/mixer0
hint {
description "Open Sound System mixer0"
}
}
pcm.oss1 {
type oss
device /dev/dsp1
hint {
description "Open Sound System dsp1"
}
}
ctl.oss1 {
type oss
device /dev/mixer1
hint {
description "Open Sound System mixer1"
}
}
pcm.oss2 {
type oss
device /dev/dsp2
hint {
description "Open Sound System dsp2"
}
}
ctl.oss2 {
type oss
device /dev/mixer2
hint {
description "Open Sound System mixer2"
}
}
pcm.oss3 {
type oss
device /dev/dsp3
hint {
description "Open Sound System dsp3"
}
}
ctl.oss3 {
type oss
device /dev/mixer3
hint {
description "Open Sound System mixer3"
}
} |
Now I can choose different devices in Skype - one for playback and another - for microphone.
So, it's OK for playback and microphone now.