aboutsummaryrefslogtreecommitdiffstats
path: root/conf.d/project/asoundrc-fulup4a
diff options
context:
space:
mode:
Diffstat (limited to 'conf.d/project/asoundrc-fulup4a')
-rw-r--r--conf.d/project/asoundrc-fulup4a47
1 files changed, 46 insertions, 1 deletions
diff --git a/conf.d/project/asoundrc-fulup4a b/conf.d/project/asoundrc-fulup4a
index 599c25f..0942c0b 100644
--- a/conf.d/project/asoundrc-fulup4a
+++ b/conf.d/project/asoundrc-fulup4a
@@ -105,12 +105,13 @@ pcm.Multimedia {
# api subcall to request a role
request {
- stream_open "{'audio_role': 'entertainment', 'endpoint_type':'sink'}"
+ stream_open "{'audio_role': 'Entertainment', 'endpoint_type':'sink'}"
set_stream_state "{'state':'running'}"
}
# api subcall to request a role
release {
+ set_stream_state "{'state':'idle'}"
stream_close "{}"
}
@@ -124,3 +125,47 @@ pcm.Multimedia {
}
}
+# ----------------------------------------------------
+# Define one hooked PCM channel per Audio Roles
+# ----------------------------------------------------
+pcm.Navigation {
+ type hooks
+ slave {pcm "Guidance_Main"}
+ hooks.0 {
+ comment "Defined used hook sharelib and provide arguments/config to install func"
+ type "CtlHookPlugin"
+ hook_args {
+
+ # print few log messages (default false)
+ verbose true
+
+ # uri to audio-4a policy engine
+ uri="unix:/var/tmp/ahl-4a"
+
+ # timeout in ms (default 500)
+ timeout 5000
+
+ # force API synchronous mode
+ synchronous true
+
+ # api subcall to request a role
+ request {
+ stream_open "{'audio_role': 'Guidance', 'endpoint_type':'sink'}"
+ set_stream_state "{'state':'running'}"
+ }
+
+ # api subcall to request a role
+ release {
+ set_stream_state "{'state':'idle'}"
+ stream_close "{}"
+ }
+
+ # map AGL event on Unix signal. Search in event for json key=value
+ events {
+ sig-02 {search state_event, value 1}
+ sig-31 {search state_event, value 2}
+ sig-32 {search state_event, value 3}
+ }
+ }
+ }
+}