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 @@ -76,6 +76,9 @@ if(NOT CONFIG_LIBRARY)
if(CONFIG_COMP_CODEC_ADAPTER)
add_subdirectory(codec_adapter)
endif()
if(CONFIG_COMP_IGO_NR)
add_subdirectory(igo_nr)
endif()

subdirs(pipeline)

Expand Down
8 changes: 8 additions & 0 deletions src/audio/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -344,6 +344,14 @@ config COMP_CODEC_ADAPTER
"src\include\sof\audio\codec_adapter\interfaces.h". It is possible to link several
different codecs and use them in parallel.

config COMP_IGO_NR
bool "IGO NR component"
default n
help
This option enables Intelligo non-speech noise reduction. The feature links to a proprietary
binary libigonr.a that currently is supported on different Xtensa DSP platforms. Please email
support@intelli-go.ai for any questions about the binary.

rsource "codec_adapter/Kconfig"

endmenu # "Audio components"
Expand Down
6 changes: 6 additions & 0 deletions src/audio/igo_nr/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# SPDX-License-Identifier: BSD-3-Clause

target_include_directories(sof_public_headers INTERFACE ${CMAKE_CURRENT_SOURCE_DIR})

add_local_sources(sof igo_nr.c)
sof_add_static_library(IGOChrome ${CMAKE_CURRENT_LIST_DIR}/libigonr.a)
Loading