diff options
author | Stephane Desneux <stephane.desneux@iot.bzh> | 2017-11-11 19:00:27 +0100 |
---|---|---|
committer | Stephane Desneux <stephane.desneux@iot.bzh> | 2017-11-11 23:44:36 +0100 |
commit | 54447aa1f8eb8366567a96f45713fd1cae036e1e (patch) | |
tree | 4b64dd821e616967bc15e33e135ce81704b6bb65 /meta-audio-4a-framework/recipes-multimedia/4a-hal-config/files/ahl-config.json.template | |
parent | c3ec51de4f611d0c841cbae34611bfdf4cf8628f (diff) |
Initial integration of 4A (AGL Advance Audio Agent)
This is a move of the work done initially by Ronan Le Martret <ronan.lemartret@iot.bzh>
in https://gerrit.automotivelinux.org/gerrit/#/c/11651/
Change-Id: I3c2124b186e72fd9804ff713b22a36a93283650e
Signed-off-by: Stephane Desneux <stephane.desneux@iot.bzh>
Diffstat (limited to 'meta-audio-4a-framework/recipes-multimedia/4a-hal-config/files/ahl-config.json.template')
-rw-r--r-- | meta-audio-4a-framework/recipes-multimedia/4a-hal-config/files/ahl-config.json.template | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/meta-audio-4a-framework/recipes-multimedia/4a-hal-config/files/ahl-config.json.template b/meta-audio-4a-framework/recipes-multimedia/4a-hal-config/files/ahl-config.json.template new file mode 100644 index 00000000..82e9668d --- /dev/null +++ b/meta-audio-4a-framework/recipes-multimedia/4a-hal-config/files/ahl-config.json.template @@ -0,0 +1,36 @@ +{ + "version": "0.2.0", + "policy_module": "AudioPolicy_v1", + "description": "High-level binding configuration file", + "note": "Devices and routings are always listed in order of priority (for device selection rules)", + "hal_list": ["@AUDIO_DEV_NAME_ID@"], + "audio_roles": [ + { + "name": "Guidance", + "description": "Important user information where user action is expected (e.g. navigation instruction)", + "priority": 25, + "output": [ + "alsa.plug:Guidance_Main" + ], + "interupt_behavior": "continue" + }, + { + "name": "Notification", + "description": "HMI or else notifications (e.g. touchscreen events, speech recognition on/off,...)", + "priority": 100, + "output": [ + "alsa.plug:Notification_Main" + ], + "interupt_behavior": "pause" + }, + { + "name": "Entertainment", + "description": "Multimedia content (e.g. tuner, media player, etc.)", + "priority": 0, + "output": [ + "alsa.plug:Entertainment_Main" + ], + "interupt_behavior": "pause" + } + ] +} |