Hi.
I'm trying to use pulseaudio over an OSS driver (sis7019).
My /etc/pulse/default.pa is like this:
#!/usr/bin/pulseaudio -nF
load-module module-oss device="/dev/dsp" sink_name=output source_name=input
load-module module-esound-protocol-tcp auth-ip-acl=127.0.0.1;192.168.0.3
load-module module-native-protocol-tcp auth-ip-acl=127.0.0.1;192.168.0.3
Run pulseaudio with this cmdline:
pulseaudio --no-cpu-limit=1 --log-target=stderr --log-level=4 --module-idle-time=-1
Sound starts ok but if i exec some tool (like aumix) to change volume levels, pulseaudio stop, and I need to kill and start it again.
I have discovered that can play music ok if i start esd and connect pulseaudio output to esound like this:
load-module module-esound-sink server=127.0.0.1
pulseaudio driver --> network --> pulseaudio daemon --> esd --> OSS
With this scheme works OK.