PMac.conf 486 B

12345678910111213141516171819202122232425262728293031323334353637
  1. #
  2. # Configuration for PMac
  3. #
  4. <confdir:pcm/front.conf>
  5. PMac.pcm.front.0 {
  6. @args [ CARD ]
  7. @args.CARD {
  8. type string
  9. }
  10. type hw
  11. card $CARD
  12. }
  13. # default with dmix/dsnoop
  14. PMac.pcm.default {
  15. @args [ CARD ]
  16. @args.CARD {
  17. type string
  18. }
  19. type asym
  20. playback.pcm {
  21. type plug
  22. slave.pcm {
  23. @func concat
  24. strings [ "dmix:CARD=" $CARD ",FORMAT=S16_BE" ]
  25. }
  26. }
  27. capture.pcm {
  28. type plug
  29. slave.pcm {
  30. @func concat
  31. strings [ "dsnoop:CARD=" $CARD ",FORMAT=S16_BE" ]
  32. }
  33. }
  34. }