summaryrefslogtreecommitdiff
path: root/extra
diff options
context:
space:
mode:
authorOmar Vega Ramos <ovruni@gnu.org.pe>2012-12-18 20:15:26 -0500
committerOmar Vega Ramos <ovruni@gnu.org.pe>2012-12-18 20:15:26 -0500
commit332060e036d38d6213201ed79b5d263241ca1825 (patch)
tree69d1ed7ed765039daaa1f086de2ad15bf6ecae2a /extra
parentb4e1e5487fa44ad9834b51123403cd3937da855f (diff)
Add 0001-fix-non-x86-build.patch in xine-lib
Diffstat (limited to 'extra')
-rw-r--r--extra/xine-lib/0001-fix-non-x86-build.patch43
-rw-r--r--extra/xine-lib/PKGBUILD7
2 files changed, 48 insertions, 2 deletions
diff --git a/extra/xine-lib/0001-fix-non-x86-build.patch b/extra/xine-lib/0001-fix-non-x86-build.patch
new file mode 100644
index 000000000..73cdf2c8d
--- /dev/null
+++ b/extra/xine-lib/0001-fix-non-x86-build.patch
@@ -0,0 +1,43 @@
+# HG changeset patch
+# User Petri Hintukainen <phintuka@users.sourceforge.net>
+# Date 1339310702 -10800
+# Node ID b0df4b6003ad2b7454059c2d82ef7f8f29e48e9e
+# Parent 52a99e60c2c9aa7e03be894b4396f229f881025c
+Fix building on non-x86 systems
+
+diff --git a/src/post/deinterlace/plugins/greedy2frame_template.c b/src/post/deinterlace/plugins/greedy2frame_template.c
+--- a/src/post/deinterlace/plugins/greedy2frame_template.c
++++ b/src/post/deinterlace/plugins/greedy2frame_template.c
+@@ -85,6 +85,7 @@
+ */
+
+
++#if defined(ARCH_X86) || defined(ARCH_X86_64)
+ #if !defined(MASKS_DEFINED)
+ #define MASKS_DEFINED
+ static const mmx_t Mask = { uq: 0x7f7f7f7f7f7f7f7fll };
+@@ -92,6 +93,7 @@ static const mmx_t Mask = { uq: 0x7f7f7f
+ static const mmx_t GreedyTwoFrameThreshold = { ub: {TP, TP, TP, TP} };
+ #undef TP
+ #endif
++#endif
+
+ #if defined(IS_MMXEXT)
+ static void DeinterlaceGreedy2Frame_MMXEXT(uint8_t *output, int outstride,
+diff --git a/src/post/deinterlace/plugins/greedy2frame_template_sse2.c b/src/post/deinterlace/plugins/greedy2frame_template_sse2.c
+--- a/src/post/deinterlace/plugins/greedy2frame_template_sse2.c
++++ b/src/post/deinterlace/plugins/greedy2frame_template_sse2.c
+@@ -84,11 +84,12 @@
+ ** B0 | | B1 | |
+ */
+
+-
++#if defined(ARCH_X86) || defined(ARCH_X86_64)
+ static const sse_t Mask128 = { uq: { 0x7f7f7f7f7f7f7f7fll, 0x7f7f7f7f7f7f7f7fll} };
+ #define TP GREEDYTWOFRAMETHRESHOLD, GREEDYTWOFRAMETHRESHOLD2
+ static const sse_t GreedyTwoFrameThreshold128 = { ub: {TP, TP, TP, TP, TP, TP, TP, TP} };
+ #undef TP
++#endif
+
+ static void DeinterlaceGreedy2Frame_SSE2(uint8_t *output, int outstride,
+ deinterlace_frame_data_t *data,
diff --git a/extra/xine-lib/PKGBUILD b/extra/xine-lib/PKGBUILD
index 439f56456..7a52abee7 100644
--- a/extra/xine-lib/PKGBUILD
+++ b/extra/xine-lib/PKGBUILD
@@ -31,11 +31,14 @@ optdepends+=('wavpack: for using the wavpack plugin' \
'gnome-vfs: for using the gnome-vfs plugin')
[ "$CARCH" = "mips64el" ] || optdepends+=('libvdpau: for using the VDPAU plugin')
options=('!libtool')
-source=(http://downloads.sourceforge.net/sourceforge/xine/${pkgname}-${pkgver}.tar.xz)
-sha1sums=('a349cbb0b72256bb262377796a022dcf63829b4c')
+source=(http://downloads.sourceforge.net/sourceforge/xine/${pkgname}-${pkgver}.tar.xz
+ 0001-fix-non-x86-build.patch)
+sha1sums=('a349cbb0b72256bb262377796a022dcf63829b4c'
+ '5f1a34c7bafa7ea96c0e4e14fbf6e31e53fe41e0')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
+ patch -Np1 -i ${srcdir}/0001-fix-non-x86-build.patch
[ "$CARCH" = "mips64el" ] || extraconf=--enable-vdpau
./configure --prefix=/usr --with-wavpack --disable-optimizations $extraconf
make