summaryrefslogtreecommitdiffstats
path: root/rules/speex.in
blob: 0629947b164298d4c4f8305eeae1ad92b3fbd7fd (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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
## SECTION=multimedia_libs

menuconfig SPEEX
	tristate
	select LIBC_M
	select GCCLIBS_GCC_S
	select LIBOGG
	prompt "speex                         "
	help
	  Speex is an Open Source/Free Software
	  patent-free audio compression format
	  designed for speech.

if SPEEX

config SPEEX_FIXED_POINT
	bool
	prompt "use fixed point"

config SPEEX_FLOAT_API
	bool
	prompt "enable float api"

config SPEEX_VBR
	bool
	prompt "enable VBR"

choice
	prompt "Kind of FFT to use"
	default SPEEX_FFT_KISS

	config SPEEX_FFT_KISS
		bool
		prompt "kiss"

	config SPEEX_FFT_SMALLFT
		bool
		prompt "smallft"

	config SPEEX_FFT_GPL_FFTW3
		bool
		depends on BROKEN
		prompt "gpl-fftw3 [BROKEN]"

	config SPEEX_FFT_PROPRIETARY_INTL_MKL
		bool
		depends on BROKEN
		prompt "proprietary-intel-mkl [BROKEN]"
endchoice

config SPEEX_INSTALL_SPEEXENC
	bool
	prompt "Install speexenc"

config SPEEX_INSTALL_SPEEXDEC
	bool
	prompt "Install speexdec"

endif