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

menuconfig LIBTHEORA
	tristate
	select LIBOGG
	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_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"

endif