summaryrefslogtreecommitdiffstats
path: root/rules/libmad.in
blob: ebac7c0d997cf8d6a2573bc3f127c1c5299e061e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
## SECTION=multimedia_sound

menuconfig LIBMAD
	tristate
	prompt "libmad                        "
	help
	  MPEG audio decoder library

	  MAD is an MPEG audio decoder. It currently only supports the
	  MPEG 1 standard, but fully implements all three audio layers
	  (Layer I, Layer II, and Layer III, the latter often
	  colloquially known as MP3.)

	  MAD has the following special features:
	  * 100% fixed-point (integer) computation
	  * completely new implementation based on the ISO/IEC 11172-3 standard
	  * distributed under the terms of the GNU General Public License (GPL)

choice
	prompt "Optimize for"
	default LIBMAD__OPT_SPEED
	depends on LIBMAD

	config LIBMAD__OPT_SPEED
		bool
		prompt "speed   "
		help
		 optimize for speed over accuracy

	config LIBMAD__OPT_ACCURACY
		bool
		prompt "accuracy"
		help
		  optimize for accuracy over speed

endchoice