aboutsummaryrefslogtreecommitdiffstats
path: root/conf.d/project/.asoundrc
blob: 8dde445d2736c8790ab872a9823fcfdfe01a6e42 (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
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
#AGL Audio High Level ALSA configuration
#This define 2 sounds card with 8 audio roles each
#The alsa soft volume control name must match with the HAL Control Name
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
        channels 2
        buffer_size 4096
        period_size 1024
    }

    # 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:3"  # Alternate sound card / dummy
        channels 2
        buffer_size 4096
        period_size 1024
    }

    # 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:4"  # Alternate sound card / dummy
    }

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

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

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

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

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

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

pcm.System_Main {
 type softvol
 slave.pcm "SoftMixer"
 control{
   name "System_Volume"
   card 0
 }
}

pcm.Startup_Main {
 type softvol
 slave.pcm "SoftMixer"
 control{
   name "Startup_Volume"
   card 0
 }
}

pcm.Shutdown_Main {
 type softvol
 slave.pcm "SoftMixer"
 control{
   name "Shutdown_Volume"
   card 0
 }
}

pcm.Entertainment_DriverHR {
 type softvol
 slave.pcm "SoftMixer_DriverHR"
 control{
   name "Entertainment_Volume"
   card 3
 }
}

pcm.Guidance_DriverHR {
 type softvol
 slave.pcm "SoftMixer_DriverHR"
 control{
   name "Guidance_Volume"
   card 3
 }
}

pcm.Communications_DriverHR {
 type softvol
 slave.pcm "SoftMixer_DriverHR"
 control{
   name "Communications_Volume"
   card 3
 }
}

pcm.Notification_DriverHR {
 type softvol
 slave.pcm "SoftMixer_DriverHR"
 control{
   name "Notification_Volume"
   card 3
 }
}

pcm.Warning_DriverHR {
 type softvol
 slave.pcm "SoftMixer_DriverHR"
 control{
   name "Warning_Volume"
   card 3
 }
}


pcm.System_DriverHR {
 type softvol
 slave.pcm "SoftMixer_DriverHR"
 control{
   name "System_Volume"
   card 3
 }
}

pcm.Startup_DriverHR {
 type softvol
 slave.pcm "SoftMixer_DriverHR"
 control{
   name "Startup_Volume"
   card 3
 }
}

pcm.Shutdown_DriverHR {
 type softvol
 slave.pcm "SoftMixer_DriverHR"
 control{
   name "Shutdown_Volume"
   card 3
 }
}