Advertisement
Guest User

Untitled

a guest
Jan 1st, 2013
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. pcm.!default {
  2. type plug
  3. slave {
  4. pcm "both"
  5. }
  6. }
  7.  
  8. pcm.both {
  9. type route
  10. slave {
  11. pcm multi
  12. channels 6
  13. }
  14. ttable.0.0 1.0
  15. ttable.1.1 1.0
  16. ttable.0.2 1.0
  17. ttable.1.3 1.0
  18. ttable.0.4 1.0
  19. ttable.1.5 1.0
  20. }
  21.  
  22. pcm.multi {
  23. type multi
  24. slaves.a {
  25. pcm "tv"
  26. channels 2
  27. }
  28. slaves.b {
  29. pcm "receiver"
  30. channels 2
  31. }
  32. slaves.c {
  33. pcm "analog"
  34. channels 2
  35. }
  36. bindings.0.slave a
  37. bindings.0.channel 0
  38. bindings.1.slave a
  39. bindings.1.channel 1
  40. bindings.2.slave b
  41. bindings.2.channel 0
  42. bindings.3.slave b
  43. bindings.3.channel 1
  44. bindings.4.slave c
  45. bindings.4.channel 0
  46. bindings.5.slave c
  47. bindings.5.channel 1
  48. }
  49.  
  50. pcm.tv {
  51. type hw
  52. card 0
  53. device 3
  54. channels 2
  55. }
  56.  
  57. pcm.receiver {
  58. type hw
  59. card 0
  60. device 1
  61. channels 2
  62. }
  63.  
  64. pcm.analog {
  65. type hw
  66. card 0
  67. device 0
  68. channels 2
  69. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement