configuration: add configuration/scripting for routing groups
[profile/ivi/pulseaudio-module-murphy-ivi.git] / murphy / murphy-ivi.lua
1
2 routing_group {
3     name = "default",
4     node_type = node.output,
5     accept = builtin.method.accept_default,
6     compare = builtin.method.compare_default
7 }
8
9 routing_group {
10     name = "phone",
11     node_type = node.input,
12     accept = builtin.method.accept_phone,
13     compare = builtin.method.compare_phone
14 }
15
16 routing_group {
17     name = "phone",
18     node_type = node.output,
19     accept = builtin.method.accept_phone,
20     compare = builtin.method.compare_phone
21 }
22