Skip to content
Open
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
4 changes: 2 additions & 2 deletions src/audio/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,8 @@ if(NOT CONFIG_LIBRARY)
if(CONFIG_COMP_ASRC)
add_subdirectory(asrc)
endif()
if(CONFIG_COMP_CODEC_ADAPTER)
add_subdirectory(codec_adapter)
if(CONFIG_COMP_MODULE_ADAPTER)
add_subdirectory(module_adapter)
endif()
if(CONFIG_COMP_IGO_NR)
add_subdirectory(igo_nr)
Expand Down
8 changes: 4 additions & 4 deletions src/audio/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -333,18 +333,18 @@ config COMP_TDFB
for channels selection, channel filter coefficients, and output
streams mixing.

config COMP_CODEC_ADAPTER
bool "Codec adapter"
config COMP_MODULE_ADAPTER
bool "Module adapter"
default n
help
This component is an adapter between SoF components and any external third
party codecs/libraries. In order to make use of it the library itself should
be statically linked with the SoF FW binary image and the codec details, such as its
ID or specific methods provided in generic interface object located under
"src\include\sof\audio\codec_adapter\interfaces.h". It is possible to link several
"src\include\sof\audio\module_adapter\interfaces.h". It is possible to link several
different codecs and use them in parallel.

rsource "codec_adapter/Kconfig"
rsource "module_adapter/Kconfig"

config COMP_IGO_NR
bool "IGO NR component"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# SPDX-License-Identifier: BSD-3-Clause

menu "Codec Adapter codecs"
visible if COMP_CODEC_ADAPTER
menu "Processing modules"
visible if COMP_MODULE_ADAPTER

config CADENCE_CODEC
bool "Cadence codec"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
*
*/

#include <sof/audio/codec_adapter/codec/generic.h>
#include <sof/audio/module_adapter/codec/generic.h>

/*****************************************************************************/
/* Local helper functions */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
//
// Author: Oleksandr Strelchenko <oleksandr.strelchenko@waves.com>
//
#include <sof/audio/codec_adapter/codec/generic.h>
#include <sof/audio/codec_adapter/codec/waves.h>
#include <sof/audio/module_adapter/codec/generic.h>
#include <sof/audio/module_adapter/codec/waves.h>
#include <sof/debug/debug.h>
#include <sof/compiler_attributes.h>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

#include <sof/audio/buffer.h>
#include <sof/audio/component.h>
#include <sof/audio/codec_adapter/codec_adapter.h>
#include <sof/audio/module_adapter/codec_adapter.h>
#include <sof/audio/pipeline.h>
#include <sof/common.h>
#include <sof/platform.h>
Expand Down
Loading
Loading