blob: 328e72ae4eb7da7be6c906cc6907af9369604bf6 (
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
|
context.objects = [
{ factory = adapter
args = {
factory.name = api.alsa.pcm.sink
node.name = "Inferno sink"
media.class = Audio/Sink
object.linger = true
session.suspend-timeout-seconds = 0
node.pause-on-idle = false
node.suspend-on-idle = false
node.always-process = true
api.alsa.path = "inferno:RX_CHANNELS=24,TX_CHANNELS=24"
api.alsa.headroom = 128
api.alsa.pcm.card = 999
}
}
{ factory = adapter
args = {
factory.name = api.alsa.pcm.source
node.name = "Inferno source"
media.class = Audio/Source
object.linger = true
session.suspend-timeout-seconds = 0
node.pause-on-idle = false
node.suspend-on-idle = false
node.always-process = true
api.alsa.path = "inferno:RX_CHANNELS=24,TX_CHANNELS=24"
api.alsa.headroom = 128
api.alsa.pcm.card = 999
}
}
]
|