1# Copyright (c) 2022 Bose Corporation
2# Copyright (c) 2024 Codecoup
3# SPDX-License-Identifier: Apache-2.0
4
5config ZEPHYR_LIBLC3_MODULE
6	bool
7
8config LIBLC3
9	bool "liblc3 Support"
10	depends on FPU
11	select REQUIRES_FULL_LIBC
12	help
13	  Enable the Low Complexity Communication Codec (LC3)
14
15if LIBLC3
16
17config LIBLC3_PLUS
18	bool "LC3plus Support [EXPERIMENTAL]"
19	select EXPERIMENTAL
20	help
21	  Enable support of 2.5ms and 5ms frame durations.
22
23config LIBLC3_PLUS_HR
24	bool "LC3plus High Resolution Support [EXPERIMENTAL]"
25	select EXPERIMENTAL
26	help
27	  Enable support of the High-Resolution mode.
28
29endif
30