summaryrefslogtreecommitdiffstats
path: root/conf.d/project/asoundrc-audio4a
diff options
context:
space:
mode:
authorLoïc Collignon <loic.collignon@iot.bzh>2018-06-05 10:29:47 +0200
committerLoïc Collignon <loic.collignon@iot.bzh>2018-06-12 15:26:21 +0200
commit322f8932476eda944c7d3ac65eafde12c69b2ae9 (patch)
tree3146f053d8f3f8f8324d7e41493b929d348a3f9c /conf.d/project/asoundrc-audio4a
parent545c14e62971b23c704bc3d7f696e934e330656d (diff)
Rewrite of the High Level API using the new HAL model
The new HAL model need the High Level API to be rewritten. This is the first version of this rewrite, still in progress but should work. Change-Id: I5c94cf39d84cefae6b7a179c09d95e645673e8d4 Signed-off-by: Loïc Collignon <loic.collignon@iot.bzh>
Diffstat (limited to 'conf.d/project/asoundrc-audio4a')
-rw-r--r--conf.d/project/asoundrc-audio4a207
1 files changed, 0 insertions, 207 deletions
diff --git a/conf.d/project/asoundrc-audio4a b/conf.d/project/asoundrc-audio4a
deleted file mode 100644
index 8dde445..0000000
--- a/conf.d/project/asoundrc-audio4a
+++ /dev/null
@@ -1,207 +0,0 @@
-#AGL Audio High Level ALSA configuration
-#This define 2 sounds card with 8 audio roles each
-#The alsa soft volume control name must match with the HAL Control Name
-pcm.SoftMixer {
- type dmix
- ipc_key 1024
- ipc_key_add_uid false
- ipc_perm 0666 # mixing for all users
-
- # Define target effective sound card (cannot be a plugin)
- slave {
- pcm "hw:0" # Main sound card
- channels 2
- buffer_size 4096
- period_size 1024
- }
-
- # DMIX can only map two channels
- bindings {
- 0 0
- 1 1
- }
-}
-
-pcm.SoftMixer_DriverHR {
- type dmix
- ipc_key 1024
- ipc_key_add_uid false
- ipc_perm 0666 # mixing for all users
-
- # Define target effective sound card (cannot be a plugin)
- slave {
- pcm "hw:3" # Alternate sound card / dummy
- channels 2
- buffer_size 4096
- period_size 1024
- }
-
- # DMIX can only map two channels
- bindings {
- 0 0
- 1 1
- }
-}
-
-pcm.SoftMixer_RSE {
- type dmix
- ipc_key 1024
- ipc_key_add_uid false
- ipc_perm 0666 # mixing for all users
-
- # Define target effective sound card (cannot be a plugin)
- slave {
- pcm "hw:4" # Alternate sound card / dummy
- }
-
- # DMIX can only map two channels
- bindings {
- 0 0
- 1 1
- }
-}
-
-pcm.Entertainment_Main {
- type softvol
- slave.pcm "SoftMixer"
- control{
- name "Entertainment_Volume"
- card 0
- }
-}
-
-pcm.Guidance_Main {
- type softvol
- slave.pcm "SoftMixer"
- control{
- name "Guidance_Volume"
- card 0
- }
-}
-
-pcm.Communications_Main {
- type softvol
- slave.pcm "SoftMixer"
- control{
- name "Communications_Volume"
- card 0
- }
-}
-
-pcm.Notification_Main {
- type softvol
- slave.pcm "SoftMixer"
- control{
- name "Notification_Volume"
- card 0
- }
-}
-
-pcm.Warning_Main {
- type softvol
- slave.pcm "SoftMixer"
- control{
- name "Warning_Volume"
- card 0
- }
-}
-
-pcm.System_Main {
- type softvol
- slave.pcm "SoftMixer"
- control{
- name "System_Volume"
- card 0
- }
-}
-
-pcm.Startup_Main {
- type softvol
- slave.pcm "SoftMixer"
- control{
- name "Startup_Volume"
- card 0
- }
-}
-
-pcm.Shutdown_Main {
- type softvol
- slave.pcm "SoftMixer"
- control{
- name "Shutdown_Volume"
- card 0
- }
-}
-
-pcm.Entertainment_DriverHR {
- type softvol
- slave.pcm "SoftMixer_DriverHR"
- control{
- name "Entertainment_Volume"
- card 3
- }
-}
-
-pcm.Guidance_DriverHR {
- type softvol
- slave.pcm "SoftMixer_DriverHR"
- control{
- name "Guidance_Volume"
- card 3
- }
-}
-
-pcm.Communications_DriverHR {
- type softvol
- slave.pcm "SoftMixer_DriverHR"
- control{
- name "Communications_Volume"
- card 3
- }
-}
-
-pcm.Notification_DriverHR {
- type softvol
- slave.pcm "SoftMixer_DriverHR"
- control{
- name "Notification_Volume"
- card 3
- }
-}
-
-pcm.Warning_DriverHR {
- type softvol
- slave.pcm "SoftMixer_DriverHR"
- control{
- name "Warning_Volume"
- card 3
- }
-}
-
-
-pcm.System_DriverHR {
- type softvol
- slave.pcm "SoftMixer_DriverHR"
- control{
- name "System_Volume"
- card 3
- }
-}
-
-pcm.Startup_DriverHR {
- type softvol
- slave.pcm "SoftMixer_DriverHR"
- control{
- name "Startup_Volume"
- card 3
- }
-}
-
-pcm.Shutdown_DriverHR {
- type softvol
- slave.pcm "SoftMixer_DriverHR"
- control{
- name "Shutdown_Volume"
- card 3
- }
-}