gst-plugins-bad: allow the build of ivorbisdec plugin
authorSven Neumann <s.neumann@raumfeld.com>
Thu, 3 Dec 2009 23:02:03 +0000 (00:02 +0100)
committerPeter Korsgaard <jacmet@sunsite.dk>
Tue, 8 Dec 2009 20:50:29 +0000 (21:50 +0100)
Allow to select the ivorbisdec plugin using the tremor
fixed-point Ogg Vorbis decoder.

Signed-off-by: Sven Neumann <s.neumann@raumfeld.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
CHANGES
package/multimedia/gst-plugins-bad/Config.in
package/multimedia/gst-plugins-bad/gst-plugins-bad.mk

diff --git a/CHANGES b/CHANGES
index 816b26d4ea9a62d262de48f1b97d29337a761b74..80005c247a34998af76e0c3fde0a8c7055bb3c9a 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -4,7 +4,7 @@
 
        Updated/fixed packages: autoconf, bind, binutils, busybox,
        directfb, gst-plugins-bad, iw, libfuse, libpcap, lighttpd,
-       mesa, pcre, sshfs, usbutils
+       mesa, pcre, sshfs, tremor, usbutils
 
        Issues resolved (http://bugs.uclibc.org):
 
index c7ebe2a611da6915de2c14401435c16bdfacd22a..66335a85cc625534a586c63f1194dfce16452d86 100644 (file)
@@ -176,6 +176,10 @@ config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_SDL
        bool "sdl"
        select BR2_PACKAGE_SDL
 
+config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_TREMOR
+       bool "tremor"
+       select BR2_PACKAGE_TREMOR
+
 config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_VCD
        bool "vcd"
 
index 9a0955fd4220767e1562780a2076e510eb730cbe..bd5b6333450501a84056081ab6022c5acbff1a5a 100644 (file)
@@ -336,6 +336,13 @@ else
 GST_PLUGINS_BAD_CONF_OPT += --disable-sdl
 endif
 
+ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_TREMOR),y)
+GST_PLUGINS_BAD_CONF_OPT += --enable-ivorbis
+GST_PLUGINS_BAD_DEPENDENCIES += tremor
+else
+GST_PLUGINS_BAD_CONF_OPT += --disable-ivorbis
+endif
+
 ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_VCD),y)
 GST_PLUGINS_BAD_CONF_OPT += --enable-vcd
 else