summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSven Neumann2009-12-04 00:02:03 +0100
committerPeter Korsgaard2009-12-08 21:50:29 +0100
commit63dd44dbcdc6eb8d8299f72993449a1cca3ad2e2 (patch)
treef172aa49a35ff1c8e3d899f5898c626cc4687f5e
parenttremor: add patch to export all symbols (diff)
downloadbuildroot-63dd44dbcdc6eb8d8299f72993449a1cca3ad2e2.tar.gz
buildroot-63dd44dbcdc6eb8d8299f72993449a1cca3ad2e2.tar.xz
buildroot-63dd44dbcdc6eb8d8299f72993449a1cca3ad2e2.zip
gst-plugins-bad: allow the build of ivorbisdec plugin
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>
-rw-r--r--CHANGES2
-rw-r--r--package/multimedia/gst-plugins-bad/Config.in4
-rw-r--r--package/multimedia/gst-plugins-bad/gst-plugins-bad.mk7
3 files changed, 12 insertions, 1 deletions
diff --git a/CHANGES b/CHANGES
index 816b26d4e..80005c247 100644
--- 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):
diff --git a/package/multimedia/gst-plugins-bad/Config.in b/package/multimedia/gst-plugins-bad/Config.in
index c7ebe2a61..66335a85c 100644
--- a/package/multimedia/gst-plugins-bad/Config.in
+++ b/package/multimedia/gst-plugins-bad/Config.in
@@ -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"
diff --git a/package/multimedia/gst-plugins-bad/gst-plugins-bad.mk b/package/multimedia/gst-plugins-bad/gst-plugins-bad.mk
index 9a0955fd4..bd5b63334 100644
--- a/package/multimedia/gst-plugins-bad/gst-plugins-bad.mk
+++ b/package/multimedia/gst-plugins-bad/gst-plugins-bad.mk
@@ -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