Config.in 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. config BR2_PACKAGE_LIBMAD
  2. bool "libmad"
  3. help
  4. High-quality MPEG audio decoder. All computations are
  5. performed with fixed-point integer arithmetic, making it ideal
  6. for systems without a floating-point unit.
  7. http://www.underbit.com/products/mad/
  8. if BR2_PACKAGE_LIBMAD
  9. choice
  10. prompt "Speed vs. accuracy"
  11. default BR2_PACKAGE_LIBMAD_OPTIMIZATION_DEFAULT
  12. config BR2_PACKAGE_LIBMAD_OPTIMIZATION_DEFAULT
  13. bool "Default"
  14. help
  15. Keep optimizations balanced between speed and accuracy.
  16. config BR2_PACKAGE_LIBMAD_OPTIMIZATION_SPEED
  17. bool "Optimize for speed over accuracy"
  18. help
  19. Compromise accuracy for speed.
  20. config BR2_PACKAGE_LIBMAD_OPTIMIZATION_ACCURACY
  21. bool "Optimize for accuracy over speed"
  22. help
  23. Compromise speed for accuracy.
  24. endchoice
  25. config BR2_PACKAGE_LIBMAD_SSO
  26. bool "Subband synthesis optimization"
  27. help
  28. Use the subband synthesis optimization, with reduced accuracy.
  29. config BR2_PACKAGE_LIBMAD_ASO
  30. bool "Architecture-specific optimizations"
  31. default y
  32. # arm optimization needs classic arm instructions support
  33. depends on !(BR2_arm && !BR2_ARM_CPU_HAS_ARM)
  34. help
  35. Use certain architecture-specific optimizations.
  36. config BR2_PACKAGE_LIBMAD_STRICT_ISO
  37. bool "Strict ISO/IEC interpretations"
  38. help
  39. Use strict ISO/IEC interpretations.
  40. endif