summaryrefslogtreecommitdiffstats
path: root/rules/libtheora.in
diff options
context:
space:
mode:
authorRobert Schwebel <r.schwebel@pengutronix.de>2008-07-30 16:33:14 +0000
committerRobert Schwebel <r.schwebel@pengutronix.de>2008-07-30 16:33:14 +0000
commit7a58a4130bc5f0dd55baa6d48a55092af39040a3 (patch)
tree5b2fdfd19c518ba8c2ec8856b13b91688b700f62 /rules/libtheora.in
parentb3b42a9dbbc581c06644cbcca2ea4efd77ac878b (diff)
downloadptxdist-7a58a4130bc5f0dd55baa6d48a55092af39040a3.tar.gz
ptxdist-7a58a4130bc5f0dd55baa6d48a55092af39040a3.tar.xz
* libtheora: added
git-svn-id: https://svn.pengutronix.de/svn/ptxdist/trunks/ptxdist-trunk@8697 33e552b5-05e3-0310-8538-816dae2090ed
Diffstat (limited to 'rules/libtheora.in')
-rw-r--r--rules/libtheora.in39
1 files changed, 39 insertions, 0 deletions
diff --git a/rules/libtheora.in b/rules/libtheora.in
new file mode 100644
index 000000000..d9733683c
--- /dev/null
+++ b/rules/libtheora.in
@@ -0,0 +1,39 @@
+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"
+
+endif
+