-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathKconfig
More file actions
27 lines (22 loc) · 682 Bytes
/
Kconfig
File metadata and controls
27 lines (22 loc) · 682 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
menu "Micro Decoder"
config MICRO_DECODER_CODEC_FLAC
bool "Enable FLAC codec support"
default y
help
Enable FLAC audio decoding via micro-flac.
config MICRO_DECODER_CODEC_MP3
bool "Enable MP3 codec support"
default y
help
Enable MP3 audio decoding via micro-mp3.
config MICRO_DECODER_CODEC_OPUS
bool "Enable Opus codec support"
default y
help
Enable Opus/OGG audio decoding via micro-opus.
config MICRO_DECODER_CODEC_WAV
bool "Enable WAV codec support"
default y
help
Enable WAV audio decoding via micro-wav.
endmenu