Advertisement
Guest User

Untitled

a guest
Nov 26th, 2013
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.52 KB | None | 0 0
  1. pcm.!default {
  2.     type plug
  3.     slave.pcm multi
  4. }
  5.  
  6. pcm.multi {
  7.     type multi
  8.     slaves {
  9.         b { pcm "dmixer_a" channels 2 }
  10.         a { pcm "dmixer_b" channels 2 }
  11.     }
  12.    
  13.     bindings [
  14.         { slave a channel 0 }
  15.         { slave a channel 1 }
  16.             { slave b channel 0 }
  17.             { slave b channel 1 }
  18.     ]
  19. }
  20.  
  21. pcm.dmixer_b {
  22.     type dmix
  23.     ipc_key 2048
  24.     slave {
  25.         pcm "hw:1,0"
  26.     }
  27.    
  28.     bindings {
  29.         0 0
  30.         1 1
  31.     }
  32. }
  33.  
  34. pcm.dmixer_a {
  35.     type dmix
  36.     ipc_key 1024
  37.     slave {
  38.         pcm "hw:0,3"
  39.     }
  40.    
  41.     bindings {
  42.         0 0
  43.         1 1
  44.     }
  45. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement