Advertisement
Guest User

Untitled

a guest
Apr 27th, 2012
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.53 KB | None | 0 0
  1.  
  2. pcm.!default {
  3. type plug
  4. slave {
  5. pcm "both"
  6. }
  7. }
  8.  
  9. pcm.both {
  10. type route
  11. slave {
  12. pcm multi
  13. channels 6
  14. }
  15. ttable.0.0 1.0
  16. ttable.1.1 1.0
  17. ttable.0.2 1.0
  18. ttable.1.3 1.0
  19. ttable.0.4 1.0
  20. ttable.1.5 1.0
  21. }
  22.  
  23. pcm.multi {
  24. type multi
  25. slaves.a {
  26. pcm "hdmi_hw"
  27. channels 2
  28. }
  29. slaves.b {
  30. pcm "digital_hw"
  31. channels 2
  32. }
  33. slaves.c {
  34. pcm "analog_hw"
  35. channels 2
  36. }
  37. bindings.0.slave a
  38. bindings.0.channel 0
  39. bindings.1.slave a
  40. bindings.1.channel 1
  41. bindings.2.slave b
  42. bindings.2.channel 0
  43. bindings.3.slave b
  44. bindings.3.channel 1
  45. bindings.4.slave c
  46. bindings.4.channel 0
  47. bindings.5.slave c
  48. bindings.5.channel 1
  49. }
  50.  
  51. pcm.hdmi_hw {
  52. type hw
  53. card 0
  54. device 3
  55. channels 2
  56. }
  57.  
  58. pcm.hdmi_formatted {
  59. type plug
  60. slave {
  61. pcm hdmi_hw
  62. rate 48000
  63. channels 2
  64. }
  65. }
  66.  
  67. pcm.hdmi_complete {
  68. type softvol
  69. slave.pcm hdmi_formatted
  70. control.name hdmi_volume
  71. control.card 0
  72. }
  73.  
  74. pcm.digital_hw {
  75. type hw
  76. card 0
  77. device 1
  78. channels 2
  79. }
  80.  
  81. pcm.analog_hw {
  82. type hw
  83. card 0
  84. device 0
  85. channels 2
  86. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement