1
0
mirror of https://git.openwrt.org/feed/packages.git synced 2024-06-15 03:43:53 +02:00
openwrt-packages/libs/libdvbcsa/Config.in
Rafał Dzięgiel 51c5a8b4bc libdvbcsa: add new package
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>
2021-04-03 18:52:50 -07:00

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