buildroot/package/libmad/Config.in
Adam Duskett 5dccd7249e package/lib*: fix wrapping of Config.in help text
The check-package script when ran gives warnings on text wrapping
on all of these Config files.  This patch cleans up all warnings
related to the text wrapping for the Config files starting with
lib in the package directory.

The appropriate indentation is: <tab><2 spaces><62 chars>
See http://nightly.buildroot.org/#writing-rules-config-in for more
information.

Signed-off-by: Adam Duskett <aduskett@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2017-07-31 19:10:08 +02:00

52 lines
1.3 KiB
Plaintext

config BR2_PACKAGE_LIBMAD
bool "libmad"
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
# arm optimization needs classic arm instructions support
depends on !(BR2_arm && !BR2_ARM_CPU_HAS_ARM)
help
Use certain architecture-specific optimizations.
config BR2_PACKAGE_LIBMAD_STRICT_ISO
bool "Strict ISO/IEC interpretations"
help
Use strict ISO/IEC interpretations.
endif