summaryrefslogtreecommitdiffstats
path: root/alsa-lib/src/conf/pcm/front.conf
diff options
context:
space:
mode:
Diffstat (limited to 'alsa-lib/src/conf/pcm/front.conf')
-rw-r--r--alsa-lib/src/conf/pcm/front.conf58
1 files changed, 58 insertions, 0 deletions
diff --git a/alsa-lib/src/conf/pcm/front.conf b/alsa-lib/src/conf/pcm/front.conf
new file mode 100644
index 0000000..7aff0cb
--- /dev/null
+++ b/alsa-lib/src/conf/pcm/front.conf
@@ -0,0 +1,58 @@
+#
+# Hardware output from front speakers
+#
+
+pcm.!front {
+ @args [ CARD DEV ]
+ @args.CARD {
+ type string
+ default {
+ @func getenv
+ vars [
+ ALSA_FRONT_CARD
+ ALSA_PCM_CARD
+ ALSA_CARD
+ ]
+ default {
+ @func refer
+ name defaults.pcm.front.card
+ }
+ }
+ }
+ @args.DEV {
+ type integer
+ default {
+ @func igetenv
+ vars [
+ ALSA_FRONT_DEVICE
+ ]
+ default {
+ @func refer
+ name defaults.pcm.front.device
+ }
+ }
+ }
+ type empty
+ slave.pcm {
+ @func refer
+ name {
+ @func concat
+ strings [
+ "cards."
+ {
+ @func card_driver
+ card $CARD
+ }
+ ".pcm.front." $DEV ":CARD=" $CARD
+ ]
+ }
+ }
+ hint {
+ show {
+ @func refer
+ name defaults.namehint.basic
+ }
+ description "Front speakers"
+ device $DEV
+ }
+}