Files
luban-lite/packages/third-party/gif/Kconfig

30 lines
554 B
Plaintext
Raw Normal View History

2024-04-03 16:40:57 +08:00
# Kconfig file for gif
menuconfig LPKG_USING_GIF
bool "GIF: decode giff image"
default n
if LPKG_USING_GIF
choice
2025-04-23 17:54:31 +08:00
prompt "select gif color format"
2024-04-03 16:40:57 +08:00
default GIF_COLOR_FORMAT_RGB565
config GIF_COLOR_FORMAT_ARGB8888
bool "argb8888"
config GIF_COLOR_FORMAT_RGB565
bool "rgb565"
endchoice
config GIF_COLOR_FORMAT
int
default 0 if GIF_COLOR_FORMAT_ARGB8888
default 14 if GIF_COLOR_FORMAT_RGB565
config GIF_USING_SAMPLES
2025-04-23 17:54:31 +08:00
bool "Enable gif samples"
2024-04-03 16:40:57 +08:00
default n
endif