Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions src/audio/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,9 @@ if(NOT CONFIG_LIBRARY)
if(CONFIG_COMP_ARIA)
add_subdirectory(aria)
endif()
if(CONFIG_COMP_UP_DOWN_MIXER)
add_subdirectory(up_down_mixer)
endif()
subdirs(pipeline)

return()
Expand Down
14 changes: 14 additions & 0 deletions src/audio/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,20 @@ config COMP_VOLUME
help
Select for Volume component

config COMP_UP_DOWN_MIXER
bool "UP_DOWN_MIXER component"
default n
depends on IPC_MAJOR_4
help
Select for Up Down Mixer component Conversions supported:
Up/Downmixing for stereo output:
1, 2, 2.1, 3.0, 3.1, Quatro, 4.0, 5.0, 5.1, 7.1 -> 2
Upmixing for multichannel output:
1, 2 -> 5.1
2 -> 7.1
Downmixing for mono output:
4.0, Quatro, 3.1, 2 -> 1

if COMP_VOLUME

config COMP_VOLUME_WINDOWS_FADE
Expand Down
4 changes: 4 additions & 0 deletions src/audio/up_down_mixer/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# SPDX-License-Identifier: BSD-3-Clause

add_local_sources(sof up_down_mixer.c)
add_local_sources(sof up_down_mixer_hifi3.c)
Loading