885ae42727
Fixes: http://autobuild.buildroot.net/results/e01f5a5484299dce1797966445f3972583c67b22 http://autobuild.buildroot.net/results/7ed0563fbbfc19c93ec5be35d3b6a95e496b4c5d Signed-off-by: Gilles Talis <gilles.talis@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
51 lines
1.2 KiB
Plaintext
51 lines
1.2 KiB
Plaintext
config BR2_PACKAGE_LIBMAD
|
|
bool "libmad"
|
|
select BR2_PACKAGE_LIBMAD_ASO if BR2_avr32
|
|
help
|
|
High-quality MPEG audio decoder. All computations are performed
|
|
with fixed-point integer arithmetic, making it ideal for systems
|
|
without a floating-point unit.
|
|
|
|
http://www.underbit.com/products/mad/
|
|
|
|
if BR2_PACKAGE_LIBMAD
|
|
|
|
choice
|
|
prompt "Speed vs. accuracy"
|
|
default BR2_PACKAGE_LIBMAD_OPTIMIZATION_DEFAULT
|
|
|
|
config BR2_PACKAGE_LIBMAD_OPTIMIZATION_DEFAULT
|
|
bool "Default"
|
|
help
|
|
Keep optimizations balanced between speed and accuracy.
|
|
|
|
config BR2_PACKAGE_LIBMAD_OPTIMIZATION_SPEED
|
|
bool "Optimize for speed over accuracy"
|
|
help
|
|
Compromise accuracy for speed.
|
|
|
|
config BR2_PACKAGE_LIBMAD_OPTIMIZATION_ACCURACY
|
|
bool "Optimize for accuracy over speed"
|
|
help
|
|
Compromise speed for accuracy.
|
|
|
|
endchoice
|
|
|
|
config BR2_PACKAGE_LIBMAD_SSO
|
|
bool "Subband synthesis optimization"
|
|
help
|
|
Use the subband synthesis optimization, with reduced accuracy.
|
|
|
|
config BR2_PACKAGE_LIBMAD_ASO
|
|
bool "Architecture-specific optimizations"
|
|
default y
|
|
help
|
|
Use certain architecture-specific optimizations.
|
|
|
|
config BR2_PACKAGE_LIBMAD_STRICT_ISO
|
|
bool "Strict ISO/IEC interpretations"
|
|
help
|
|
Use strict ISO/IEC interpretations.
|
|
|
|
endif
|