You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

23 lines
489 B

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