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

  1. config LIBDVBCSA_DEBUG
  2. bool "Enable debugging"
  3. default n
  4. config LIBDVBCSA_MMX
  5. bool "Use MMX for bitslice"
  6. depends on (!LIBDVBCSA_SSE2 && (x86_64 || i386))
  7. default n
  8. config LIBDVBCSA_SSE2
  9. bool "Use SSE2 for bitslice"
  10. depends on (x86_64 || i386)
  11. default y
  12. config LIBDVBCSA_ALTIVEC
  13. bool "Use AltiVec for bitslice"
  14. depends on (BROKEN && (powerpc || powerpc64))
  15. default y
  16. config LIBDVBCSA_NEON
  17. bool "Use ARM NEON for bitslice"
  18. depends on (arm || aarch64)
  19. default y if aarch64