Skip to content

Commit 6af2337

Browse files
committed
audio: module_adapter: Add zephyr_library_import() for Vorbis decoder
The zephyr_library_import() is needed to compile the vorbis decoder support Signed-off-by: Peter Ujfalusi <peter.ujfalusi@linux.intel.com>
1 parent c150867 commit 6af2337

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

src/audio/module_adapter/CMakeLists.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,10 @@ endif()
2121
zephyr_library_import(xa_aac_dec ${CONFIG_CADENCE_CODEC_AAC_DEC_LIB})
2222
endif()
2323

24+
if (CONFIG_CADENCE_CODEC_VORBIS_DEC)
25+
zephyr_library_import(xa_vorbis_dec ${CONFIG_CADENCE_CODEC_VORBIS_DEC_LIB})
26+
endif()
27+
2428
if (CONFIG_CADENCE_CODEC_MP3_DEC)
2529
zephyr_library_import(xa_mp3_dec ${CONFIG_CADENCE_CODEC_MP3_DEC_LIB})
2630
endif()

0 commit comments

Comments
 (0)