Skip to content
Closed
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/arch/xtensa/configs/override/tigerlake_chrome_rtnr.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
CONFIG_COMP_RTNR=y
CONFIG_CAVS_LPS=y
CONFIG_PROBE=y
8 changes: 8 additions & 0 deletions src/audio/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,14 @@ if(NOT CONFIG_LIBRARY)
if(CONFIG_COMP_IGO_NR)
add_subdirectory(igo_nr)
endif()
if(CONFIG_COMP_COPIER)
add_local_sources(sof
copier.c
)
endif()
if(CONFIG_COMP_RTNR)
add_subdirectory(rtnr)
endif()

subdirs(pipeline)

Expand Down
13 changes: 13 additions & 0 deletions src/audio/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -363,6 +363,19 @@ config COMP_IGO_NR
binary libigonr.a that currently is supported on different Xtensa DSP platforms. Please email
info@intelli-go.com for any questions about the binary.

config COMP_RTNR
bool "RTNR component"
default n
help
Select for Realtek noise reduction/suppression(NR/NS) component.
Noise Suppression technology reduces stationary and transient noises in
single-channel speech signals, which increases the signal-to-noise ratio,
improves speech intelligibility and reduces listening fatigue. It estimates
ambient noise and signal levels and then passes or attenuates the signals
according to improve signal-to-noise ratios. The feature links to a
proprietary binary libSOF_RTK_MA_API.a, libSuite_rename.a, libNet.a and libPreset.a.
Please contact antz0525@realtek.com for any question about the binary.

endmenu # "Audio components"

menu "Data formats"
Expand Down
8 changes: 8 additions & 0 deletions src/audio/rtnr/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# SPDX-License-Identifier: BSD-3-Clause

add_local_sources(sof rtnr.c)

sof_add_static_library(SOF_RTK_MA_API rtklib/tgl/libSOF_RTK_MA_API.a)
sof_add_static_library(Suite_rename rtklib/tgl/libSuite_rename.a)
sof_add_static_library(Net rtklib/tgl/libNet.a)
sof_add_static_library(Preset rtklib/tgl/libPreset.a)
1 change: 1 addition & 0 deletions src/audio/rtnr/rtklib/tgl/README.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Put libSOF_RTK_MA_API.a, libSuite_rename.a, libNet.a and libPreset.a here.
Loading