Remove BR2_DEPRECATED
[buildroot-gz.git] / package / libmad / Config.in
blob7d66976c1b4ce3f3dfea8e5dc16d29455922b965
1 config BR2_PACKAGE_LIBMAD
2         bool "libmad"
3         help
4           High-quality MPEG audio decoder. All computations are performed
5           with fixed-point integer arithmetic, making it ideal for systems
6           without a floating-point unit.
8           http://www.underbit.com/products/mad/
10 if BR2_PACKAGE_LIBMAD
12 choice
13         prompt "Speed vs. accuracy"
14         default BR2_PACKAGE_LIBMAD_OPTIMIZATION_DEFAULT
16 config BR2_PACKAGE_LIBMAD_OPTIMIZATION_DEFAULT
17         bool "Default"
18         help
19           Keep optimizations balanced between speed and accuracy.
21 config BR2_PACKAGE_LIBMAD_OPTIMIZATION_SPEED
22         bool "Optimize for speed over accuracy"
23         help
24           Compromise accuracy for speed.
26 config BR2_PACKAGE_LIBMAD_OPTIMIZATION_ACCURACY
27         bool "Optimize for accuracy over speed"
28         help
29           Compromise speed for accuracy.
31 endchoice
33 config BR2_PACKAGE_LIBMAD_SSO
34         bool "Subband synthesis optimization"
35         help
36           Use the subband synthesis optimization, with reduced accuracy.
38 config BR2_PACKAGE_LIBMAD_ASO
39         bool "Architecture-specific optimizations"
40         default y
41         help
42           Use certain architecture-specific optimizations.
44 config BR2_PACKAGE_LIBMAD_STRICT_ISO
45         bool "Strict ISO/IEC interpretations"
46         help
47           Use strict ISO/IEC interpretations.
49 endif