summaryrefslogtreecommitdiffstats
path: root/conf.d/project/json.d/onload-audio-control.json
blob: 14d6970d921895c5ef811f67496f30e7bfc957e6 (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
{
    "$schema": "ToBeDone",
    "metadata": {
        "label": "audio-policy-control-configuration",
        "info": "Provide Default Audio Policy Control configuration",
        "version": "1.0"
    },
    "onload": [{
            "label": "onload-default",
            "info": "onload initialisation config",
            "plugin": {
                "label" : "_MyPlug",
                "sharelib": "ctl-audio-plugin-sample.ctlso",
                "lua2c": ["Lua2cHelloWorld1", "Lua2cHelloWorld2"]
            },
            "require": ["intel-hda"],
            "actions": [
                {
                    "label": "onload-sample-cb",
                    "info": "Call control sharelib install entrypoint",
                    "callback": "SamplePolicyInit",
                    "args": {
                        "arg1": "first_arg",
                        "nextarg": "second arg value"
                    }
                }, {
                    "label": "onload-sample-api",
                    "info": "Assert AlsaCore Presence",   
                    "api": "alsacore",
                    "verb": "ping",
                    "args": {"data": "none"}
                }, {
                    "label": "onload-hal-lua",
                    "info": "Load avaliable HALs",
                    "lua": "_Alsa_Get_Hal"
                }
            ]
        }],
    "controls": 
            [
                {
                    "label": "duckentertainment_lowprioritypriority",
                    "api": "intel-hda",
                    "verb": "SetRTPC",
                    "args": {
                        "value": "-30"
                     }
                },

                {
                    "label": "multimedia",
                    "actions": {
                            "label": "multimedia-control-lua",
                            "info": "Call Lua Script function Test_Lua_Engin",   
                            "lua": "_Audio_Set_Multimedia"
                        }
                }, {
                    "label": "navigation",
                    "actions": {
                            "label": "navigation-control-lua",
                            "info": "Call Lua Script to set Navigation",   
                            "lua": "_Audio_Set_Navigation"
                        }
                }, {
                    "label": "emergency",
                    "actions": {
                            "label": "emergency-control-ucm",
                            "lua": "_Audio_Set_Emergency"
                        }
                }, {
                    "label": "multi-step-sample",
                    "info" : "all actions must succeed for control to be accepted",
                    "actions": [{
                            "label": "multimedia-control-cb",
                            "info": "Call Sharelib Sample Callback",
                            "callback": "sampleControlNavigation",
                            "args": {
                                "arg1": "snoopy",
                                "arg2": "toto"
                            }
                        }, {
                            "label": "duckentertainment_lowprioritypriority",
                            "api": "hal",
                            "verb": "SetRTPC",
                            "args": {
                                "value": "-30"
                            }
                        }, {
                            "label": "navigation-control-lua",
                            "info": "Call Lua Script to set Navigation",   
                            "lua": "_Audio_Set_Navigation"
                        }]
                }
            ],
    "events":
            [
                {
                    "label": "SampleEvent1",
                    "info": "define action when receiving a given event",
                    "actions": [
                        {
                            "label": "Event Callback-1",
                            "callback": "SampleControlEvent",
                            "args": {
                                "arg": "action-1"
                            }
                        }, {
                            "label": "Event Callback-2",
                            "callback": "SampleControlEvent",
                            "args": {
                                "arg": "action-2"
                            }
                        }
                    ]
                },
                {
                    "label": "SampleEvent2",
                    "info": "define action when receiving a given event",
                    "actions": [
                        {
                            "label": "Event Callback-1",
                            "callback": "SampleControlEvent",
                            "args": {
                                "arg": "action-1"
                            }
                        }, {
                            "label": "Event Callback-2",
                            "callback": "SampleControlEvent",
                            "args": {
                                "arg": "action-2"
                            }
                        }
                    ]
                }
            ]
}