summaryrefslogtreecommitdiffstats
path: root/rules/libtheora.in
blob: 689a3480ed1b010adda1d6449bc5b658fda935c4 (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
## SECTION=multimedia_libs

menuconfig LIBTHEORA
	tristate
	select LIBOGG		if LIBTHEORA__OGG
	select LIBVORBIS	if LIBTHEORA__VORBIS
	select SDL		if LIBTHEORA__SDL
	prompt "libtheora                     "
	help
	  Theora is an open video codec being developed by the Xiph.org Foundation
	  as part of their Ogg project.

if LIBTHEORA

	config LIBTHEORA__OGG
		bool
		default y
		# no prompt, ogg support is selectable, but mandatory :-/
		# prompt "ogg support"

	config LIBTHEORA__VORBIS
		bool
		prompt "vorbis support"

	config LIBTHEORA__SDL
		bool
		prompt "sdl support"

	config LIBTHEORA__FLOAT
		bool
		prompt "floating point support"
		help
		  Disable use of floating point code. This might be a good idea on
		  architectures which don't have an FPU.

	config LIBTHEORA__ENCODING
		bool
		prompt "encoding support"

	config LIBTHEORA__DOC
		bool
		prompt "build documentation"
		help
		  To build the documentation and the API description you must
		  have pdflatex, transfig, bibtex or doxygen be present on
		  your host.

endif