2020-11-16 17:53:09 +08:00
|
|
|
#
|
|
|
|
# For a description of the syntax of this configuration file,
|
|
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
|
|
|
#
|
|
|
|
|
|
|
|
config AUDIO_SRC
|
2022-07-08 00:01:22 +08:00
|
|
|
bool "Audio Samplerate Converter Library"
|
2020-11-25 00:07:57 +08:00
|
|
|
default n
|
|
|
|
---help---
|
|
|
|
Enable build for various SRC functions
|
2020-11-16 17:53:09 +08:00
|
|
|
|
|
|
|
if AUDIO_SRC
|
|
|
|
|
2020-11-25 00:07:57 +08:00
|
|
|
config SINC_FAST_CONVERTER
|
|
|
|
bool "Fastest conversion with lowest quality"
|
|
|
|
---help---
|
|
|
|
Fastest conversion with lowest quality.
|
|
|
|
Suitable for most boards due to resource constrains.
|
|
|
|
|
|
|
|
config SINC_MEDIUM_CONVERTER
|
|
|
|
bool "Medium conversion speed with medium qulity"
|
|
|
|
---help---
|
|
|
|
Medium conversion speed with medium qulity.
|
|
|
|
Not suitable for most boards due to resource constrains.
|
|
|
|
|
|
|
|
config SINC_BEST_CONVERTER
|
|
|
|
bool "Slowest conversion speed with best quality"
|
|
|
|
---help---
|
|
|
|
Slowest conversion speed with best quality.
|
2021-12-14 15:52:49 +08:00
|
|
|
Not suitable for most boards due to resource constrains.
|
2020-11-25 00:07:57 +08:00
|
|
|
|
2020-11-16 17:53:09 +08:00
|
|
|
endif # LIBSRC
|