summaryrefslogtreecommitdiffstats
path: root/conf.d/project/.asoundrc-audiok
blob: cba88e5567a8e5b9b860ab0b9625c2dba22ab7de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
##### AGL Conf #####
pcm.SoftMixer { 
    type dmix 
    ipc_key 1024
    ipc_key_add_uid false
    ipc_perm 0666   # mixing for all users

    # Define target effective sound card (cannot be a plugin)
    slave { 
        pcm "hw:0"  # Main sound card
        # periods 8 
        period_size 1024 
        buffer_size 4096
    }

    # DMIX can only map two channels
    bindings { 
        0 0 
        1 1 
    } 
}

pcm.SoftMixer_DriverHR { 
    type dmix 
    ipc_key 1024
    ipc_key_add_uid false
    ipc_perm 0666   # mixing for all users

    # Define target effective sound card (cannot be a plugin)
    slave { 
        pcm "hw:1"  # Alternate sound card / dummy
        # periods 8 
        period_size 1024 
        buffer_size 4096
    }

    # DMIX can only map two channels
    bindings { 
        0 0 
        1 1 
    } 
}

pcm.SoftMixer_RSE { 
    type dmix 
    ipc_key 1024
    ipc_key_add_uid false
    ipc_perm 0666   # mixing for all users

    # Define target effective sound card (cannot be a plugin)
    slave { 
        pcm "hw:2"  # Alternate sound card / dummy
        # periods 8 
        period_size 1024 
        buffer_size 4096
    }

    # DMIX can only map two channels
    bindings { 
        0 0 
        1 1 
    } 
}

pcm.Entertainment_Main {
 type softvol
 slave.pcm "SoftMixer"
 control{
   name "Entertainment_Vol"
   card 0
 }
}

pcm.Guidance_Main {
 type softvol
 slave.pcm "SoftMixer"
 control{
   name "Guidance_Vol"
   card 0
 }
}

pcm.Communications_Main {
 type softvol
 slave.pcm "SoftMixer"
 control{
   name "Communications_Vol"
   card 0
 }
}

pcm.Notification_Main {
 type softvol
 slave.pcm "SoftMixer"
 control{
   name "Notification_Vol"
   card 0
 }
}

pcm.Warning_Main {
 type softvol
 slave.pcm "SoftMixer"
 control{
   name "Warning_Vol"
   card 0
 }
}

pcm.Entertainment_DriverHR {
 type softvol
 slave.pcm "SoftMixer_DriverHR"
 control{
   name "Entertainment_Vol"
   card 1
 }
}

pcm.Guidance_DriverHR {
 type softvol
 slave.pcm "SoftMixer_DriverHR"
 control{
   name "Guidance_Vol"
   card 1
 }
}

pcm.Communications_DriverHR {
 type softvol
 slave.pcm "SoftMixer_DriverHR"
 control{
   name "Communications_Vol"
   card 1
 }
}

pcm.Notification_DriverHR {
 type softvol
 slave.pcm "SoftMixer_DriverHR"
 control{
   name "Notification_Vol"
   card 1
 }
}

pcm.Warning_DriverHR {
 type softvol
 slave.pcm "SoftMixer_DriverHR"
 control{
   name "Warning_Vol"
   card 1
 }
}

pcm.Entertainment_RSE {
 type softvol
 slave.pcm "SoftMixer_RSE"
 control{
   name "Entertainment_Vol"
   card 2
 }
}