mirror of
https://github.com/coolsnowwolf/packages
synced 2025-01-08 11:17:36 +08:00
24 lines
489 B
Plaintext
24 lines
489 B
Plaintext
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
|