1
0
mirror of https://git.openwrt.org/feed/packages.git synced 2024-06-13 10:59:13 +02:00
openwrt-packages/libs/libdvbcsa/Config.in

24 lines
489 B
Plaintext
Raw Normal View History

config LIBDVBCSA_DEBUG
bool "Enable debugging"
default n
config LIBDVBCSA_MMX
bool "Use MMX for bitslice"
depends on (!LIBDVBCSA_SSE2 && (x86_64 || i386))
default n
config LIBDVBCSA_SSE2
bool "Use SSE2 for bitslice"
depends on (x86_64 || i386)
default y
config LIBDVBCSA_ALTIVEC
bool "Use AltiVec for bitslice"
depends on (BROKEN && (powerpc || powerpc64))
default y
config LIBDVBCSA_NEON
bool "Use ARM NEON for bitslice"
depends on (arm || aarch64)
default y if aarch64