From patchwork Fri Feb 11 13:03:06 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: gst-plugins-base-0.10.32: use integer-based resampling without FPU Date: Fri, 11 Feb 2011 13:03:06 -0000 From: Andreas Oberritter X-Patchwork-Id: 541 Message-Id: <1297429386-5688-1-git-send-email-obi@opendreambox.org> To: openembedded-devel@lists.openembedded.org Signed-off-by: Andreas Oberritter --- 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