mirror of
https://github.com/openwrt/packages.git
synced 2025-01-31 01:22:13 +00:00
51c5a8b4bc
Libdvbcsa is a free implementation of the DVB Common Scrambling Algorithm DVB/CSA - with encryption and decryption capabilities. OpenWrt packages like `tvheadend` and `minisatip` can benefit from it. Signed-off-by: Rafał Dzięgiel <rafostar.github@gmail.com>
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
|