7d66976c1b4ce3f3dfea8e5dc16d29455922b965
[packages/trusty/cirros-testvm.git] / cirros-testvm / src-cirros / buildroot-2015.05 / package / libmad / Config.in
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.
7
8           http://www.underbit.com/products/mad/
9
10 if BR2_PACKAGE_LIBMAD
11
12 choice
13         prompt "Speed vs. accuracy"
14         default BR2_PACKAGE_LIBMAD_OPTIMIZATION_DEFAULT
15
16 config BR2_PACKAGE_LIBMAD_OPTIMIZATION_DEFAULT
17         bool "Default"
18         help
19           Keep optimizations balanced between speed and accuracy.
20
21 config BR2_PACKAGE_LIBMAD_OPTIMIZATION_SPEED
22         bool "Optimize for speed over accuracy"
23         help
24           Compromise accuracy for speed.
25
26 config BR2_PACKAGE_LIBMAD_OPTIMIZATION_ACCURACY
27         bool "Optimize for accuracy over speed"
28         help
29           Compromise speed for accuracy.
30
31 endchoice
32
33 config BR2_PACKAGE_LIBMAD_SSO
34         bool "Subband synthesis optimization"
35         help
36           Use the subband synthesis optimization, with reduced accuracy.
37
38 config BR2_PACKAGE_LIBMAD_ASO
39         bool "Architecture-specific optimizations"
40         default y
41         help
42           Use certain architecture-specific optimizations.
43
44 config BR2_PACKAGE_LIBMAD_STRICT_ISO
45         bool "Strict ISO/IEC interpretations"
46         help
47           Use strict ISO/IEC interpretations.
48
49 endif