diff options
Diffstat (limited to 'meta-multimedia/recipes-multimedia/gstreamer-0.10/gst-plugins-base-0.10.36')
4 files changed, 0 insertions, 116 deletions
diff --git a/meta-multimedia/recipes-multimedia/gstreamer-0.10/gst-plugins-base-0.10.36/0001-aclocal.m4-don-t-do-crazy-things-to-GLIB_CFLAGS.patch b/meta-multimedia/recipes-multimedia/gstreamer-0.10/gst-plugins-base-0.10.36/0001-aclocal.m4-don-t-do-crazy-things-to-GLIB_CFLAGS.patch deleted file mode 100644 index 29fbec5f80..0000000000 --- a/meta-multimedia/recipes-multimedia/gstreamer-0.10/gst-plugins-base-0.10.36/0001-aclocal.m4-don-t-do-crazy-things-to-GLIB_CFLAGS.patch +++ /dev/null | |||
| @@ -1,32 +0,0 @@ | |||
| 1 | From 5478eafecf618cd8e742cc1b96d688a2c7ce5a79 Mon Sep 17 00:00:00 2001 | ||
| 2 | From: =?UTF-8?q?Andreas=20M=C3=BCller?= <schnitzeltony@googlemail.com> | ||
| 3 | Date: Sun, 2 Oct 2016 21:49:33 +0200 | ||
| 4 | Subject: [PATCH] gst-glib2.m4: don't do crazy things to GLIB_CFLAGS | ||
| 5 | MIME-Version: 1.0 | ||
| 6 | Content-Type: text/plain; charset=UTF-8 | ||
| 7 | Content-Transfer-Encoding: 8bit | ||
| 8 | |||
| 9 | we are definitely not one of those poor souls mentioned | ||
| 10 | |||
| 11 | Upstream-Status: Pending | ||
| 12 | |||
| 13 | Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> | ||
| 14 | --- | ||
| 15 | common/m4/gst-glib2.m4 | 1 - | ||
| 16 | 1 file changed, 1 deletion(-) | ||
| 17 | |||
| 18 | diff --git a/common/m4/gst-glib2.m4 b/common/m4/gst-glib2.m4 | ||
| 19 | index b01f02f..4569ae5 100644 | ||
| 20 | --- a/common/m4/gst-glib2.m4 | ||
| 21 | +++ b/common/m4/gst-glib2.m4 | ||
| 22 | @@ -69,7 +69,6 @@ AC_DEFUN([AG_GST_GLIB_CHECK], | ||
| 23 | fi | ||
| 24 | |||
| 25 | dnl for the poor souls who for example have glib in /usr/local | ||
| 26 | - AS_SCRUB_INCLUDE(GLIB_CFLAGS) | ||
| 27 | |||
| 28 | AC_SUBST(GLIB_EXTRA_CFLAGS) | ||
| 29 | ]) | ||
| 30 | -- | ||
| 31 | 2.5.5 | ||
| 32 | |||
diff --git a/meta-multimedia/recipes-multimedia/gstreamer-0.10/gst-plugins-base-0.10.36/audioresample-Fix-build-on-x86-if-emmintrin.h-is-ava.patch b/meta-multimedia/recipes-multimedia/gstreamer-0.10/gst-plugins-base-0.10.36/audioresample-Fix-build-on-x86-if-emmintrin.h-is-ava.patch deleted file mode 100644 index 52142562ab..0000000000 --- a/meta-multimedia/recipes-multimedia/gstreamer-0.10/gst-plugins-base-0.10.36/audioresample-Fix-build-on-x86-if-emmintrin.h-is-ava.patch +++ /dev/null | |||
| @@ -1,37 +0,0 @@ | |||
| 1 | audioresample: Fix build on x86 if emmintrin.h is available but can't be used | ||
| 2 | |||
| 3 | On x86, EMMINTRIN is defined but not usable without SSE so check for | ||
| 4 | __SSE__ and __SSE2__ as well. | ||
| 5 | |||
| 6 | https://bugzilla.gnome.org/show_bug.cgi?id=670690 | ||
| 7 | |||
| 8 | Upstream-Status: Backport | ||
| 9 | |||
| 10 | Signed-off-by: Jackie Huang <jackie.huang@windriver.com> | ||
| 11 | --- | ||
| 12 | gst/audioresample/resample.c | 4 ++-- | ||
| 13 | 1 files changed, 2 insertions(+), 2 deletions(-) | ||
| 14 | |||
| 15 | diff --git a/gst/audioresample/resample.c b/gst/audioresample/resample.c | ||
| 16 | index 98d006c..481fa01 100644 | ||
| 17 | --- a/gst/audioresample/resample.c | ||
| 18 | +++ b/gst/audioresample/resample.c | ||
| 19 | @@ -77,13 +77,13 @@ | ||
| 20 | #define EXPORT G_GNUC_INTERNAL | ||
| 21 | |||
| 22 | #ifdef _USE_SSE | ||
| 23 | -#ifndef HAVE_XMMINTRIN_H | ||
| 24 | +#if !defined(__SSE__) || !defined(HAVE_XMMINTRIN_H) | ||
| 25 | #undef _USE_SSE | ||
| 26 | #endif | ||
| 27 | #endif | ||
| 28 | |||
| 29 | #ifdef _USE_SSE2 | ||
| 30 | -#ifndef HAVE_EMMINTRIN_H | ||
| 31 | +#if !defined(__SSE2__) || !defined(HAVE_EMMINTRIN_H) | ||
| 32 | #undef _USE_SSE2 | ||
| 33 | #endif | ||
| 34 | #endif | ||
| 35 | -- | ||
| 36 | 1.7.1 | ||
| 37 | |||
diff --git a/meta-multimedia/recipes-multimedia/gstreamer-0.10/gst-plugins-base-0.10.36/configure.ac-fix-subparse-plugin.patch b/meta-multimedia/recipes-multimedia/gstreamer-0.10/gst-plugins-base-0.10.36/configure.ac-fix-subparse-plugin.patch deleted file mode 100644 index b8602c80d7..0000000000 --- a/meta-multimedia/recipes-multimedia/gstreamer-0.10/gst-plugins-base-0.10.36/configure.ac-fix-subparse-plugin.patch +++ /dev/null | |||
| @@ -1,27 +0,0 @@ | |||
| 1 | Upstream-Status: Submitted [similar patch by other author, bugzilla] | ||
| 2 | Bugtracker-URL: https://bugzilla.gnome.org/show_bug.cgi?id=663600 | ||
| 3 | |||
| 4 | Prepend PKG_CONFIG_SYSROOT to includedir, so configure doesn't | ||
| 5 | search for gstconfig.h in /usr/include. | ||
| 6 | |||
| 7 | Signed-off-by: Andreas Oberritter <obi@opendreambox.org> | ||
| 8 | --- | ||
| 9 | configure.ac | 2 +- | ||
| 10 | 1 files changed, 1 insertions(+), 1 deletions(-) | ||
| 11 | |||
| 12 | diff --git a/configure.ac b/configure.ac | ||
| 13 | index 1901bcf..460fb0a 100644 | ||
| 14 | --- a/configure.ac | ||
| 15 | +++ b/configure.ac | ||
| 16 | @@ -435,7 +435,7 @@ AG_GST_CHECK_PLUGIN(volume) | ||
| 17 | dnl check for gstreamer core features (subsystems) | ||
| 18 | dnl FIXME: this assumes srcdir == builddir for uninstalled setups | ||
| 19 | GST_CONFIGPATH=`$PKG_CONFIG --variable=includedir gstreamer-0.10`"/gst/gstconfig.h" | ||
| 20 | -AG_GST_PARSE_SUBSYSTEM_DISABLES($GST_CONFIGPATH) | ||
| 21 | +AG_GST_PARSE_SUBSYSTEM_DISABLES($PKG_CONFIG_SYSROOT_DIR$GST_CONFIGPATH) | ||
| 22 | AM_CONDITIONAL(USE_XML, test $GST_DISABLE_XML != "1") | ||
| 23 | |||
| 24 | dnl disable plug-ins that require libxml2's HTML support if it is not available | ||
| 25 | -- | ||
| 26 | 1.7.5.4 | ||
| 27 | |||
diff --git a/meta-multimedia/recipes-multimedia/gstreamer-0.10/gst-plugins-base-0.10.36/gst-plugins-base-tremor.patch b/meta-multimedia/recipes-multimedia/gstreamer-0.10/gst-plugins-base-0.10.36/gst-plugins-base-tremor.patch deleted file mode 100644 index 99dbc9d52e..0000000000 --- a/meta-multimedia/recipes-multimedia/gstreamer-0.10/gst-plugins-base-0.10.36/gst-plugins-base-tremor.patch +++ /dev/null | |||
| @@ -1,20 +0,0 @@ | |||
| 1 | Remove -DTREMOR option since Tremor has dropped its internal | ||
| 2 | libogg2, and gst-plugins-base has dependency on that. | ||
| 3 | |||
| 4 | Upstream-Status: Inappropriate [configuration] | ||
| 5 | |||
| 6 | Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com> | ||
| 7 | Signed-off-by: Shane Wang <shane.wang@intel.com> | ||
| 8 | |||
| 9 | diff -r 70065fb4e085 ext/vorbis/Makefile.am | ||
| 10 | --- a/ext/vorbis/Makefile.am Tue Mar 13 16:36:56 2012 +0800 | ||
| 11 | +++ b/ext/vorbis/Makefile.am Tue Mar 13 16:38:53 2012 +0800 | ||
| 12 | @@ -30,7 +30,7 @@ | ||
| 13 | gstvorbisdec.c gstvorbisdeclib.c gstvorbiscommon.c | ||
| 14 | libgstivorbisdec_la_CFLAGS = \ | ||
| 15 | $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS) \ | ||
| 16 | - -DTREMOR $(IVORBIS_CFLAGS) | ||
| 17 | + $(IVORBIS_CFLAGS) | ||
| 18 | libgstivorbisdec_la_LIBADD = \ | ||
| 19 | $(top_builddir)/gst-libs/gst/tag/libgsttag-@GST_MAJORMINOR@.la \ | ||
| 20 | $(top_builddir)/gst-libs/gst/audio/libgstaudio-@GST_MAJORMINOR@.la \ | ||
