-
Notifications
You must be signed in to change notification settings - Fork 321
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Audio: Fix the kconfig error of mixin_mixout.
Fixes the commit f4d0437 ("Audio: Move components related config to subfolder"). Due to a copy/paste error, the content of mixin_mixout/Kconfig has been a copy of aria/Kconfig. This patch fixes the copy/paste error, and adds IPC version dependence for COMP_MIXER and COMP_MIXIN_MIXOUT. Signed-off-by: Andrula Song <[email protected]>
- Loading branch information
1 parent
9831a9d
commit 97a50e3
Showing
4 changed files
with
20 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,7 @@ | |
|
||
config COMP_MIXER | ||
bool "Mixer component" | ||
depends on IPC_MAJOR_3 | ||
default y | ||
help | ||
Select for Mixer component |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,8 @@ | ||
# SPDX-License-Identifier: BSD-3-Clause | ||
|
||
config COMP_ARIA | ||
bool "ARIA component" | ||
default n | ||
depends on IPC_MAJOR_4 | ||
help | ||
Select for Automatic Regressive Input Amplifier Module component | ||
ARIA applies variable gain into incoming signal. | ||
Applied gain is in range <1, 2 power attenuation> | ||
Currently ARIA introduces gain transition and algorithmic | ||
latency equal to 1 ms. | ||
config COMP_MIXIN_MIXOUT | ||
bool "Mixin_mixout component" | ||
depends on IPC_MAJOR_4 | ||
default y | ||
help | ||
Select for Mixin_mixout component |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters