Skip to content

Commit

Permalink
WIP: add AMLOGIC-HDMI and AMLOGIC-HDMI-SPDIF confs
Browse files Browse the repository at this point in the history
  • Loading branch information
chewitt committed Jul 14, 2020
1 parent 78d1771 commit 438595e
Show file tree
Hide file tree
Showing 2 changed files with 100 additions and 0 deletions.
65 changes: 65 additions & 0 deletions src/conf/cards/AMLOGIC-HDMI-SPDIF.conf
@@ -0,0 +1,65 @@
# SPDX-License-Identifier: GPL-2.0
# Copyright (C) 2020-present Team LibreELEC (https://libreelec.tv)

# NOTE: IEC958 controls are not currently implemented in the audio
# driver, so control blocks are currently dummies.

<confdir:pcm/hdmi.conf>

AMLOGIC-HDMI-SPDIF.pcm.hdmi.0 {
@args [ CARD AES0 AES1 AES2 AES3 ]
@args.CARD { type string }
@args.AES0 { type integer }
@args.AES1 { type integer }
@args.AES2 { type integer }
@args.AES3 { type integer }
type hooks
slave.pcm {
type hw
card $CARD
device 0
}
hooks.0 {
type ctl_elems
hook_args [
{
interface MIXER
name "IEC958 Playback Default"
lock true
preserve true
optional true
value [ $AES0 $AES1 $AES2 $AES3 ]
}
]
}
}

<confdir:pcm/iec958.conf>

AMLOGIC-HDMI-SPDIF.pcm.iec958.0 {
@args [ CARD AES0 AES1 AES2 AES3 ]
@args.CARD { type string }
@args.AES0 { type integer }
@args.AES1 { type integer }
@args.AES2 { type integer }
@args.AES3 { type integer }
type hooks
slave.pcm {
type hw
card $CARD
device 1
}
hooks.0 {
type ctl_elems
hook_args [
{
interface MIXER
name "IEC958 Playback Default"
lock true
preserve true
optional true
value [ $AES0 $AES1 $AES2 $AES3 ]
}
]
}
}
35 changes: 35 additions & 0 deletions src/conf/cards/AMLOGIC-HDMI.conf
@@ -0,0 +1,35 @@
# SPDX-License-Identifier: GPL-2.0
# Copyright (C) 2020-present Team LibreELEC (https://libreelec.tv)

# NOTE: IEC958 controls are not currently implemented in the audio
# driver, so control blocks are currently dummies.

<confdir:pcm/hdmi.conf>

AMLOGIC-HDMI.pcm.hdmi.0 {
@args [ CARD AES0 AES1 AES2 AES3 ]
@args.CARD { type string }
@args.AES0 { type integer }
@args.AES1 { type integer }
@args.AES2 { type integer }
@args.AES3 { type integer }
type hooks
slave.pcm {
type hw
card $CARD
device 0
}
hooks.0 {
type ctl_elems
hook_args [
{
interface MIXER
name "IEC958 Playback Default"
lock true
preserve true
optional true
value [ $AES0 $AES1 $AES2 $AES3 ]
}
]
}
}

0 comments on commit 438595e

Please sign in to comment.