Robert Rozman wrote:
> I'd kindly ask if anyone can provide example asoundrc for using 6channel sis
> 7012 device as independent stereo outputs using dshare plugin.

This would be similar to the 8-channel example I've posted earlier:

pcm_slave.sis {
        pcm "hw:0"
        channels 6
        rate 44800
        buffer_size 4096  # make these sizes smaller for lower latency
        period_size 2048
}

pcm.ch12 {
        type dshare
        ipc_key 47110815
        slave sis
        bindings.0 0
        bindings.1 1
}

pcm.ch34 {
        type dshare
        ipc_key 47110815
        slave sis
        bindings.0 2
        bindings.1 3
}

pcm.ch56 {
        type dshare
        ipc_key 47110815
        slave sis
        bindings.0 4
        bindings.1 5
}

pcm.a {
        type plug
        slave.pcm ch12
}
pcm.b {
        type plug
        slave.pcm ch34
}
pcm.c {
        type plug
        slave.pcm ch56
}

pcm.!default = pcm.a


Now you can use "a", "b", "c" as separate stereo devices.  (You'll
probably want to replace these names with something more meaningful.)


HTH
Clemens




-------------------------------------------------------
SF.Net is sponsored by: Speed Start Your Linux Apps Now.
Build and deploy apps & Web services for Linux with
a free DVD software kit from IBM. Click Now!
http://ads.osdn.com/?ad_id=1356&alloc_id=3438&op=click
_______________________________________________
Alsa-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/alsa-user

Reply via email to