Maestro3.conf 558 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. # configuration for ESS Maestro3
  2. <confdir:pcm/front.conf>
  3. Maestro3.pcm.front.0 {
  4. @args [ CARD ]
  5. @args.CARD {
  6. type string
  7. }
  8. type hw
  9. card $CARD
  10. }
  11. # default with dmix/dsnoop
  12. Maestro3.pcm.default {
  13. @args [ CARD ]
  14. @args.CARD {
  15. type string
  16. }
  17. type asym
  18. playback.pcm {
  19. type plug
  20. slave.pcm {
  21. # we need to specify device and subdevice numbers
  22. # for a device with multiple substreams
  23. @func concat
  24. strings [ "dmix:" $CARD ",0,0" ]
  25. }
  26. }
  27. capture.pcm {
  28. type plug
  29. slave.pcm {
  30. @func concat
  31. strings [ "dsnoop:" $CARD ]
  32. }
  33. }
  34. }