[oe] [PATCH] gst-plugins-base-0.10.32: use integer-based resampling without FPU

Andreas Oberritter obi at opendreambox.org
Fri Feb 11 13:03:06 UTC 2011


Signed-off-by: Andreas Oberritter <obi at opendreambox.org>
---
 recipes/gstreamer/gst-plugins-base_0.10.32.bb |    9 +++++++--
 1 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/recipes/gstreamer/gst-plugins-base_0.10.32.bb b/recipes/gstreamer/gst-plugins-base_0.10.32.bb
index f30c4f9..025b589 100644
--- a/recipes/gstreamer/gst-plugins-base_0.10.32.bb
+++ b/recipes/gstreamer/gst-plugins-base_0.10.32.bb
@@ -7,7 +7,7 @@ SRC_URI += " \
 SRC_URI[archive.md5sum] = "2920af2b3162f3d9fbaa7fabc8ed4d38"
 SRC_URI[archive.sha256sum] = "e9aabfac83f6480896da0686e9c911989f896fbad634821b7771ed84a446172b"
 
-PR = "${INC_PR}.0"
+PR = "${INC_PR}.1"
 
 PROVIDES += "gst-plugins"
 
@@ -17,8 +17,13 @@ PROVIDES += "gst-plugins"
 # a missing alsa plugin
 DEPENDS += "udev cdparanoia pango libtheora alsa-lib libsm virtual/libx11 freetype gnome-vfs libxv libxrandr gtk+"
 
+def get_gstreamer_fpu_setting(bb, d):
+    if bb.data.getVar('TARGET_FPU', d, 1) in [ 'soft' ]:
+        return "--with-audioresample-format=int"
+    return ""
+
 # Needs a udev that enabled gudev, which isn't the default
-EXTRA_OECONF += " --with-gudev --disable-gnome_vfs"
+EXTRA_OECONF += "--with-gudev --disable-gnome_vfs ${@get_gstreamer_fpu_setting(bb, d)}"
 
 do_configure_prepend() {
 	sed -i -e s:QtGui:NoQtGui:g ${S}/configure.ac
-- 
1.7.2.3





More information about the Openembedded-devel mailing list